billing skeleton: bun + hono + sqlite, seed + happy path

This commit is contained in:
Prad Nukala
2026-08-09 19:59:40 -04:00
commit e9ddb3304b
8 changed files with 265 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "monk-code-screen",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"db:reset": "rm -f data.db data.db-wal data.db-shm && bun src/db.ts"
},
"dependencies": {
"hono": "^4.13.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14"
}
}