{
  "name": "@hono/zod-openapi",
  "version": "1.4.0",
  "description": "A wrapper class of Hono which supports OpenAPI.",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsdown",
    "format": "prettier --check . --ignore-path ../../.gitignore",
    "lint": "eslint",
    "typecheck": "tsc -b tsconfig.json",
    "test": "vitest",
    "version:jsr": "yarn version:set $npm_package_version"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public",
    "provenance": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/honojs/middleware.git",
    "directory": "packages/zod-openapi"
  },
  "homepage": "https://github.com/honojs/middleware",
  "peerDependencies": {
    "hono": ">=4.10.0",
    "zod": "^4.0.0"
  },
  "devDependencies": {
    "hono": "^4.11.5",
    "tsdown": "^0.15.9",
    "typescript": "^5.9.3",
    "vitest": "^4.1.0-beta.1",
    "yaml": "^2.8.2",
    "zod": "^4.2.1"
  },
  "dependencies": {
    "@asteasolutions/zod-to-openapi": "^8.5.0",
    "@hono/zod-validator": "^0.8.0",
    "openapi3-ts": "^4.5.0"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}