{
  "name": "@tiptap/html",
  "description": "utility package to render tiptap JSON as HTML",
  "version": "3.15.3",
  "homepage": "https://tiptap.dev",
  "keywords": [
    "tiptap",
    "tiptap utility"
  ],
  "license": "MIT",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/ueberdosis"
  },
  "exports": {
    ".": {
      "types": {
        "import": "./dist/index.d.ts",
        "require": "./dist/index.d.cts"
      },
      "import": {
        "browser": "./dist/index.js",
        "node": "./dist/server/index.js",
        "default": "./dist/index.js"
      },
      "require": "./dist/index.cjs"
    },
    "./server": {
      "types": {
        "import": "./dist/server/index.d.ts",
        "require": "./dist/server/index.d.cts"
      },
      "import": "./dist/server/index.js",
      "require": "./dist/server/index.cjs"
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "src",
    "dist"
  ],
  "devDependencies": {
    "happy-dom": "^20.0.2",
    "@tiptap/core": "^3.15.3",
    "@tiptap/pm": "^3.15.3"
  },
  "peerDependencies": {
    "happy-dom": "^20.0.2",
    "@tiptap/core": "^3.15.3",
    "@tiptap/pm": "^3.15.3"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ueberdosis/tiptap",
    "directory": "packages/html"
  },
  "scripts": {
    "build": "tsup",
    "lint": "prettier ./src/ --check && eslint --cache --quiet --no-error-on-unmatched-pattern ./src/"
  }
}