{
  "name": "@bernierllc/database-adapter-postgresql",
  "version": "1.5.2",
  "description": "PostgreSQL/Supabase Database Adapter Implementation with RLS, real-time subscriptions, and full-text search",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "postgresql",
    "supabase",
    "database",
    "adapter",
    "rls",
    "realtime",
    "clerk",
    "connection-pooling"
  ],
  "author": "Bernier LLC",
  "license": "SEE LICENSE IN LICENSE",
  "dependencies": {
    "@supabase/supabase-js": "^2.38.0",
    "pg": "^8.11.0",
    "@bernierllc/database-adapter-core": "3.0.1",
    "@bernierllc/logger": "1.7.1",
    "@bernierllc/crypto-utils": "1.4.0",
    "@bernierllc/retry-policy": "0.7.0"
  },
  "devDependencies": {
    "@types/jest": "^29.0.0",
    "@types/node": "^20.0.0",
    "@types/pg": "^8.10.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "testcontainers": "^10.0.0",
    "ts-jest": "^29.0.0",
    "typescript": "^5.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "bernierllc": {
    "category": "core",
    "integration": {
      "logger": "required",
      "docs-suite": "ready",
      "neverhub": "optional"
    }
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "test": "jest",
    "test:run": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix"
  }
}