buildwithnexus 0.3.6 → 0.3.8

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/bin.js CHANGED
@@ -737,6 +737,7 @@ var init_ssh = __esm({
737
737
 
738
738
  // src/cli.ts
739
739
  import { Command as Command14 } from "commander";
740
+ import { createRequire } from "module";
740
741
 
741
742
  // src/commands/init.ts
742
743
  init_banner();
@@ -2834,7 +2835,9 @@ var shellCommand2 = new Command13("shell").description("Launch the interactive N
2834
2835
  });
2835
2836
 
2836
2837
  // src/cli.ts
2837
- var cli = new Command14().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version("0.3.1");
2838
+ var require2 = createRequire(import.meta.url);
2839
+ var { version } = require2("../package.json");
2840
+ var cli = new Command14().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(version);
2838
2841
  cli.addCommand(initCommand);
2839
2842
  cli.addCommand(startCommand);
2840
2843
  cli.addCommand(stopCommand);
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildwithnexus",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "description": "Launch an autonomous AI runtime with triple-nested VM isolation in one command",
5
5
  "type": "module",
6
6
  "bin": {