{
  "name": "@pixzle/node",
  "version": "0.3.0",
  "description": "Node.js implementation of image fragmentation and restoration",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "pixzle",
    "image",
    "fragmentation",
    "restoration",
    "shuffle",
    "obfuscation"
  ],
  "author": "tuki0918",
  "repository": {
    "type": "git",
    "url": "https://github.com/tuki0918/pixzle.git",
    "directory": "packages/node"
  },
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "nanoid": "^3.3.11",
    "sharp": "^0.34.4",
    "@pixzle/core": "0.3.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.2",
    "@types/pngjs": "^6.0.5",
    "typescript": "^5.7.2",
    "vitest": "^3.1.4"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "build:check": "tsc -p tsconfig.build.json --noEmit",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}