-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "yun-kit",
"version": "0.5.1",
"description": "前端开发辅助工具",
"bin": {
"yk": "bin/index.js"
},
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"commit": "czg",
"release": "release-it --config .release-it.cjs",
"format": "prettier --write ."
},
"keywords": [
"cli",
"engineer",
"kit",
"aid"
],
"files": [
"bin",
"lib",
"utils"
],
"author": {
"name": "liuyun",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/yun8711/yun-kit.git"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@release-it/conventional-changelog": "^7.0.0",
"@types/node": "^20.4.7",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"release-it": "^16.1.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"shelljs": "^0.8.5"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.0.0"
},
"packageManager": "[email protected]"
}