{
  "name": "openapi-to-zod-schema",
  "version": "1.3.1",
  "repository": "https://github.com/3rd/openapi-to-zod-schema",
  "author": {
    "name": "Andrei Neculaesei",
    "email": "3rd@users.noreply.github.com"
  },
  "license": "MIT",
  "files": [
    "dist"
  ],
  "type": "module",
  "types": "dist/index.d.ts",
  "main": "dist/index.mjs",
  "bin": {
    "openapi-to-zod-schema": "./dist/cli.cjs"
  },
  "exports": {
    ".": {
      "import": {
        "default": "./dist/index.mjs",
        "types": "./dist/index.d.ts"
      },
      "require": {
        "default": "./dist/index.cjs",
        "types": "./dist/index.d.ts"
      }
    }
  },
  "scripts": {
    "build": "npm run clean && node src/scripts/build.mjs && tsc -p tsconfig.build.json",
    "test": "jest",
    "tsc": "tsc",
    "prepare": "husky",
    "prepublishOnly": "pnpm run build && pnpm run tsc && pnpm run test",
    "clean": "rm -rf dist"
  },
  "lint-staged": {
    "*": "prettier --ignore-unknown --write"
  },
  "prettier": {
    "arrowParens": "always",
    "bracketSpacing": true,
    "jsxBracketSameLine": false,
    "printWidth": 120,
    "quoteProps": "as-needed",
    "semi": true,
    "singleQuote": false,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "devDependencies": {
    "@commitlint/cli": "^19.3.0",
    "@commitlint/config-conventional": "^19.2.2",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.8",
    "esbuild": "^0.21.5",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.7",
    "prettier": "^3.3.2",
    "semantic-release": "^24.0.0",
    "ts-jest": "^29.1.5",
    "typescript": "^5.5.2"
  },
  "peerDependencies": {
    "zod": "^3.21.4"
  },
  "dependencies": {
    "yaml": "^2.4.5"
  }
}
