UNPKG

baseflow-client

Version:

Official TypeScript/JavaScript client for BaseFlow - a powerful BaaS with OAuth authentication, RPC functions, database indexes, real-time features, and Supabase-compatible API

88 lines (87 loc) 2.1 kB
{ "name": "baseflow-client", "version": "1.1.0", "description": "Official TypeScript/JavaScript client for BaseFlow - a powerful BaaS with OAuth authentication, RPC functions, database indexes, real-time features, and Supabase-compatible API", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "test": "jest", "prepublishOnly": "npm run build", "clean": "rm -rf dist", "typecheck": "tsc --noEmit" }, "keywords": [ "baseflow", "database", "api", "client", "sdk", "baas", "backend-as-a-service", "supabase-alternative", "typescript", "javascript", "query-builder", "real-time", "authentication", "storage", "sql", "joins", "aggregations" ], "author": { "name": "BaseFlow Team", "url": "https://baseflow.cloud" }, "license": "MIT", "dependencies": { "cross-fetch": "^4.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-typescript": "^11.0.0", "@types/fs-extra": "^11.0.4", "jest": "^29.0.0", "rollup": "^4.0.0", "tslib": "^2.8.1", "typescript": "^5.0.0" }, "type": "module", "repository": { "type": "git", "url": "https://github.com/baseflow/baseflow.git", "directory": "packages/client" }, "homepage": "https://baseflow.cloud", "bugs": { "url": "https://github.com/baseflow/baseflow/issues" }, "funding": { "type": "github", "url": "https://github.com/sponsors/baseflow" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }