-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
48
49
{
"name": "bracketboi",
"version": "1.0.0",
"description": "Discord bot that collects BattleBots fight predictions from members of the BattleBots Prediction League server.",
"keywords": [
"Discord",
"bot",
"Battlebots",
"predict",
"league"
],
"homepage": "https://github.com/jtkiesel/bracketboi#readme",
"bugs": "https://github.com/jtkiesel/bracketboi/issues",
"repository": {
"type": "git",
"url": "https://github.com/jtkiesel/bracketboi.git"
},
"license": "MIT",
"author": {
"name": "Jordan Kiesel",
"url": "https://github.com/jtkiesel"
},
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -fr dist",
"dev": "yarn clean && tsc-watch --onSuccess \"yarn start\"",
"start": "node --enable-source-maps dist"
},
"dependencies": {
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord.js-utilities": "^6.0.4",
"@sapphire/framework": "^4.2.2",
"@sapphire/plugin-logger": "^3.0.2",
"colorette": "^2.0.19",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"mongodb": "^5.1.0"
},
"devDependencies": {
"@sapphire/ts-config": "^3.3.4",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.9.0"
}
}