-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"name": "@execbox/quickjs",
"version": "0.7.1",
"description": "QuickJS executor for the execbox core package across inline and worker hosts.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown"
},
"keywords": [
"mcp",
"model-context-protocol",
"quickjs",
"sandbox",
"code-execution"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aallam/execbox.git",
"directory": "packages/quickjs"
},
"homepage": "https://github.com/aallam/execbox/tree/main/packages/quickjs#readme",
"bugs": "https://github.com/aallam/execbox/issues",
"dependencies": {
"@execbox/core": "^0.7.0",
"quickjs-emscripten": "^0.31.0"
}
}