forked from cloudflare/agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@cloudflare/shell",
"version": "0.4.3",
"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": ">=0.5.0",
"isomorphic-git": "^1.38.5"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.19.1",
"vitest": "4.1.10"
},
"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",
"docs",
"README.md"
],
"nx": {
"targets": {
"build": {
"inputs": [
"production",
"^production",
"{workspaceRoot}/docs/shell/**/*",
"{workspaceRoot}/scripts/copy-package-docs.ts"
],
"outputs": [
"{projectRoot}/dist",
"{projectRoot}/docs"
]
}
}
}
}