{
  "name": "@ariaflowagents/cf-agent",
  "version": "1.0.0",
  "description": "AriaFlow agent integration for Cloudflare Workers with AIChatAgent",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./voice": {
      "import": "./dist/voice/index.js",
      "types": "./dist/voice/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@cloudflare/ai-chat": "^0.1.8",
    "ai": "^6.0.90",
    "zod-to-json-schema": "^3.24.0",
    "@ariaflowagents/core": "1.0.0",
    "@ariaflowagents/realtime-audio": "1.0.0"
  },
  "peerDependencies": {
    "agents": "^0.11.5",
    "zod": "^3.0.0",
    "@ariaflowagents/voice-protocol": "0.2.0"
  },
  "devDependencies": {
    "@cloudflare/vitest-pool-workers": "^0.5.0",
    "@cloudflare/workers-types": "^4.20250214.0",
    "agents": "^0.11.5",
    "typescript": "^5.7.0",
    "vitest": "^2.0.0",
    "@ariaflowagents/voice-protocol": "0.2.0"
  },
  "engines": {
    "node": ">=20"
  },
  "keywords": [
    "ariaflow",
    "ai",
    "agents",
    "cloudflare",
    "durable-objects",
    "chat",
    "conversational-ai"
  ],
  "license": "MIT",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "bun test src/voice/__tests__",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}