{
  "name": "@mrsf/cli",
  "version": "0.7.1",
  "description": "CLI and library for the Markdown Review Sidecar Format (MRSF)",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "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"
    }
  },
  "bin": {
    "mrsf": "./dist/bin.js"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc && node esbuild.config.mjs",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "tsc --noEmit",
    "eval:reanchor": "tsc && node dist/evaluation/run-reanchor-eval.js",
    "eval:reanchor:baseline": "tsc && node dist/evaluation/run-reanchor-eval.js --baseline ../evaluation/reanchor/baseline.json",
    "eval:reanchor:generate": "tsc && node dist/evaluation/run-reanchor-generator.js",
    "eval:reanchor:profile": "tsc && node dist/evaluation/run-reanchor-profile.js",
    "prepublishOnly": "cp ../LICENSE . && npm run build && npm test",
    "postpublish": "rm -f LICENSE"
  },
  "keywords": [
    "markdown",
    "review",
    "sidecar",
    "mrsf",
    "sidemark",
    "anchoring",
    "comments",
    "cli",
    "yaml",
    "validation",
    "reanchor"
  ],
  "license": "MIT",
  "author": "Wictor Wilén (https://github.com/wictorwilen)",
  "homepage": "https://github.com/wictorwilen/MRSF/tree/main/cli#readme",
  "bugs": {
    "url": "https://github.com/wictorwilen/MRSF/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wictorwilen/MRSF.git",
    "directory": "cli"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "dist/**/*.cjs",
    "dist/**/*.cjs.map",
    "mrsf.schema.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "chalk": "^5.4.1",
    "chokidar": "^4.0.3",
    "commander": "^13.1.0",
    "fastest-levenshtein": "^1.0.16",
    "js-yaml": "^4.1.0",
    "uuid": "^11.1.0",
    "yaml": "^2.8.2"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.13.10",
    "@types/uuid": "^10.0.0",
    "@vitest/coverage-v8": "^4.0.18",
    "typescript": "^5.8.2",
    "vitest": "^4.0.18",
    "esbuild": "^0.27.3"
  },
  "module": "./dist/index.js",
  "sideEffects": false
}
