{
  "name": "@portabletext/html",
  "version": "1.0.1",
  "description": "Convert HTML to Portable Text with built-in support for Google Docs, Word, and Notion",
  "keywords": [
    "portable-text",
    "html"
  ],
  "homepage": "https://portabletext.org",
  "bugs": {
    "url": "https://github.com/portabletext/editor/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/portabletext/editor.git",
    "directory": "packages/html"
  },
  "license": "MIT",
  "author": "Sanity.io <hello@sanity.io>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./rules": "./dist/rules/index.js",
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@vercel/stega": "^1.1.0",
    "@portabletext/schema": "^2.1.1"
  },
  "devDependencies": {
    "@portabletext/types": "^4.0.2",
    "@sanity/pkg-utils": "^10.2.1",
    "@sanity/tsconfig": "^2.1.0",
    "@types/jsdom": "^27.0.0",
    "@types/node": "^20",
    "jsdom": "^27.0.0",
    "typescript": "5.9.3",
    "vitest": "^4.1.0",
    "@portabletext/test": "^1.0.3"
  },
  "engines": {
    "node": ">=20.19 <22 || >=22.12"
  },
  "scripts": {
    "build": "pkg-utils build --strict --check --clean",
    "check:lint": "biome lint .",
    "check:types": "tsc",
    "check:types:watch": "tsc --watch",
    "clean": "del .turbo && del dist && del node_modules",
    "dev": "pkg-utils watch",
    "lint:fix": "biome lint --write .",
    "test": "vitest --run",
    "test:unit": "vitest --run --project unit",
    "test:unit:watch": "vitest --project unit",
    "test:watch": "vitest"
  }
}