{
  "name": "eslint-plugin-markdown-links",
  "version": "0.9.0",
  "description": "ESLint plugin with powerful checking rules related to Markdown links",
  "type": "module",
  "exports": {
    ".": {
      "import": "./lib/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib"
  ],
  "engines": {
    "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
  },
  "scripts": {
    "build": "npm run build:tsdown",
    "build:tsdown": "tsdown",
    "lint": "eslint . --config=./eslint.config.mjs --no-config-lookup",
    "tsc": "tsc --project tsconfig.build.json",
    "eslint-fix": "npm run lint -- --fix",
    "markdownlint": "npx -y markdownlint-cli2 .",
    "test": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --timeout=60000",
    "cover": "c8 --reporter=lcov npm run test",
    "test:update": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --update --timeout=60000",
    "update": "npm run build && npm run ts -- ./tools/update.ts && npm run eslint-fix",
    "new": "npm run ts -- ./tools/new-rule.ts",
    "docs:watch": "vitepress dev docs --open",
    "docs:build": "vitepress build docs",
    "ts": "node --import=tsx",
    "mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js",
    "generate:version": "env-cmd -e version -- npm run update && npm run lint -- --fix",
    "changeset:version": "changeset version && npm run generate:version && git add --all",
    "changeset:publish": "npm run build && changeset publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ota-meshi/eslint-plugin-markdown-links.git"
  },
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin",
    "markdown",
    "link",
    "dead-link",
    "lint"
  ],
  "author": "Yosuke Ota",
  "funding": "https://github.com/sponsors/ota-meshi",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ota-meshi/eslint-plugin-markdown-links/issues"
  },
  "homepage": "https://ota-meshi.github.io/eslint-plugin-markdown-links/",
  "peerDependencies": {
    "@eslint/markdown": "^7.1.0 || ^8.0.0",
    "eslint": ">=9.0.0"
  },
  "dependencies": {
    "@mdit-vue/shared": "^3.0.2",
    "entities": "^8.0.0",
    "fast-content-type-parse": "^3.0.0",
    "github-slugger": "^2.0.0",
    "sdbm": "^3.0.0",
    "synckit": "^0.11.11",
    "undici": "^7.15.0"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.28.1",
    "@changesets/get-release-plan": "^4.0.8",
    "@eslint/core": "^1.0.0",
    "@eslint/markdown": "^8.0.0",
    "@ota-meshi/eslint-plugin": "^0.20.0",
    "@oxc-node/core": "^0.1.0",
    "@shikijs/vitepress-twoslash": "^4.0.0",
    "@types/eslint": "^9.6.1",
    "@types/eslint-scope": "^9.0.0",
    "@types/eslint-utils": "^3.0.5",
    "@types/estree": "^1.0.6",
    "@types/imurmurhash": "^0.1.4",
    "@types/json-schema": "^7.0.15",
    "@types/mdast": "^4.0.4",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.0.0",
    "@types/semver": "^7.5.8",
    "assert": "^2.1.0",
    "c8": "^11.0.0",
    "env-cmd": "^11.0.0",
    "eslint": "^10.1.0",
    "eslint-compat-utils": "^0.6.4",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-eslint-plugin": "^7.0.0",
    "eslint-plugin-jsdoc": "^62.0.0",
    "eslint-plugin-json-schema-validator": "^6.0.0",
    "eslint-plugin-jsonc": "^3.0.0",
    "eslint-plugin-markdown": "^5.1.0",
    "eslint-plugin-markdown-preferences": "^0.41.0",
    "eslint-plugin-n": "^17.24.0",
    "eslint-plugin-node-dependencies": "^2.0.0",
    "eslint-plugin-prettier": "^5.2.3",
    "eslint-plugin-regexp": "^3.0.0",
    "eslint-plugin-vue": "^10.0.0",
    "eslint-plugin-yml": "^3.0.0",
    "eslint-snapshot-rule-tester": "^0.1.0",
    "eslint-typegen": "^2.0.0",
    "espree": "^11.0.0",
    "events": "^3.3.0",
    "globals": "^17.0.0",
    "mocha": "^11.1.0",
    "pako": "^2.1.0",
    "prettier": "^3.5.3",
    "semver": "^7.7.1",
    "stylelint": "^17.0.0",
    "stylelint-config-recommended": "^18.0.0",
    "stylelint-config-recommended-vue": "^1.6.0",
    "stylelint-config-standard": "^40.0.0",
    "stylelint-config-standard-vue": "^1.0.0",
    "tsdown": "^0.21.0",
    "tsx": "^4.19.3",
    "twoslash-eslint": "^0.3.1",
    "type-fest": "^5.0.0",
    "typescript": "~6.0.0",
    "typescript-eslint": "^8.58.0",
    "util": "^0.12.5",
    "vitepress": "^1.6.3",
    "vue-eslint-parser": "^10.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
