-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.28 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.28 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
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
{
"name": "@btmuli/mucli",
"version": "1.5.2",
"description": "A Node Cli for personal use by BTMuli",
"packageManager": "pnpm@10.27.0",
"subVersion": {
"dev": "1.0.1",
"git": "1.0.1",
"mmd": "1.2.2",
"pip": "1.0.1",
"rs": "1.2.0"
},
"scripts": {
"dev": "tsx ./scripts/dev.ts",
"build": "tsx ./scripts/build.ts",
"build:dev": "tsx ./scripts/build.ts --dev",
"code:check": "eslint .",
"code:fmt": "prettier --write .",
"code:fix": "eslint --fix .",
"prepare": "husky"
},
"type": "module",
"bin": {
"muc": "dist/index.js"
},
"lint-staged": {
"*.{json,ts,yml}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"BTMuli",
"CLI",
"Node",
"Typescript"
],
"author": "BTMuli <bt-muli@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BTMuli/MuCli.git"
},
"homepage": "https://github.com/BTMuli/MuCli#readme",
"bugs": {
"url": "https://github.com/BTMuli/MuCli/issues"
},
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^1.13.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"fs-extra": "^11.3.3",
"glob": "^13.0.0",
"inquirer": "^13.1.0",
"ora": "^9.0.0",
"toml": "^3.0.0",
"tslib": "^2.8.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.0.3",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/parser": "^8.51.0",
"chokidar": "^5.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-yml": "^1.19.1",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.4.2",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rollup": "^4.54.0",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"yaml-eslint-parser": "^1.3.2"
}
}