-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@spark-build/vite-plugin-react-auto-config",
"version": "0.2.1",
"description": "类似 umi 自动生成路由以及相关库集成配置的 vite 插件",
"author": "[email protected]",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"lib",
"es"
],
"sideEffects": false,
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": "spark-build/vite-plugin-react-auto-config",
"scripts": {
"build": "yarn father-build build",
"build:debug": "yarn father-build build && node scripts/syncDistToExample.js",
"publishPkg": "yarn build && npm version patch && npm publish",
"publishPkg:minor": "yarn build && npm version minor && npm publish",
"publishPkg:major": "yarn build && npm version major && npm publish",
"release": "yarn build && yarn release-it"
},
"dependencies": {
"@loadable/component": "^5.15.2",
"@spark-build/transform-antd-theme-variable": "^0.0.5",
"@spark-build/web-utils": "^0.0.7",
"@vitejs/plugin-react": "^1.1.3",
"antd": "^4.18.2",
"chalk": "^4.1.2",
"father-build": "^1.20.4",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"history": "^5.2.0",
"i18next": "^21.6.4",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0",
"ora": "^5.4.1",
"p-min-delay": "^4.0.1",
"react-i18next": "^11.15.3",
"react-router-dom": "^6.2.1",
"tapable": "^2.2.1",
"vite-plugin-mkcert": "^1.5.2",
"vite-plugin-style-import": "1.4.1",
"vite-plugin-windicss": "^1.6.1"
},
"devDependencies": {
"@spark-build/lint": "^0.0.18",
"@types/fs-extra": "^9.0.13",
"@types/loadable__component": "^5.13.4",
"@types/lodash-es": "^4.17.5",
"@types/mustache": "^4.1.2",
"release-it": "^14.11.8",
"typescript": "^4.5.4",
"vite": "^2.7.10"
},
"peerDependencies": {
"@types/react": ">=16.8.0 || >=17.0.0",
"@types/react-dom": ">=16.8.0 || >=17.0.0",
"antd": ">=4",
"react": ">=16.8.0 || >=17.0.0",
"react-dom": ">=16.8.0",
"vite": ">=2.0.0"
}
}