feat: 项目从deno迁移回使用bun

This commit is contained in:
ethan.chen
2026-01-08 14:30:11 +08:00
parent 2b5b2f1d97
commit 02ebb4c648
10 changed files with 101 additions and 152 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "my-score-backend",
"version": "1.0.0",
"description": "My Score Backend API",
"type": "module",
"main": "main.ts",
"scripts": {
"start": "bun run main.ts",
"dev": "bun --watch main.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"hono": "^4.7.11",
"postgres": "^3.4.3"
},
"devDependencies": {
"@types/bun": "latest"
}
}