{
  "name": "fast-average-color-node",
  "version": "4.0.0",
  "description": "A simple library that calculates the average color of images in Node.js.",
  "main": "dist/index.js",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "keywords": [
    "fast",
    "average",
    "color",
    "colour",
    "average-color",
    "dominant-color",
    "color-extraction"
  ],
  "dependencies": {
    "fast-average-color": "^9.6.0",
    "sharp": "^0.35.4"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "jest": "^30.5.1",
    "ts-jest": "^29.4.12",
    "typescript": "^6.0.3"
  },
  "files": [
    "src",
    "dist/*.js",
    "dist/*.ts",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.9.0"
  },
  "typings": "./dist/index.d.ts",
  "scripts": {
    "test": "npm run typecheck && npm run build && npm run typecheck:consumer && node --experimental-vm-modules node_modules/jest/bin/jest.js --config ./jest.config.js .",
    "build": "tsc -p tsconfig.json",
    "prepare": "npm run build",
    "typecheck": "tsc --noEmit && tsc -p tsconfig.test.json",
    "typecheck:consumer": "tsc -p test/types/tsconfig.json"
  },
  "author": {
    "name": "Denis Seleznev",
    "email": "hcodes@yandex.ru",
    "url": "https://github.com/fast-average-color/fast-average-color-node"
  },
  "license": "MIT"
}
