{
  "name": "@bernierllc/supabase-client",
  "version": "1.5.0",
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "description": "Supabase client wrapper with Row Level Security, authentication integration, and type-safe queries",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "supabase",
    "database",
    "postgresql",
    "rls",
    "auth",
    "storage",
    "client"
  ],
  "author": "Bernier LLC",
  "license": "SEE LICENSE IN LICENSE",
  "repository": {
    "type": "git",
    "url": "https://github.com/bernier-llc/tools"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@supabase/supabase-js": "^2.39.0",
    "@bernierllc/retry-policy": "0.7.0",
    "@bernierllc/logger": "1.7.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "@types/node": "^20.10.6",
    "@typescript-eslint/eslint-plugin": "^6.17.0",
    "@typescript-eslint/parser": "^6.17.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  },
  "bernierllc": {
    "category": "core",
    "tags": [
      "core",
      "database",
      "supabase",
      "postgresql",
      "rls"
    ],
    "integration": {
      "neverhub": "optional"
    }
  },
  "scripts": {
    "build": "tsc",
    "test": "jest --watch",
    "test:run": "jest --coverage --no-cache",
    "test:coverage": "jest --coverage --no-cache",
    "lint": "eslint src --ext .ts,.tsx",
    "clean": "rm -rf dist"
  }
}