refactor: restructure to monorepo with apps and packages directories - Move companion app to apps/companion with electron-vite - Move domain/application/infrastructure to packages/ - Fix ELECTRON_RUN_AS_NODE env var issue for VS Code terminal - Remove legacy esbuild bundler (replaced by electron-vite) - Update workspace scripts in root package.json

This commit is contained in:
2025-11-22 00:25:06 +01:00
parent d20554df55
commit 7eae6e3bd4
39 changed files with 515 additions and 1939 deletions

View File

@@ -7,8 +7,8 @@
"node": ">=20.0.0"
},
"workspaces": [
"src/packages/*",
"src/apps/*"
"packages/*",
"apps/*"
],
"scripts": {
"dev": "echo 'Development server placeholder - to be configured'",
@@ -19,33 +19,17 @@
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"companion": "npm run companion:build && electron .",
"companion:dev": "npm run companion:build && (node build-main.config.js --watch & vite build --config vite.config.electron.ts --watch & electron .)",
"companion:build": "node build-main.config.js && vite build --config vite.config.electron.ts",
"companion:start": "electron .",
"companion:mock": "AUTOMATION_MODE=mock npm run companion:start",
"companion:devtools": "AUTOMATION_MODE=dev npm run companion:start",
"companion:production": "AUTOMATION_MODE=production npm run companion:start",
"companion": "npm run companion:build --workspace=@gridpilot/companion && npm run start --workspace=@gridpilot/companion",
"companion:dev": "npm run dev --workspace=@gridpilot/companion",
"companion:build": "npm run build --workspace=@gridpilot/companion",
"companion:start": "npm run start --workspace=@gridpilot/companion",
"chrome:debug": "open -a 'Google Chrome' --args --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.1",
"@types/node": "^22.10.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^2.1.8",
"electron": "^39.2.3",
"esbuild": "^0.27.0",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"dependencies": {
"@nut-tree-fork/nut-js": "^4.2.6",
"puppeteer-core": "^24.31.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"main": "dist/main/apps/companion/main/index.js"
"dependencies": {}
}