{
  "name": "@codewithagents/openapi-server",
  "version": "2.2.1",
  "description": "Generate typed server-side service interfaces and framework routers from OpenAPI 3.1",
  "type": "module",
  "bin": {
    "openapi-server": "./dist/cli.cjs"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "openapi-types": "^12.1.3",
    "prettier": "^3.8.4",
    "openapi-zod-ts": "2.2.3"
  },
  "peerDependencies": {
    "@fastify/formbody": "^8",
    "@fastify/multipart": "^10",
    "fastify": "^5",
    "fastify-type-provider-zod": "^6 || ^7"
  },
  "peerDependenciesMeta": {
    "@fastify/formbody": {
      "optional": true
    },
    "@fastify/multipart": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "fastify-type-provider-zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "@types/express": "^5.0.6",
    "@types/node": "^26.0.0",
    "@vitest/coverage-v8": "^4.1.9",
    "esbuild": "^0.28.1",
    "express": "^5.2.1",
    "fast-check": "^4.8.0",
    "hono": "^4.12.26",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9",
    "zod": "^4.4.3"
  },
  "keywords": [
    "openapi",
    "openapi-3.1",
    "hono",
    "express",
    "fastify",
    "server",
    "codegen",
    "typescript",
    "zod",
    "code-generator",
    "service-interface",
    "router"
  ],
  "funding": "https://github.com/sponsors/codewithagents",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/codewithagents/openapi-zod-ts"
  },
  "homepage": "https://openapi.codewithagents.de/openapi-server",
  "bugs": {
    "url": "https://github.com/codewithagents/openapi-zod-ts/issues"
  },
  "author": "CodeWithAgents (https://codewithagents.de)",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -f dist/cli.js dist/cli.js.map dist/cli.d.ts dist/cli.d.ts.map && tsc -p tsconfig.build.json && esbuild src/cli.ts --bundle --platform=node --format=cjs --target=node22 --external:prettier --outfile=dist/cli.cjs && chmod +x dist/cli.cjs",
    "lint": "tsc -p tsconfig.build.json --noEmit",
    "test": "vitest run --exclude 'src/__tests__/compat-matrix.test.ts'",
    "test:matrix": "vitest run src/__tests__/compat-matrix.test.ts",
    "test:coverage": "vitest run --coverage --exclude 'src/__tests__/compat-matrix.test.ts'",
    "test:mutation": "stryker run",
    "dev": "tsc -p tsconfig.build.json --watch"
  }
}