-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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
{
"name": "bryanbot",
"version": "2.0.0",
"description": "A modular Discord bot for your server management needs.",
"homepage": "https://github.com/BryanBotDev/BryanBot#readme",
"author": {
"name": "BryanBotDev",
"url": "https://github.com/BryanBotDev"
},
"license": "GPL-3.0-only",
"main": "src/index.js",
"type": "module",
"keywords": [
"discord",
"discord.js",
"node.js",
"discordbot",
"discord-bot"
],
"scripts": {
"dev": "nodemon --exec \"node src/index.js --debug --devmode --show-errors --reset-configs --reset-slashCommands\" -e js",
"start": "node src/index.js"
},
"bugs": {
"url": "https://github.com/BryanBotDev/BryanBot/issues"
},
"engines": {
"node": ">=16.15.0"
},
"dependencies": {
"archiver": "^7.0.1",
"better-sqlite3": "^11.8.1",
"chalk": "^5.4.1",
"console-stamp": "^3.1.2",
"discord.js": "^14.18.0",
"fast-folder-size": "^2.4.0",
"ms": "^2.1.3",
"yaml": "^2.7.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}