{
  "name": "@lyrasearch/plugin-parsedoc",
  "version": "0.1.0",
  "description": "Lyra plugin to populate an index with HTML/Markdown documents",
  "keywords": [],
  "author": "",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lyrasearch/plugin-parsedoc.git"
  },
  "bugs": {
    "url": "https://github.com/lyrasearch/plugin-parsedoc/issues"
  },
  "homepage": "https://github.com/lyrasearch/plugin-parsedoc#readme",
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/commonjs.cjs"
    },
    "./cjs": {
      "types": "./dist/commonjs.d.cts",
      "require": "./dist/commonjs.cjs"
    }
  },
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "swc --delete-dir-on-start -s -w --extensions .ts,.cts -d dist src",
    "prebuild": "npm run lint",
    "build": "swc --delete-dir-on-start --extensions .ts,.cts -d dist src",
    "postbuild": "tsc -p . --emitDeclarationOnly && tsc -p tsconfig.cjs.json --emitDeclarationOnly && mv dist/commonjs.js dist/commonjs.cjs && mv dist/commonjs.js.map dist/commonjs.cjs.map",
    "test": "c8 -c test/config/c8.json tap --rcfile=test/config/tap.yml test/*.test.ts",
    "format": "prettier -w src test",
    "lint": "eslint src test --ext .js,.ts,.cts",
    "changelog": "auto-changelog -p",
    "commit": "pnpm lint-staged && cz",
    "prepare": "husky install && npm run build"
  },
  "dependencies": {
    "@lyrasearch/lyra": "^0.4.4",
    "glob": "^8.1.0",
    "hast-util-from-html": "^1.0.1",
    "hast-util-from-string": "^2.0.0",
    "hast-util-to-html": "^8.0.4",
    "hast-util-to-string": "^2.0.0",
    "rehype": "^12.0.1",
    "rehype-document": "^6.1.0",
    "rehype-parse": "^8.0.4",
    "rehype-preset-minify": "^6.0.0",
    "remark-parse": "^10.0.1",
    "remark-rehype": "^10.1.0",
    "unified": "^10.1.2"
  },
  "devDependencies": {
    "@swc/cli": "^0.1.59",
    "@swc/core": "^1.3.27",
    "@types/glob": "^8.0.1",
    "@types/hast": "^2.3.4",
    "@types/node": "^18.11.18",
    "@types/tap": "^15.0.7",
    "@typescript-eslint/eslint-plugin": "^5.48.2",
    "@typescript-eslint/parser": "^5.48.2",
    "auto-changelog": "^2.4.0",
    "c8": "^7.12.0",
    "commitizen": "^4.3.0",
    "eslint": "^8.32.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-config-standard-with-typescript": "^31.0.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-n": "^15.6.1",
    "eslint-plugin-promise": "^6.1.1",
    "husky": "^8.0.3",
    "lint-staged": "^13.1.0",
    "prettier": "^2.8.3",
    "tap": "^16.3.4",
    "tsx": "^3.12.2",
    "typescript": "^4.9.4"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*": "pnpm lint"
  },
  "pnpm": {
    "peerDependencyRules": {
      "ignoreMissing": [
        "typescript"
      ]
    }
  }
}
