sandbox 2.0.1 → 2.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Vercel
3
+ Copyright (c) 2026 Vercel
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -4,6 +4,11 @@ Command line interface for Vercel Sandbox.
4
4
 
5
5
  Read the full documentation at [vercel.com/docs/vercel-sandbox/cli-reference](https://vercel.com/docs/vercel-sandbox/cli-reference).
6
6
 
7
+ ## Packages
8
+
9
+ - [`@vercel/sandbox`](https://www.npmjs.com/package/@vercel/sandbox) - The SDK for programmatic access to Vercel Sandbox. [Source](https://github.com/vercel/sandbox/tree/main/packages/vercel-sandbox) | [Documentation](https://vercel.com/docs/vercel-sandbox/sdk-reference)
10
+ - [`sandbox`](https://www.npmjs.com/package/sandbox) (this package) - The CLI for interacting with Vercel Sandbox from the command line. [Source](https://github.com/vercel/sandbox/tree/main/packages/sandbox) | [Documentation](https://vercel.com/docs/vercel-sandbox/cli-reference)
11
+
7
12
  ## Installation
8
13
 
9
14
  ```bash
@@ -17,15 +22,3 @@ sandbox create # Create a new sandbox
17
22
  sandbox ls # List your sandboxes
18
23
  sandbox --help # View all commands
19
24
  ```
20
-
21
- ## SDK
22
-
23
- For programmatic access to Vercel Sandbox, use the [`@vercel/sandbox`](https://www.npmjs.com/package/@vercel/sandbox) package instead:
24
-
25
- ```bash
26
- pnpm add @vercel/sandbox
27
- ```
28
-
29
- ```ts
30
- import { Sandbox } from "@vercel/sandbox";
31
- ```