refactor websocket layer

This commit is contained in:
seavor 2026-04-16 00:23:22 -05:00
parent 4f68190a25
commit f0c3581d26
9 changed files with 87 additions and 142 deletions

View file

@ -9,12 +9,14 @@
"start": "vite",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "npm run test -- --coverage",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:coverage": "vitest run --config vitest.integration.config.ts --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"golden": "npm run lint && npm run test",
"test:integration:coverage": "npm run test:integration -- --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"golden": "npm run lint && npm run test && npm run test:integration",
"golden:coverage": "npm run lint && npm run test:coverage && npm run test:integration:coverage",
"prepare": "cd .. && husky",
"translate": "node prebuild.js -i18nOnly",
"proto:generate": "npx buf generate"