{
  "name": "deltae-js",
  "version": "1.1.9",
  "description": "CIE color difference algorithms in JavaScript/TypeScript.",
  "license": "UNLICENSED",
  "author": "Khoeckman",
  "type": "module",
  "main": "dist/index.umd.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.umd.js"
    }
  },
  "files": [
    "src/",
    "dist/"
  ],
  "scripts": {
    "test": "vitest run",
    "test:ui": "vitest --ui",
    "build": "rollup -c",
    "prepack": "bun test && bun run build"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^29.0.2",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@vitest/ui": "^4.0.18",
    "prettier": "^3.8.1",
    "rollup": "^4.59.0",
    "rollup-plugin-delete": "^3.0.2",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://github.com/Khoeckman/DeltaE-js#readme",
  "bugs": {
    "url": "https://github.com/Khoeckman/DeltaE-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Khoeckman/DeltaE-js.git"
  },
  "keywords": [
    "CIE",
    "CIE76",
    "CMC",
    "CIE94",
    "CIE00",
    "CIEDE2000",
    "color difference",
    "color algorithm",
    "delta e"
  ]
}
