signetai 0.138.21 → 0.138.22
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/bin/launch.js +2 -3
- package/dist/mcp-stdio.js +42714 -0
- package/package.json +10 -8
- package/scripts/verify-wrapper.js +1 -1
- package/bin/signet-mcp.js +0 -5
package/bin/launch.js
CHANGED
|
@@ -33,7 +33,7 @@ function resolveBinaryPath() {
|
|
|
33
33
|
return null;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
export function launchSignet(
|
|
36
|
+
export function launchSignet() {
|
|
37
37
|
const resolvedBinaryPath = resolveBinaryPath();
|
|
38
38
|
if (!resolvedBinaryPath) {
|
|
39
39
|
console.error("Signet native binary is missing.");
|
|
@@ -43,8 +43,7 @@ export function launchSignet(options = {}) {
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
const args = process.argv.slice(2);
|
|
46
|
-
const
|
|
47
|
-
const child = spawn(resolvedBinaryPath, forwardedArgs, {
|
|
46
|
+
const child = spawn(resolvedBinaryPath, args, {
|
|
48
47
|
stdio: "inherit",
|
|
49
48
|
env: process.env,
|
|
50
49
|
windowsHide: true,
|