-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.34 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
50
{
"name": "vexibot",
"version": "2.0.0",
"description": "Discord bot that provides services related to the VEX Robotics Competition, primarily providing information and statistics related to the competition.",
"keywords": [
"Discord",
"bot",
"VEX",
"robotics",
"competition"
],
"homepage": "https://github.com/jtkiesel/vexibot#readme",
"bugs": "https://github.com/jtkiesel/vexibot/issues",
"repository": {
"type": "git",
"url": "https://github.com/jtkiesel/vexibot.git"
},
"license": "MIT",
"author": {
"name": "Jordan Kiesel",
"url": "https://github.com/jtkiesel"
},
"type": "module",
"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": {
"@robotevents/client": "^1.1.2",
"@sapphire/decorators": "^6.0.1",
"@sapphire/discord.js-utilities": "^6.1.0",
"@sapphire/framework": "^4.4.3",
"@sapphire/plugin-logger": "^3.0.4",
"colorette": "^2.0.20",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@sapphire/ts-config": "^4.0.0",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.9.0"
}
}