{
  "name": "@xpack/docusaurus-plugin-doxygen",
  "version": "0.4.0",
  "description": "A Docusaurus plugin to integrate Doxygen into a Docusaurus project.",
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./components/CodeLine": "./src/components/CodeLine/index.js",
    "./components/CollapsibleTreeTable": "./src/components/CollapsibleTreeTable/index.js",
    "./components/DoxygenPage": "./src/components/DoxygenPage/index.js",
    "./components/EnumerationList": "./src/components/EnumerationList/index.js",
    "./components/EnumerationListItem": "./src/components/EnumerationListItem/index.js",
    "./components/Highlight": "./src/components/Highlight/index.js",
    "./components/IncludesList": "./src/components/IncludesList/index.js",
    "./components/IncludesListItem": "./src/components/IncludesListItem/index.js",
    "./components/MemberDefinition": "./src/components/MemberDefinition/index.js",
    "./components/MembersIndex": "./src/components/MembersIndex/index.js",
    "./components/MembersIndexItem": "./src/components/MembersIndexItem/index.js",
    "./components/ParametersList": "./src/components/ParametersList/index.js",
    "./components/ParametersListItem": "./src/components/ParametersListItem/index.js",
    "./components/ProgramListing": "./src/components/ProgramListing/index.js",
    "./components/Reference": "./src/components/Reference/index.js",
    "./components/TreeTable": "./src/components/TreeTable/index.js",
    "./components/TreeTableRow": "./src/components/TreeTableRow/index.js",
    "./components/SectionDefinition": "./src/components/SectionDefinition/index.js",
    "./components/SectionUser": "./src/components/SectionUser/index.js",
    "./components/XrefSect": "./src/components/XrefSect/index.js"
  },
  "files": [
    "dist/",
    "src/components/"
  ],
  "keywords": [
    "docusaurus",
    "doxygen",
    "plugin"
  ],
  "homepage": "https://github.com/xpack/docusaurus-plugin-doxygen#readme",
  "bugs": {
    "url": "https://github.com/xpack/docusaurus-plugin-doxygen/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xpack/docusaurus-plugin-doxygen.git"
  },
  "license": "MIT",
  "author": {
    "name": "Liviu Ionescu",
    "email": "ilg@livius.net",
    "url": "https://github.com/ilg-ul"
  },
  "scripts": {
    "compile-watch": "tsc --build --verbose --watch src",
    "fix": "ts-standard --fix src",
    "compile": "tsc --build --verbose src",
    "npm-install": "npm install",
    "npm-link": "npm link",
    "npm-link-deps": "echo none",
    "npm-link-helpers": "echo none",
    "npm-outdated": "npm outdated",
    "npm-update": "npm update",
    "npm-pack": "npm pack",
    "npm-version-patch": "npm version patch",
    "npm-version-minor": "npm version minor",
    "postversion": "git push origin --all && git push origin --tags",
    "git-log": "git log --pretty='%cd * %h %s' --date=short",
    "lint": "ts-standard src",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "dependencies": {
    "fast-xml-parser": "^5.0.9"
  },
  "devDependencies": {
    "@docusaurus/types": "^3.7.0",
    "@types/node": "^22.13.13",
    "del-cli": "^6.0.0",
    "react-markdown": "^10.1.0",
    "ts-node": "^10.9.2",
    "ts-standard": "^12.0.2",
    "typescript": "^5.8.2"
  },
  "eslintConfig": {
    "rules": {
      "max-len": [
        "error",
        80,
        {
          "ignoreUrls": true
        }
      ]
    }
  },
  "ts-standard": {
    "ignore": [
      "dist",
      "src/**/*.js"
    ]
  },
  "topConfig": {
    "descriptiveName": "Docusaurus plug-in to render Doxygen pages",
    "permalinkName": "docusaurus-plugin-doxygen"
  },
  "engines": {
    "node": " >=18.0.0"
  }
}
