-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "vsbx",
"version": "0.0.28",
"description": "Sandbox - agentic (AI Agent) safe code execution with network and filesystem restrictions",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vsbx": "dist/cli.js"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsc",
"postbuild": "scripts/seccomp.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "bun test"
},
"dependencies": {
"@pondwader/socks5-server": "^1.0.10",
"commander": "^14.0.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-sonarjs": "^3.0.5",
"globals": "^16.5.0",
"typescript": "^5.9.3"
},
"files": [
"dist",
"vendor",
"README.md",
"LICENSE"
],
"keywords": [
"sandbox",
"seatbelt",
"security",
"bubblewrap",
"sandbox-exec",
"network-filtering",
"filesystem-restrictions"
],
"author": "EliFuzz (RA)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/EliFuzz/vsbx.git"
},
"bugs": {
"url": "https://github.com/EliFuzz/vsbx/issues"
},
"homepage": "https://github.com/EliFuzz/vsbx#readme"
}