-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "@typical-developers/main-discord-bot",
"author": "typical-developers",
"version": "2.0.0",
"description": "The main Discord bot that is used in Typical Developers' servers.",
"license": "GPL-3.0",
"module": "./src/index.ts",
"type": "module",
"imports": {
"@/*": "./src/*"
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"deploy": "bun .",
"deploy:dev": "tsc --noEmit && DEV_DEPLOYMENT=true bun ."
},
"dependencies": {
"@sapphire/discord-utilities": "^3.3.0",
"@sapphire/discord.js-utilities": "^7.3.0",
"@sapphire/framework": "^5.3.1",
"@sapphire/pieces": "^4.2.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.2",
"@sapphire/plugin-subcommands": "^6.0.3",
"discord.js": "^14.16.3",
"gql-query-builder": "^3.8.0",
"graphql": "^16.8.2",
"handlebars": "^4.7.8",
"openblox": "^1.0.59",
"puppeteer": "23.3.0",
"puppeteer-cluster": "^0.24.0",
"redis": "^4.6.14"
},
"devDependencies": {
"@sapphire/decorators": "^6.1.0",
"@types/node": "^20.14.4",
"@typical-developers/api-types": "^0.1.19",
"dotenv": "^16.4.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typescript": "5.4.5"
},
"engines": {
"node": "22.1.0"
}
}