{ "$schema": "https://schema.railpack.com", "steps": { "install": { "commands": [ { "cmd": "bun install --frozen-lockfile", "customName": "Install dependencies" } ] }, "build": { "inputs": [ { "step": "install" } ], "commands": [ { "cmd": "bun run nitro:build", "customName": "Build server" } ] } }, "deploy": { "startCommand": "bun run nitro:serve" } }