{
  "name": "tsdoc-markdown",
  "version": "1.2.0",
  "description": "Generates markdown documentation from TypeScript source code.",
  "author": "David Dal Busco",
  "license": "MIT",
  "main": "dist/cjs/index.cjs.js",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist",
    "bin",
    "README.md",
    "LICENSE"
  ],
  "bin": {
    "tsdoc": "bin/index.js"
  },
  "scripts": {
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint --max-warnings 0 .",
    "build": "node rmdir.mjs && node esbuild.mjs && npm run ts-declaration",
    "contributors:add": "all-contributors add",
    "contributors:check": "all-contributors check",
    "contributors:generate": "all-contributors generate",
    "ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
    "test": "jest",
    "start": "node rmdir.mjs && node esbuild.mjs && node bin/index.js --src=src/test/mock.ts --dest=src/test/mock.md --repo=https://github.com/peterpeterparker/tsdoc-markdown --types",
    "docs": "node rmdir.mjs && node esbuild.mjs && node bin/index.js --src=src/lib/* --repo=https://github.com/peterpeterparker/tsdoc-markdown && prettier --write ./README.md"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/peterpeterparker/tsdoc-markdown.git"
  },
  "bugs": {
    "url": "https://github.com/peterpeterparker/tsdoc-markdown"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.0",
    "@eslint/js": "^9.22.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.13.10",
    "all-contributors-cli": "^6.26.1",
    "esbuild": "^0.25.1",
    "eslint": "^9.22.0",
    "eslint-config-love": "^119.0.0",
    "eslint-config-prettier": "^10.1.1",
    "globals": "^16.0.0",
    "jest": "^29.7.0",
    "prettier": "^3.5.3",
    "prettier-plugin-organize-imports": "^4.1.0",
    "ts-jest": "^29.2.6"
  },
  "keywords": [
    "jsdoc",
    "markdown",
    "api",
    "generator",
    "typescript",
    "documentation",
    "doc-generator",
    "tsdoc",
    "tsdoc-parser"
  ],
  "peerDependencies": {
    "typescript": "^5"
  }
}
