-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.46 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
{
"name": "vite-plugin-react-router-pages",
"version": "1.1.4",
"description": "",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"packageManager": "^[email protected]",
"engines": {
"node": ">= 16.0.0",
"pnpm": ">= 8.7.6"
},
"scripts": {
"build": "unbuild",
"release": "pnpm run build && npm publish",
"clean": "rm -rf pnpm-lock.yaml node_modules **/*/node_modules"
},
"keywords": [
"vite-plugin",
"react",
"react-router",
"react-router-v6",
"pages",
"react-pages"
],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"path": "^0.12.7"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-router-dom": "^6.18.0",
"vite": "^4.5.0 || ^5.0.0"
}
}