mirror of
https://github.com/LukeHagar/subdomain-test.git
synced 2025-12-06 04:21:26 +00:00
Replace pnpm with Bun for package management. Update Dockerfile and README. Co-authored-by: lukeslakemail <lukeslakemail@gmail.com>
24 lines
502 B
JSON
24 lines
502 B
JSON
{
|
|
"name": "subdomain-test",
|
|
"version": "0.0.1",
|
|
"description": "SvelteKit application with Bun runtime",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"start": "bun run start",
|
|
"build": "bun run build",
|
|
"dev": "bun run dev"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.3.0"
|
|
},
|
|
"railpack": {
|
|
"runtime": "bun",
|
|
"buildCommand": "bun run build",
|
|
"startCommand": "bun run start",
|
|
"port": 3000,
|
|
"healthCheck": "/",
|
|
"environment": {
|
|
"NODE_ENV": "production"
|
|
}
|
|
}
|
|
} |