{
  "name": "@bernierllc/file-handler",
  "version": "0.8.0",
  "description": "Unified file operations and storage abstraction for @bernierllc packages",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "files",
    "storage",
    "upload",
    "download",
    "multi-backend",
    "s3",
    "azure",
    "gcp",
    "supabase",
    "bernierllc",
    "core"
  ],
  "author": "Bernier LLC",
  "license": "Bernier LLC",
  "dependencies": {
    "@supabase/supabase-js": "^2.45.4",
    "sharp": "^0.33.0",
    "uuid": "^11.1.1"
  },
  "devDependencies": {
    "@aws-sdk/client-s3": "^3.878.0",
    "@aws-sdk/lib-storage": "^3.878.0",
    "@azure/identity": "^4.4.1",
    "@azure/storage-blob": "^12.24.0",
    "@google-cloud/storage": "^7.16.0",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.5",
    "@types/mime-types": "^2.1.4",
    "@types/node": "^20.6.0",
    "fs-extra": "^11.2.0",
    "jest": "^29.6.4",
    "mime-types": "^2.1.35",
    "rimraf": "^5.0.1",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "peerDependencies": {
    "@aws-sdk/client-s3": "^3.0.0",
    "@aws-sdk/lib-storage": "^3.0.0",
    "@azure/identity": "^4.0.0",
    "@azure/storage-blob": "^12.0.0",
    "@google-cloud/storage": "^7.0.0",
    "fs-extra": "^11.0.0",
    "mime-types": "^2.1.0"
  },
  "peerDependenciesMeta": {
    "@aws-sdk/client-s3": {
      "optional": true
    },
    "@aws-sdk/lib-storage": {
      "optional": true
    },
    "@azure/storage-blob": {
      "optional": true
    },
    "@azure/identity": {
      "optional": true
    },
    "@google-cloud/storage": {
      "optional": true
    },
    "fs-extra": {
      "optional": true
    },
    "mime-types": {
      "optional": true
    }
  },
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bernier-llc/tools"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:run": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "clean": "rimraf dist",
    "prebuild": "npm run clean"
  }
}