{
  "name": "react-pdf-engine",
  "version": "1.0.0",
  "description": "Offline Chromium PDF rendering engine for React and Tauri applications.",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "examples/smoke-render.mjs"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "test": "npm run build && node --test tests/*.test.cjs",
    "pack:dry": "npm pack --dry-run",
    "smoke": "npm run build && node examples/smoke-render.mjs"
  },
  "keywords": [
    "pdf",
    "chromium",
    "tauri",
    "react",
    "puppeteer-core"
  ],
  "author": "",
  "license": "ISC",
  "type": "commonjs",
  "dependencies": {
    "puppeteer-core": "^24.43.0"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3"
  }
}
