{
  "name": "typedoc-plugin-markdown",
  "version": "3.17.1",
  "description": "A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.",
  "main": "dist/index.js",
  "files": [
    "dist/"
  ],
  "scripts": {
    "lint": "eslint ./src --ext .ts",
    "prelint:docs": "yarn run docs:md",
    "lint:md": "yarn run lint:markdown && yarn run lint:mdx",
    "lint:markdown": " markdownlint ./docs/md",
    "lint:mdx": "node ./lint.mdx.mjs",
    "prepublishOnly": "yarn run lint && yarn run build && yarn run test",
    "build": "rm -rf dist && tsc && copyfiles --up 1 ./src/**/*.hbs ./dist/",
    "test": "jest",
    "build-and-test": "yarn run build && yarn run test",
    "docs": "yarn run build && yarn run docs:md && yarn run docs:html",
    "docs:md": "typedoc --plugin typedoc-plugin-markdown --options ../../stub-project/typedoc-options.json --plugin typedoc-plugin-mdn-links --out ./docs/md",
    "docs:html": "typedoc --options ../../stub-project/typedoc-options.json --out ./docs/html"
  },
  "author": "Thomas Grey",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tgreyuk/typedoc-plugin-markdown/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tgreyuk/typedoc-plugin-markdown.git",
    "directory": "packages/typedoc-plugin-markdown"
  },
  "homepage": "https://github.com/tgreyuk/typedoc-plugin-markdown/tree/master/packages/typedoc-plugin-markdown",
  "keywords": [
    "markdown",
    "typescript",
    "documentation",
    "api",
    "typedocplugin",
    "typedoc"
  ],
  "peerDependencies": {
    "typedoc": ">=0.24.0"
  },
  "dependencies": {
    "handlebars": "^4.7.7"
  }
}
