UNPKG

@signaldb/sync

Version:

This is the sync implementation of [SignalDB](https://github.com/maxnowack/signaldb). SignalDB is a local-first JavaScript database with real-time sync, enabling optimistic UI with signal-based reactivity across multiple frameworks.

58 lines (57 loc) 1.13 kB
{ "name": "@signaldb/sync", "version": "1.2.2", "description": "", "scripts": { "build": "rimraf dist && vite build" }, "repository": { "type": "git", "url": "git+https://github.com/maxnowack/signaldb.git" }, "homepage": "https://signaldb.js.org", "keywords": [ "sync", "replication", "client-database", "client", "database", "local-database", "offline-first", "optimistic-ui", "plugin", "reactive", "reactivity", "solid", "synchronization", "typescript" ], "author": "Max Nowack <max.nowack@gmail.com>", "license": "MIT", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.umd.js", "default": "./dist/index.umd.js" } }, "main": "./dist/index.umd.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "files": [ "dist" ], "peerDependencies": { "@signaldb/core": "^1.4.0" } }