@mux/cli 1.0.0-beta.9 → 1.0.0

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/README.md +8 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -27,16 +27,22 @@ A command-line interface for interacting with the Mux API, designed to provide a
27
27
 
28
28
  ## Installation
29
29
 
30
+ ### Homebrew (macOS)
31
+
32
+ ```bash
33
+ brew install muxinc/tap/mux
34
+ ```
35
+
30
36
  ### Install via npm
31
37
 
32
38
  ```bash
33
- npm install -g @mux/cli@beta
39
+ npm install -g @mux/cli
34
40
  ```
35
41
 
36
42
  Or run directly with npx:
37
43
 
38
44
  ```bash
39
- npx @mux/cli@beta
45
+ npx @mux/cli
40
46
  ```
41
47
 
42
48
  ### Shell installer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mux/cli",
3
- "version": "1.0.0-beta.9",
3
+ "version": "1.0.0",
4
4
  "description": "Official Mux CLI for interacting with Mux APIs",
5
5
  "author": "Mux",
6
6
  "license": "Apache-2.0",
@@ -37,9 +37,9 @@
37
37
  ],
38
38
  "packageManager": "pnpm@10.17.1",
39
39
  "optionalDependencies": {
40
- "@mux/cli-darwin-arm64": "1.0.0-beta.9",
41
- "@mux/cli-darwin-x64": "1.0.0-beta.9",
42
- "@mux/cli-linux-x64": "1.0.0-beta.9",
43
- "@mux/cli-linux-arm64": "1.0.0-beta.9"
40
+ "@mux/cli-darwin-arm64": "1.0.0",
41
+ "@mux/cli-darwin-x64": "1.0.0",
42
+ "@mux/cli-linux-x64": "1.0.0",
43
+ "@mux/cli-linux-arm64": "1.0.0"
44
44
  }
45
45
  }