{
  "name": "@cloudamqp/a2a-amqp",
  "version": "0.1.1",
  "description": "AMQP EventBus adapter for A2A protocol with LavinMQ streams support",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "type-check": "tsc --project tsconfig.typecheck.json",
    "prepare": "bun run build",
    "server": "bun run src/examples/http-server.ts",
    "worker": "bun run src/examples/worker.ts",
    "test": "bun run test:unit && bun run test:integration",
    "test:unit": "vitest run --config vitest.config.ts",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:watch": "vitest watch --config vitest.config.ts",
    "test:coverage": "vitest run --config vitest.config.ts --coverage",
    "test:ui": "vitest --ui",
    "release:patch": "bun run scripts/release.ts patch",
    "release:minor": "bun run scripts/release.ts minor",
    "release:major": "bun run scripts/release.ts major"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cloudamqp/a2a-amqp.git"
  },
  "keywords": [
    "a2a",
    "agent-to-agent",
    "amqp",
    "lavinmq",
    "eventbus",
    "ai-agents",
    "work-queue",
    "event-sourcing"
  ],
  "author": "cloudamqp",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@cloudamqp/amqp-client": "^3.4.0",
    "uuid": "^13.0.0",
    "zod": "^4.1.12"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/express": "^5.0.5",
    "@vitest/coverage-v8": "^4.0.9",
    "@vitest/ui": "^4.0.9",
    "typescript": "^5.9.3",
    "vitest": "^4.0.9"
  },
  "peerDependencies": {
    "@a2a-js/sdk": "*",
    "express": "*"
  },
  "directories": {
    "test": "tests"
  },
  "bugs": {
    "url": "https://github.com/cloudamqp/a2a-amqp/issues"
  },
  "homepage": "https://github.com/cloudamqp/a2a-amqp#readme"
}
