adhdev 0.1.14 → 0.1.15

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/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1336,8 +1336,12 @@ async function launchLinux(ide, port, workspace, newWindow) {
1336
1336
  }
1337
1337
 
1338
1338
  // src/index.ts
1339
+ var import_module = require("module");
1340
+ var import_meta = {};
1341
+ var require2 = (0, import_module.createRequire)(import_meta.url);
1342
+ var pkg = require2("../package.json");
1339
1343
  var program = new import_commander.Command();
1340
- program.name("adhdev").description("\u{1F309} ADHDev \u2014 Agent Dashboard Hub for your IDE").version("0.1.9");
1344
+ program.name("adhdev").description("\u{1F309} ADHDev \u2014 Agent Dashboard Hub for your IDE").version(pkg.version);
1341
1345
  program.command("setup", { isDefault: true }).description("Run the interactive setup wizard").option("-f, --force", "Force re-run setup even if already configured").action(async (options) => {
1342
1346
  await runWizard({ force: options.force });
1343
1347
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adhdev",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "ADHDev CLI — Detect, install and configure your IDE + AI agent extensions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {