-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"type": "module",
"name": "@wrynn/ts-cli",
"version": "1.0.0",
"description": "简单的typescript脚手架工具",
"main": "./lib/index.js",
"bin": {
"merryChrismas": "./lib/merryChrismas.js"
},
"scripts": {
"dev:comment": "启动开发环境",
"dev": "ts-node-dev --respawn --transpile-only src/merryChrismas.ts -d --show-log 20 -x we",
"prepare:comment": "安装husky",
"prepare": "husky install",
"build:comment": "安装husky",
"build": "rm -rf lib && tsc"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/inquirer": "^8.1.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jsdoc": "^3.6.7",
"lint-staged": "^12.1.2",
"prettier": "2.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"author": "",
"license": "ISC",
"dependencies": {
"ascii-art": "^2.8.5",
"chalk": "^5.0.0",
"chalk-animation": "^1.6.0",
"chalk-pipe": "^5.1.1",
"clear-console": "^1.1.0",
"cmdify": "^0.0.4",
"commander": "^8.3.0",
"gradient-string": "^2.0.0",
"inquirer": "^8.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"shelljs": "^0.8.4"
}
}