{
  "name": "@the-next-ai/ai-gateway",
  "version": "1.0.18",
  "description": "TypeScript Fastify AI protocol gateway for OpenAI, Anthropic, Gemini, MCP and agent workflows.",
  "main": "dist/index.js",
  "bin": {
    "next-ai-gateway": "bin/next-ai-gateway.js"
  },
  "scripts": {
    "dev": "node dev.js",
    "build": "node build.js",
    "start": "node dist/index.js",
    "prepack": "npm run build",
    "release": "node scripts/release.mjs",
    "test:sdk:responses": "node scripts/test-openai-responses-sdk.mjs",
    "test": "vitest",
    "typecheck": "tsc --noEmit -p tsconfig.build.json",
    "typecheck:all": "tsc --noEmit -p tsconfig.json",
    "bench": "vitest bench",
    "bench:server": "node scripts/benchmark-gateway-server.mjs",
    "test:coverage": "vitest --coverage"
  },
  "keywords": [
    "ai",
    "gateway",
    "openai",
    "anthropic",
    "gemini",
    "mcp",
    "fastify"
  ],
  "author": "",
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "ts-node": {
    "compilerOptions": {
      "module": "CommonJS"
    }
  },
  "dependencies": {
    "diff": "^8.0.3",
    "fastify": "^5.8.2",
    "glob": "^13.0.6",
    "openai": "^6.27.0",
    "undici": "^6.28.0",
    "ws": "^8.19.0"
  },
  "devDependencies": {
    "@types/glob": "^8.1.0",
    "@types/node": "^25.3.5",
    "@types/ws": "^8.18.1",
    "@vitest/coverage-v8": "^4.1.9",
    "esbuild": "^0.28.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  }
}
