{
  "name": "magpie-html",
  "version": "0.2.3",
  "description": "Modern TypeScript library for scraping web content with isomorphic support",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsx src/index.ts",
    "test": "node --import tsx --test $(find src -name '*.test.ts' -type f)",
    "test:watch": "node --import tsx --test --watch $(find src -name '*.test.ts' -type f)",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "check": "npm run typecheck && npm run lint",
    "prepublishOnly": "npm run check && npm run build",
    "typecheck": "tsc --noEmit",
    "docs": "typedoc",
    "docs:serve": "npx serve docs",
    "release:patch": "npm run check && npm version patch -m 'Release v%s' && git push && git push --tags",
    "release:minor": "npm run check && npm version minor -m 'Release v%s' && git push && git push --tags",
    "release:major": "npm run check && npm version major -m 'Release v%s' && git push && git push --tags"
  },
  "keywords": [
    "scraping",
    "html",
    "web-scraping",
    "parser",
    "isomorphic",
    "typescript",
    "spa",
    "rendering",
    "headless"
  ],
  "author": {
    "name": "Anonyfox",
    "email": "max@anonyfox.com",
    "url": "https://anonyfox.com"
  },
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "^2.3.9",
    "@types/node": "^22.10.2",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typedoc": "^0.28.15",
    "typescript": "^5.7.2"
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=9.0.0"
  },
  "engineStrict": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/Anonyfox/magpie-html.git"
  },
  "bugs": {
    "url": "https://github.com/Anonyfox/magpie-html/issues"
  },
  "homepage": "https://github.com/Anonyfox/magpie-html#readme",
  "dependencies": {
    "@mozilla/readability": "^0.6.0",
    "linkedom": "^0.18.12"
  }
}
