UNPKG

y-lwwmap

Version:

a shared CRDT key-value map for Yjs using a "last-write-wins" (LWW) algorithm for conflict resolution

61 lines (60 loc) 1.71 kB
{ "name": "y-lwwmap", "version": "0.1.11", "description": "a shared CRDT key-value map for Yjs using a \"last-write-wins\" (LWW) algorithm for conflict resolution", "type": "module", "main": "./dist/LWWMap.umd.js", "browser":"./dist/LWWMap.umd.js", "module": "./dist/LWWMap.esm.js", "svelte": "./dist/LWWMap.esm.js", "types": "./dist/LWWMap.d.ts", "exports": { ".": { "require":"./dist/LWWMap.umd.js", "browser":"./dist/LWWMap.umd.js", "import": "./dist/LWWMap.esm.js", "svelte": "./dist/LWWMap.esm.js", "types": "./dist/LWWMap.d.ts" }, "./package.json": "./package.json" }, "scripts": { "build": "rimraf dist && rollup -c rollup.config.js && tsc && mv src/*.d.ts dist && rimraf dist/src && rm src/*.js*", "agadoo": "agadoo", "test": "node Tests.js" }, "repository": { "type": "git", "url": "git+https://github.com/rozek/y-lwwmap.git" }, "keywords": [ "yjs", "crdt", "key-value-store", "last-write-wins", "lww" ], "author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)", "license": "MIT", "bugs": { "url": "https://github.com/rozek/y-lwwmap/issues" }, "homepage": "https://github.com/rozek/y-lwwmap#readme", "devDependencies": { "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-commonjs": "^19.0.0", "@rollup/plugin-node-resolve": "^13.0.0", "@rollup/plugin-typescript": "^8.2.1", "@types/blueimp-md5": "^2.18.0", "agadoo": "^2.0.0", "rimraf": "^3.0.2", "rollup": "^2.52.7", "tslib": "^2.6.2", "typescript": "^4.3.5" }, "dependencies": { "blueimp-md5": "^2.19.0", "lib0": "^0.2.74", "yjs": "^13.6.1" } }