@deimoscloud/coreai 0.1.3 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deimoscloud/coreai",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A configurable, team-ready AI agent orchestration platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -4,7 +4,11 @@
4
4
  * This is the main library export for programmatic usage.
5
5
  */
6
6
 
7
- export const VERSION = '0.1.0';
7
+ import { createRequire } from 'module';
8
+ const require = createRequire(import.meta.url);
9
+ const packageJson = require('../package.json');
10
+
11
+ export const VERSION: string = packageJson.version;
8
12
 
9
13
  // Configuration
10
14
  export {