UNPKG

@grasplabs/grasp

Version:

TypeScript SDK for browser automation and secure command execution in highly available and scalable cloud browser environments

89 lines 2.76 kB
{ "name": "@grasplabs/grasp", "version": "0.4.16", "description": "TypeScript SDK for browser automation and secure command execution in highly available and scalable cloud browser environments", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE" ], "bin": { "grasp-keygen": "dist/cli/grasp-keygen.js", "grasp-mcp-server": "dist/cli/mcp-server.js", "grasp-run": "dist/cli/grasp-run.js" }, "keywords": [ "e2b", "sandbox", "automation", "command", "execution", "cloud" ], "author": "", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/grasplabs/grasp-sdk.git" }, "homepage": "https://github.com/grasplabs/grasp-sdk#readme", "bugs": { "url": "https://github.com/grasplabs/grasp-sdk/issues" }, "devDependencies": { "@e2b/cli": "^1.5.1", "@eslint/js": "^9.31.0", "@logtail/node": "^0.5.5", "@sentry/node": "^9.40.0", "@types/express": "^5.0.3", "@types/jest": "^30.0.0", "@types/node": "^24.0.3", "@types/ws": "^8.18.1", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-jest": "^29.0.1", "eslint-plugin-prettier": "^5.5.0", "express": "^5.1.0", "globals": "^16.3.0", "http-proxy": "^1.18.1", "jest": "^30.0.2", "playwright": "^1.53.2", "playwright-extra": "^4.3.6", "prettier": "^3.5.3", "puppeteer-extra-plugin-stealth": "^2.11.2", "sharp": "^0.34.3", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript-eslint": "^8.37.0", "why-is-node-running": "^3.2.2" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.17.0", "commander": "^14.0.0", "dotenv": "^16.5.0", "e2b": "^1.7.1", "esbuild": "^0.25.8", "open": "^8.4.2", "playwright-core": "^1.53.2", "typescript": "^5.8.3", "uuid": "^11.1.0", "ws": "^8.18.3", "zod": "^3.25.76" }, "scripts": { "build:sdk": "rm -rf ./dist && tsc", "build:sandbox": "esbuild src/sandbox/http-proxy.ts --bundle --platform=node --outfile=src/sandbox/http-proxy.js --external:sharp", "build": "pnpm build:sdk && pnpm build:sandbox", "dev": "ts-node src/index.ts", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.{mjs,ts}", "lint:fix": "eslint src/**/*.{mjs,ts} --fix", "format": "prettier --write src/**/*.{mjs,ts}", "deploy:grasp:chromium": "./scripts/deploy-template.sh grasp-run-chromium-v2 chromium.Dockerfile ./chromium.e2b.toml", "deploy:grasp:chrome": "./scripts/deploy-template.sh grasp-run-chrome-stable-v2 chrome-stable.Dockerfile ./chrome-stable.e2b.toml" } }