-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
103 lines (103 loc) · 2.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
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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "yun-playlist-downloader",
"version": "3.5.1",
"description": "NetEase CloudMusic downloader",
"type": "module",
"main": "dist/index.js",
"bin": {
"yun": "dist/bin.js"
},
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prepare": "husky",
"typecheck": "tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test-cover": "vitest run --coverage",
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
},
"repository": {
"type": "git",
"url": "git@github.com:magicdawn/yun-playlist-downloader.git"
},
"keywords": [
"163",
"cloudmusic",
"yunyinyue"
],
"author": "magicdawn",
"engines": {
"node": ">=16"
},
"license": "MIT",
"dependencies": {
"NeteaseCloudMusicApi": "^4.22.0",
"cleye": "^1.3.2",
"cli-table3": "^0.6.5",
"debug": "^4.3.5",
"delay": "^6.0.0",
"dl-vampire": "^2.1.2",
"filenamify": "^6.0.0",
"fs-extra": "^11.2.0",
"got": "14",
"humanize-duration": "^3.32.1",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"lodash-es": "^4.17.21",
"log-symbols": "^6.0.0",
"moment": "^2.30.1",
"ms": "^2.1.3",
"picocolors": "^1.0.1",
"promise.map": "^0.5.0",
"promise.retry": "^2.0.4",
"rc": "^1.2.8",
"react": "^18.3.1",
"update-notifier": "^7.1.0",
"valtio": "^1.13.2",
"yargs": "^17.7.2",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@magicdawn/eslint-config": "^0.1.0",
"@magicdawn/prettier-config": "^0.0.4",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/humanize-duration": "^3.27.4",
"@types/lodash-es": "^4.17.12",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.12",
"@types/rc": "^1.2.4",
"@types/react": "^18.3.3",
"@types/update-notifier": "^6.0.8",
"@types/yargs": "17.0.32",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^9.7.0",
"husky": "^9.1.2",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"should": "^13.2.3",
"tsup": "^8.2.3",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
]
},
"prettier": "@magicdawn/prettier-config",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}