sandbox 1.0.0 → 1.0.3
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 +17 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Vercel Sandbox
|
|
2
|
+
|
|
3
|
+
Vercel Sandbox is an ephemeral compute primitive designed to safely run untrusted or user-generated code on Vercel. It supports dynamic, real-time workloads for AI agents, code generation, and developer experimentation.
|
|
4
|
+
|
|
5
|
+
Read the full documentation at https://vercel.com/docs/vercel-sandbox.
|
|
6
|
+
|
|
7
|
+
## API
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { Sandbox } from "sandbox";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Command line interface
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
$ npx sandbox --help
|
|
17
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sandbox",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "ISC",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@vercel/sandbox": "1.0.
|
|
31
|
-
"@vercel/sandbox-cli": "1.0.
|
|
30
|
+
"@vercel/sandbox": "1.0.2",
|
|
31
|
+
"@vercel/sandbox-cli": "1.0.2"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"clean": "rm -rf node_modules dist",
|