{
  "name": "@ansonlai/docx-redline-js",
  "version": "0.1.6",
  "description": "Host-independent OOXML reconciliation engine for .docx manipulation with track changes",
  "license": "MIT",
  "type": "module",
  "main": "./index.js",
  "module": "./index.js",
  "types": "./index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "import": "./index.js",
      "default": "./index.js"
    },
    "./standalone-runner": "./services/standalone-operation-runner.js",
    "./redline-operation-converter": "./orchestration/redline-operation-converter.js",
    "./adapters/*": "./adapters/*",
    "./core/*": "./core/*",
    "./engine/*": "./engine/*",
    "./pipeline/*": "./pipeline/*",
    "./services/*": "./services/*",
    "./orchestration/*": "./orchestration/*"
  },
  "files": [
    "adapters/",
    "core/",
    "engine/",
    "pipeline/",
    "services/",
    "orchestration/",
    "scripts/",
    "docs/",
    "index.js",
    "index.d.ts",
    "dist/",
    "ARCHITECTURE.md",
    "AGENTS.md",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "diff-match-patch": "^1.0.5"
  },
  "peerDependencies": {
    "@xmldom/xmldom": ">=0.8.0"
  },
  "peerDependenciesMeta": {
    "@xmldom/xmldom": {
      "optional": true
    }
  },
  "devDependencies": {
    "esbuild": "^0.24.0",
    "@xmldom/xmldom": "^0.9.0"
  },
  "scripts": {
    "build": "node scripts/build.mjs",
    "check:types": "node scripts/check-types.mjs",
    "smoke:word": "powershell -File scripts/word-com-smoke.ps1",
    "test": "node scripts/run-tests.mjs",
    "test:isolation": "node tests/no_word_api_index_check.mjs && node tests/core_dependency_graph_check.mjs",
    "prepublishOnly": "npm run test:isolation && npm run build"
  },
  "keywords": [
    "docx",
    "ooxml",
    "reconciliation",
    "track-changes",
    "redlines",
    "word",
    "office",
    "document",
    "xml"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/AnsonLai/docx-redline-js.git"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
