svamp-cli 0.1.41 → 0.1.42

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/dist/cli.mjs CHANGED
@@ -97,7 +97,7 @@ async function main() {
97
97
  } else if (!subcommand || subcommand === "start") {
98
98
  await handleInteractiveCommand();
99
99
  } else if (subcommand === "--version" || subcommand === "-v") {
100
- const pkg = await import('./package-BkBE6ZdN.mjs').catch(() => ({ default: { version: "unknown" } }));
100
+ const pkg = await import('./package-BPMWPlS0.mjs').catch(() => ({ default: { version: "unknown" } }));
101
101
  console.log(`svamp version: ${pkg.default.version}`);
102
102
  } else {
103
103
  console.error(`Unknown command: ${subcommand}`);
@@ -0,0 +1,57 @@
1
+ var name = "svamp-cli";
2
+ var version = "0.1.42";
3
+ var description = "Svamp CLI — AI workspace daemon on Hypha Cloud";
4
+ var author = "Amun AI AB";
5
+ var license = "SEE LICENSE IN LICENSE";
6
+ var type = "module";
7
+ var bin = {
8
+ svamp: "./bin/svamp.mjs"
9
+ };
10
+ var files = [
11
+ "dist",
12
+ "bin"
13
+ ];
14
+ var main = "./dist/index.mjs";
15
+ var exports$1 = {
16
+ ".": "./dist/index.mjs",
17
+ "./cli": "./dist/cli.mjs"
18
+ };
19
+ var scripts = {
20
+ build: "tsc --noEmit && pkgroll",
21
+ typecheck: "tsc --noEmit",
22
+ "test:hypha": "node --no-warnings test/test-hypha-service.mjs",
23
+ dev: "tsx src/cli.ts",
24
+ "dev:daemon": "tsx src/cli.ts daemon start-sync",
25
+ "test:e2e": "node --no-warnings test/e2e-session-tests.mjs"
26
+ };
27
+ var dependencies = {
28
+ "@agentclientprotocol/sdk": "^0.14.1",
29
+ "@modelcontextprotocol/sdk": "^1.25.3",
30
+ "hypha-rpc": "0.21.22",
31
+ zod: "^3.24.4"
32
+ };
33
+ var devDependencies = {
34
+ "@types/node": ">=20",
35
+ pkgroll: "^2.14.2",
36
+ tsx: "^4.20.6",
37
+ typescript: "5.9.3"
38
+ };
39
+ var packageManager = "yarn@1.22.22";
40
+ var _package = {
41
+ name: name,
42
+ version: version,
43
+ description: description,
44
+ author: author,
45
+ license: license,
46
+ type: type,
47
+ bin: bin,
48
+ files: files,
49
+ main: main,
50
+ exports: exports$1,
51
+ scripts: scripts,
52
+ dependencies: dependencies,
53
+ devDependencies: devDependencies,
54
+ packageManager: packageManager
55
+ };
56
+
57
+ export { author, bin, _package as default, dependencies, description, devDependencies, exports$1 as exports, files, license, main, name, packageManager, scripts, type, version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svamp-cli",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "description": "Svamp CLI — AI workspace daemon on Hypha Cloud",
5
5
  "author": "Amun AI AB",
6
6
  "license": "SEE LICENSE IN LICENSE",