package.json 1.8 KB
Newer Older
zhuangtongfa's avatar
init  
zhuangtongfa 已提交
1
{
2
  "name": "NeteaseCloudMusicApi",
3
  "version": "4.2.0",
4 5 6 7
  "description": "网易云音乐 NodeJS 版 API",
  "scripts": {
    "start": "node app.js",
    "test": "mocha -r intelli-espower-loader -t 20000 app.test.js --exit",
B
binaryify 已提交
8 9
    "lint": "eslint \"**/*.{js,ts}\"",
    "lint-fix": "eslint --fix \"**/*.{js,ts}\"",
Eddy · Cui's avatar
Eddy · Cui 已提交
10 11 12 13 14 15 16 17
    "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"
18 19 20 21 22 23 24 25
  },
  "keywords": [
    "网易云音乐",
    "网易云",
    "音乐",
    "网易云音乐nodejs"
  ],
  "main": "main.js",
26
  "types": "./interface.d.ts",
27 28 29 30 31 32 33 34 35 36 37 38 39
  "engines": {
    "node": ">=12"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "author": "binaryify",
  "license": "MIT",
  "files": [
    "module",
40
    "util",
A
a632079 已提交
41 42 43 44
    "plugins",
    "main.d.ts",
    "interface.d.ts",
    "module_types"
45 46
  ],
  "dependencies": {
47
    "axios": "^0.24.0",
48
    "express": "^4.17.1",
B
binaryify 已提交
49
    "express-fileupload": "^1.1.9",
50 51
    "md5": "^2.3.0",
    "music-metadata": "^7.5.3",
52
    "pac-proxy-agent": "^5.0.0",
B
binaryify 已提交
53
    "qrcode": "^1.4.4",
54
    "safe-decode-uri-component": "^1.2.1",
L
Lunan Li 已提交
55 56
    "tunnel": "^0.0.6",
    "yargs": "^17.1.1"
57 58
  },
  "devDependencies": {
59
    "@types/node": "16.11.9",
60 61
    "@typescript-eslint/eslint-plugin": "5.0.0",
    "@typescript-eslint/parser": "5.0.0",
62
    "eslint": "8.7.0",
63
    "eslint-config-prettier": "8.3.0",
64
    "eslint-plugin-html": "6.2.0",
65
    "eslint-plugin-prettier": "4.0.0",
66
    "husky": "7.0.4",
67
    "intelli-espower-loader": "1.1.0",
68
    "lint-staged": "12.1.2",
69
    "mocha": "8.4.0",
A
a632079 已提交
70
    "power-assert": "1.6.1",
71
    "prettier": "2.3.0",
72
    "typescript": "4.5.2"
73
  }
B
binaryify 已提交
74
}