{
  "name": "docusaurus-plugin-llms",
  "version": "0.6.0",
  "description": "Docusaurus plugin for generating LLM-friendly documentation following the llmstxt.org standard",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "cleanup": "node cleanup.js",
    "prepublishOnly": "npm run build && npm run cleanup",
    "test:unit": "node tests/test-plugin-options-validation.js && node tests/test-plugin-validation-integration.js && node tests/test-regex-escaping.js && node tests/test-baseurl-handling.js && node tests/test-baseurl-url-construction.js && node tests/test-baseurl-individual-markdown.js && node tests/test-compound-number-prefixes.js && node tests/test-relative-urls.js && node tests/test-content-cleaning-fences.js && node tests/test-jsx-attr-stripping.js && node tests/test-preserve-components.js && node tests/test-tabitem-attr-edge-cases.js && node tests/test-partial-dollar-replacement.js && node tests/test-partial-fence-masking.js && node tests/test-output-assembly.js && node tests/test-crlf-handling.js && node tests/test-path-transforms.js && node tests/test-header-deduplication.js && node tests/test-import-removal.js && node tests/test-partials.js && node tests/test-site-alias-partials.js && node tests/test-partial-code-fence-imports.js && node tests/test-mdx-page-body-imports.js && node tests/test-missing-partials.js && node tests/test-circular-imports.js && node tests/test-root-content.js && node tests/test-rewrite-image-urls.js && node tests/test-filenames.js && node tests/test-url-encoding.js && node tests/test-nested-paths.js && node tests/test-filename-sanitization.js && node tests/test-yaml-encoding.js && node tests/test-url-error-handling.js && node tests/test-regex-lastindex.js && node tests/test-whitespace-paths.js && node tests/test-unique-identifier-iteration-limit.js && node tests/test-error-handling.js && node tests/test-file-io-error-handling.js && node tests/test-parallel-processing.js && node tests/test-path-length-validation.js && node tests/test-bom-handling.js && node tests/test-batch-processing.js && node tests/test-input-validation.js && node tests/test-add-md-extension.js && node tests/test-import-description-skip.js && node tests/test-filename-sanitization-improved.js",
    "test:integration": "node tests/test-path-transformation.js && node tests/test-multi-doc.js && node tests/test-draft-integration.js && node tests/test-md-extension-generation.js && node tests/test-regression-fixes.js && node tests/test-multi-version.js && node tests/test-frontmatter-slug-priority.js && node tests/test-numeric-frontmatter-slug.js",
    "test": "npm run build && npm run test:unit && npm run test:integration"
  },
  "files": [
    "lib",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/rachfop/docusaurus-plugin-llms.git"
  },
  "bugs": {
    "url": "https://github.com/rachfop/docusaurus-plugin-llms/issues"
  },
  "homepage": "https://rachfop.github.io/docusaurus-plugin-llms",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/rachfop"
  },
  "keywords": [
    "docusaurus",
    "docusaurus-plugin",
    "documentation",
    "llm",
    "llms",
    "llmtxt"
  ],
  "author": "Patrick Rachford",
  "email": "prachford@icloud.com",
  "license": "MIT",
  "dependencies": {
    "gray-matter": "4.0.3",
    "minimatch": "9.0.3",
    "yaml": "2.8.1"
  },
  "peerDependencies": {
    "@docusaurus/core": "^3.0.0"
  },
  "devDependencies": {
    "@docusaurus/types": "3.0.0",
    "@types/js-yaml": "4.0.9",
    "@types/minimatch": "5.1.2",
    "@types/node": "20.6.0",
    "typescript": "5.2.2"
  },
  "engines": {
    "node": ">=18.0"
  },
  "overrides": {
    "shell-quote": "1.9.0"
  }
}
