@guyghost/swarm-dao-cli 0.7.0 → 0.7.1

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/README.md CHANGED
@@ -10,12 +10,16 @@ Works in **any project**: all state lives in a `.dao/` directory at the project
10
10
  ## Installation
11
11
 
12
12
  ```bash
13
+ # Homebrew (macOS / Linuxbrew)
14
+ brew install guyghost/tap/swarm-dao
15
+
16
+ # npm
13
17
  npm install -g @guyghost/swarm-dao-cli
14
18
  ```
15
19
 
16
- Requires [Bun](https://bun.sh)1.3 on your `PATH` (the binary runs through it)
17
- and `git`. Apple `container` (macOS 26+) and/or Docker are optional, for
18
- sandboxed gate execution.
20
+ Requires Node20 (installed automatically by Homebrew) and `git`. Apple
21
+ `container` (macOS 26+) and/or Docker are optional, for sandboxed gate
22
+ execution.
19
23
 
20
24
  From source:
21
25
 
package/dist/cli.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  export declare function main(argv: string[], cwd?: string): Promise<number>;
3
3
  //# sourceMappingURL=cli.d.ts.map
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  // ============================================================
3
3
  // Swarm DAO — Standalone CLI
4
4
  // ============================================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guyghost/swarm-dao-cli",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Swarm DAO standalone CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",