Initial skeleton: React/TS frontend + Go backend structure

This commit is contained in:
Hermes Agent
2026-06-16 08:51:55 -04:00
parent 78f19cde7d
commit 33c6648b84
40 changed files with 1799 additions and 0 deletions

33
client/package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "krates-client",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --max-warnings 0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"zustand": "^4.4.7",
"yjs": "^13.6.16",
"y-websocket": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.10.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.12",
"typescript": "^5.6.2",
"typescript-eslint": "^8.4.0",
"vite": "^5.4.3"
}
}