@swarmvaultai/cli 0.1.31 → 0.1.32

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/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -217,9 +217,9 @@ program.name("swarmvault").description("SwarmVault is a local-first LLM wiki com
217
217
  function readCliVersion() {
218
218
  try {
219
219
  const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
220
- return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.31";
220
+ return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.32";
221
221
  } catch {
222
- return "0.1.31";
222
+ return "0.1.32";
223
223
  }
224
224
  }
225
225
  function parsePositiveInt(value, fallback) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "description": "Global CLI for SwarmVault.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -43,7 +43,7 @@
43
43
  "typecheck": "tsc --noEmit"
44
44
  },
45
45
  "dependencies": {
46
- "@swarmvaultai/engine": "0.1.31",
46
+ "@swarmvaultai/engine": "0.1.32",
47
47
  "commander": "^14.0.1"
48
48
  },
49
49
  "devDependencies": {