{
  "name": "docusaurus-plugin-mcp-server",
  "version": "1.0.0",
  "description": "A Docusaurus plugin that exposes an MCP server endpoint for AI agents to search and retrieve documentation",
  "keywords": [
    "docusaurus",
    "docusaurus-plugin",
    "mcp",
    "model-context-protocol",
    "documentation",
    "ai",
    "search",
    "llm",
    "claude",
    "cursor"
  ],
  "homepage": "https://github.com/scalvert/docusaurus-plugin-mcp-server#readme",
  "bugs": {
    "url": "https://github.com/scalvert/docusaurus-plugin-mcp-server/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/scalvert/docusaurus-plugin-mcp-server.git"
  },
  "license": "MIT",
  "author": "Steve Calvert",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./adapters": {
      "types": "./dist/adapters-entry.d.ts",
      "import": "./dist/adapters-entry.js",
      "default": "./dist/adapters-entry.js"
    },
    "./adapters/node": {
      "types": "./dist/adapters-node.d.ts",
      "import": "./dist/adapters-node.js",
      "default": "./dist/adapters-node.js"
    },
    "./theme": {
      "types": "./dist/theme/index.d.ts",
      "import": "./dist/theme/index.js",
      "default": "./dist/theme/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "docusaurus-mcp-verify": "./dist/cli/verify.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "format": "prettier --write .",
    "lint": "eslint src/ tests/ && prettier --check .",
    "lint:fix": "eslint src/ tests/ --fix && prettier --write .",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
    "snippets:check": "markdown-code check",
    "snippets:sync": "markdown-code sync",
    "test": "vitest run",
    "test:all": "npm run lint && npm run typecheck && npm run test && npm run test:mcp && npm run snippets:check",
    "test:coverage": "vitest run --coverage",
    "test:mcp": "playwright test",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@gleanwork/mcp-config-schema": "^5.0.0",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "flexsearch": "^0.7.43",
    "fs-extra": "^11.0.0",
    "hast-util-select": "^6.0.0",
    "hast-util-to-html": "^9.0.5",
    "hast-util-to-string": "^3.0.0",
    "p-map": "^7.0.0",
    "rehype-parse": "^9.0.0",
    "rehype-remark": "^10.0.0",
    "remark-gfm": "^4.0.0",
    "remark-stringify": "^11.0.0",
    "unified": "^11.0.0"
  },
  "devDependencies": {
    "@docusaurus/core": "^3.9.2",
    "@docusaurus/types": "^3.9.2",
    "@eslint/js": "^10.0.1",
    "@gleanwork/mcp-server-tester": "^1.0.0",
    "@playwright/test": "^1.58.0",
    "@release-it-plugins/lerna-changelog": "^9.0.0",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/react": "^16.3.2",
    "@types/fs-extra": "^11.0.0",
    "@types/node": "^26.0.0",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@vitest/coverage-v8": "^4.0.18",
    "eslint": "^10.2.0",
    "globals": "^17.1.0",
    "jsdom": "^29.1.1",
    "markdown-code": "^1.1.0",
    "prettier": "^3.0.0",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "release-it": "^20.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.0.0",
    "typescript-eslint": "^8.53.1",
    "vitest": "^4.0.18",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "@docusaurus/core": "^3.0.0",
    "@docusaurus/types": "^3.0.0",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "zod": "^3.0.0 || ^4.0.0"
  },
  "peerDependenciesMeta": {
    "@docusaurus/core": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "overrides": {
    "tar": "^7.5.6",
    "serialize-javascript": "^7.0.5",
    "esbuild": "^0.28.1"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "release-it": {
    "plugins": {
      "@release-it-plugins/lerna-changelog": {
        "infile": "CHANGELOG.md",
        "launchEditor": true
      }
    },
    "git": {
      "tagName": "v${version}"
    },
    "github": {
      "release": true,
      "tokenRef": "GITHUB_AUTH"
    }
  }
}
