{
  "name": "@takazudo/zfb-runtime",
  "version": "2.11.0",
  "private": false,
  "type": "module",
  "description": "JavaScript runtime for zfb static sites — Hono-backed page router, content snapshots, and client-side hydration.",
  "keywords": [
    "zfb",
    "zfb-runtime",
    "ssg",
    "static-site-generator",
    "hono",
    "page-router",
    "content-snapshot",
    "preact",
    "react",
    "view-transitions"
  ],
  "license": "MIT",
  "author": "Takeshi Takatsudo <takazudo@gmail.com> (https://github.com/Takazudo)",
  "homepage": "https://takazudomodular.com/pj/zudo-front-builder/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Takazudo/zudo-front-builder.git",
    "directory": "packages/zfb-runtime"
  },
  "bugs": {
    "url": "https://github.com/Takazudo/zudo-front-builder/issues"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": [
    "./src/client-router.ts",
    "./src/client-router/index.ts",
    "./src/client-router/router.ts",
    "./src/client-router/prefetch.ts",
    "./dist/client-router.js",
    "./dist/client-router/index.js",
    "./dist/client-router/router.js",
    "./dist/client-router/prefetch.js"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./server": {
      "types": "./dist/server.d.ts",
      "default": "./dist/server.js"
    },
    "./snapshot": {
      "types": "./dist/snapshot.d.ts",
      "default": "./dist/snapshot.js"
    },
    "./client-router": {
      "types": "./dist/client-router/index.d.ts",
      "default": "./dist/client-router/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.0.0",
    "pnpm": ">=10.0.0"
  },
  "dependencies": {
    "hono": "^4.12.25"
  },
  "peerDependencies": {
    "react": "^19.2.3",
    "@takazudo/zfb": "2.11.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/react": "^19.0.0",
    "happy-dom": "^15.7.4",
    "react": "^19.2.3",
    "typescript": "^5.9.0",
    "vitest": "^2.1.9",
    "@takazudo/zfb": "2.11.0"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  }
}