mirror of
https://github.com/metowolf/Meting.git
synced 2026-09-02 22:55:48 +08:00
- 酷狗新增 songinfo 签名接口,有 cookie 时自动使用新接口获取播放链接 - 保留老接口作为无 cookie 时的降级方案 - 优化歌曲格式化:优先使用 authors 数组和 songName 字段 - 修复 base.js 中 format 判断逻辑,支持 falsy 格式值 - 简化 CI 中 npm 认证配置,使用 setup-node 内置 registry-url - bump version to v1.6.1
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|