{
  "name": "@scalar/openapi-to-markdown",
  "description": "Create plain Markdown from OpenAPI documents (for LLMs)",
  "license": "MIT",
  "author": "Scalar (https://github.com/scalar)",
  "homepage": "https://github.com/scalar/scalar",
  "bugs": "https://github.com/scalar/scalar/issues/new/choose",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/scalar/scalar.git",
    "directory": "packages/openapi-to-markdown"
  },
  "keywords": [
    "openapi",
    "markdown",
    "llm",
    "swagger"
  ],
  "version": "1.0.2",
  "engines": {
    "node": ">=22"
  },
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "@scalar/code-highlight": "0.4.6",
    "@scalar/helpers": "0.12.0",
    "@scalar/json-magic": "0.14.0",
    "@scalar/openapi-upgrader": "0.2.17",
    "@scalar/workspace-store": "0.64.0",
    "rehype-parse": "^9.0.1",
    "rehype-remark": "^10.0.1",
    "rehype-sanitize": "^6.0.0",
    "rehype-stringify": "^10.0.1",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.1.2",
    "remark-stringify": "^11.0.0",
    "unified": "^11.0.5"
  },
  "devDependencies": {
    "@hono/node-server": "^1.19.10",
    "@scalar/galaxy": "0.7.1",
    "@types/mdast": "^4.0.4",
    "hono": "^4.13.7",
    "vitest": "4.1.10"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
    "dev": "tsx watch playground/index.ts",
    "test": "vitest --run",
    "types:check": "tsgo --noEmit"
  }
}