-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "@design-view/starter-cli",
"version": "1.1.3",
"description": "用于快速初始化不同项目模块的脚手架",
"bin": {
"starter": "bin/starter"
},
"scripts": {
"npm:up": "pnpx npm-check-updates -u",
"clean": "pnpx rimraf node_modules",
"clean:cache": "pnpx rimraf node_modules/.cache",
"lint:format": "prettier --write --loglevel warn \"**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"release": "bumpp --commit \"release: release v%s\" --push --tag && npm publish",
"prepare": "husky install"
},
"keywords": [
"starter",
"cli",
"starter-cli",
"template"
],
"author": "Archer <[email protected]>",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^9.3.0",
"download-git-repo": "^3.0.2",
"inquirer": "^8.2.4",
"log-symbols": "^4.0.0",
"ora": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"bumpp": "^7.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2"
}
}