music-bot/package.json
2024-07-24 18:07:20 +03:00

55 lines
1.9 KiB
JSON

{
"name": "navys-music-bot",
"version": "1.3.0",
"description": "A bot that plays music on discord",
"main": "build/index.js",
"repository": "https://git.corgi.wtf/Navy.gif/music-bot.git",
"author": "Navy.gif <navydotgif@gmail.com>",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"type": "module",
"scripts": {
"start": "yarn build && node --enable-source-maps build/index.js",
"dev": "nodemon --delay 5 -e js --trace-warnings --unhandled-rejections=strict build/index.js",
"debug": "node --trace-warnings --inspect index.js",
"lint": "eslint --fix src/",
"build": "tsc --build",
"docker:publish": "docker push git.corgi.wtf/navy.gif/music-bot:latest",
"docker:build": "yarn build && docker build . --tag git.corgi.wtf/navy.gif/music-bot:latest"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"@navy.gif/commandparser": "^1.8.2",
"@navy.gif/logger": "^2.5.4",
"@navy.gif/timestring": "^6.0.6",
"@types/node": "^20.14.11",
"bufferutil": "^4.0.8",
"common-tags": "^1.8.2",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"ffmpeg": "^0.0.4",
"humanize-duration": "^3.31.0",
"music-metadata": "^7.14.0",
"similarity": "^1.2.1",
"sodium-native": "^4.1.1",
"typescript": "^5.4.3",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/common-tags": "^1",
"@types/eslint": "^8",
"@types/humanize-duration": "^3",
"@types/similarity": "^1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0"
}
}