cb15c5e0d8
CI / Rust (windows-latest - x86_64-pc-windows-msvc) (push) Waiting to run
CI / Native E2E Tests (push) Blocked by required conditions
CI / Windows Integration Test (push) Blocked by required conditions
CI / Version Sync Check (push) Waiting to run
CI / Rust (push) Waiting to run
CI / Dashboard (push) Waiting to run
CI / Sandbox Package (push) Waiting to run
CI / Rust (macos-latest - aarch64-apple-darwin) (push) Waiting to run
CI / Rust (macos-latest - x86_64-apple-darwin) (push) Waiting to run
CI / Global Install (macos-latest) (push) Blocked by required conditions
CI / Global Install (ubuntu-latest) (push) Blocked by required conditions
CI / Global Install (windows-latest) (push) Blocked by required conditions
Release / Check for new version (push) Has been cancelled
Release / Build macOS ARM64 (push) Has been cancelled
Release / Build macOS x64 (push) Has been cancelled
Release / Build Linux ARM64 (push) Has been cancelled
Release / Build Linux musl ARM64 (push) Has been cancelled
Release / Build Linux musl x64 (push) Has been cancelled
Release / Build Linux x64 (push) Has been cancelled
Release / Build Windows x64 (push) Has been cancelled
Release / Publish to npm (push) Has been cancelled
Release / Publish sandbox package to npm (push) Has been cancelled
Release / Create GitHub Release (push) Has been cancelled
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"name": "@agent-browser/sandbox",
|
|
"version": "0.31.1",
|
|
"description": "Helpers for running agent-browser inside sandbox runtimes",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./eve": {
|
|
"types": "./dist/eve.d.ts",
|
|
"import": "./dist/eve.js"
|
|
},
|
|
"./vercel": {
|
|
"types": "./dist/vercel.d.ts",
|
|
"import": "./dist/vercel.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"prepack": "pnpm run build",
|
|
"test": "pnpm run build && node --test test/*.test.mjs"
|
|
},
|
|
"keywords": [
|
|
"agent-browser",
|
|
"sandbox",
|
|
"vercel",
|
|
"eve",
|
|
"browser-automation"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vercel-labs/agent-browser",
|
|
"directory": "packages/@agent-browser/sandbox"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vercel-labs/agent-browser/issues"
|
|
},
|
|
"homepage": "https://agent-browser.dev",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"peerDependencies": {
|
|
"@vercel/sandbox": ">=1.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@vercel/sandbox": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|