opencode-cloud 6.4.1 → 7.1.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.
- package/README.md +8 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -4,10 +4,16 @@ Cross-platform CLI for opencode-cloud with prebuilt binaries for major platforms
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
```bash
|
|
8
|
+
npx opencode-cloud@latest --version
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
bunx opencode-cloud@latest --version
|
|
13
|
+
```
|
|
14
|
+
|
|
7
15
|
```bash
|
|
8
16
|
npm install -g opencode-cloud
|
|
9
|
-
# or
|
|
10
|
-
npx opencode-cloud --version
|
|
11
17
|
```
|
|
12
18
|
|
|
13
19
|
No Rust toolchain required — npm automatically downloads the correct binary for your platform.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-cloud",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"description": "Cross-platform CLI for opencode-cloud (includes prebuilt binaries)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"arm64"
|
|
43
43
|
],
|
|
44
44
|
"optionalDependencies": {
|
|
45
|
-
"@opencode-cloud/cli-node-darwin-arm64": "
|
|
46
|
-
"@opencode-cloud/cli-node-
|
|
47
|
-
"@opencode-cloud/cli-node-
|
|
48
|
-
"@opencode-cloud/cli-node-linux-
|
|
49
|
-
"@opencode-cloud/cli-node-linux-
|
|
50
|
-
"@opencode-cloud/cli-node-linux-
|
|
45
|
+
"@opencode-cloud/cli-node-darwin-arm64": "7.1.0",
|
|
46
|
+
"@opencode-cloud/cli-node-darwin-x64": "7.1.0",
|
|
47
|
+
"@opencode-cloud/cli-node-linux-x64": "7.1.0",
|
|
48
|
+
"@opencode-cloud/cli-node-linux-arm64-musl": "7.1.0",
|
|
49
|
+
"@opencode-cloud/cli-node-linux-x64-musl": "7.1.0",
|
|
50
|
+
"@opencode-cloud/cli-node-linux-arm64": "7.1.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "^5.7.3",
|