-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.62 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@github/agentic-workflow-firewall",
"version": "0.23.1",
"description": "Network firewall for agentic workflows with domain whitelisting",
"main": "dist/cli.js",
"bin": {
"awf": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"type-check": "tsc --noEmit -p tsconfig.check.json",
"test": "jest",
"test:unit": "jest --config jest.config.js",
"test:integration": "jest --config tests/setup/jest.integration.config.js",
"test:all": "npm run test:unit && npm run test:integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:lint-rules": "node eslint-rules/no-unsafe-execa.test.js",
"lint": "eslint src",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules' '#docs-site/node_modules' '#.specify' '#.claude'",
"clean": "rm -rf dist",
"prepare": "husky",
"docs:dev": "cd docs-site && npm run dev",
"docs:build": "cd docs-site && npm run build",
"docs:preview": "cd docs-site && npm run preview",
"benchmark": "npx tsx scripts/ci/benchmark-performance.ts"
},
"keywords": [
"agentic-workflows",
"firewall",
"network-restrictions",
"ai-agents",
"coding-agents",
"security",
"domain-whitelisting",
"proxy",
"squid",
"agent",
"mcp",
"egress-control"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"execa": "^5.1.1",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^10.0.0",
"@types/glob": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"babel-jest": "^30.2.0",
"eslint": "^10.0.0",
"eslint-plugin-security": "^3.0.1",
"glob": "^13.0.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"markdownlint-cli2": "^0.17.2",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"test-exclude": "^7.0.1",
"minimatch": ">=10.2.1"
},
"engines": {
"node": ">=20.12.0"
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"node_modules/chalk/**/*",
"containers/agent/seccomp-profile.json"
],
"targets": [
"node18-linux-x64",
"node18-linux-arm64",
"node18-macos-x64",
"node18-macos-arm64"
]
}
}