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