supbuddy 3.1.14 → 3.1.16

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.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supbuddy",
3
- "version": "3.1.14",
3
+ "version": "3.1.16",
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
+ }