-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 724 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 724 Bytes
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
{
"name": "xpbot",
"type": "module",
"version": "0.1.1",
"scripts": {
"dev:api": "bun --watch api/index.ts --dev",
"dev:bot": "bun --watch bot/index.ts --dev",
"api": "bun api/index.ts",
"bot": "bun bot/index.ts",
"lint": "eslint . --config eslint.config.mjs"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"typescript-eslint": "^7.16.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"canvacord": "^6.0.2",
"colorthief": "^2.4.0",
"cors": "^2.8.5",
"discord.js": "^14.15.3",
"ejs": "^3.1.10",
"express": "^4.19.2",
"mysql2": "^3.10.3"
}
}