-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.32 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.32 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "react-router-auto-routes",
"version": "0.8.3",
"description": "Automatic folder-based routing with colocation for React Router v7+",
"keywords": [
"colocation",
"file-based",
"flat-routes",
"flexible",
"react-router",
"routes",
"routing"
],
"license": "MIT",
"author": {
"name": "Kenn Ejima",
"email": "kenn@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kenn/react-router-auto-routes.git"
},
"bin": {
"migrate-auto-routes": "dist/cli.cjs"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"test": "NODE_OPTIONS=\"--no-warnings=DEP0040\" vitest",
"typecheck": "tsc -b",
"prepublishOnly": "npm run typecheck && npm run build && npm run test -- --run",
"np": "np"
},
"dependencies": {
"picomatch": "^4.0.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/picomatch": "^4.0.2",
"np": "^11.0.2",
"oxfmt": "^0.40.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"peerDependencies": {
"typescript": ">=5.0"
},
"engines": {
"node": ">=20"
}
}