Files
harbor-server/package.json
yuetsh 09eb84f478 迁移到 bun 并更新依赖
工作区中此前未提交的改动:新增 bunfig.toml(npmmirror 源),
hono ^4.13.7、@types/bun ^1.4.1、typescript ^7.0.2。

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-07 00:49:04 -06:00

19 lines
392 B
JSON

{
"name": "server",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"start": "bun dist/index.js"
},
"dependencies": {
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"hono": "^4.13.7"
},
"devDependencies": {
"@types/bun": "^1.4.1",
"typescript": "^7.0.2"
}
}