initial commit
Some checks failed
CI / Go — node-agent tests (push) Has been cancelled
CI / Go — edge-gateway build (push) Has been cancelled
CI / Node — lint, typecheck, test, build (push) Has been cancelled

This commit is contained in:
smueller
2026-06-26 10:45:08 +02:00
commit e37ea87b35
118 changed files with 7726 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "hexahost-gamecloud",
"private": true,
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "turbo run dev",
"dev:infra": "docker compose -f deploy/compose/compose.dev.yml --env-file .env up -d",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.7.2"
}
}