{
  "name": "@paulmeller/docflow",
  "version": "0.0.28",
  "type": "module",
  "description": "A developer-friendly transformation engine for programmatic document manipulation",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup src/index.js --format cjs,esm --dts",
    "dev": "tsup src/index.js --format cjs,esm --dts --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .js",
    "format": "prettier --write 'src/**/*.js'",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "document",
    "transformation",
    "docx",
    "markdown",
    "html",
    "conversion",
    "superdoc",
    "prosemirror",
    "document-processing",
    "batch-processing",
    "format-conversion",
    "document-query",
    "headless",
    "automation"
  ],
  "author": "Paul Meller",
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@vitest/coverage-v8": "^1.0.0",
    "eslint": "^8.55.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.0",
    "prettier": "^3.6.2",
    "tsup": "^8.0.0",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@harbour-enterprises/superdoc": "^0.22.1",
    "docx": "^9.5.1",
    "jsdom": "^27.0.0",
    "marked": "^16.3.0",
    "turndown": "^7.2.1",
    "turndown-plugin-gfm": "^1.0.2"
  }
}
