distube 4.0.0 → 4.0.3
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 +9 -9
- package/dist/index.d.ts +46 -19
- package/dist/index.js +90 -38
- package/dist/index.js.map +1 -1
- package/package.json +12 -16
- package/dist/index.mjs +0 -2349
- package/dist/index.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "distube",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "A Discord.js module to simplify your music commands and play songs with audio filters on Discord without any API key.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
|
-
"module": "./dist/index.mjs",
|
|
7
6
|
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports":
|
|
9
|
-
"import": "./dist/index.mjs",
|
|
10
|
-
"require": "./dist/index.js"
|
|
11
|
-
},
|
|
7
|
+
"exports": "./dist/index.js",
|
|
12
8
|
"directories": {
|
|
13
9
|
"lib": "src",
|
|
14
10
|
"test": "tests"
|
|
@@ -24,7 +20,7 @@
|
|
|
24
20
|
"prettier": "prettier --write \"**/*.{ts,json,yml,yaml,md}\"",
|
|
25
21
|
"build": "tsup",
|
|
26
22
|
"build:check": "tsc --noEmit",
|
|
27
|
-
"update": "ncu -u
|
|
23
|
+
"update": "ncu -u && yarn up '**' -R",
|
|
28
24
|
"_postinstall": "husky install",
|
|
29
25
|
"prepublishOnly": "yarn lint && yarn test",
|
|
30
26
|
"prepack": "yarn build && pinst --disable",
|
|
@@ -73,21 +69,21 @@
|
|
|
73
69
|
"undici": "^5.8.0"
|
|
74
70
|
},
|
|
75
71
|
"devDependencies": {
|
|
76
|
-
"@babel/core": "^7.18.
|
|
72
|
+
"@babel/core": "^7.18.9",
|
|
77
73
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
78
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.18.
|
|
79
|
-
"@babel/preset-env": "^7.18.
|
|
74
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
|
|
75
|
+
"@babel/preset-env": "^7.18.9",
|
|
80
76
|
"@babel/preset-typescript": "^7.18.6",
|
|
81
77
|
"@commitlint/cli": "^17.0.3",
|
|
82
78
|
"@commitlint/config-conventional": "^17.0.3",
|
|
83
|
-
"@discordjs/voice": "
|
|
79
|
+
"@discordjs/voice": "^0.11.0",
|
|
84
80
|
"@distube/docgen": "distubejs/docgen",
|
|
85
81
|
"@types/jest": "^28.1.6",
|
|
86
|
-
"@types/node": "^18.0
|
|
87
|
-
"@typescript-eslint/eslint-plugin": "^5.30.
|
|
88
|
-
"@typescript-eslint/parser": "^5.30.
|
|
82
|
+
"@types/node": "^18.6.0",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
84
|
+
"@typescript-eslint/parser": "^5.30.7",
|
|
89
85
|
"babel-jest": "^28.1.3",
|
|
90
|
-
"discord.js": "
|
|
86
|
+
"discord.js": "^14.0.3",
|
|
91
87
|
"eslint": "^8.20.0",
|
|
92
88
|
"eslint-config-distube": "^1.6.4",
|
|
93
89
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -97,7 +93,7 @@
|
|
|
97
93
|
"jest": "^28.1.3",
|
|
98
94
|
"jsdoc-babel": "^0.5.0",
|
|
99
95
|
"nano-staged": "^0.8.0",
|
|
100
|
-
"npm-check-updates": "^
|
|
96
|
+
"npm-check-updates": "^16.0.0",
|
|
101
97
|
"pinst": "^3.0.0",
|
|
102
98
|
"prettier": "^2.7.1",
|
|
103
99
|
"tsup": "^6.1.3",
|