-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"type": "module",
"name": "@nano-router/react",
"version": "3.1.1",
"description": "React integration for @nano-router/router",
"main": "dist/bundle.cjs",
"module": "dist/bundle.mjs",
"exports": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle.cjs"
},
"types": "./lib/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --build --clean && tsc --build && rollup -c rollup.config.js"
},
"keywords": [
"router",
"react",
"minimal",
"tiny"
],
"author": "Sune Simonsen <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/sunesimonsen/nano-router/issues",
"repository": {
"type": "git",
"url": "https://github.com/sunesimonsen/nano-router"
},
"sideEffects": false,
"peerDependencies": {
"@nano-router/history": "^3.0.0",
"react": "16 | 17 | 18"
},
"devDependencies": {
"@nano-router/history": "^3.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dom-testing": "^1.12.0",
"rollup": "^4.24.4",
"ts-jest": "^29.1.2"
},
"dependencies": {
"@nano-router/router": "^3.1.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
}
}