-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 996 Bytes
/
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
{
"name": "react-router-tree",
"description": "Implement Next.js style routing in any Vite or Webpack based react application",
"version": "1.0.6",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"main": "./dist/react-router-tree.umd.cjs",
"module": "./dist/react-router-tree.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/react-router-tree.js",
"require": "./dist/react-router-tree.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-dts": "^1.7.1"
},
"peerDependencies": {
"react-router-dom": "^6.4.3"
}
}