{
  "name": "html-to-document-core",
  "version": "0.4.2",
  "description": "Core engine that parses HTML into an intermediate DocumentElement tree and exposes a plugin registry so external adapters can convert that tree into DOCX, PDF, XLSX, Markdown and more.",
  "keywords": [
    "html-to-document",
    "html",
    "parser",
    "document",
    "converter",
    "core"
  ],
  "license": "ISC",
  "homepage": "https://github.com/ChipiKaf/html-to-document#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ChipiKaf/html-to-document.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/ChipiKaf/html-to-document/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": {
        "default": "./dist/index.d.ts"
      },
      "require": {
        "default": "./dist/index.js"
      },
      "import": {
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "@asamuzakjp/css-color": "^3.1.2",
    "colornames": "^1.1.1",
    "csstype": "^3.1.3",
    "jsdom": "^26.0.0",
    "rrweb-cssom": "^0.8.0",
    "tldts": "^6.1.32"
  },
  "peerDependencies": {
    "docx": "*"
  },
  "engines": {
    "node": ">=14"
  },
  "devDependencies": {
    "vitest": "^3.2.4"
  },
  "scripts": {
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "build": "tsc -p tsconfig.json",
    "test": "vitest --watch false",
    "test:watch": "vitest --watch",
    "lint": "eslint 'src/**/*.{ts,tsx}' --ignore-pattern '**/*.d.ts'",
    "format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,css,md}'"
  }
}