mirror of
https://github.com/colanode/colanode.git
synced 2026-02-24 11:59:53 +01:00
31 lines
615 B
JSON
31 lines
615 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@colanode/crdt",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"compile": "tsc --noEmit",
|
|
"test": "vitest",
|
|
"lint": "eslint . --max-warnings 0",
|
|
"build": "tsc",
|
|
"coverage": "vitest run --coverage "
|
|
},
|
|
"devDependencies": {
|
|
"@types/diff": "^7.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@colanode/core": "^1.0.0",
|
|
"diff": "^7.0.0",
|
|
"js-base64": "^3.7.7",
|
|
"yjs": "^13.6.26",
|
|
"zod": "^3.24.2"
|
|
}
|
|
}
|