-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.87 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
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@minstack/router",
"description": "Basic routing for React.",
"author": "Chris Ackerman <chris@topher.land>",
"license": "ISC",
"version": "1.0.1",
"files": [
"lib/**"
],
"directories": {
"lib": "lib"
},
"type": "module",
"types": "lib/cjs/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/cjs/index.d.ts",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
}
},
"sideEffects": false,
"scripts": {
"test": "rc npm-test -o",
"start": "vite --host",
"preview": "vite preview --host",
"prepack": "del-cli *.tgz && rc npm-prepack",
"modernize": "npx npm-check-updates -i --format group"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.26.2",
"del-cli": "^5.0.0",
"eslint": "^8.30.0",
"eslint-config-rational": "^2.0.8",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^20.0.3",
"normalize.css": "^8.0.1",
"parallel-rc": "^1.0.12",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-full-reload": "^1.0.5",
"vitest": "^0.26.2"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"overrides": {
"tsconfig-paths": {
"json5": "^2.2.2"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/theminstack/router.git"
},
"keywords": [
"react",
"route",
"router",
"routing",
"history",
"link",
"location",
"navigate",
"navigation"
]
}