{
  "name": "starlight-openapi",
  "version": "0.25.3",
  "license": "MIT",
  "description": "Starlight plugin to generate documentation from OpenAPI/Swagger specifications.",
  "author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
  "type": "module",
  "exports": {
    ".": "./index.ts",
    "./middleware": "./middleware.ts",
    "./routes/static": "./routes/static/index.astro",
    "./routes/ssr": "./routes/ssr/index.astro",
    "./styles": "./styles.css",
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@readme/openapi-parser": "^4.1.2",
    "github-slugger": "^2.0.0",
    "httpsnippet": "^3.0.10",
    "url-template": "^3.1.1"
  },
  "devDependencies": {
    "@playwright/test": "^1.58.2",
    "@types/node": "^22.19.15",
    "openapi-types": "^12.1.3"
  },
  "peerDependencies": {
    "@astrojs/markdown-remark": ">=7.0.0",
    "@astrojs/starlight": ">=0.38.0",
    "astro": ">=6.0.0"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "keywords": [
    "starlight",
    "plugin",
    "openapi",
    "swagger",
    "documentation",
    "astro"
  ],
  "homepage": "https://github.com/HiDeoo/starlight-openapi",
  "repository": {
    "type": "git",
    "url": "https://github.com/HiDeoo/starlight-openapi.git",
    "directory": "packages/starlight-openapi"
  },
  "bugs": "https://github.com/HiDeoo/starlight-openapi/issues",
  "scripts": {
    "test": "playwright install --with-deps chromium && playwright test",
    "test:ci": "playwright test",
    "lint": "eslint . --cache --max-warnings=0"
  }
}