forked from Binaryify/NeteaseCloudMusicApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.01 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": "NeteaseCloudMusicApi",
"version": "4.8.9",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
"test": "mocha -r intelli-espower-loader -t 60000 server.test.js main.test.js --exit",
"lint": "eslint \"**/*.{js,ts}\"",
"lint-fix": "eslint --fix \"**/*.{js,ts}\"",
"prepare": "husky install",
"pkgwin": "pkg . -t node14-win-x64 -o app",
"pkglinux": "pkg . -t node14-linux-x64 -o app",
"pkgmacos": "pkg . -t node14-macos-x64 -o app"
},
"bin": "./app.js",
"pkg": {
"scripts": "module/*.js",
"assets": [
"/node_modules/vm2/lib/contextify.js",
"/public"
]
},
"keywords": [
"网易云音乐",
"网易云",
"音乐",
"网易云音乐nodejs"
],
"main": "main.js",
"types": "./interface.d.ts",
"engines": {
"node": ">=12"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": "binaryify",
"license": "MIT",
"files": [
"module",
"util",
"plugins",
"main.d.ts",
"interface.d.ts",
"module_types",
"server.js",
"generateConfig.js",
"public"
],
"dependencies": {
"axios": "^1.2.2",
"express": "^4.17.1",
"express-fileupload": "^1.1.9",
"md5": "^2.3.0",
"music-metadata": "^7.5.3",
"pac-proxy-agent": "^5.0.0",
"qrcode": "^1.4.4",
"safe-decode-uri-component": "^1.2.1",
"tunnel": "^0.0.6",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/mocha": "^9.1.0",
"@types/node": "16.11.19",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"intelli-espower-loader": "1.1.0",
"lint-staged": "12.1.7",
"mocha": "10.0.0",
"power-assert": "1.6.1",
"prettier": "2.7.1",
"typescript": "4.5.2"
}
}