-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@cloudflare/shell",
"version": "0.3.6",
"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": "*",
"isomorphic-git": "^1.37.6"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.15.2",
"vitest": "4.1.5"
},
"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"
},
"./git": {
"types": "./dist/git/index.d.ts",
"import": "./dist/git/index.js",
"require": "./dist/git/index.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"
]
}