-
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": "cli-template",
"type": "module",
"version": "1.0.0",
"description": "Modern Node.js Command Line Tool Project Template.",
"author": "情绪羊 <[email protected]>",
"license": "MIT",
"bin": {
"command-name": "./dist/index.js"
},
"files": [
"CHANGELOG.md",
"dist"
],
"scripts": {
"prepare": "husky",
"prepublishOnly": "npm run build",
"lint": "eslint . --fix --ext .js,.ts",
"build": "tsup",
"watch": "tsup --watch",
"changeset": "changeset",
"versions": "changeset version"
},
"dependencies": {
"commander": "^12.1.0",
"node-cleanup": "^2.1.2",
"typescript": "^5.6.3",
"update-notifier": "^7.3.1",
"zx": "^7.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^20.17.1",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.4"
}
}