-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "ximalaya_downloader",
"version": "1.0.0",
"description": "Ximalaya Downloader, helps VIP users download their favorite albums",
"author": "watermelon <844704781@qq.com>",
"license": "GPL",
"scripts": {
"start": "electron .",
"pkg": "pkg dist/xmd.js --targets node20-win-x64,node20-linux-x64,node20-macos-x64 --public --out-dir dist",
"build:rollup": "rollup -c",
"release": "npm i && npm run build:rollup && npm run pkg"
},
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.7.0",
"axios-retry": "^4.2.0",
"commander": "^12.0.0",
"crypto-js": "^4.2.0",
"fake-ua": "^1.0.4",
"log4js": "^6.9.1",
"mkdirp": "^3.0.1",
"nedb": "^1.8.0",
"p-limit": "^5.0.0",
"random-useragent": "^0.5.0",
"rimraf": "^5.0.7",
"tree-kill": "^1.2.2"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@yao-pkg/pkg": "^5.11.5",
"rollup": "^4.18.0"
}
}