feat: experiment with different implementations of LSEQ

This commit is contained in:
nobody 2025-07-08 16:49:52 -07:00
commit 1e45ef9314
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
23 changed files with 3578 additions and 0 deletions

36
typescript/package.json Normal file
View file

@ -0,0 +1,36 @@
{
"name": "@peoplesgrocers/lseq",
"version": "1.0.0",
"description": "L-SEQ algorithm implementation for fractional indexing and list CRDTs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "uvu -r tsx src \\.test\\.ts$",
"prepublishOnly": "npm run build"
},
"keywords": [
"lseq",
"crdt",
"fractional-indexing",
"sequence",
"collaborative-editing"
],
"author": "peoplesgrocers",
"license": "SEE LICENSE IN LICENSE.txt",
"devDependencies": {
"typescript": "^5.0.0",
"uvu": "^0.5.6",
"tsx": "^4.7.0"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://peoplesgrocers.com/en/forge/peoplesgrocers/lseq.git",
"directory": "typescript"
}
}