UNPKG

@api-buddy/supabase

Version:

Supabase client and utilities for API Buddy

44 lines 1.42 kB
{ "name": "@api-buddy/supabase", "version": "2.0.0", "description": "Supabase client and utilities for API Buddy", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "dependencies": { "@supabase/supabase-js": "^2.0.0", "@api-buddy/shared": "2.0.0" }, "devDependencies": { "typescript": "^5.0.0", "@types/node": "^18.0.0", "rimraf": "^5.0.5", "tsup": "^8.5.0", "@api-buddy/tsup-config": "2.0.0" }, "repository": { "type": "git", "url": "https://github.com/api-buddy/api-buddy.git" }, "keywords": [ "supabase", "database", "realtime", "api-buddy" ], "author": "API Buddy Team", "license": "MIT", "_updated": true, "scripts": { "build": "pnpm clean && tsup", "dev": "tsup --watch", "test": "jest", "clean": "rimraf dist", "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'));\"" } }