forked from zonemeen/musicn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.84 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
{
"name": "musicn",
"version": "1.4.3",
"description": "Download music in your command line",
"bin": {
"musicn": "bin/download.js",
"msc": "bin/download.js"
},
"scripts": {
"build": "tsup",
"lint": "eslint --ext .ts src/",
"prepare": "husky install",
"release": "bumpp --commit --push --tag"
},
"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": {
"@inquirer/checkbox": "0.0.24-alpha.0",
"cli-progress": "^3.9.1",
"colorette": "^2.0.16",
"commander": "^8.1.0",
"got": "^11.8.2",
"ora": "^6.1.0",
"pretty-bytes": "^6.0.0",
"update-notifier": "^6.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.0.0",
"@types/update-notifier": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"bumpp": "^7.1.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.4.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}