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.
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@colanode/client",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
"./types": "./src/types/index.ts",
|
|
"./lib": "./src/lib/index.ts",
|
|
"./handlers": "./src/handlers/index.ts",
|
|
"./databases": "./src/databases/index.ts",
|
|
"./services": "./src/services/index.ts",
|
|
"./queries": "./src/queries/index.ts",
|
|
"./mutations": "./src/mutations/index.ts",
|
|
"./commands": "./src/commands/index.ts"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"compile": "tsc --noEmit",
|
|
"test": "vitest --passWithNoTests",
|
|
"lint": "eslint . --max-warnings 0",
|
|
"build": "tsc",
|
|
"coverage": "vitest run --coverage "
|
|
},
|
|
"dependencies": {
|
|
"@colanode/core": "*",
|
|
"@colanode/crdt": "*",
|
|
"@tanstack/db": "^0.5.33",
|
|
"@tiptap/core": "^3.22.1",
|
|
"@tiptap/pm": "^3.22.1",
|
|
"async-lock": "^1.4.1",
|
|
"file-type": "^21.3.4",
|
|
"isomorphic-ws": "^5.0.0",
|
|
"js-sha256": "^0.11.1",
|
|
"ky": "^1.14.3",
|
|
"kysely": "^0.28.15",
|
|
"ms": "^2.1.3",
|
|
"semver": "^7.7.4",
|
|
"tus-js-client": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-lock": "^1.4.2",
|
|
"@types/semver": "^7.7.1"
|
|
}
|
|
}
|