-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 731 Bytes
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
{
"name": "discord-music-bot",
"version": "1.0.0",
"description": "A music bot for discord",
"scripts": {
"compose:up": "docker-compose up -d --build",
"compose:down": "docker-compose down",
"start": "NODE_PATH=src/ ts-node src/index.ts",
"dev": "docker-compose up --build",
"deploy": "./scripts/deploy.sh"
},
"keywords": [
"discord",
"music",
"bot"
],
"author": "joaogsleite",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.9.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@discordjs/voice": "^0.8.0",
"discord.js": "^13.6.0",
"dotenv": "^10.0.0",
"puppeteer-stream": "^2.0.9",
"tweetnacl": "^1.0.3"
}
}