mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-27 22:39:31 +07:00
20 lines
428 B
JSON
20 lines
428 B
JSON
{
|
|
"name": "backend",
|
|
"module": "main.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun --watch main.ts",
|
|
"build": "bun build main.ts --minify --sourcemap --outdir ./dist",
|
|
"start": "NODE_ENV=production bun run ./dist/main.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4.5.5",
|
|
"toml": "^3.0.0"
|
|
}
|
|
} |