@deimoscloud/coreai 0.1.2 → 0.1.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.
package/dist/cli/index.js CHANGED
@@ -5,6 +5,9 @@ import { join as join12, dirname as dirname5 } from "path";
5
5
  import { fileURLToPath } from "url";
6
6
  import { Command } from "commander";
7
7
 
8
+ // src/index.ts
9
+ import { createRequire as createRequire3 } from "module";
10
+
8
11
  // src/config/loader.ts
9
12
  import { existsSync, readFileSync } from "fs";
10
13
  import { dirname, join, resolve } from "path";
@@ -2846,7 +2849,9 @@ function getKnowledgeLibraryState(options = {}) {
2846
2849
  }
2847
2850
 
2848
2851
  // src/index.ts
2849
- var VERSION = "0.1.0";
2852
+ var require4 = createRequire3(import.meta.url);
2853
+ var packageJson = require4("../package.json");
2854
+ var VERSION = packageJson.version;
2850
2855
 
2851
2856
  // src/cli/commands/cache.ts
2852
2857
  import { join as join8 } from "path";