-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 980 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 980 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
33
{
"name": "kleis",
"type": "module",
"packageManager": "bun@1.3.10",
"scripts": {
"dev": "bun run --hot --no-clear-screen src/index.ts",
"build": "bun build src/index.ts --target=bun --outdir=dist --packages=external",
"start": "bun run src/index.ts",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"lint": "bun x ultracite check",
"fix": "bun x ultracite fix",
"format": "biome format --write",
"test": "bun test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"@libsql/client": "^0.15.15",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.0",
"@types/bun": "^1.3.9",
"@typescript/native-preview": "^7.0.0-dev.20260223.1",
"drizzle-kit": "^0.31.9",
"lefthook": "^2.1.1",
"ultracite": "7.2.3"
}
}