4runr-os 2.9.135 → 2.9.136
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/apps/gateway/package-lock.json +9557 -0
- package/dist/index.js +0 -0
- package/dist/tui-handlers.js +192 -22
- package/dist/tui-handlers.js.map +1 -1
- package/package.json +21 -20
- package/scripts/setup.js +0 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "4runr-os",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.136",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.9.
|
|
5
|
+
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.9.136: Gateway autostart diagnostics — port conflict check, bundle verification, spawn/stderr capture, HTTP detail on /health fails. Prior: 2.9.135 longer wait + timer. ⚠️ Pre-MVP / Development Phase",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|
|
@@ -10,6 +10,24 @@
|
|
|
10
10
|
"4r": "dist/index.js",
|
|
11
11
|
"4runr-setup": "scripts/setup.js"
|
|
12
12
|
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"sync:vendored": "npm run build:gateway && npm run copy:gateway && npm run copy:mk3",
|
|
16
|
+
"build:mk3": "node scripts/build-mk3.js",
|
|
17
|
+
"dev": "tsc --watch",
|
|
18
|
+
"setup": "node scripts/setup.js",
|
|
19
|
+
"prepublishOnly": "npm run build && npm run copy:mk3 && npm run copy:gateway && npm run prepare:binaries && node scripts/prune-gateway-for-publish.js",
|
|
20
|
+
"build:gateway": "cd ../../apps/gateway && (npm run build || echo 'Gateway build skipped - dist may already exist')",
|
|
21
|
+
"copy:mk3": "node scripts/copy-mk3.js",
|
|
22
|
+
"copy:gateway": "node scripts/copy-gateway.js",
|
|
23
|
+
"prepare:binaries": "node scripts/prepare-binaries.js",
|
|
24
|
+
"postinstall": "node scripts/postinstall-mk3.js && node scripts/postinstall-gateway.js",
|
|
25
|
+
"test": "node dist/tui_mk2/layout/layoutTest.js",
|
|
26
|
+
"test:layout": "npm run build && npm run test",
|
|
27
|
+
"test:port-server": "node scripts/test-gateway-port-server.js",
|
|
28
|
+
"test:port-proxy": "node scripts/test-gateway-proxy.js",
|
|
29
|
+
"tui:mk1": "cross-env TUI_MK1=1 TUI_DEBUG=1 TUI_ALLOW_STDOUT=1 TERM=xterm-256color node dist/index.js"
|
|
30
|
+
},
|
|
13
31
|
"keywords": [
|
|
14
32
|
"4runr",
|
|
15
33
|
"ai",
|
|
@@ -94,22 +112,5 @@
|
|
|
94
112
|
},
|
|
95
113
|
"publishConfig": {
|
|
96
114
|
"access": "public"
|
|
97
|
-
},
|
|
98
|
-
"scripts": {
|
|
99
|
-
"build": "tsc",
|
|
100
|
-
"sync:vendored": "npm run build:gateway && npm run copy:gateway && npm run copy:mk3",
|
|
101
|
-
"build:mk3": "node scripts/build-mk3.js",
|
|
102
|
-
"dev": "tsc --watch",
|
|
103
|
-
"setup": "node scripts/setup.js",
|
|
104
|
-
"build:gateway": "cd ../../apps/gateway && (npm run build || echo 'Gateway build skipped - dist may already exist')",
|
|
105
|
-
"copy:mk3": "node scripts/copy-mk3.js",
|
|
106
|
-
"copy:gateway": "node scripts/copy-gateway.js",
|
|
107
|
-
"prepare:binaries": "node scripts/prepare-binaries.js",
|
|
108
|
-
"postinstall": "node scripts/postinstall-mk3.js && node scripts/postinstall-gateway.js",
|
|
109
|
-
"test": "node dist/tui_mk2/layout/layoutTest.js",
|
|
110
|
-
"test:layout": "npm run build && npm run test",
|
|
111
|
-
"test:port-server": "node scripts/test-gateway-port-server.js",
|
|
112
|
-
"test:port-proxy": "node scripts/test-gateway-proxy.js",
|
|
113
|
-
"tui:mk1": "cross-env TUI_MK1=1 TUI_DEBUG=1 TUI_ALLOW_STDOUT=1 TERM=xterm-256color node dist/index.js"
|
|
114
115
|
}
|
|
115
|
-
}
|
|
116
|
+
}
|
package/scripts/setup.js
CHANGED
|
File without changes
|