{
  "name": "@gizmo-ai/server",
  "version": "0.2.2",
  "description": "SSE server for Gizmo runtime - stream state updates to thin clients",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./src/index.ts",
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "import": "./dist/index.js",
      "types": "./src/index.ts"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "test": "bun test",
    "build": "rm -rf dist && bun build src/index.ts --outdir dist --target bun && bun run build:types",
    "build:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false"
  },
  "dependencies": {
    "fast-json-patch": "^3.1.1",
    "hono": "^4.0.0"
  },
  "peerDependencies": {
    "@gizmo-ai/runtime": "^0.2.0"
  },
  "devDependencies": {
    "@gizmo-ai/agent-plugin": "workspace:*",
    "@gizmo-ai/ag-ui-adapter-plugin": "workspace:*",
    "@types/bun": "latest"
  }
}
