{
  "name": "paddleocr-webgpu",
  "version": "1.4.0",
  "description": "PP-OCR text recognition in the browser via WebGPU — no ONNX Runtime, no WASM, just hand-written WGSL compute shaders.",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./shaders": {
      "types": "./dist/shaders-ppocr.d.ts",
      "import": "./dist/shaders-ppocr.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "tsc -p tsconfig.build.json",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "ocr",
    "pp-ocr",
    "webgpu",
    "typescript",
    "browser-ml"
  ],
  "license": "Apache-2.0",
  "devDependencies": {
    "@webgpu/types": "^0.1.70",
    "typescript": "^5.4.5"
  }
}
