forked from TannerGabriel/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 991 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "music-bot",
"version": "1.0.0",
"repository": "https://github.com/TannerGabriel/discord-music-bot.git",
"description": "A simple discord music bot",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --write \"**/*.js\"",
"rebuild": "docker-compose up --build -d --remove-orphans && docker-compose exec discord-bot npm ci",
"debug": "npx nodemon --inspect=0.0.0.0:9229 index.js"
},
"keywords": [
"discord",
"music",
"bot"
],
"author": "Gabriel Tanner",
"license": "MIT",
"dependencies": {
"@discord-player/downloader": "^3.0.1",
"@discord-player/extractor": "^3.0.2",
"@discordjs/opus": "^0.7.0",
"discord-api-types": "^0.27.2",
"discord-player": "^5.2.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"fluent-ffmpeg": "^2.1.2",
"ytdl-core": "^4.10.1"
},
"devDependencies": {
"nodemon": "^2.0.15",
"prettier": "2.5.1"
}
}