@swarmvaultai/cli 0.1.21 → 0.1.22

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
@@ -48,9 +48,9 @@ program.name("swarmvault").description("SwarmVault is a local-first LLM wiki com
48
48
  function readCliVersion() {
49
49
  try {
50
50
  const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
51
- return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.21";
51
+ return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.22";
52
52
  } catch {
53
- return "0.1.21";
53
+ return "0.1.22";
54
54
  }
55
55
  }
56
56
  function isJson() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Global CLI for SwarmVault.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "commander": "^14.0.1",
42
- "@swarmvaultai/engine": "0.1.21"
42
+ "@swarmvaultai/engine": "0.1.22"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^24.6.0",