{
  "name": "@codewithagents/openapi-gen",
  "version": "4.9.1",
  "description": "Generate TypeScript models, native fetch client and Zod schemas from OpenAPI 3.1, zero runtime footprint",
  "type": "module",
  "bin": {
    "openapi-gen": "./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"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@apidevtools/swagger-parser": "^12.1.0",
    "openapi-types": "^12.1.3",
    "prettier": "^3.5.3"
  },
  "devDependencies": {
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "@types/node": "^25.0.0",
    "@vitest/coverage-v8": "^4.1.7",
    "esbuild": "^0.28.0",
    "fast-check": "^4.8.0",
    "typescript": "^6.0.0",
    "vitest": "^4.1.7"
  },
  "keywords": [
    "openapi",
    "openapi-3.1",
    "codegen",
    "typescript",
    "fetch",
    "zod",
    "prettier",
    "zero-dependency",
    "code-generator",
    "client-generator"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/codewithagents/openapi-zod-ts"
  },
  "homepage": "https://openapi.codewithagents.de/openapi-gen",
  "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'",
    "test:integration": "vitest run src/__tests__/integration.test.ts",
    "test:coverage": "vitest run --coverage --exclude 'src/__tests__/integration.test.ts'",
    "test:mutation": "stryker run",
    "dev": "tsc -p tsconfig.build.json --watch"
  }
}