terminator-mcp-agent 0.6.17 → 0.6.19

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +5 -5
package/index.js CHANGED
@@ -123,7 +123,8 @@ if (argv.includes("--add-to-app")) {
123
123
 
124
124
  const child = spawn(binary, agentArgs, {
125
125
  stdio: ["pipe", "pipe", "pipe"],
126
- shell: true,
126
+ shell: false,
127
+ detached: process.platform !== "win32",
127
128
  });
128
129
 
129
130
  process.stdin.pipe(child.stdin);
package/package.json CHANGED
@@ -12,10 +12,10 @@
12
12
  ],
13
13
  "name": "terminator-mcp-agent",
14
14
  "optionalDependencies": {
15
- "terminator-mcp-darwin-arm64": "0.6.17",
16
- "terminator-mcp-darwin-x64": "0.6.17",
17
- "terminator-mcp-linux-x64-gnu": "0.6.17",
18
- "terminator-mcp-win32-x64-msvc": "0.6.17"
15
+ "terminator-mcp-darwin-arm64": "0.6.19",
16
+ "terminator-mcp-darwin-x64": "0.6.19",
17
+ "terminator-mcp-linux-x64-gnu": "0.6.19",
18
+ "terminator-mcp-win32-x64-msvc": "0.6.19"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
@@ -27,5 +27,5 @@
27
27
  "sync-version": "node ./utils/sync-version.js",
28
28
  "update-badges": "node ./utils/update-badges.js"
29
29
  },
30
- "version": "0.6.17"
30
+ "version": "0.6.19"
31
31
  }