Implement RPC contract validation baseline

This commit is contained in:
2026-05-14 15:41:51 -04:00
parent 379c07b50c
commit df367756d0
60 changed files with 10704 additions and 47 deletions

View File

@@ -1,5 +1,19 @@
{
"name": "@mosaiciq/desktop",
"private": true,
"type": "module"
"type": "module",
"scripts": {
"dev:bundle": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mosaiciq/contracts": "workspace:*",
"@mosaiciq/shared": "workspace:*",
"better-sqlite3": "^12.10.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"tsdown": "^0.22.0"
}
}