Files
subdomain-test/railpack.json
Cursor Agent c35c8c3cec Refactor: Switch to Bun and update dependencies
Replace pnpm with Bun for package management. Update Dockerfile and README.

Co-authored-by: lukeslakemail <lukeslakemail@gmail.com>
2025-10-19 20:24:55 +00:00

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"
}
}
}