{
  "name": "zeed-dom",
  "type": "module",
  "version": "0.18.0",
  "description": "🌱 Lightweight offline DOM",
  "author": {
    "name": "Dirk Holtwick",
    "email": "dirk.holtwick@gmail.com",
    "url": "https://holtwick.de"
  },
  "license": "MIT",
  "funding": {
    "type": "GitHub Sponsors ❤",
    "url": "https://github.com/sponsors/holtwick"
  },
  "homepage": "https://github.com/holtwick/zeed-dom",
  "repository": {
    "type": "git",
    "url": "https://github.com/holtwick/zeed-dom.git"
  },
  "bugs": {
    "url": "https://github.com/holtwick/zeed-dom/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/index.node.d.ts",
      "browser": "./dist/index.browser.js",
      "require": "./dist/index.browser.cjs",
      "node": "./dist/index.node.js",
      "default": "./dist/index.browser.js"
    },
    "./jsx-runtime": {
      "types": "./jsx-runtime/index.d.ts",
      "browser": "./jsx-runtime/index.js",
      "import": "./jsx-runtime/index.js",
      "require": "./jsx-runtime/index.cjs"
    },
    "./jsx-dev-runtime": {
      "types": "./jsx-runtime/index.d.ts",
      "browser": "./jsx-runtime/index.js",
      "import": "./jsx-runtime/index.js",
      "require": "./jsx-runtime/index.cjs"
    }
  },
  "main": "dist/index.node.cjs",
  "module": "dist/index.browser.js",
  "types": "dist/index.node.d.ts",
  "typings": "dist/index.node.d.ts",
  "files": [
    "dist",
    "jsx-runtime"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "css-what": "^7.0.0",
    "entities": "^6.0.1"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^4.17.0",
    "@antfu/ni": "^25.0.0",
    "@types/node": "^24.0.15",
    "@vitest/coverage-v8": "^3.2.4",
    "c8": "^10.1.3",
    "eslint": "^9.31.0",
    "tsup": "^8.5.0",
    "tsx": "^4.20.3",
    "typedoc": "^0.28.7",
    "typescript": "^5.8.3",
    "vite": "^7.0.5",
    "vitest": "^3.2.4",
    "zeed": "^1.0.1"
  },
  "scripts": {
    "build": "npm run clean && npm run build:tsup",
    "build:docs": "typedoc src/index.ts",
    "build:tsup": "tsup src/index.browser.ts src/index.node.ts src/jsx-runtime.ts --dts --sourcemap --format esm,cjs",
    "check": "tsc --noEmit -p tsconfig.json",
    "clean": "rm -rf dist",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "perf": "tsx test/files-bench.ts",
    "perf:files": "tsx test/files-bench.ts",
    "perf:parser": "tsx test/htmlparser-bench.ts",
    "profile:parser": "tsx --cpu-prof test/htmlparser-bench.ts",
    "inspect:parser": "tsx --inspect-brk test/htmlparser-bench.ts",
    "start": "npm run watch",
    "test": "vitest src --coverage --globals --run",
    "watch": "npm run build:tsup -- --watch"
  }
}