-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "react-magic-router",
"version": "6.1.3",
"description": "React magic router support system type for react router dom v6",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cin12211/react-magic-router.git"
},
"bugs": {
"url": "https://github.com/cin12211/react-magic-router/issues"
},
"homepage": "https://github.com/cin12211/react-magic-router#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"build": "npm run type-check && tsup src/index.ts --format esm,cjs --dts --minify",
"publish-to-npm": "npm run build && npm publish --access public"
},
"license": "ISC",
"dependencies": {
"query-string": "^9.1.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"react-router-dom": "6.*"
},
"devDependencies": {
"@types/react": "^16.14.60",
"terser": "^5.31.3",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
}
}