-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "enjoy-project-tool",
"version": "1.4.3",
"description": "Enjoy 🌈 命令行助手",
"main": "dist/main.js",
"scripts": {
"dev": "nodemon",
"build": "npx etsc && cp -rv src/template dist",
"lint": "eslint 'src/**/*' --fix",
"prettier": "prettier --write '**/*.{ts,js,json,markdown}'",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,js,json,markdown}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"bin": {
"enjoy": "dist/main.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.1.0",
"concurrently": "^6.4.0",
"download": "^8.0.0",
"download-git-repo": "^3.0.2",
"flyio": "^0.6.14",
"inquirer": "^8.1.2",
"leven": "^3.1.0",
"ora": "^5.4.1",
"random-useragent": "^0.5.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/concurrently": "^6.4.0",
"@types/download": "^8.0.1",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^7.3.3",
"@types/node": "^16.7.10",
"@types/random-useragent": "^0.3.0",
"@types/semver": "^7.3.9",
"@types/superagent": "^4.1.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"esbuild": "^0.14.8",
"esbuild-node-tsc": "^1.8.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.2"
}
}