-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "netease-cloud-music-download",
"description": "A simple Node.js CLI library that helps you to download mp3 file for NetEase Music source",
"version": "0.1.0",
"type": "module",
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"files": [
"dist"
],
"bin": {
"wyy": "./dist/cli.js",
"netease-cloud-music-download": "./dist/cli.js"
},
"scripts": {
"dev": "ts-node bin/cli.ts",
"prepare": "husky",
"lint": "biome check src bin --write",
"lint-staged": "lint-staged",
"build": "tsup",
"watch": "tsup --watch",
"install": "npm run build"
},
"author": {
"name": "gengarr",
"email": "97z4moon@gmail.com",
"url": "https://github.com/gengark"
},
"homepage": "https://github.com/gengark/netease-cloud-music-download#readme",
"repository": "git@github.com:gengark/netease-cloud-music-download.git",
"bugs": "https://github.com/gengark/netease-cloud-music-download/issue",
"keywords": [
"netease",
"music",
"mp3",
"download",
"netease-cloud-music",
"网易云音乐"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@inquirer/confirm": "^5.1.1",
"@inquirer/select": "^4.0.4",
"cli-progress": "^3.12.0",
"clipboardy": "^4.0.0",
"open": "^10.1.0",
"ora": "^8.1.1",
"yargs": "^17.7.2"
}
}