-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
{
"name": "malbot",
"version": "1.6.6",
"description": "A basic Discord bot written in TypeScript",
"main": "index.js",
"scripts": {
"build": "tsc -b",
"start:dev": "ts-node src/index.ts",
"start:prod": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Malbryn/MalBot.git"
},
"author": "Malbryn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Malbryn/MalBot/issues"
},
"homepage": "https://github.com/Malbryn/MalBot#readme",
"dependencies": {
"@discord-player/equalizer": "^0.2.0",
"@discord-player/extractor": "^4.1.0",
"@discord-player/utils": "^0.2.0",
"@discordjs/builders": "^1.4.0",
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^2.3.0",
"@discordjs/voice": "^0.17.0",
"@types/gamedig": "^5.0.2",
"@types/node": "^20.14.8",
"discord-api-types": "^0.37.35",
"discord-player": "^6.0.0",
"discord-player-youtubei": "^1.1.8",
"discord.js": "^14.7.1",
"gamedig": "^5.0.0",
"mediaplex": "^0.0.9",
"sequelize": "^6.29.3",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.2",
"tslog": "^4.7.4",
"typescript": "^5.5.2",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"prettier": "^3.3.2"
}
}