sbox-sdk 0.0.2 → 0.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.
Files changed (2) hide show
  1. package/README.md +1 -3
  2. package/package.json +10 -1
package/README.md CHANGED
@@ -1,9 +1,7 @@
1
- # sbox-sdk
1
+ # sbox-sdk ![status: alpha](https://img.shields.io/badge/status-alpha-orange)
2
2
 
3
3
  One unified SDK for agent **sandbox** providers (E2B, Vercel Sandbox, Cloudflare Sandbox, and more). Write your code once; swap the adapter import to change provider — the rest of your code stays the same.
4
4
 
5
- > Status: **alpha** (`0.0.1`). Ships adapters for E2B, Vercel, Cloudflare, Daytona, Modal, Fly, AWS Lambda, Northflank, Runloop, CodeSandbox, Morph, Blaxel, Beam, and Railway — plus a built-in **in-memory** provider for tests/dev. E2B is the most battle-tested; the newer adapters pass the shared conformance suite offline but are less proven against live APIs.
6
-
7
5
  ## Install
8
6
 
9
7
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbox-sdk",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "One unified SDK for agent sandbox providers (E2B, Vercel, Cloudflare, Daytona, Modal, and more) — swap the adapter import, keep your code.",
5
5
  "keywords": [
6
6
  "agent",
@@ -12,7 +12,16 @@
12
12
  "sandbox",
13
13
  "vercel-sandbox"
14
14
  ],
15
+ "homepage": "https://sbox-sdk.vercel.app",
16
+ "bugs": {
17
+ "url": "https://github.com/Vivek-k3/sbox-sdk/issues"
18
+ },
15
19
  "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Vivek-k3/sbox-sdk.git",
23
+ "directory": "packages/sbox-sdk"
24
+ },
16
25
  "bin": {
17
26
  "sbox": "dist/cli.js"
18
27
  },