{
  "name": "@cuylabs/agent-foundry-agentserver-responses",
  "version": "7.4.0",
  "description": "TypeScript Foundry Agent Server Responses-protocol host (mirrors azure-ai-agentserver-responses)",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./store": {
      "types": "./dist/store/index.d.ts",
      "import": "./dist/store/index.js",
      "default": "./dist/store/index.js"
    },
    "./streaming": {
      "types": "./dist/streaming/index.d.ts",
      "import": "./dist/streaming/index.js",
      "default": "./dist/streaming/index.js"
    }
  },
  "files": [
    "dist",
    "docs",
    "samples",
    "README.md"
  ],
  "dependencies": {
    "express": "^5.0.0",
    "@cuylabs/agent-foundry-agentserver-core": "^7.4.0"
  },
  "devDependencies": {
    "@opentelemetry/api": "^1.9.0",
    "@types/express": "^5.0.0",
    "@types/node": "^22.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.7.0",
    "vitest": "^4.0.18"
  },
  "keywords": [
    "agent",
    "azure",
    "foundry",
    "hosted-agent",
    "responses-protocol",
    "agentserver",
    "express",
    "sse"
  ],
  "author": "cuylabs",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/cuylabs-ai/agents-ts.git",
    "directory": "packages/agent-foundry-agentserver-responses"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup src/index.ts src/store/index.ts src/streaming/index.ts --format esm --dts --clean",
    "dev": "tsup src/index.ts src/store/index.ts src/streaming/index.ts --format esm --dts --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist"
  }
}