@zoer7788/mcp-nexus-node 0.1.5 → 0.1.6

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/cli.js +1 -0
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -197,6 +197,7 @@ function findProject(name) {
197
197
  function devspaceCommand() {
198
198
  const explicit = process.env.DEVSPACE_CLI;
199
199
  if (explicit && existsSync(explicit)) return ["node", explicit];
200
+ try { return ["node", require.resolve("@zoer7788/devspace/dist/cli.js")]; } catch {}
200
201
  try { return ["node", require.resolve("@waishnav/devspace/dist/cli.js")]; } catch {}
201
202
  const bundled = join(packageDir, "vendor", "devspace", "dist", "cli.js");
202
203
  if (existsSync(bundled)) return ["node", bundled];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoer7788/mcp-nexus-node",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Remote node for MCP Nexus pairing and DevSpace project control.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,7 +15,7 @@
15
15
  "check": "node --check cli.js"
16
16
  },
17
17
  "dependencies": {
18
- "@waishnav/devspace": "^1.0.3"
18
+ "@zoer7788/devspace": "^1.0.4"
19
19
  },
20
20
  "publishConfig": {
21
21
  "access": "public"