{
  "name": "@blazediff/bun",
  "version": "1.2.12",
  "description": "Bun test matcher for visual regression testing with blazediff",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "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"
  ],
  "keywords": [
    "bun",
    "image",
    "comparison",
    "diff",
    "visual-testing",
    "matcher",
    "snapshot"
  ],
  "author": "Teimur Gasanov <me@teimurjan.dev> (https://github.com/teimurjan)",
  "repository": "https://github.com/teimurjan/blazediff",
  "homepage": "https://blazediff.dev",
  "license": "MIT",
  "dependencies": {
    "@blazediff/matcher": "2.0.4"
  },
  "devDependencies": {
    "@types/bun": "^1.2.10",
    "@types/node": "^24.3.0",
    "tsup": "8.5.0",
    "typescript": "5.9.2"
  },
  "peerDependencies": {
    "bun": ">=1.0.0"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "test": "bun test"
  }
}