distube 5.0.6 → 5.1.0
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/README.md +52 -38
- package/dist/index.d.mts +472 -464
- package/dist/index.d.ts +474 -464
- package/dist/index.js +1616 -1613
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1614 -1611
- package/dist/index.mjs.map +1 -1
- package/package.json +26 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "distube",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A powerful Discord.js module for simplifying music commands and effortless playback of various sources with integrated audio filters.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -50,35 +50,29 @@
|
|
|
50
50
|
"homepage": "https://distube.js.org/",
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"tiny-typed-emitter": "^2.1.0",
|
|
53
|
-
"undici": "^
|
|
53
|
+
"undici": "^7.16.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@
|
|
57
|
-
"@commitlint/
|
|
56
|
+
"@biomejs/biome": "^2.3.10",
|
|
57
|
+
"@commitlint/cli": "^20.2.0",
|
|
58
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
58
59
|
"@discordjs/opus": "^0.10.0",
|
|
59
|
-
"@discordjs/voice": "^0.
|
|
60
|
-
"@types/node": "^
|
|
60
|
+
"@discordjs/voice": "^0.19.0",
|
|
61
|
+
"@types/node": "^25.0.3",
|
|
61
62
|
"@types/tough-cookie": "^4.0.5",
|
|
62
|
-
"@
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"discord-api-types": "^0.37.119",
|
|
66
|
-
"discord.js": "^14.18.0",
|
|
63
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
64
|
+
"discord-api-types": "^0.38.37",
|
|
65
|
+
"discord.js": "^14.25.1",
|
|
67
66
|
"esbuild-plugin-version-injector": "^1.2.1",
|
|
68
|
-
"eslint": "^8.57.1",
|
|
69
|
-
"eslint-config-distube": "^1.7.1",
|
|
70
67
|
"husky": "^9.1.7",
|
|
71
|
-
"nano-staged": "^0.
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"typescript": "^5.7.3",
|
|
80
|
-
"vite-tsconfig-paths": "^5.1.4",
|
|
81
|
-
"vitest": "^3.0.5"
|
|
68
|
+
"nano-staged": "^0.9.0",
|
|
69
|
+
"tsup": "^8.5.1",
|
|
70
|
+
"typedoc": "^0.28.15",
|
|
71
|
+
"typedoc-material-theme": "^1.4.1",
|
|
72
|
+
"typedoc-plugin-extras": "^4.0.1",
|
|
73
|
+
"typescript": "^5.9.3",
|
|
74
|
+
"vite-tsconfig-paths": "^6.0.3",
|
|
75
|
+
"vitest": "^4.0.16"
|
|
82
76
|
},
|
|
83
77
|
"peerDependencies": {
|
|
84
78
|
"@discordjs/voice": "*",
|
|
@@ -86,11 +80,11 @@
|
|
|
86
80
|
},
|
|
87
81
|
"nano-staged": {
|
|
88
82
|
"*.ts": [
|
|
89
|
-
"
|
|
90
|
-
"
|
|
83
|
+
"biome check --write --no-errors-on-unmatched",
|
|
84
|
+
"pnpm run type"
|
|
91
85
|
],
|
|
92
|
-
"*.{json
|
|
93
|
-
"
|
|
86
|
+
"*.{js,json}": [
|
|
87
|
+
"biome check --write --no-errors-on-unmatched"
|
|
94
88
|
]
|
|
95
89
|
},
|
|
96
90
|
"engines": {
|
|
@@ -99,11 +93,11 @@
|
|
|
99
93
|
"scripts": {
|
|
100
94
|
"test": "vitest run",
|
|
101
95
|
"docs": "typedoc",
|
|
102
|
-
"lint": "
|
|
103
|
-
"lint:fix": "
|
|
104
|
-
"prettier": "
|
|
96
|
+
"lint": "biome ci .",
|
|
97
|
+
"lint:fix": "biome check --write --unsafe",
|
|
98
|
+
"prettier": "biome format --write",
|
|
105
99
|
"build": "tsup",
|
|
106
100
|
"type": "tsc --noEmit",
|
|
107
|
-
"update": "pnpm up -L
|
|
101
|
+
"update": "pnpm up -L"
|
|
108
102
|
}
|
|
109
103
|
}
|