-
Notifications
You must be signed in to change notification settings - Fork 524
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 KB
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
61
62
63
64
65
66
67
{
"name": "@meting/core",
"version": "1.6.1",
"description": "A powerful music API framework to accelerate development - Node.js port. Support Netease, Tencent, Kugou, Baidu, Kuwo music platforms.",
"main": "./lib/meting.js",
"module": "./lib/meting.esm.js",
"type": "module",
"exports": {
"import": "./lib/meting.esm.js",
"require": "./lib/meting.js"
},
"files": [
"lib/",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"prepublishOnly": "npm run build",
"test": "npm run build && node test/test.js",
"example": "npm run build && node test/example.js",
"start": "npm run build && node test/example.js"
},
"keywords": [
"music",
"api",
"netease",
"tencent",
"kugou",
"baidu",
"kuwo",
"nodejs",
"lightweight",
"music-api",
"streaming",
"search",
"lyrics",
"no-dependencies"
],
"author": {
"name": "metowolf",
"email": "i@i-meto.com",
"url": "https://i-meto.com"
},
"contributors": [
{
"name": "Claude Code",
"email": "noreply@anthropic.com",
"url": "https://claude.ai/code"
}
],
"license": "MIT",
"homepage": "https://github.com/metowolf/Meting",
"repository": {
"type": "git",
"url": "https://github.com/metowolf/Meting.git"
},
"bugs": {
"url": "https://github.com/metowolf/Meting/issues"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.49.0"
}
}