-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.25 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
51
52
{
"name": "budbot",
"version": "4.0.1",
"description": "Discord bot for the Joint Streaming Community.",
"type": "module",
"main": "dist/Structures/client/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"tsc:watch": "rm -rf ./dist && tsc -w",
"start/dev": "nodemon ./dist/Structures/client/index.js",
"start/node": "node ./dist/Structures/client/index.js"
},
"keywords": [
"typescript",
"sern",
"discord.js",
"economy"
],
"license": "UNLICENSED",
"dependencies": {
"@napi-rs/canvas": "^0.1.56",
"@sern/handler": "^4.0.2",
"@sern/publisher": "^1.1.2",
"@spark.ts/logger": "^1.4.0",
"colorette": "^2.0.20",
"discord.js": "^14.16.2",
"nanoid": "^5.0.7",
"prisma": "^5.19.1",
"superagent": "^10.1.0"
},
"devDependencies": {
"@prisma/client": "^5.19.1",
"@types/node": "^22.5.5",
"@types/superagent": "^8.1.9",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Peter-MJ-Parker/sern-bud.git"
},
"imports": {
"#plugins": [
"./dist/Structures/plugins/index.js"
],
"#BudBot": [
"./dist/Structures/client/BudBot.js"
],
"#utils": [
"./dist/Structures/utils/index.js"
]
}
}