{
  "name": "@api-buddy/firebase",
  "version": "2.0.0",
  "description": "Firebase integration for API Buddy",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "firebase": "^10.0.0",
    "firebase-admin": "^11.0.0",
    "@api-buddy/shared": "2.0.0",
    "@api-buddy/plugin-core": "2.0.0"
  },
  "devDependencies": {
    "@types/node": "^18.0.0",
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.0.0",
    "rimraf": "^5.0.5",
    "@api-buddy/tsup-config": "2.0.0"
  },
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/api-buddy/api-buddy.git"
  },
  "keywords": [
    "api-buddy",
    "firebase",
    "database",
    "authentication",
    "storage"
  ],
  "author": "API Buddy Team",
  "license": "MIT",
  "_updated": true,
  "scripts": {
    "build": "pnpm clean && tsup",
    "build:js": "tsup",
    "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationMap --outDir dist/types --pretty",
    "dev": "tsup --watch",
    "clean": "rimraf dist",
    "typecheck": "tsc --noEmit",
    "test": "jest",
    "lint": "eslint src --ext .ts,.tsx",
    "type-check": "tsc --noEmit",
    "format": "prettier --write \"src/**/*.{ts,tsx}\"",
    "prebuild": "node -e \"const { execSync } = require('child_process'); const path = require('path'); const fs = require('fs'); let root = process.cwd(); while (root !== '/' && !fs.existsSync(path.join(root, 'pnpm-workspace.yaml'))) { root = path.dirname(root); } if (root === '/') { console.error('❌ Could not find project root directory'); process.exit(1); } require(path.join(root, 'scripts/ensure-tsup-config.js'));\""
  }
}