@dmsdc-ai/aterm 0.1.40 → 0.1.41

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/bin/aterm.js +3 -0
  2. package/package.json +3 -3
package/bin/aterm.js CHANGED
@@ -40,6 +40,9 @@ const env = { ...process.env };
40
40
  env.DYLD_LIBRARY_PATH = [frameworksDir, env.DYLD_LIBRARY_PATH]
41
41
  .filter(Boolean)
42
42
  .join(':');
43
+ // Expose bundled dependency binaries (aigentry-devkit, etc.) to the native app
44
+ const nodeModulesBin = path.join(packageRoot, 'node_modules', '.bin');
45
+ env.PATH = [nodeModulesBin, env.PATH].filter(Boolean).join(':');
43
46
  env.AIGENTRY_CONFIG_JSON = JSON.stringify(resolvedConfig.config);
44
47
  env.AIGENTRY_CONFIG_LAYERS = JSON.stringify(resolvedConfig.layers);
45
48
  env.AIGENTRY_SYSTEM_ROOT = resolvedConfig.systemRoot;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dmsdc-ai/aterm",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Native aterm launcher package",
5
5
  "type": "module",
6
6
  "main": "./bin/aterm.js",
@@ -17,12 +17,12 @@
17
17
  "package.json"
18
18
  ],
19
19
  "optionalDependencies": {
20
- "@dmsdc-ai/aterm-darwin-arm64": "0.1.40"
20
+ "@dmsdc-ai/aterm-darwin-arm64": "0.1.41"
21
21
  },
22
22
  "dependencies": {
23
23
  "@dmsdc-ai/aigentry-brain": "latest",
24
24
  "@dmsdc-ai/aigentry-deliberation": "latest",
25
- "@dmsdc-ai/aigentry-devkit": "latest",
25
+ "@dmsdc-ai/aigentry-devkit": "^0.0.7",
26
26
  "@dmsdc-ai/aigentry-telepty": "latest"
27
27
  },
28
28
  "license": "UNLICENSED",