feat: experiment with different implementations of LSEQ
This commit is contained in:
commit
1e45ef9314
23 changed files with 3578 additions and 0 deletions
36
typescript/package.json
Normal file
36
typescript/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue