scaffold backend with hono/bun

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 11:20:16 +01:00
parent 4432d1f711
commit 93db3c91bf
6 changed files with 133 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "backend",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "^1.3.10"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"hono": "^4.12.6"
}
}