-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
56
57
58
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/lib.umd.cjs",
"module": "./dist/lib.js",
"exports": {
".": {
"import": "./dist/lib.js",
"require": "./dist/lib.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"commit": "cz",
"ce": "node run-script/create.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@preact/preset-vite": "^2.5.0",
"@testing-library/preact": "^3.2.3",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.16.1",
"autoprefixer": "^10.4.14",
"classnames": "^2.3.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"lodash-es": "^4.17.21",
"postcss": "^8.4.23",
"preact": "^10.15.1",
"prompt": "^1.3.0",
"sass": "^1.62.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.3",
"vite": "^4.2.3",
"vitepress": "1.0.0-alpha.75"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@floating-ui/react": "^0.24.0",
"bem-classnames": "^1.0.7",
"chalk": "^5.2.0",
"vite-project": "link:"
}
}