-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "net-cloud",
"type": "module",
"version": "0.0.10",
"packageManager": "[email protected]",
"description": "网易云音乐云盘管理工具",
"keywords": [],
"homepage": "https://github.com/MoonlightSmile/net-cloud#readme",
"license": "MIT",
"author": "MoonlightSmile <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/MoonlightSmile/net-cloud.git"
},
"main": "./dist/index.mjs",
"bin": {
"netc": "bin/index.mjs"
},
"files": [
"dist",
"bin"
],
"sideEffects": false,
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && npm publish",
"start": "esmo src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.0",
"@antfu/ni": "^0.16.2",
"@antfu/utils": "^0.5.2",
"@types/inquirer": "^8.2.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"bumpp": "^7.1.1",
"eslint": "^8.15.0",
"esmo": "^0.14.1",
"pnpm": "^7.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.4",
"unbuild": "^0.7.4",
"vite": "^2.9.8",
"vitest": "^0.12.3"
},
"dependencies": {
"NeteaseCloudMusicApi": "^4.5.14",
"commander": "^9.2.0",
"dayjs": "^1.11.2",
"form-data": "^4.0.0",
"inquirer": "^8.2.4",
"lodash": "^4.17.21",
"ora": "^6.1.0"
}
}