jowork 0.3.0 → 0.3.1

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/cli.js +10 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -2784,9 +2784,18 @@ function isInstalled(packageName) {
2784
2784
  }
2785
2785
 
2786
2786
  // src/cli.ts
2787
+ import { createRequire } from "module";
2787
2788
  process.env["I18NEXT_DISABLE_BANNER"] = "1";
2788
2789
  var program = new Command();
2789
- program.name("jowork").description("AI Agent Infrastructure \u2014 let AI agents truly understand your work").version("0.1.0");
2790
+ var __require = createRequire(import.meta.url);
2791
+ var PKG_VERSION = (() => {
2792
+ try {
2793
+ return __require("../package.json").version;
2794
+ } catch {
2795
+ return "0.3.0";
2796
+ }
2797
+ })();
2798
+ program.name("jowork").description("AI Agent Infrastructure \u2014 let AI agents truly understand your work").version(PKG_VERSION);
2790
2799
  initCommand(program);
2791
2800
  serveCommand(program);
2792
2801
  registerCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jowork",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "AI Agent Infrastructure — let AI agents truly understand your work. Connect data sources, give agents awareness and goals. Local-first, one command.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0",