-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "zenn-create",
"version": "0.1.0",
"description": "Unofficial Zenn cli for create files with slug",
"keywords": [
"zenn"
],
"repository": "github:soags/zenn-create",
"license": "MIT",
"author": "soags",
"main": "dist/main.js",
"bin": {
"zenn-create": "dist/main.js"
},
"scripts": {
"dev": "ts-node src/main.ts",
"start": "node dist/main.js",
"build": "tsc -p .",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"crypto": "^1.0.1",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
}
}