-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "react-router-extends",
"version": "0.1.1",
"description": "Navigating in react-router by \"id\" instead of \"path\"",
"type": "module",
"source": "src/index.tsx",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
"default": "./dist/index.modern.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dundunlabs/react-router-extends.git"
},
"keywords": [
"react-router"
],
"author": "dung28-td",
"license": "MIT",
"bugs": {
"url": "https://github.com/dundunlabs/react-router-extends/issues"
},
"homepage": "https://github.com/dundunlabs/react-router-extends#readme",
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-router-dom": "^6.15.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-router-dom": "^6.15.0"
}
}