@mux/cli 1.0.0-beta.3 → 1.0.0-beta.5
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 +3 -3
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -7,19 +7,19 @@ A command-line interface for interacting with the Mux API, designed to provide a
|
|
|
7
7
|
### Install via npm
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g @mux/cli
|
|
10
|
+
npm install -g @mux/cli@beta
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Or run directly with npx:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx @mux/cli@
|
|
16
|
+
npx @mux/cli@beta
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
### Shell installer
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
curl -fsSL https://raw.githubusercontent.com/muxinc/cli/
|
|
22
|
+
curl -fsSL https://raw.githubusercontent.com/muxinc/cli/main/install.sh | bash
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Download the binary
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mux/cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.5",
|
|
4
4
|
"description": "Official Mux CLI for interacting with Mux APIs",
|
|
5
5
|
"author": "Mux",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,10 +35,11 @@
|
|
|
35
35
|
"README.md",
|
|
36
36
|
"LICENSE"
|
|
37
37
|
],
|
|
38
|
+
"packageManager": "pnpm@10.17.1",
|
|
38
39
|
"optionalDependencies": {
|
|
39
|
-
"@mux/cli-darwin-arm64": "1.0.0-beta.
|
|
40
|
-
"@mux/cli-darwin-x64": "1.0.0-beta.
|
|
41
|
-
"@mux/cli-linux-x64": "1.0.0-beta.
|
|
42
|
-
"@mux/cli-linux-arm64": "1.0.0-beta.
|
|
40
|
+
"@mux/cli-darwin-arm64": "1.0.0-beta.5",
|
|
41
|
+
"@mux/cli-darwin-x64": "1.0.0-beta.5",
|
|
42
|
+
"@mux/cli-linux-x64": "1.0.0-beta.5",
|
|
43
|
+
"@mux/cli-linux-arm64": "1.0.0-beta.5"
|
|
43
44
|
}
|
|
44
45
|
}
|