package.json 1.5 KB
Newer Older
zhuangtongfa's avatar
init  
zhuangtongfa 已提交
1
{
2
  "name": "NeteaseCloudMusicApi",
3
  "version": "4.0.12",
4 5 6 7
  "description": "网易云音乐 NodeJS 版 API",
  "scripts": {
    "start": "node app.js",
    "test": "mocha -r intelli-espower-loader -t 20000 app.test.js --exit",
A
a632079 已提交
8
    "lint": "eslint **/*.{js,ts}",
G
greenhat616 已提交
9 10
    "lint-fix": "eslint --fix **/*.{js,ts}",
    "prepare": "husky install"
11 12 13 14 15 16 17 18
  },
  "keywords": [
    "网易云音乐",
    "网易云",
    "音乐",
    "网易云音乐nodejs"
  ],
  "main": "main.js",
19
  "types": "./interface.d.ts",
20 21 22 23 24 25 26 27 28 29 30 31 32
  "engines": {
    "node": ">=12"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "author": "binaryify",
  "license": "MIT",
  "files": [
    "module",
33
    "util",
A
a632079 已提交
34 35 36 37
    "plugins",
    "main.d.ts",
    "interface.d.ts",
    "module_types"
38 39
  ],
  "dependencies": {
40
    "axios": "^0.21.1",
41
    "express": "^4.17.1",
B
binaryify 已提交
42
    "express-fileupload": "^1.1.9",
43 44
    "md5": "^2.3.0",
    "music-metadata": "^7.5.3",
45
    "pac-proxy-agent": "^4.0.0",
B
binaryify 已提交
46
    "qrcode": "^1.4.4",
47
    "tunnel": "^0.0.6"
48 49
  },
  "devDependencies": {
50
    "@types/node": "14.14.37",
51 52
    "@typescript-eslint/eslint-plugin": "4.4.1",
    "@typescript-eslint/parser": "4.4.1",
53
    "eslint": "7.23.0",
54
    "eslint-config-prettier": "7.1.0",
55
    "eslint-plugin-html": "6.1.2",
56
    "eslint-plugin-prettier": "3.4.0",
G
greenhat616 已提交
57
    "husky": "6.0.0",
R
Renovate Bot 已提交
58
    "intelli-espower-loader": "1.0.1",
59
    "lint-staged": "11.0.0",
R
Renovate Bot 已提交
60
    "mocha": "8.3.2",
A
a632079 已提交
61
    "power-assert": "1.6.1",
62
    "prettier": "2.3.0",
63
    "typescript": "4.2.3"
64
  }
B
binaryify 已提交
65
}