-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
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
38
{
"name": "mogubot-djs",
"version": "1.0.0",
"description": "A Discord bot named MoguBot, built with Discord.js",
"main": "./src/index.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"start:dev": "tsx src/index.ts",
"start:prod": "NODE_ENV=production node dist",
"lint": "eslint src",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json"
},
"keywords": [],
"author": "RugeFX",
"license": "ISC",
"dependencies": {
"@discordjs/voice": "^0.18.0",
"@distube/ytdl-core": "^4.14.4",
"@distube/ytsr": "^2.0.4",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"libsodium-wrappers": "^0.7.14",
"mongodb": "^6.8.0",
"mongoose": "^8.3.2",
"opusscript": "^0.1.1",
"youtube-dl-exec": "^3.0.7"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/node": "^18.19.31",
"eslint": "^9.17.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.18.2"
}
}