-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.29 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
50
51
52
53
54
55
{
"name": "@viget/parts-kit",
"private": false,
"version": "0.2.1",
"type": "module",
"files": [
"lib"
],
"engines": {
"node": ">=18"
},
"module": "./lib/parts-kit.js",
"exports": {
".": {
"import": "./lib/parts-kit.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "tsc && vitest run",
"dev": "vite --port 4000",
"build": "tsc && vite build",
"preview": "vite preview",
"gh-pages": "tsc && vite --config vite.config.ghpages build && gh-pages -d dist",
"build-lib": "tsc && vite --config vite.config.lib build",
"deploy": "npm run gh-pages && npm run build-lib && np"
},
"np": {
"yarn": false
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"classnames": "^2.3.2",
"preact": "^10.16.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@minko-fe/postcss-pxtorem": "^1.3.0",
"@preact/preset-vite": "^2.5.0",
"autoprefixer": "^10.4.14",
"gh-pages": "^6.0.0",
"np": "^8.0.4",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.2"
}
}