-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "node_music_api",
"version": "0.0.1-0",
"description": "🎵 A Node.js library to access Netease & QQ music by web api.",
"keywords": [],
"author": "fusee-code-lab",
"repository": {
"type": "git",
"url": "https://github.com/fusee-code-lab"
},
"engines": {
"node": ">=12.0.0"
},
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"typings": "dist/main/src/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.js -w",
"doc": "typedoc ./src --out dist/docs",
"fix:prettier": "prettier \"./src\" --write",
"test:prettier": "prettier \"./src\" --list-different",
"version:major": "standard-version -r major",
"version:minor": "standard-version -r minor",
"version:patch": "standard-version -r patch",
"version:pre": "standard-version --prerelease",
"version:alpha": "standard-version --prerelease alpha"
},
"dependencies": {
"node-abort-controller": "^2.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/node": "^16.7.13",
"@types/node-fetch": "^2.5.8",
"prettier": "^2.3.1",
"rollup": "^2.51.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.3.0",
"tslib": "^2.3.0",
"typedoc": "^0.22.2",
"typescript": "^4.3.2"
}
}