-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "music-list-downloader",
"type": "module",
"version": "0.0.3",
"packageManager": "pnpm@8.8.0",
"author": "Zero <gczgroup@qq.com>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"music-list-downloader": "./bin/bin.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"dev": "tsup && node ./bin/bin.js download-list 4930367030",
"dev:music": "tsup && node ./bin/bin.js download-music 354745",
"build": "tsup",
"prepublishOnly": "tsup",
"lint": "eslint . --fix",
"prepare": "husky install",
"lint-staged": "lint-staged",
"music-list-downloader": "node ./bin/bin.js"
},
"dependencies": {
"NeteaseCloudMusicApi": "^4.22.0",
"axios": "^1.7.7",
"commander": "^12.1.0",
"sanitize-filename": "^1.6.3",
"winston": "^3.14.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/types": "^17.8.1",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"tsup": "^8.3.0",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,vue,json,scss,less,html}": [
"echo 'skip lint-staged'"
]
}
}