-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.06 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ts-node-cli-template",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"type": "module",
"bin": {
"ts-node-cli": "./bin/cli.js"
},
"files": [
"package.json",
"README.md",
"lib"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc && tsc-alias",
"commit": "cz",
"release": "git stash && git pull && release-it && git stash pop",
"do-publish": "pnpm build && pnpm publish --access public"
},
"keywords": [
"typescript 脚手架",
"cli",
"typescript 脚手架",
"ts 脚手架"
],
"author": "lattelu",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/lattelu/ts-node-cli-template.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "^0.6.0",
"axios": "^1.3.4",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"download-git-repo": "^3.0.2",
"ejs": "^3.1.8",
"figlet": "^1.5.2",
"fs-extra": "^11.1.0",
"gitly": "^2.4.0",
"inquirer": "^9.1.4",
"ora": "^6.1.2",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.3",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@release-it/conventional-changelog": "^5.1.1",
"@types/ejs": "^3.1.2",
"@types/figlet": "^1.5.5",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": ">=5.43.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"release-it": "^15.6.0",
"tsc-alias": "^1.8.2",
"tsx": "^3.12.3",
"typescript": ">=4.4"
}
}