chore: updated and improved dependencies

This commit is contained in:
2026-05-26 17:33:56 +02:00
parent 7f2eeaefb0
commit b34afa0d8b
2 changed files with 179 additions and 566 deletions
+161 -548
View File
File diff suppressed because it is too large Load Diff
+18 -18
View File
@@ -1,4 +1,5 @@
{ {
"$schema": "https://json.schemastore.org/package.json",
"name": "discord-audio-stream", "name": "discord-audio-stream",
"version": "x.x.x", "version": "x.x.x",
"license": "LGPL-3.0-only", "license": "LGPL-3.0-only",
@@ -25,10 +26,9 @@
"lib": "src" "lib": "src"
}, },
"scripts": { "scripts": {
"update:dependencies": "npx npm-check-updates --upgrade", "version:place": "node set-version.js set-ci-version",
"release:version": "node set-version.js set-ci-version", "version:check": "node set-version.js check-placeholder",
"check:version": "node set-version.js check-placeholder", "version:fix": "node set-version.js fix-placeholder",
"fix:version": "node set-version.js fix-placeholder",
"lint": "eslint . --ext .ts,.tsx,.js,.cjs,.mjs", "lint": "eslint . --ext .ts,.tsx,.js,.cjs,.mjs",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.cjs,.mjs --fix", "lint:fix": "eslint . --ext .ts,.tsx,.js,.cjs,.mjs --fix",
"lint:types": "eslint . --config eslint.config.typeaware.cjs --ext .ts,.tsx", "lint:types": "eslint . --config eslint.config.typeaware.cjs --ext .ts,.tsx",
@@ -36,9 +36,9 @@
"format:check": "prettier --check .", "format:check": "prettier --check .",
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"test": "jest --runInBand", "test": "jest --runInBand",
"check": "npm run check:version && npm run format:check && npm run lint && npm run lint:types && npm run typecheck && npm run test", "check": "npm run version:check && npm run format:check && npm run lint && npm run lint:types && npm run typecheck && npm run test",
"fix": "npm run fix:version && npm run format && npm run lint:fix", "fix": "npm run version:fix && npm run format && npm run lint:fix",
"build": "del-cli dist && tsup && tsc -p tsconfig.build.json && node scripts/copy-dts.cjs", "build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsup && tsc -p tsconfig.build.json && node scripts/copy-dts.cjs",
"prepare": "husky" "prepare": "husky"
}, },
"repository": { "repository": {
@@ -48,11 +48,13 @@
"bugs": "https://github.com/FrauJulian/Discord-Audio-Stream/issues", "bugs": "https://github.com/FrauJulian/Discord-Audio-Stream/issues",
"funding": "https://ko-fi.com/FrauJulian", "funding": "https://ko-fi.com/FrauJulian",
"keywords": [ "keywords": [
"discordjs", "discord",
"discord.js",
"audio",
"voice",
"streaming",
"discordjs/voice", "discordjs/voice",
"music", "music",
"voice",
"audio",
"24/7" "24/7"
], ],
"contributors": [ "contributors": [
@@ -71,9 +73,8 @@
"@jest/globals": "^30.4.1", "@jest/globals": "^30.4.1",
"@types/ejs": "^3.1.5", "@types/ejs": "^3.1.5",
"@types/node": "^25.9.1", "@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.59.4", "@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.59.4", "@typescript-eslint/parser": "^8.60.0",
"del-cli": "^7.0.0",
"eslint": "^9.39.4", "eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8", "eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4", "eslint-import-resolver-typescript": "^4.4.4",
@@ -83,17 +84,16 @@
"eslint-plugin-unused-imports": "^4.4.1", "eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7", "husky": "^9.1.7",
"jest": "^30.4.2", "jest": "^30.4.2",
"npm-check-updates": "^22.2.0",
"prettier": "^3.8.3", "prettier": "^3.8.3",
"ts-jest": "^29.4.11", "ts-jest": "^29.4.11",
"tsup": "^8.5.1", "tsup": "^8.5.1",
"typescript": "^6.0.3" "typescript": "^6.0.3"
}, },
"peerDependencies": { "peerDependencies": {
"@discordjs/voice": "^0.19.0", "@discordjs/voice": "^0.19.2",
"@snazzah/davey": "^0.1.8", "@snazzah/davey": "^0.1.11",
"ffmpeg-static": "^5.2.0", "ffmpeg-static": "^5.3.0",
"libsodium-wrappers": "^0.7.15", "libsodium-wrappers": "^0.8.4",
"opusscript": "^0.0.8", "opusscript": "^0.0.8",
"prism-media": "^1.3.5" "prism-media": "^1.3.5"
}, },