{
  "name": "markdown-docx",
  "version": "1.6.0",
  "description": "Convert Markdown file to DOCX format",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "browser": "dist/index.mjs",
  "homepage": "https://github.com/vace/markdown-docx",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "node": "./dist/index.node.mjs",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "node": "./dist/index.node.cjs",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "markdown-docx": "bin/markdown-docx.mjs"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "bin"
  ],
  "keywords": [
    "markdown",
    "docx",
    "converter",
    "markdown-to-docx",
    "markdown-docx",
    "markdown-to-word",
    "markdown-to-doc",
    "markdown-to-word-doc"
  ],
  "author": {
    "name": "Vace",
    "email": "ocdo@qq.com",
    "url": "https://github.com/vace"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/vace/markdown-docx.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^22.14.0",
    "tsdown": "^0.15.1",
    "typescript": "^5.8.3",
    "vitest": "^3.1.1"
  },
  "dependencies": {
    "commander": "^13.1.0",
    "docx": "^9.5.1",
    "fast-xml-parser": "^5.3.0",
    "image-size": "^2.0.2",
    "katex": "^0.16.23",
    "marked": "^15.0.8"
  },
  "release-it": {
    "npm": {
      "publish": false
    }
  },
  "scripts": {
    "dev": "tsdown --watch",
    "build": "tsdown",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "release-it": "release-it",
    "ts-check": "tsc --noEmit"
  }
}