package.json 1.7 KB
Newer Older
zhuangtongfa's avatar
init  
zhuangtongfa 已提交
1
{
2
  "name": "NeteaseCloudMusicApi",
B
update  
binaryify 已提交
3
  "version": "4.0.17",
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.21.1",
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
    "tunnel": "^0.0.6"
55 56
  },
  "devDependencies": {
57
    "@types/node": "14.17.5",
58 59
    "@typescript-eslint/eslint-plugin": "4.4.1",
    "@typescript-eslint/parser": "4.4.1",
60
    "eslint": "7.32.0",
61
    "eslint-config-prettier": "8.3.0",
62
    "eslint-plugin-html": "6.1.2",
63
    "eslint-plugin-prettier": "3.4.0",
64
    "husky": "7.0.1",
65
    "intelli-espower-loader": "1.1.0",
66
    "lint-staged": "11.0.1",
67
    "mocha": "8.4.0",
A
a632079 已提交
68
    "power-assert": "1.6.1",
69
    "prettier": "2.3.0",
70
    "typescript": "4.3.5"
71
  }
B
binaryify 已提交
72
}