-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "library_name",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/denisavitski/library_name.git"
},
"homepage": "https://github.com/denisavitski/library_name#readme",
"bugs": {
"url": "https://github.com/denisavitski/library_name/issues"
},
"publishConfig": {
"access": "public"
},
"license": "ISC",
"files": [
"lib"
],
"type": "module",
"exports": {
".": {
"require": "./lib/index.cjs",
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"lib/index.d.ts"
]
}
},
"scripts": {
"preview": "vite preview",
"build": "tsc && vite build --mode lib",
"build:site": "tsc && vite build --mode site",
"dev": "vite --host --mode site"
},
"devDependencies": {
"@types/node": "^22.2.0",
"tsx": "^4.17.0",
"vite": "5.4.0",
"vite-plugin-dts": "^4.0.2",
"vite-plugin-htmc": "^0.1.14"
},
"dependencies": {},
"peerDependencies": {}
}