forked from anthropic-experimental/sandbox-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.03 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
{
"name": "@anthropic-ai/sandbox-runtime",
"version": "0.0.1",
"description": "Anthropic Sandbox Runtime (ASRT) - A general-purpose tool for wrapping security boundaries around arbitrary processes",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"srt": "dist/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts' --fix --cache --cache-location=node_modules/.cache/.eslintcache",
"lint:check": "eslint 'src/**/*.ts' --cache --cache-location=node_modules/.cache/.eslintcache",
"format": "prettier --write 'src/**/*.ts' --cache --log-level warn",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@pondwader/socks5-server": "^1.0.10",
"@types/lodash-es": "^4.17.12",
"commander": "^12.1.0",
"lodash-es": "^4.17.21",
"shell-quote": "^1.8.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^18",
"@types/shell-quote": "^1.7.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.16.2",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.12.0",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"sandbox",
"seatbelt",
"sandbox-exec",
"anthropic",
"claude",
"security",
"bubblewrap",
"network-filtering",
"filesystem-restrictions"
],
"author": "Anthropic PBC",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/anthropic-experimental/sandbox-runtime.git"
},
"bugs": {
"url": "https://github.com/anthropic-experimental/sandbox-runtime/issues"
},
"homepage": "https://github.com/anthropic-experimental/sandbox-runtime#readme"
}