distube 5.0.7 → 5.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "distube",
3
- "version": "5.0.7",
3
+ "version": "5.1.1",
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,45 +50,37 @@
50
50
  "homepage": "https://distube.js.org/",
51
51
  "dependencies": {
52
52
  "tiny-typed-emitter": "^2.1.0",
53
- "undici": "^7.7.0"
53
+ "undici": "^7.16.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@commitlint/cli": "^19.8.0",
57
- "@commitlint/config-conventional": "^19.8.0",
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.18.0",
60
- "@types/node": "^22.14.0",
60
+ "@discordjs/voice": "^0.19.0",
61
+ "@types/node": "^25.0.3",
61
62
  "@types/tough-cookie": "^4.0.5",
62
- "@typescript-eslint/eslint-plugin": "^7.18.0",
63
- "@typescript-eslint/parser": "^7.18.0",
64
- "@vitest/coverage-v8": "^3.1.1",
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.8.0",
72
- "prettier": "^3.5.3",
73
- "tsup": "^8.4.0",
74
- "typedoc": "^0.27.9",
75
- "typedoc-material-theme": "^1.3.0",
76
- "typedoc-plugin-extras": "^4.0.0",
77
- "typescript": "^5.8.3",
78
- "vite-tsconfig-paths": "^5.1.4",
79
- "vitest": "^3.1.1"
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"
80
76
  },
81
77
  "peerDependencies": {
82
78
  "@discordjs/voice": "*",
83
79
  "discord.js": "14"
84
80
  },
85
81
  "nano-staged": {
86
- "*.ts": [
87
- "prettier --write",
88
- "eslint"
89
- ],
90
- "*.{json,yml,yaml,md}": [
91
- "prettier --write"
82
+ "*.{ts,js,json}": [
83
+ "biome check --write --no-errors-on-unmatched"
92
84
  ]
93
85
  },
94
86
  "engines": {
@@ -97,11 +89,11 @@
97
89
  "scripts": {
98
90
  "test": "vitest run",
99
91
  "docs": "typedoc",
100
- "lint": "prettier --check . && eslint .",
101
- "lint:fix": "eslint . --fix",
102
- "prettier": "prettier --write \"**/*.{ts,json,yml,yaml,md}\"",
92
+ "lint": "biome ci .",
93
+ "lint:fix": "biome check --write --unsafe",
94
+ "prettier": "biome format --write",
103
95
  "build": "tsup",
104
96
  "type": "tsc --noEmit",
105
- "update": "pnpm up -L \"!eslint\""
97
+ "update": "pnpm up -L"
106
98
  }
107
99
  }