-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 906 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
{
"name": "next-pathmap",
"license": "MIT",
"version": "1.1.29",
"description": "Pathmap Generator for Next.js Pages",
"repository": "wonkooklee/next-pathmap",
"author": {
"name": "Wonkook Lee",
"url": "https://github.com/wonkooklee",
"email": "const.wonkook@gmail.com"
},
"engines": {
"node": ">=14.0.0"
},
"main": "out/index.js",
"bin": "out/bin.js",
"types": "out/index.d.ts",
"scripts": {
"build": "rm -rf out && npx tsc"
},
"keywords": [
"generator",
"next.js",
"next",
"pages",
"path",
"pathmap",
"route"
],
"type": "module",
"dependencies": {
"globby": "13.1.4",
"inquirer": "9.2.0",
"json-format": "1.0.1",
"zod": "3.21.4"
},
"devDependencies": {
"@types/node": "^18.16.3",
"typescript": "^5.0.4"
},
"publishConfig": {
"@wonkooklee:registry": "https://npm.pkg.github.com"
}
}