@jacobbd/relay-ai 0.7.3 → 0.7.4
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/{chunk-5LPUIWNJ.js → chunk-EUY2MVOS.js} +7 -5
- package/dist/chunk-EUY2MVOS.js.map +1 -0
- package/dist/cli.js +10 -5
- package/dist/cli.js.map +1 -1
- package/dist/core/index.js +3 -1
- package/dist/core/index.js.map +1 -1
- package/dist/{ui-command-DMPYSK7W.js → ui-command-CF3IEIZP.js} +2 -2
- package/package.json +3 -1
- package/dist/chunk-5LPUIWNJ.js.map +0 -1
- /package/dist/{ui-command-DMPYSK7W.js.map → ui-command-CF3IEIZP.js.map} +0 -0
|
@@ -11,7 +11,7 @@ import { join } from "path";
|
|
|
11
11
|
// package.json
|
|
12
12
|
var package_default = {
|
|
13
13
|
name: "@jacobbd/relay-ai",
|
|
14
|
-
version: "0.7.
|
|
14
|
+
version: "0.7.4",
|
|
15
15
|
publishConfig: {
|
|
16
16
|
access: "public"
|
|
17
17
|
},
|
|
@@ -75,6 +75,7 @@ var package_default = {
|
|
|
75
75
|
"@clack/prompts": "^0.9.1",
|
|
76
76
|
"@openrouter/ai-sdk-provider": "^2.9.0",
|
|
77
77
|
ai: "^6.0.197",
|
|
78
|
+
"cross-spawn": "^7.0.6",
|
|
78
79
|
"gitlab-ai-provider": "^6.8.0",
|
|
79
80
|
graphql: "^16.14.2",
|
|
80
81
|
"ipaddr.js": "^2.4.0",
|
|
@@ -87,6 +88,7 @@ var package_default = {
|
|
|
87
88
|
zod: "^3.25.76"
|
|
88
89
|
},
|
|
89
90
|
devDependencies: {
|
|
91
|
+
"@types/cross-spawn": "^6.0.6",
|
|
90
92
|
"@types/node": "^22.0.0",
|
|
91
93
|
"@types/node-forge": "^1.3.14",
|
|
92
94
|
"@types/ws": "^8.18.1",
|
|
@@ -1920,7 +1922,8 @@ function resolveServerAutostart(env = process.env) {
|
|
|
1920
1922
|
}
|
|
1921
1923
|
|
|
1922
1924
|
// src/launch.ts
|
|
1923
|
-
import { execSync
|
|
1925
|
+
import { execSync } from "child_process";
|
|
1926
|
+
import spawn from "cross-spawn";
|
|
1924
1927
|
import { existsSync as existsSync3, appendFileSync } from "fs";
|
|
1925
1928
|
import { homedir as homedir3 } from "os";
|
|
1926
1929
|
import { join as join4 } from "path";
|
|
@@ -2011,8 +2014,7 @@ function launchClaude(env, model, extraArgs) {
|
|
|
2011
2014
|
};
|
|
2012
2015
|
const child = spawn(claudePath, args, {
|
|
2013
2016
|
stdio: "inherit",
|
|
2014
|
-
env
|
|
2015
|
-
shell: isWindows
|
|
2017
|
+
env
|
|
2016
2018
|
});
|
|
2017
2019
|
const forward = (signal) => {
|
|
2018
2020
|
child.kill(signal);
|
|
@@ -12069,4 +12071,4 @@ export {
|
|
|
12069
12071
|
supportsClaudeTransparentMode,
|
|
12070
12072
|
buildHttpProxyRoutes
|
|
12071
12073
|
};
|
|
12072
|
-
//# sourceMappingURL=chunk-
|
|
12074
|
+
//# sourceMappingURL=chunk-EUY2MVOS.js.map
|