{
  "name": "markdownlint",
  "version": "0.40.0",
  "description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
  "type": "module",
  "exports": {
    ".": "./lib/exports.mjs",
    "./async": "./lib/exports-async.mjs",
    "./promise": "./lib/exports-promise.mjs",
    "./sync": "./lib/exports-sync.mjs",
    "./helpers": "./helpers/helpers.cjs",
    "./style/all": "./style/all.json",
    "./style/cirosantilli": "./style/cirosantilli.json",
    "./style/prettier": "./style/prettier.json",
    "./style/relaxed": "./style/relaxed.json"
  },
  "imports": {
    "#node-imports": {
      "markdownlint-imports-browser": "./lib/node-imports-browser.mjs",
      "markdownlint-imports-node": "./lib/node-imports-node.mjs",
      "browser": "./lib/node-imports-browser.mjs",
      "default": "./lib/node-imports-node.mjs"
    }
  },
  "types": "./lib/types.d.mts",
  "author": "David Anson (https://dlaa.me/)",
  "license": "MIT",
  "homepage": "https://github.com/DavidAnson/markdownlint",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DavidAnson/markdownlint.git"
  },
  "bugs": "https://github.com/DavidAnson/markdownlint/issues",
  "funding": "https://github.com/sponsors/DavidAnson",
  "scripts": {
    "build-config": "npm run build-config-schema && npm run build-config-example",
    "build-config-example": "node schema/build-config-example.mjs",
    "build-config-schema": "node schema/build-config-schema.mjs",
    "build-declaration": "tsc --allowJs --checkJs --declaration --emitDeclarationOnly --module nodenext --outDir dts --rootDir . --target es2015 lib/exports.mjs lib/exports-async.mjs lib/exports-promise.mjs lib/exports-sync.mjs lib/markdownlint.mjs lib/resolve-module.cjs && node scripts/index.mjs copy dts/lib/exports.d.mts lib/exports.d.mts && node scripts/index.mjs copy dts/lib/exports-async.d.mts lib/exports-async.d.mts && node scripts/index.mjs copy dts/lib/exports-promise.d.mts lib/exports-promise.d.mts && node scripts/index.mjs copy dts/lib/exports-sync.d.mts lib/exports-sync.d.mts && node scripts/index.mjs copy dts/lib/markdownlint.d.mts lib/markdownlint.d.mts && node scripts/index.mjs copy dts/lib/resolve-module.d.cts lib/resolve-module.d.cts && node scripts/index.mjs remove dts",
    "build-demo": "node scripts/index.mjs copy node_modules/markdown-it/dist/markdown-it.min.js demo/markdown-it.min.js && cd demo && webpack --no-stats",
    "build-docs": "node doc-build/build-rules.mjs",
    "ci": "npm-run-all --continue-on-error --parallel build-demo lint serial-config-docs serial-declaration test-cover && git diff --exit-code",
    "clone-test-repos-apache-airflow": "cd test-repos && git clone https://github.com/apache/airflow apache-airflow --depth 1 --no-tags --quiet",
    "clone-test-repos-dotnet-docs": "cd test-repos && git clone https://github.com/dotnet/docs dotnet-docs --depth 1 --no-tags --quiet",
    "clone-test-repos-electron-electron": "cd test-repos && git clone https://github.com/electron/electron electron-electron --depth 1 --no-tags --quiet && cd electron-electron && node ../../scripts/index.mjs delete package.json && npm install --no-save --ignore-scripts @electron/lint-roller",
    "clone-test-repos-eslint-eslint": "cd test-repos && git clone https://github.com/eslint/eslint eslint-eslint --depth 1 --no-tags --quiet",
    "clone-test-repos-mdn-content": "cd test-repos && git clone https://github.com/mdn/content mdn-content --depth 1 --no-tags --quiet",
    "clone-test-repos-mkdocs-mkdocs": "cd test-repos && git clone https://github.com/mkdocs/mkdocs mkdocs-mkdocs --depth 1 --no-tags --quiet",
    "clone-test-repos-mochajs-mocha": "cd test-repos && git clone https://github.com/mochajs/mocha mochajs-mocha --depth 1 --no-tags --quiet",
    "clone-test-repos-pi-hole-docs": "cd test-repos && git clone https://github.com/pi-hole/docs pi-hole-docs --depth 1 --no-tags --quiet",
    "clone-test-repos-v8-v8-dev": "cd test-repos && git clone https://github.com/v8/v8.dev v8-v8-dev --depth 1 --no-tags --quiet",
    "clone-test-repos-webhintio-hint": "cd test-repos && git clone https://github.com/webhintio/hint webhintio-hint --depth 1 --no-tags --quiet",
    "clone-test-repos-webpack-webpack-js-org": "cd test-repos && git clone https://github.com/webpack/webpack.js.org webpack-webpack-js-org --depth 1 --no-tags --quiet",
    "clone-test-repos": "mkdir test-repos && cd test-repos && npm run clone-test-repos-apache-airflow && npm run clone-test-repos-dotnet-docs && npm run clone-test-repos-electron-electron && npm run clone-test-repos-eslint-eslint && npm run clone-test-repos-mdn-content && npm run clone-test-repos-mkdocs-mkdocs && npm run clone-test-repos-mochajs-mocha && npm run clone-test-repos-pi-hole-docs && npm run clone-test-repos-v8-v8-dev && npm run clone-test-repos-webhintio-hint && npm run clone-test-repos-webpack-webpack-js-org",
    "declaration": "npm run build-declaration && npm run test-declaration",
    "example": "cd example && node standalone.mjs",
    "lint": "eslint --max-warnings 0",
    "lint-test-repos": "ava --timeout=10m test/markdownlint-test-repos-*.mjs",
    "serial-config-docs": "npm run build-config && npm run build-docs",
    "serial-declaration": "npm run build-declaration && npm run test-declaration",
    "test": "ava --timeout=30s test/markdownlint-test.mjs test/markdownlint-test-config.mjs test/markdownlint-test-custom-rules.mjs test/markdownlint-test-exports.mjs test/markdownlint-test-fixes.mjs test/markdownlint-test-helpers.mjs test/markdownlint-test-micromark.mjs test/markdownlint-test-project.mjs test/markdownlint-test-result-object.mjs test/markdownlint-test-scenarios.mjs test/parse-configuration-test.mjs test/resolve-module-test.mjs helpers/test.cjs",
    "test-cover": "c8 --100 npm test",
    "test-declaration": "npm-run-all --continue-on-error --parallel test-declaration-cts test-declaration-mts",
    "test-declaration-cts": "cd example/typescript && node ../../scripts/index.mjs copy type-check.ts type-check-commonjs.cts && tsc --module commonjs --esModuleInterop type-check-commonjs.cts",
    "test-declaration-mts": "cd example/typescript && node ../../scripts/index.mjs copy type-check.ts type-check-nodenext.mts && tsc --module nodenext                   type-check-nodenext.mts && node type-check-nodenext.mjs",
    "test-extra": "ava --timeout=10m test/markdownlint-test-extra-parse.mjs test/markdownlint-test-extra-type.mjs",
    "update-snapshots": "ava --update-snapshots test/markdownlint-test-custom-rules.mjs test/markdownlint-test-exports.mjs test/markdownlint-test-micromark.mjs test/markdownlint-test-scenarios.mjs",
    "update-snapshots-test-repos": "ava --timeout=10m --update-snapshots test/markdownlint-test-repos-*.mjs",
    "update-test-repos": "node scripts/index.mjs remove ./test-repos && npm run clone-test-repos && npm run update-snapshots-test-repos",
    "upgrade": "npx --yes npm-check-updates --upgrade"
  },
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "micromark": "4.0.2",
    "micromark-core-commonmark": "2.0.3",
    "micromark-extension-directive": "4.0.0",
    "micromark-extension-gfm-autolink-literal": "2.1.0",
    "micromark-extension-gfm-footnote": "2.1.0",
    "micromark-extension-gfm-table": "2.1.1",
    "micromark-extension-math": "3.1.0",
    "micromark-util-types": "2.0.2",
    "string-width": "8.1.0"
  },
  "devDependencies": {
    "@eslint/js": "9.39.1",
    "@stylistic/eslint-plugin": "5.6.1",
    "ajv": "8.17.1",
    "ava": "6.4.1",
    "c8": "10.1.3",
    "character-entities": "2.0.2",
    "eslint": "9.39.1",
    "eslint-plugin-jsdoc": "61.4.1",
    "eslint-plugin-n": "17.23.1",
    "eslint-plugin-regexp": "2.10.0",
    "eslint-plugin-unicorn": "62.0.0",
    "gemoji": "8.1.0",
    "globby": "16.0.0",
    "js-yaml": "4.1.1",
    "json-schema-to-typescript": "15.0.4",
    "jsonc-parser": "3.3.1",
    "markdown-it": "14.1.0",
    "markdown-it-for-inline": "2.0.1",
    "markdown-it-sub": "2.0.0",
    "markdown-it-sup": "2.0.0",
    "markdownlint-rule-extended-ascii": "0.2.1",
    "nano-spawn": "2.0.0",
    "npm-run-all": "4.1.5",
    "terser-webpack-plugin": "5.3.14",
    "toml": "3.0.0",
    "typescript": "5.9.3",
    "webpack": "5.103.0",
    "webpack-cli": "6.0.1"
  },
  "keywords": [
    "markdown",
    "lint",
    "md",
    "CommonMark",
    "markdownlint"
  ]
}
