-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "cli-stucture",
"description": "",
"version": "0.0.1",
"main": "index.js",
"bin": {
"helium": "bin/helium"
},
"scripts": {
"preinstall": "husky",
"clean": "rm -rf ./lib",
"build": "npm run clean && tsc",
"watch": "tsc -w",
"lint": "eslint src/ --fix --cache --quiet"
},
"dependencies": {
"chalk": "^4.1.2",
"consola": "^3.2.3",
"didyoumean": "^1.2.2",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/didyoumean": "^1.2.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.12",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort": "^4.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"files": [
"bin",
"lib"
],
"author": "zhihengzuo@gmail.com",
"license": "MIT"
}