forked from soybeanjs/vite-plugin-vue-page-route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@soybeanjs/vite-plugin-vue-page-route",
"version": "0.0.5",
"description": "A vite plugin for vue, auto generate route info by page",
"author": {
"name": "Soybean",
"email": "[email protected]",
"url": "https://github.com/soybeanjs"
},
"license": "MIT",
"homepage": "https://github.com/soybeanjs/vite-plugin-vue-page-route",
"repository": {
"url": "https://github.com/soybeanjs/vite-plugin-vue-page-route.git"
},
"keywords": [
"soybeanjs",
"soybean",
"vite",
"vite-plugin",
"vite-plugin-vue",
"vite-plugin-vue-page-route",
"page-route",
"directory-route",
"file-based-route"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint . --fix",
"commit": "soy git-commit",
"cleanup": "soy cleanup",
"update-pkg": "soy update-pkg",
"update-version": "bumpp package.json",
"publish-pkg": "pnpm -r publish --access public",
"release": "pnpm update-version && pnpm publish-pkg",
"prepare": "pnpm -r run stub"
},
"dependencies": {
"@swc/core": "^1.3.26",
"chokidar": "^3.5.3",
"execa": "5.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"kolorist": "^1.6.0",
"magic-string": "^0.27.0",
"micromatch": "^4.0.5"
},
"devDependencies": {
"@soybeanjs/cli": "^0.1.6",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.11.18",
"@types/throttle-debounce": "^5.0.0",
"bumpp": "^8.2.1",
"esbuild-register": "^3.4.2",
"eslint": "^8.31.0",
"eslint-config-soybeanjs": "^0.2.2",
"lint-staged": "^13.1.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.5.0",
"tsx": "^3.12.2",
"typescript": "^4.9.4",
"vite": "^4.0.4"
},
"simple-git-hooks": {
"commit-msg": "pnpm soybean git-commit-verify",
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"eslint . --fix"
]
}
}