{
  "name": "@mrsf/rehype-mrsf",
  "version": "0.5.1",
  "description": "rehype plugin for rendering Sidemark/MRSF (Markdown Review Sidecar Format) review comments",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "browser": {
        "types": "./dist/browser.d.ts",
        "import": "./dist/browser.js",
        "require": "./dist/browser.cjs"
      },
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./browser": {
      "types": "./dist/browser.d.ts",
      "browser": "./dist/browser.js",
      "import": "./dist/browser.js",
      "require": "./dist/browser.cjs"
    },
    "./style.css": "./dist/style.css",
    "./controller": {
      "types": "./dist/controller.d.ts",
      "import": "./dist/controller.js",
      "require": "./dist/controller.cjs"
    }
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "node ../sync-types.mjs && node esbuild.config.mjs",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "tsc --noEmit",
    "prepublishOnly": "cp ../../LICENSE . && npm run build && npm test",
    "postpublish": "rm -f LICENSE"
  },
  "keywords": [
    "rehype",
    "rehype-plugin",
    "unified",
    "remark",
    "markdown",
    "review",
    "sidecar",
    "mrsf",
    "sidemark",
    "comments",
    "annotation",
    "highlight",
    "tooltip",
    "rendering"
  ],
  "license": "MIT",
  "author": "Wictor Wilén (https://github.com/wictorwilen)",
  "homepage": "https://github.com/wictorwilen/MRSF/tree/main/plugins/rehype#readme",
  "bugs": {
    "url": "https://github.com/wictorwilen/MRSF/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wictorwilen/MRSF.git",
    "directory": "plugins/rehype"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.js.map",
    "dist/**/*.d.ts",
    "dist/**/*.cjs",
    "dist/**/*.cjs.map",
    "dist/style.css",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@mrsf/cli": "^0.5.0 || ^0.6.0 || ^0.7.0",
    "unist-util-visit": "^5.0.0"
  },
  "peerDependencies": {
    "unified": ">=10"
  },
  "peerDependenciesMeta": {
    "unified": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/hast": "^3.0.4",
    "@types/node": "^22.13.10",
    "@vitest/coverage-v8": "^3.2.4",
    "esbuild": "^0.27.3",
    "rehype-stringify": "^10.0.1",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.1.1",
    "typescript": "^5.8.2",
    "unified": "^11.0.5",
    "vitest": "^3.2.4"
  },
  "sideEffects": [
    "./dist/controller.js",
    "./dist/controller.cjs",
    "./dist/style.css"
  ]
}
