-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 827 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 827 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "discord-bot-dotabod",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"lint": "tsc && biome check .",
"deploy": "doppler run -- bun src/util/deploy.ts",
"format": "biome check --write .",
"start": "bun src/index.ts",
"dev": "doppler run -- bun --watch src/index.ts"
},
"dependencies": {
"@discordjs/core": "^2.0.0",
"@supabase/supabase-js": "^2.45.4",
"discord.js": "^14.16.3",
"express": "^4.21.0",
"undici": "^6.19.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@sapphire/ts-config": "^5.0.1",
"@types/express": "^5.0.0",
"bun-types": "^1.1.29",
"typescript": "^5.6.2",
"zod": "^3.23.8"
},
"trustedDependencies": [
"@biomejs/biome"
]
}