kandev 0.12.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/constants.js CHANGED
@@ -8,7 +8,7 @@ const node_os_1 = __importDefault(require("node:os"));
8
8
  const node_path_1 = __importDefault(require("node:path"));
9
9
  // Default service ports (will auto-fallback if busy).
10
10
  exports.DEFAULT_BACKEND_PORT = 8080;
11
- exports.DEFAULT_WEB_PORT = 3000;
11
+ exports.DEFAULT_WEB_PORT = 37429;
12
12
  exports.DEFAULT_AGENTCTL_PORT = 9999;
13
13
  exports.DEFAULT_MCP_PORT = 9090;
14
14
  // Random fallback range for port selection.
package/dist/shared.js CHANGED
@@ -64,7 +64,7 @@ function buildWebEnv(options) {
64
64
  ...process.env,
65
65
  // Server-side: full localhost URL for SSR fetches (Next.js SSR → Go backend)
66
66
  KANDEV_API_BASE_URL: ports.backendUrl,
67
- // Client-side: port injection for dev mode (browser on :3000, API on :8080).
67
+ // Client-side: port injection for dev mode (browser on web port, API on backend port).
68
68
  // In production, the backend reverse-proxies Next.js so the client uses same-origin.
69
69
  NEXT_PUBLIC_KANDEV_API_PORT: String(ports.backendPort),
70
70
  PORT: String(ports.webPort),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kandev",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "private": false,
5
5
  "description": "NPX launcher for Kandev",
6
6
  "license": "AGPL-3.0-only",