UNPKG

baseflow-local-client

Version:

Official TypeScript/JavaScript client for BaseFlow Local - a local-first BaaS with SQLite database, authentication, file storage, and real-time features

79 lines (78 loc) 1.88 kB
{ "name": "baseflow-local-client", "version": "1.0.2", "description": "Official TypeScript/JavaScript client for BaseFlow Local - a local-first BaaS with SQLite database, authentication, file storage, and real-time features", "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" ], "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "test": "jest", "prepublishOnly": "npm run build", "clean": "rm -rf dist", "typecheck": "tsc --noEmit" }, "keywords": [ "baseflow", "baseflow-local", "database", "api", "client", "sdk", "local-first", "sqlite", "typescript", "javascript", "query-builder", "real-time", "authentication", "storage" ], "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", "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/local-client" }, "homepage": "https://baseflow.cloud", "bugs": { "url": "https://github.com/baseflow/baseflow/issues" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }