UNPKG

starlight-openapi

Version:

Starlight plugin to generate documentation from OpenAPI/Swagger specifications.

58 lines 1.55 kB
{ "name": "starlight-openapi", "version": "0.16.0", "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", "./route": "./components/Route.astro", "./styles": "./styles.css", "./package.json": "./package.json" }, "dependencies": { "@readme/openapi-parser": "^2.7.0", "github-slugger": "^2.0.0", "url-template": "^3.1.1" }, "devDependencies": { "@playwright/test": "^1.49.1", "@types/node": "^18.19.68", "openapi-types": "^12.1.3" }, "peerDependencies": { "@astrojs/markdown-remark": ">=6.0.1", "@astrojs/starlight": ">=0.34.0", "astro": ">=5.5.0" }, "engines": { "node": ">=18.17.1" }, "packageManager": "pnpm@8.6.12", "publishConfig": { "access": "public", "provenance": true }, "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", "lint": "eslint . --cache --max-warnings=0" } }