-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 968 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "Discord Bot",
"main": "dist/index.js",
"scripts": {
"build-start": "npm run build && npm run start",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"clean-build-start": "npm run clean && npm run build && npm run start",
"clean": "rm -rd ./dist/",
"deploy-commands": "node dist/deploy-commands.js",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch"
},
"keywords": [],
"author": "Luís Góis",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.44.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"chalk": "^4.1.2",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"sodium-native": "^4.0.4",
"ytdl-core": "^4.11.5"
}
}