-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.65 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
{
"name": "@enclave-vm/core",
"version": "2.13.0",
"description": "Sandbox runtime for secure JavaScript code execution",
"author": "AgentFront <info@agentfront.dev>",
"homepage": "https://github.com/agentfront/enclave",
"license": "Apache-2.0",
"keywords": [
"sandbox",
"vm",
"enclave",
"enclave-vm",
"agentscript",
"llm",
"javascript",
"execution",
"security",
"ast-guard"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agentfront/enclave.git"
},
"bugs": {
"url": "https://github.com/agentfront/enclave/issues"
},
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./worker": {
"development": "./src/worker.ts",
"types": "./dist/worker.d.ts",
"import": "./dist/esm/worker.mjs",
"require": "./dist/worker.js",
"default": "./dist/worker.js"
}
},
"dependencies": {
"@babel/standalone": "^7.29.0",
"@enclave-vm/ast": "2.13.0",
"@enclave-vm/types": "2.13.0",
"@types/estree": "1.0.8",
"acorn": "8.15.0",
"acorn-walk": "8.3.4",
"astring": "1.9.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"@huggingface/transformers": "^3.2.2",
"vectoriadb": "^2.1.3"
},
"peerDependenciesMeta": {
"@huggingface/transformers": {
"optional": true
},
"vectoriadb": {
"optional": true
}
}
}