Files
Job-Info/ModeSwitch/package.json
T
aewing 0b76a4b119 Cleanup: Remove old modes, add Svelte 5 reference library, update orchestrator
- Delete Mode1Test, Mode2Test, Mode3Test, Mode5Test (keep only Mode6Test)
- Delete old documentation, Docker files, and k8s configs
- Add comprehensive Svelte 5 reference library (svelte-reference/)
- Update ModeSwitch orchestrator:
  - Fix port to 3005 (never use 3000/3001)
  - Add API endpoints for mode switching
  - Add bun-types and proper tsconfig
  - Clean up mode folder mappings
2026-01-21 03:56:01 +00:00

21 lines
495 B
JSON

{
"name": "mode-switch",
"version": "1.0.0",
"description": "Mode switching orchestrator - controls which mode (Test1Mode, Mode2Test) runs on port 3005",
"type": "module",
"private": true,
"scripts": {
"start": "bun run backend/orchestrator.ts",
"dev": "bun --watch backend/orchestrator.ts"
},
"dependencies": {
"hono": "^4.10.8",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@types/bun": "latest",
"bun-types": "^1.3.6",
"typescript": "^5"
}
}