mirror of
https://github.com/colanode/colanode.git
synced 2026-05-18 05:05:03 +02:00
* Update packages * Add missing core and crdt dependencies to client package The client package imports from @colanode/core and @colanode/crdt but didn't declare them in package.json, causing Turbo to not guarantee building them first. This led to TS6305 errors in CI.
31 lines
632 B
JSON
31 lines
632 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 --passWithNoTests",
|
|
"lint": "eslint . --max-warnings 0",
|
|
"build": "tsc",
|
|
"coverage": "vitest run --coverage "
|
|
},
|
|
"devDependencies": {
|
|
"@types/diff": "^7.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@colanode/core": "^1.0.0",
|
|
"diff": "^8.0.4",
|
|
"js-base64": "^3.7.8",
|
|
"yjs": "^13.6.30",
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|