UNPKG

solobase-js

Version:

A 100% drop-in replacement for the Supabase JavaScript client. Self-hosted Supabase alternative with complete API compatibility.

73 lines (72 loc) 1.72 kB
{ "name": "solobase-js", "version": "1.0.20", "description": "A 100% drop-in replacement for the Supabase JavaScript client. Self-hosted Supabase alternative with complete API compatibility.", "main": "dist/cjs/index.js", "types": "dist/index.d.ts", "module": "dist/index.js", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/cjs/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "examples", "README.md" ], "type": "module", "engines": { "node": ">=16.0.0" }, "scripts": { "build": "tsc --outDir dist --target ES2020 --module ES2020 && tsc --outDir dist/cjs --target ES2018 --module CommonJS", "dev": "tsc --watch", "test": "jest", "prepublishOnly": "npm run build" }, "keywords": [ "solobase", "supabase", "supabase-alternative", "drop-in-replacement", "database", "postgresql", "storage", "auth", "authentication", "realtime", "websockets", "self-hosted", "laravel", "backend", "api", "typescript" ], "author": "Solobase Team <team@solobase.com>", "license": "MIT", "homepage": "https://github.com/solobase/solobase-js#readme", "repository": { "type": "git", "url": "git+https://github.com/solobase/solobase-js.git" }, "bugs": { "url": "https://github.com/solobase/solobase-js/issues" }, "funding": { "type": "github", "url": "https://github.com/sponsors/solobase" }, "devDependencies": { "@types/node": "^20.0.0", "@types/ws": "^8.5.0", "rollup": "^4.0.0", "rollup-plugin-typescript2": "^0.36.0", "typescript": "^5.0.0" }, "dependencies": { "ws": "^8.14.0" } }