20 lines
468 B
JSON
20 lines
468 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",
|
|
"typescript": "^5"
|
|
}
|
|
}
|