-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.73 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.73 KB
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": "vite-plugin-react-routes",
"version": "0.1.3",
"description": "A vite plugin support setup React Router by JSON config file.",
"keywords": [
"vite-plugin",
"vite-plugin-react"
],
"homepage": "https://github.com/jtsang4/vite-plugin-react-routes#readme",
"bugs": {
"url": "https://github.com/jtsang4/vite-plugin-react-routes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtsang4/vite-plugin-react-routes.git"
},
"license": "MIT",
"author": "James Tsang <wtzeng1@gmail.com>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"client.d.ts"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint --ext .js,.ts .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"devDependencies": {
"@antfu/ni": "^0.12.0",
"@jtsang/eslint-config": "^0.20.0",
"@types/node": "^17.0.7",
"@types/react": "^17.0.39",
"@types/uppercamelcase": "^3.0.0",
"bumpp": "^7.1.1",
"eslint": "^8.6.0",
"esno": "^0.13.0",
"react": "^17.0.2",
"react-router-dom": "^6.2.1",
"typescript": "^4.5.4",
"unbuild": "^0.6.7",
"vite": "^2.7.10",
"vitest": "^0.0.129"
},
"dependencies": {
"esbuild": "^0.14.20",
"jiti": "^1.12.15",
"uppercamelcase": "^3.0.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-router-dom": "^6.2.1",
"vite": "^2.7.10"
}
}