-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "generate-router",
"version": "1.0.14",
"type": "module",
"description": "A utility to generate TypeScript route definitions for Next.js projects.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hansolbangul/generate-router.git"
},
"homepage": "https://github.com/hansolbangul/generate-router",
"bin": {
"generate-router": "dist/cli.cjs"
},
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"prepare": "pnpm run build"
},
"keywords": ["nextjs", "typescript", "routes", "generator", "cli"],
"author": "hansolbangul",
"license": "ISC",
"packageManager": "pnpm@9.9.0",
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.10.0",
"@types/yargs": "^17.0.33",
"jest": "^29.7.0",
"mock-fs": "^5.4.1",
"rollup": "^4.27.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=16"
}
}