branch:
package.json
1184 bytesRaw
{
"name": "@cloudflare/shell",
"version": "0.1.1",
"description": "Experimental sandboxed JS execution and filesystem runtime for Cloudflare Workers agents",
"repository": {
"directory": "packages/shell",
"type": "git",
"url": "git+https://github.com/cloudflare/agents.git"
},
"bugs": {
"url": "https://github.com/cloudflare/agents/issues"
},
"dependencies": {
"@cloudflare/codemode": "*"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.13.3",
"vitest": "4.1.0"
},
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./workers": {
"types": "./dist/workers.d.ts",
"import": "./dist/workers.js",
"require": "./dist/workers.js"
}
},
"scripts": {
"build": "tsx ./scripts/build.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"cloudflare",
"agents",
"sandbox",
"filesystem",
"shell",
"isolate"
],
"author": "Cloudflare Inc.",
"license": "MIT",
"type": "module",
"files": [
"dist",
"README.md"
]
}