{
  "name": "@deplit/sidecar",
  "type": "module",
  "scripts": {
    "dev": "tsx watch --env-file=.env src/index.ts",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "build": "esbuild src/index.ts --bundle --platform=node --target=node22 --outfile=dist/index.cjs",
    "prestart": "pnpm run build",
    "start": "node --env-file=.env dist/index.cjs"
  },
  "dependencies": {
    "@hono/node-server": "^1.13.8",
    "@hono/zod-validator": "^0.4.3",
    "hono": "^4.7.4",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@deplit/eslint-config": "workspace:^",
    "@deplit/typescript-config": "workspace:^",
    "@types/node": "^20.11.17",
    "esbuild": "^0.25.1",
    "eslint": "^9.20.0",
    "tsx": "^4.7.1"
  }
}