{
  "name": "@hono/swagger-ui",
  "version": "0.6.1",
  "description": "A middleware for using SwaggerUI in Hono",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "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"
  },
  "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/swagger-ui"
  },
  "homepage": "https://github.com/honojs/middleware",
  "peerDependencies": {
    "hono": ">=4.0.0"
  },
  "devDependencies": {
    "@types/swagger-ui-dist": "^3.30.6",
    "hono": "^4.11.5",
    "tsdown": "^0.15.9",
    "typescript": "^5.9.3",
    "vitest": "^4.1.0-beta.1"
  }
}