{
  "name": "styleproof",
  "version": "6.1.1",
  "description": "Catch every CSS change before it ships — review PRs and certify refactors by the browser's computed styles, not pixels. Works with any styling system.",
  "keywords": [
    "playwright",
    "css",
    "refactoring",
    "visual-regression",
    "computed-style",
    "computed-styles",
    "tailwind",
    "migration",
    "snapshot",
    "testing",
    "ci"
  ],
  "license": "MIT",
  "author": "Ben Sheridan-Edwards",
  "homepage": "https://github.com/BenSheridanEdwards/StyleProof#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BenSheridanEdwards/StyleProof.git"
  },
  "bugs": {
    "url": "https://github.com/BenSheridanEdwards/StyleProof/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "styleproof": "./bin/styleproof.mjs",
    "styleproof-init": "./bin/styleproof-init.mjs",
    "styleproof-map": "./bin/styleproof-map.mjs",
    "styleproof-capture": "./bin/styleproof-capture.mjs",
    "styleproof-diff": "./bin/styleproof-diff.mjs",
    "styleproof-report": "./bin/styleproof-report.mjs",
    "styleproof-variants": "./bin/styleproof-variants.mjs",
    "styleproof-prepush": "./bin/styleproof-prepush.mjs",
    "styleproof-affected": "./bin/styleproof-affected.mjs",
    "styleproof-ci": "./bin/styleproof-ci.mjs",
    "styleproof-publish-report": "./bin/styleproof-publish-report.mjs",
    "styleproof-prune-reports": "./bin/styleproof-prune-reports.mjs",
    "styleproof-prune-maps": "./bin/styleproof-prune-maps.mjs"
  },
  "files": [
    "dist",
    "bin",
    "example/styleproof-approve.yml",
    "docs/demo-composite.png",
    "docs/evidence-store-v2.md",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write \"{src,bin,test,example,scripts}/**/*.{ts,mjs,js}\" \"*.{ts,js,mjs,json,md}\"",
    "format:check": "prettier --check \"{src,bin,test,example,scripts}/**/*.{ts,mjs,js}\" \"*.{ts,js,mjs,json,md}\"",
    "privacy:check": "node scripts/privacy-check.mjs",
    "test": "npm run build && node --test test/*.test.mjs",
    "test:watch": "node --test --watch test/*.test.mjs",
    "test:e2e": "npm run build && playwright test",
    "bench": "npm run build && node bench/gate-speed.mjs",
    "demo:report": "npm run build && node scripts/demo-report.mjs",
    "demo:check": "npm run build && node scripts/demo-report.mjs --check",
    "init": "node ./bin/styleproof-init.mjs",
    "prepare": "npm run build && node .husky/install.mjs",
    "prepublishOnly": "npm run clean && npm run build && npm run typecheck && npm run lint && npm run format:check && npm run privacy:check && npm test && npm run test:e2e"
  },
  "peerDependencies": {
    "@playwright/test": ">=1.40"
  },
  "dependencies": {
    "pngjs": "^7.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^21.2.0",
    "@commitlint/config-conventional": "^21.2.0",
    "@eslint/js": "^10.0.1",
    "@playwright/test": "^1.60.0",
    "@types/node": "^26.2.0",
    "@types/pngjs": "^6.0.5",
    "eslint": "^10.8.1",
    "fallow": "3.14.0",
    "globals": "^17.11.0",
    "husky": "^9.1.7",
    "prettier": "^3.9.6",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.67.0"
  }
}
