-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 862 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
{
"name": "routescape",
"version": "1.0.7",
"description": "Minimalist router for React apps",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm-run-all clean compile",
"clean": "node -e \"require('node:fs').rmSync('dist', {force: true, recursive: true});\"",
"compile": "esbuild index.ts --bundle --outdir=dist --platform=neutral --external:react",
"prepublishOnly": "npm run build",
"preversion": "npm run build"
},
"keywords": [
"react",
"react router",
"router",
"spa",
"history"
],
"repository": {
"type": "git",
"url": "git://github.com/axtk/routescape.git"
},
"author": "axtk",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@types/react": "^19.0.2",
"esbuild": "^0.24.0",
"npm-run-all": "^4.1.5"
}
}