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.
28 lines
684 B
JSON
28 lines
684 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@colanode/scripts",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"generate:emojis": "tsx src/emojis/index.ts",
|
|
"generate:icons": "tsx src/icons/index.ts",
|
|
"seed": "tsx src/seed/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^10.4.0",
|
|
"@types/adm-zip": "^0.5.8",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/svg-sprite": "^0.0.39"
|
|
},
|
|
"dependencies": {
|
|
"@colanode/core": "*",
|
|
"@colanode/crdt": "*",
|
|
"adm-zip": "^0.5.17",
|
|
"better-sqlite3": "^12.8.0",
|
|
"ky": "^1.14.3",
|
|
"svg-sprite": "^2.0.4",
|
|
"svgo": "^4.0.1"
|
|
}
|
|
}
|