-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 914 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
{
"name": "znode",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun run --hot backend/index.ts",
"output": "bun build ./backend/index.ts --outdir ./dist --target bun --bundle --external drizzle-orm --external drizzle-kit --external @libsql/client",
"build": "sh build_frontend.sh",
"db:push": "bunx drizzle-kit push",
"db:generate": "bunx drizzle-kit generate",
"db:migrate": "bunx drizzle-kit migrate"
},
"dependencies": {
"@libsql/client": "^0.17.4",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/bun": "^1.3.11",
"hono": "^4.12.9",
"zod": "^4.3.6",
"ai": "^7.0.15",
"croner": "^10.0.1",
"@ai-sdk/openai": "^4.0.7",
"hono-rate-limiter": "^0.5.3",
"@mastra/core": "^1.49.0",
"@mastra/libsql": "^1.15.0",
"@mastra/memory": "^1.22.1"
}
}