y-lwwmap
Version:
a shared CRDT key-value map for Yjs using a "last-write-wins" (LWW) algorithm for conflict resolution
51 lines (50 loc) • 1.28 kB
JSON
{
"name": "y-lwwmap",
"version": "0.2.0",
"description": "a shared CRDT key-value map for Yjs using a \"last-write-wins\" (LWW) algorithm for conflict resolution",
"type": "module",
"main": "./dist/LWWMap.js",
"module": "./dist/LWWMap.js",
"types": "./dist/LWWMap.d.ts",
"exports": {
".": {
"import": "./dist/LWWMap.js",
"types": "./dist/LWWMap.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "vite build",
"test": "vitest run"
},
"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": {
"@types/blueimp-md5": "^2.18.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"dependencies": {
"blueimp-md5": "^2.19.0",
"lib0": "^0.2.117",
"yjs": "^13.6.29"
}
}