-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
64
65
66
67
68
69
70
{
"name": "south-cli",
"version": "0.4.7",
"description": "cli脚手架生成项目",
"repository": "https://github.com/SouthLiu/south-cli",
"homepage": "https://github.com/SouthLiu/south-cli",
"main": "./bin/src/cli/index.ts",
"bin": {
"south": "./bin/src/cli/index.js"
},
"scripts": {
"dev": "tsc && gulp ejs",
"tsc": "tsc -w && gulp ejs",
"ejs": "gulp ejs",
"link:dev": "tsc && gulp ejs && concurrently \"npm link\"",
"adduser": "npm adduser",
"upload": "tsc && gulp ejs && concurrently \"npm publish\""
},
"files": [
"bin"
],
"author": {
"name": "South",
"email": "[email protected]"
},
"keywords": [
"south-cli",
"south",
"cli"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"axios": "^1.7.9",
"commander": "^13.0.0",
"crypto-js": "^4.2.0",
"download-git-repo": "^3.0.2",
"ejs": "^3.1.10",
"figlet": "^1.8.0",
"fs-extra": "^11.3.0",
"js-cookie": "^3.0.5",
"loading-cli": "^1.1.2",
"puppeteer": "^24.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/crypto-js": "^4.2.2",
"@types/ejs": "^3.1.5",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"concurrently": "^9.1.2",
"eslint": "^9.18.0",
"gulp": "^5.0.0",
"husky": "^9.1.7",
"mustache": "^4.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}