jowork 0.3.3 → 0.3.4

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 +1 -10
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -2791,18 +2791,9 @@ function isInstalled(packageName) {
2791
2791
  }
2792
2792
 
2793
2793
  // src/cli.ts
2794
- import { createRequire } from "module";
2795
2794
  process.env["I18NEXT_DISABLE_BANNER"] = "1";
2796
2795
  var program = new Command();
2797
- var __require = createRequire(import.meta.url);
2798
- var PKG_VERSION = (() => {
2799
- try {
2800
- return __require("../package.json").version;
2801
- } catch {
2802
- return "0.3.0";
2803
- }
2804
- })();
2805
- program.name("jowork").description("AI Agent Infrastructure \u2014 let AI agents truly understand your work").version(PKG_VERSION);
2796
+ program.name("jowork").description("AI Agent Infrastructure \u2014 let AI agents truly understand your work").version("0.3.4");
2806
2797
  initCommand(program);
2807
2798
  serveCommand(program);
2808
2799
  registerCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jowork",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
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",