{
  "name": "local-ocr-cli",
  "version": "0.1.10",
  "description": "Fully-local OCR CLI for text-only LLMs: PaddleOCR-VL first-tier engine with tesseract fallback, dsh plugin included",
  "type": "module",
  "bin": {
    "local-ocr": "dist/main.js"
  },
  "scripts": {
    "dev": "vite build --watch",
    "build": "vite build",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "lint": "biome check src dsh",
    "format": "biome check --write src dsh",
    "prepublishOnly": "pnpm build"
  },
  "files": [
    "dist",
    "docs",
    "skills/local-ocr/SKILL.md",
    "skills/local-ocr/scripts",
    "skills/local-ocr/references",
    "dsh",
    "cordis.patch.yml",
    "engine",
    "README.md",
    "README.zh-CN.md",
    "INSTALL.md",
    "LICENSE",
    "examples",
    "scripts",
    "skills/local-ocr-hermes/SKILL.md",
    "skills/local-ocr-hermes/scripts"
  ],
  "keywords": [
    "cli",
    "vision",
    "ocr",
    "paddleocr",
    "paddleocr-vl",
    "tesseract",
    "agent-skill",
    "deepseek-harness",
    "dsh",
    "image-to-text",
    "local",
    "offline",
    "privacy"
  ],
  "author": "alsj213",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alsj213/local-ocr-cli.git"
  },
  "bugs": {
    "url": "https://github.com/alsj213/local-ocr-cli/issues"
  },
  "homepage": "https://github.com/alsj213/local-ocr-cli#readme",
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "commander": "^13.1.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.7",
    "@types/node": "^22.19.7",
    "@vitest/coverage-v8": "^3.2.7",
    "typescript": "^5.9.3",
    "vite": "^6.4.1",
    "vitest": "^3.2.7"
  },
  "exports": {
    ".": "./dsh/index.js",
    "./dsh": "./dsh/index.js",
    "./package.json": "./package.json"
  },
  "dsh": {
    "bundle": {
      "patch": "./cordis.patch.yml"
    },
    "client": {
      "inject": [],
      "platform": "web",
      "immediately": true
    }
  }
}
