2025-07-08 16:49:52 -07:00
|
|
|
{
|
|
|
|
|
"name": "@peoplesgrocers/lseq",
|
2025-12-12 21:45:24 -08:00
|
|
|
"version": "0.99.0",
|
2025-07-08 16:49:52 -07:00
|
|
|
"description": "L-SEQ algorithm implementation for fractional indexing and list CRDTs",
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
2025-12-12 21:45:24 -08:00
|
|
|
"homepage": "https://peoplesgrocers.com/code/oss/lseq",
|
2025-07-08 16:49:52 -07:00
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"test": "uvu -r tsx src \\.test\\.ts$",
|
|
|
|
|
"prepublishOnly": "npm run build"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"lseq",
|
|
|
|
|
"crdt",
|
|
|
|
|
"fractional-indexing",
|
|
|
|
|
"sequence",
|
2025-12-12 21:45:24 -08:00
|
|
|
"multiplayer"
|
2025-07-08 16:49:52 -07:00
|
|
|
],
|
2025-12-12 21:45:24 -08:00
|
|
|
"author": "Karl <marxism@peoplesgrocers.com>",
|
|
|
|
|
"contributors": [
|
|
|
|
|
"nobody <nobody@localhost>"
|
|
|
|
|
],
|
|
|
|
|
"license": "AGPL-3.0",
|
2025-07-08 16:49:52 -07:00
|
|
|
"devDependencies": {
|
|
|
|
|
"typescript": "^5.0.0",
|
|
|
|
|
"uvu": "^0.5.6",
|
|
|
|
|
"tsx": "^4.7.0"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/**/*",
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"README.md"
|
|
|
|
|
],
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-12-12 21:45:24 -08:00
|
|
|
"url": "git+https://peoplesgrocers.com/code/oss/lseq.git",
|
2025-07-08 16:49:52 -07:00
|
|
|
"directory": "typescript"
|
2025-12-12 21:51:00 -08:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
2025-07-08 16:49:52 -07:00
|
|
|
}
|
2025-12-12 21:45:24 -08:00
|
|
|
}
|