-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 769 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 769 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
{
"name": "hermit",
"version": "1.0.0",
"description": "A Discord bot built with Carbon",
"type": "module",
"main": "./src/index.ts",
"scripts": {
"dev": "wrangler dev --port 3000 --env-file .env",
"deploy": "wrangler deploy --env-file .env",
"cf-typegen": "wrangler types",
"postinstall": "wrangler types",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:apply:local": "wrangler d1 migrations apply hermit-db --local",
"db:apply:remote": "wrangler d1 migrations apply hermit-db --remote"
},
"dependencies": {
"@buape/carbon": "0.0.0-beta-20260427233936",
"drizzle-orm": "^0.45.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"drizzle-kit": "^0.31.8",
"typescript": "5.9.3",
"wrangler": "^4.85.0"
}
}