-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "vite-plugin-conventional-routes",
"version": "0.1.12-beta.12",
"description": "vite plugin to generate conventional routes",
"keywords": [
"vite",
"vite plugin",
"conventional routes"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Codpoe/vite-plugins-for-react.git"
},
"bugs": {
"url": "https://github.com/Codpoe/vite-plugins-for-react/issues"
},
"homepage": "https://github.com/Codpoe/vite-plugins-for-react#readme",
"author": "Codpoe <[email protected]> (https://github.com/codpoe)",
"files": [
"dist",
"shim.d.ts"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "rimraf dist && tsc"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/micromatch": "^4.0.2"
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"jest-docblock": "^28.0.2",
"magic-string": "^0.26.2",
"micromatch": "^4.0.5",
"upath": "^2.0.1"
}
}