-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 1.96 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
{
"name": "musicn",
"version": "1.4.23",
"description": "Download music in your command line",
"bin": {
"musicn": "bin/cli.js",
"msc": "bin/cli.js"
},
"scripts": {
"build": "tsup",
"lint": "eslint --ext .ts src/",
"prepare": "husky install",
"release": "bumpp --commit --push --tag",
"test": "vitest"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/zonemeen/musicn.git"
},
"keywords": [
"music",
"musicn",
"SQ",
"ZQ",
"free",
"download",
"music download",
"migu",
"netease-cloud-music",
"terminal",
"command line",
"command-line-tool",
"cli",
"cli-tool"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"bin",
"README.md"
],
"author": "zonemeen",
"license": "MIT",
"bugs": {
"url": "https://github.com/zonemeen/musicn/issues"
},
"homepage": "https://github.com/zonemeen/musicn#readme",
"dependencies": {
"cac": "^6.7.14",
"cli-progress": "3.11.2",
"colorette": "2.0.19",
"got": "12.3.1",
"inquirer": "^9.1.4",
"ora": "6.1.2",
"pretty-bytes": "6.0.0",
"update-notifier": "6.0.2"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@types/cli-progress": "3.11.0",
"@types/inquirer": "9.0.1",
"@types/node": "18.7.6",
"@types/update-notifier": "6.0.1",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"bumpp": "8.2.1",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"esno": "^0.16.3",
"globby": "^13.1.2",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"path-exists": "^5.0.0",
"prettier": "2.7.1",
"sinon": "^14.0.1",
"tsup": "6.2.2",
"typescript": "4.7.4",
"vitest": "^0.24.3"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}