zam-core 0.10.2 → 0.10.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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "zam-companion",
3
+ "version": "0.10.4",
4
+ "vsix": "ZAM_Companion_0.10.4.vsix"
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zam-core",
3
- "version": "0.10.2",
3
+ "version": "0.10.4",
4
4
  "description": "The Symbiotic Learning Kernel: Elevating Human Intelligence through AI Collaboration.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -27,8 +27,9 @@
27
27
  "zam": "dist/cli/index.js"
28
28
  },
29
29
  "scripts": {
30
- "build": "tsup && npm run build:panel && npm run build:copilot-extension",
30
+ "build": "tsup && npm run build:panel && npm run build:copilot-extension && npm run build:vscode-extension",
31
31
  "build:copilot-extension": "tsup --config tsup.config.copilot-extension.ts && vite build --config vite.config.copilot-extension.mts && node scripts/prepare-copilot-extension.mjs",
32
+ "build:vscode-extension": "tsup --config tsup.config.vscode-extension.ts && vite build --config vite.config.vscode-extension.mts && node scripts/prepare-vscode-extension.mjs",
32
33
  "build:panel": "vite build --config vite.config.panel.mts && vite build --config vite.config.panel.mts --mode recall && vite build --config vite.config.panel.mts --mode graph && vite build --config vite.config.panel.mts --mode settings",
33
34
  "prepare": "npm run build",
34
35
  "dev": "tsx src/cli/index.ts",