{
  "name": "crop-image-data",
  "version": "1.0.4",
  "description": "Function for cropping an image through its ImageData.",
  "author": "Daniel Grefberg <hello@danielgrefberg.com>",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/duniul/crop-image-data.git"
  },
  "homepage": "https://github.com/duniul/crop-image-data#readme",
  "bugs": {
    "url": "https://github.com/duniul/crop-image-data/issues"
  },
  "packageManager": "pnpm@8.15.3",
  "keywords": [
    "image",
    "image-data",
    "image-editing",
    "canvas",
    "crop-image"
  ],
  "files": [
    "dist/**"
  ],
  "devDependencies": {
    "@biomejs/biome": "1.5.3",
    "@canvas/image-data": "1.0.0",
    "@changesets/cli": "2.27.1",
    "@tsconfig/node16": "16.1.1",
    "changesets-changelog-clean": "1.2.1",
    "husky": "9.0.11",
    "lint-staged": "15.2.2",
    "prettier": "3.2.5",
    "prettier-plugin-organize-imports": "3.2.4",
    "tsup": "^8.0.2",
    "typescript": "5.3.3",
    "vitest": "1.3.0"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.cts",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "lint": "biome check",
    "lint:apply": "biome check --apply",
    "version": "changeset version",
    "release": "changeset publish"
  }
}