supbuddy 3.1.13 → 3.1.15

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/lib.d.ts CHANGED
@@ -44,6 +44,8 @@ interface DaemonInfo {
44
44
  /** Where that worker came from: the spawner's bundle, the installed npm package,
45
45
  * or repo source via tsx. Together with `workerVersion` it answers "what code
46
46
  * is this daemon running" without inferring it from paths. */
47
+ /** The CLI's own stamped version — distinct from `workerVersion`, which is the APP version when bundled. */
48
+ cliVersion?: string;
47
49
  workerSource?: 'host' | 'npm' | 'dev';
48
50
  }
49
51
  declare function readDaemonInfo(stateDir: string): Promise<DaemonInfo | null>;
package/dist/lib.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supbuddy",
3
- "version": "3.1.13",
3
+ "version": "3.1.15",
4
4
  "description": "Run multiple Supabase projects at once on custom local domains with HTTPS. A headless CLI and daemon (proxy, DNS, Supabase/Compose lifecycle, MCP) for macOS and Linux.",
5
5
  "keywords": [
6
6
  "supabase",
@@ -41,6 +41,15 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
+ "scripts": {
45
+ "build": "tsup",
46
+ "build:host": "SUPBUDDY_BUILD_KIND=host tsup",
47
+ "build:npm": "SUPBUDDY_PUBLIC_BUILD=1 tsup",
48
+ "build:standalone": "pnpm build:npm && node ../../scripts/stage-cli-daemon.mjs",
49
+ "prepublishOnly": "pnpm build:standalone",
50
+ "daemon": "tsx src/bin.ts daemon",
51
+ "selftest": "tsx src/selftest.ts"
52
+ },
44
53
  "dependencies": {
45
54
  "ws": "^8.18.0"
46
55
  },
@@ -51,19 +60,11 @@
51
60
  "@supbuddy/caddy-linux-arm64": "2.11.1"
52
61
  },
53
62
  "devDependencies": {
63
+ "@supbuddy/shared": "workspace:*",
54
64
  "chalk": "^5.3.0",
55
65
  "socket.io": "^4.6.1",
56
66
  "tsup": "^8",
57
67
  "tsx": "^4.7.0",
58
- "typescript": "^5.3.3",
59
- "@supbuddy/shared": "2.8.0"
60
- },
61
- "scripts": {
62
- "build": "tsup",
63
- "build:host": "SUPBUDDY_BUILD_KIND=host tsup",
64
- "build:npm": "SUPBUDDY_PUBLIC_BUILD=1 tsup",
65
- "build:standalone": "pnpm build:npm && node ../../scripts/stage-cli-daemon.mjs",
66
- "daemon": "tsx src/bin.ts daemon",
67
- "selftest": "tsx src/selftest.ts"
68
+ "typescript": "^5.3.3"
68
69
  }
69
- }
70
+ }