-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.24 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.24 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
{
"name": "arduino-bot",
"description": "The new and improved custom discord bot to power the official Arduino discord server @ https://arduino.cc/discord",
"version": "0.3.0",
"main": "./dist/src/index.js",
"scripts": {
"start": "node ./dist/src/index.js",
"build": "tsc -p .",
"dev": "tsnd --respawn --transpile-only --exit-child ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-bromberg/arduino-bot.git"
},
"bugs": {
"url": "https://github.com/max-bromberg/arduino-bot/issues"
},
"homepage": "https://github.com/max-bromberg/arduino-bot#readme",
"author": "Max Bromberg and Contributors",
"license": "GPL-3.0-or-later",
"dependencies": {
"@prisma/client": "^4.16.2",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/framework": "^5.3.6",
"@sapphire/plugin-hmr": "^3.0.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/type": "^2.6.0",
"@sapphire/utilities": "^3.18.2",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^20.14.2",
"prisma": "^4.16.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}