lseq/typescript/package.json

36 lines
831 B
JSON
Raw Normal View History

{
"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"
}
}