mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 21:03:26 +00:00
- Add --check, --publish-crates, --publish-npm-sdk, --publish-npm-cli flags to release script - Create CI workflow with pre-release checks (cargo fmt, clippy, test, tsc) - Update release workflow to run checks, build binaries, and publish packages - Add @sandbox-agent/cli npm package with platform-specific binaries (esbuild pattern) - Configure TypeScript SDK for npm publishing (exports, files, types) - Add crates.io metadata to Cargo.toml (repository, description) - Rename @sandbox-agent/web to @sandbox-agent/inspector
19 lines
334 B
JSON
19 lines
334 B
JSON
{
|
|
"name": "@sandbox-agent/cli-darwin-x64",
|
|
"version": "0.1.0",
|
|
"description": "sandbox-agent CLI binary for macOS x64",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rivet-dev/sandbox-agent"
|
|
},
|
|
"os": [
|
|
"darwin"
|
|
],
|
|
"cpu": [
|
|
"x64"
|
|
],
|
|
"files": [
|
|
"bin"
|
|
]
|
|
}
|