-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1015 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
36
37
38
39
40
41
42
43
44
45
46
{
"type": "module",
"name": "@nano-router/routes",
"version": "3.1.0",
"description": "Objects to setup routes",
"main": "./dist/bundle.cjs",
"module": "dist/bundle.mjs",
"exports": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle.cjs"
},
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --build --clean && tsc --build && rollup -c rollup.config.js"
},
"keywords": [
"React",
"router",
"routes",
"simple"
],
"author": "Sune Simonsen",
"license": "MIT",
"bugs": "https://github.com/sunesimonsen/nano-router/issues",
"repository": {
"type": "git",
"url": "https://github.com/sunesimonsen/nano-router"
},
"sideEffects": false,
"dependencies": {
"@nano-router/path": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"rollup": "^4.24.4",
"ts-jest": "^29.1.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
}
}