koishi-plugin-music-to-voice 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +25 -14
- package/dist/index.d.ts +25 -14
- package/dist/index.js +311 -322
- package/dist/index.mjs +309 -322
- package/package.json +5 -3
- package/src/index.ts +384 -440
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koishi-plugin-music-to-voice",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "音乐聚合点播语音插件:搜索歌曲、翻页选择、序号点播,可选转码发送语音。数据来源:GD音乐台 API。",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -38,10 +38,12 @@
|
|
|
38
38
|
"koishi": "^4.18.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"axios": "^1.
|
|
41
|
+
"axios": "^1.13.4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"
|
|
44
|
+
"@types/node": "^25.1.0",
|
|
45
|
+
"koishi": "^4.18.10",
|
|
46
|
+
"koishi-plugin-puppeteer": "^3.9.0",
|
|
45
47
|
"tsup": "^8.2.4",
|
|
46
48
|
"typescript": "^5.4.5"
|
|
47
49
|
},
|