{
  "name": "@opendisplay/epaper-dithering",
  "version": "6.0.0",
  "description": "Dithering algorithms for e-paper/e-ink displays (JavaScript/TypeScript)",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "bun run build && bunx serve . --listen 3456",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "type-check": "tsc --noEmit",
    "lint": "eslint src/ tests/",
    "lint:fix": "eslint src/ tests/ --fix",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "epaper",
    "eink",
    "e-paper",
    "e-ink",
    "dithering",
    "image-processing",
    "display",
    "browser",
    "nodejs",
    "typescript"
  ],
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^2.0.0",
    "eslint": "^9.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.6.0",
    "vitest": "^2.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/OpenDisplay/epaper-dithering.git",
    "directory": "packages/javascript"
  },
  "homepage": "https://github.com/OpenDisplay/epaper-dithering#readme"
}
