{
  "name": "remark-mdat",
  "version": "2.2.3",
  "description": "A remark plugin implementing the Markdown Autophagic Template (MDAT) system.",
  "keywords": [
    "mdat",
    "markdown",
    "template",
    "comments",
    "unist",
    "mdast",
    "mdast-util",
    "syntax-tree",
    "remark",
    "remark-plugin"
  ],
  "homepage": "https://github.com/kitschpatrol/remark-mdat",
  "bugs": "https://github.com/kitschpatrol/remark-mdat/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kitschpatrol/remark-mdat.git"
  },
  "license": "MIT",
  "author": {
    "name": "Eric Mika",
    "email": "eric@ericmika.com",
    "url": "https://ericmika.com"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/*"
  ],
  "dependencies": {
    "@types/mdast": "^4.0.4",
    "@types/unist": "^3.0.3",
    "gray-matter-es": "^0.2.1",
    "hast-util-from-html": "^2.0.3",
    "json5": "^2.2.3",
    "lognow": "^0.6.2",
    "picocolors": "^1.1.1",
    "remark": "^15.0.1",
    "remark-gfm": "^4.0.1",
    "type-fest": "^5.6.0",
    "unified": "^11.0.5",
    "unist-util-visit": "^5.1.0",
    "vfile": "^6.0.3",
    "vfile-message": "^4.0.3",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@arethetypeswrong/core": "^0.18.2",
    "@kitschpatrol/shared-config": "^7.6.0",
    "@types/node": "~20.19.41",
    "@vitest/coverage-v8": "^4.1.6",
    "bumpp": "^11.1.0",
    "publint": "^0.3.21",
    "shx": "^0.4.0",
    "tsdown": "^0.22.0",
    "typescript": "~5.9.3",
    "vitest": "^4.1.6"
  },
  "engines": {
    "node": ">=20.19.6"
  },
  "devEngines": {
    "runtime": {
      "name": "node",
      "version": ">=22.21.0"
    }
  },
  "scripts": {
    "bench": "vitest bench --run --no-file-parallelism --compare test/benchmarks/baseline.json",
    "bench:baseline": "vitest bench --run --no-file-parallelism --outputJson test/benchmarks/baseline.json",
    "build": "tsdown",
    "clean": "shx rm -f pnpm-lock.yaml && git clean -fdX -e !.claude/",
    "coverage": "vitest --coverage --run",
    "dev": "pnpm test",
    "fix": "ksc fix",
    "lint": "ksc lint",
    "release": "bumpp --commit 'Release: %s' && pnpm build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') pnpm publish",
    "release-preview": "bumpp --preid preview --commit 'Release: %s' && pnpm build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') pnpm publish --tag preview",
    "test": "vitest run"
  }
}