something is kinda working

This commit is contained in:
2025-12-13 05:41:13 +01:00
parent 955f992f8e
commit 1f313f090a
20 changed files with 390 additions and 349 deletions

View File

@@ -4,13 +4,15 @@
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:ui\" \"npm run dev:agent\" --names ui,agent --prefix-colors blue,green --kill-others",
"dev:debug": "LOG_LEVEL=debug npm run dev",
"dev:agent": "./scripts/run-agent.sh || scripts/run-agent.bat",
"dev:agent": "./scripts/run-agent.sh",
"dev:ui": "next dev --turbopack -H 127.0.0.1",
"build": "next build",
"start": "next start -H 127.0.0.1",
"build": "next build --webpack",
"start": "next start",
"start:agent": "./scripts/start-agent.sh",
"start:all": "concurrently \"npm run start\" \"npm run start:agent\" --names ui,agent --prefix-colors blue,green",
"lint": "eslint .",
"install:agent": "./scripts/setup-agent.sh || scripts\\setup-agent.bat",
"typecheck": "tsc --noEmit",
"install:agent": "./scripts/setup-agent.sh",
"postinstall": "npm run install:agent"
},
"dependencies": {