{
  "name": "@playfast/reform-remote",
  "version": "1.3.2",
  "description": "Run a reform scene's logic on the server and stream its rendered UI to a thin client over any duplex transport.",
  "keywords": [
    "effect",
    "react",
    "reform",
    "remote",
    "server-driven-ui",
    "transport"
  ],
  "bugs": {
    "url": "https://github.com/playfast/reform/issues"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/playfast/reform.git",
    "directory": "packages/reform-remote"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "playfast-src": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./*": {
      "playfast-src": "./src/*.ts",
      "types": "./dist/*.d.ts",
      "default": "./dist/*.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "clean": "rm -rf dist .tsbuildinfo",
    "check": "tsc --noEmit",
    "build": "rm -rf dist .tsbuildinfo && tsc -p tsconfig.build.json && bun ../../scripts/fix-esm-extensions.ts dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "coverage": "vitest run --coverage",
    "lint": "oxlint src",
    "lint:fix": "oxlint --fix src",
    "prepack": "bun run build"
  },
  "peerDependencies": {
    "@playfast/reform": "*",
    "effect": "*",
    "react": "^19.0.0"
  },
  "playbook": "./playbook"
}
