{
  "name": "openapi-zod-ts",
  "version": "2.3.0",
  "description": "Generate TypeScript models, native fetch client and Zod schemas from OpenAPI 3.1, zero runtime footprint",
  "type": "module",
  "bin": {
    "openapi-zod-ts": "./dist/cli.cjs"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./config-core": {
      "import": "./dist/config-core.js",
      "types": "./dist/config-core.d.ts"
    },
    "./cli-core": {
      "import": "./dist/cli-core.js",
      "types": "./dist/cli-core.d.ts"
    },
    "./drift-check": {
      "import": "./dist/drift-check.js",
      "types": "./dist/drift-check.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@apidevtools/swagger-parser": "^12.1.0",
    "openapi-types": "^12.1.3",
    "prettier": "^3.9.4"
  },
  "devDependencies": {
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "@types/node": "^26.0.0",
    "@vitest/coverage-v8": "^4.1.9",
    "esbuild": "^0.28.1",
    "fast-check": "^4.8.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9"
  },
  "keywords": [
    "openapi",
    "openapi-3.1",
    "openapi-typescript",
    "codegen",
    "typescript",
    "fetch",
    "zod",
    "zero-dependency",
    "code-generator",
    "react-query",
    "api-client",
    "type-safe"
  ],
  "funding": "https://github.com/sponsors/codewithagents",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/codewithagents/openapi-zod-ts"
  },
  "homepage": "https://openapi.codewithagents.de",
  "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__/integration.test.ts' --exclude 'src/__tests__/compat-matrix.test.ts'",
    "test:integration": "vitest run src/__tests__/integration.test.ts",
    "test:matrix": "vitest run src/__tests__/compat-matrix.test.ts",
    "test:coverage": "vitest run --coverage --exclude 'src/__tests__/integration.test.ts' --exclude 'src/__tests__/compat-matrix.test.ts'",
    "test:mutation": "stryker run",
    "dev": "tsc -p tsconfig.build.json --watch"
  }
}