-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkg-template.json
More file actions
52 lines (52 loc) · 1.58 KB
/
Copy pathpkg-template.json
File metadata and controls
52 lines (52 loc) · 1.58 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
{
"name": "runboxjs",
"type": "module",
"description": "A powerful WebAssembly-powered sandbox runtime for executing code, managing files, and running commands in isolated environments directly in the browser. Execute JavaScript, Python, Git commands, npm packages, and more in a secure, lightweight sandbox.",
"keywords": [
"wasm", "webassembly", "sandbox", "runtime", "javascript",
"isolated-execution", "virtual-filesystem", "git", "npm",
"package-manager", "terminal", "code-execution", "browser",
"security", "containerization", "code-editor", "playground", "ai-tools"
],
"main": "runbox.js",
"types": "runbox.d.ts",
"exports": {
".": {
"import": "./runbox.js",
"types": "./runbox.d.ts"
}
},
"files": [
"runbox.js",
"runbox.d.ts",
"runbox_bg.wasm",
"README.md",
"LICENSE"
],
"sideEffects": ["./runbox.js"],
"repository": {
"type": "git",
"url": "git+https://github.com/owellandry/runbox.git"
},
"homepage": "https://github.com/owellandry/runbox#readme",
"bugs": {
"url": "https://github.com/owellandry/runbox/issues",
"email": "owellpolanco@gmail.com"
},
"author": {
"name": "owellpolanco",
"email": "owellpolanco@gmail.com",
"url": "https://github.com/owellandry/runbox"
},
"license": "MIT",
"engines": { "node": ">=16.0.0" },
"funding": {
"type": "github",
"url": "https://github.com/owellandry/runbox"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"browserslist": ["last 2 versions", "not dead", "supports wasm"]
}