{
  "name": "color-contrast-finder",
  "description": "The Color Contrast Finder is a library that automatically selects text colors that contrast with a given color.",
  "version": "1.0.4",
  "author": "Chad.K <kangqod@naver.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kangqod/color-contrast-finder.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kangqod/color-contrast-finder.git/issues"
  },
  "homepage": "https://github.com/kangqod/color-contrast-finder.git#readme",
  "engines": {
    "node": ">=20.14.0",
    "pnpm": ">=9.4.0"
  },
  "type": "module",
  "files": [
    "dist",
    "index.d.ts"
  ],
  "keywords": [
    "typescript",
    "color",
    "contrast",
    "luminance",
    "color finder",
    "color-contrast",
    "color-contrast-finder",
    "color-utils"
  ],
  "main": "./dist/color-contrast-finder.js",
  "module": "./dist/color-contrast-finder.umd.cjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/color-contrast-finder.js",
      "require": "./dist/color-contrast-finder.umd.cjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@changesets/cli": "^2.29.2",
    "globals": "^16.0.0",
    "typescript": "^5.8.3",
    "vite": "^6.3.4",
    "vite-plugin-dts": "^4.5.3",
    "vitest": "^3.1.2"
  },
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "lint": "biome lint ./src ./lib",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "format": "pnpm biome format --write ./src ./lib",
    "coverage": "vitest run --coverage",
    "cs": "changeset",
    "cs-v": "changeset version",
    "cs-t": "changeset tag",
    "release": "changeset publish"
  }
}