@e2b/cli 2.4.0 → 2.4.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/dist/index.js +76 -75
- package/dist/index.js.map +1 -1
- package/dist/templates/readme.hbs +10 -0
- package/package.json +2 -2
|
@@ -16,6 +16,16 @@ Before you begin, make sure you have:
|
|
|
16
16
|
E2B_API_KEY=your_api_key_here
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
## Installing Dependencies
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
{{#if isTypeScript}}
|
|
23
|
+
npm install e2b
|
|
24
|
+
{{else if isPython}}
|
|
25
|
+
pip install e2b
|
|
26
|
+
{{/if}}
|
|
27
|
+
```
|
|
28
|
+
|
|
19
29
|
## Building the Template
|
|
20
30
|
|
|
21
31
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e2b/cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "CLI for managing e2b sandbox templates",
|
|
5
5
|
"homepage": "https://e2b.dev",
|
|
6
6
|
"license": "MIT",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"commander": "^11.1.0",
|
|
73
73
|
"console-table-printer": "^2.11.2",
|
|
74
74
|
"dockerfile-ast": "^0.6.1",
|
|
75
|
-
"e2b": "^2.6.
|
|
75
|
+
"e2b": "^2.6.1",
|
|
76
76
|
"handlebars": "^4.7.8",
|
|
77
77
|
"inquirer": "^9.2.12",
|
|
78
78
|
"open": "^9.1.0",
|