@upstash/box-cli 0.1.40 → 0.1.41
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 +11 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -20,9 +20,19 @@ node packages/cli/dist/index.js --help
|
|
|
20
20
|
Provide your Upstash Box API token via the `--token` flag or the `UPSTASH_BOX_API_KEY` environment variable:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
export UPSTASH_BOX_API_KEY=
|
|
23
|
+
export UPSTASH_BOX_API_KEY=box_...
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
## Direct SSH
|
|
27
|
+
|
|
28
|
+
Boxes can also be reached directly over SSH:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
ssh <box-id>@us-east-1.box.upstash.com
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Use your **Box API key** as the SSH password.
|
|
35
|
+
|
|
26
36
|
## Commands
|
|
27
37
|
|
|
28
38
|
### `box create`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upstash/box-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"description": "CLI for Upstash Box — REPL-first interface for AI coding agents",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,16 +28,15 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"commander": "^13.0.0",
|
|
31
|
-
"dotenv": "^17.3.1"
|
|
31
|
+
"dotenv": "^17.3.1",
|
|
32
|
+
"zod": "^3.25.28",
|
|
33
|
+
"@upstash/box": "0.2.0"
|
|
32
34
|
},
|
|
33
35
|
"devDependencies": {
|
|
34
36
|
"@types/node": "^20.10.0",
|
|
35
37
|
"prettier": "^3.8.1",
|
|
36
38
|
"typescript": "^5.3.0"
|
|
37
39
|
},
|
|
38
|
-
"peerDependencies": {
|
|
39
|
-
"@upstash/box": "0.1.36"
|
|
40
|
-
},
|
|
41
40
|
"publishConfig": {
|
|
42
41
|
"access": "public"
|
|
43
42
|
},
|