terminator-mcp-agent 0.5.8 → 0.5.11

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 +1 -3
  2. package/package.json +6 -6
package/index.js CHANGED
@@ -308,9 +308,7 @@ if (argv.length === 0 || argv.includes("--start")) {
308
308
  } else {
309
309
  // 2. Try installed npm package
310
310
  try {
311
- const pkgPath = require.resolve(`${pkg}/package.json`);
312
- const binDir = path.dirname(pkgPath);
313
- binary = path.join(binDir, bin);
311
+ binary = require.resolve(pkg);
314
312
  } catch (e) {
315
313
  console.error(`Failed to find platform binary: ${pkg}`);
316
314
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "bin": {
3
- "terminator-mcp-agent": "index.js"
3
+ "terminator-mcp": "index.js"
4
4
  },
5
5
  "description": "Cross-platform Model Context Protocol (MCP) agent for Terminator",
6
6
  "engines": {
@@ -11,10 +11,10 @@
11
11
  ],
12
12
  "name": "terminator-mcp-agent",
13
13
  "optionalDependencies": {
14
- "terminator-mcp-darwin-arm64": "0.5.8",
15
- "terminator-mcp-darwin-x64": "0.5.8",
16
- "terminator-mcp-linux-x64-gnu": "0.5.8",
17
- "terminator-mcp-win32-x64-msvc": "0.5.8"
14
+ "terminator-mcp-darwin-arm64": "0.5.11",
15
+ "terminator-mcp-darwin-x64": "0.5.11",
16
+ "terminator-mcp-linux-x64-gnu": "0.5.11",
17
+ "terminator-mcp-win32-x64-msvc": "0.5.11"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
@@ -26,5 +26,5 @@
26
26
  "sync-version": "node ./utils/sync-version.js",
27
27
  "update-badges": "node ./utils/update-badges.js"
28
28
  },
29
- "version": "0.5.8"
29
+ "version": "0.5.11"
30
30
  }