summaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..f99a783
--- /dev/null
+++ b/package.json
@@ -0,0 +1,41 @@
+{
+ "name": "music-bot",
+ "version": "1.0.0",
+ "description": "Personal Discord music bot — streams YouTube audio to voice channels",
+ "main": "dist/index.js",
+ "type": "commonjs",
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "scripts": {
+ "build": "tsup",
+ "start": "node dist/index.js",
+ "dev": "ts-node src/index.ts",
+ "test": "vitest run",
+ "test:watch": "vitest",
+ "test:coverage": "vitest run --coverage",
+ "lint": "tsc --noEmit",
+ "deploy-commands": "ts-node src/deploy-commands.ts"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "dependencies": {
+ "@discord-player/extractor": "^7.2.0",
+ "@discordjs/voice": "^0.19.2",
+ "discord-player": "^7.2.0",
+ "discord-player-youtubei": "^2.0.0",
+ "discord.js": "^14.26.0",
+ "dotenv": "^17.3.1",
+ "mediaplex": "^1.0.0",
+ "sodium-native": "^5.1.0"
+ },
+ "devDependencies": {
+ "@types/node": "^25.5.0",
+ "@vitest/coverage-v8": "^4.1.2",
+ "ts-node": "^10.9.2",
+ "tsup": "^8.5.1",
+ "typescript": "^6.0.2",
+ "vitest": "^4.1.2"
+ }
+}