-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1016 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
36
37
{
"name": "musicbot",
"description": "",
"main": "./prod/main.js",
"scripts": {
"clean": "rimraf prod/",
"copy-files": "copyfiles -f src/commands/*.txt prod/commands/",
"build": "npm run clean && tsc && npm run copy-files",
"prestart": "npm run build",
"start": "node -r dotenv/config ./prod/main.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/opus": "^0.5.3",
"@discordjs/rest": "^0.3.0",
"@discordjs/voice": "^0.9.0",
"discord-api-types": "^0.31.0",
"discord-youtube-api": "^0.1.0",
"discord-ytdl-core": "^5.0.4",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"ffmpeg-static": "^4.4.1",
"inversify": "^6.0.1",
"libsodium-wrappers": "^0.7.10",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.7.0",
"ytdl-core": "^4.11.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
}
}