-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.17 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
{
"name": "@pentesterflow/agent",
"version": "0.3.0",
"description": "Human-in-the-loop agentic CLI for authorized penetration testing and bug bounty work.",
"type": "module",
"bin": {
"pentesterflow": "./dist/cli.js",
"pentesterflow-browser-mcp": "./dist/browser-mcp.js"
},
"files": [
"dist",
"skills",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "bun src/cli/index.ts",
"dev:burp": "bun src/cli/index.ts --burp",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:opentui": "bun test src/ui-opentui",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"ci": "bun run typecheck && bun run lint && bun run test && bun run test:opentui && bun run build"
},
"keywords": [
"pentest",
"bug-bounty",
"security",
"cli",
"agent",
"llm",
"ollama",
"mcp",
"offensive-security",
"red-team",
"opentui"
],
"license": "Apache-2.0",
"homepage": "https://github.com/pentesterflow/agent",
"repository": {
"type": "git",
"url": "https://github.com/pentesterflow/agent.git"
},
"bugs": {
"url": "https://github.com/pentesterflow/agent/issues"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.3.14",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@opentui/core": "^0.5.1",
"@opentui/react": "^0.5.1",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"execa": "^9.5.1",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"marked": "^14.1.4",
"marked-terminal": "^7.2.1",
"pino": "^9.5.0",
"react": "^19.2.0",
"undici": "^6.21.0",
"web-tree-sitter": "0.25.10",
"ws": "^8.18.0",
"write-file-atomic": "^6.0.0",
"zod": "^3.23.8",
"zustand": "^5.0.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.10.1",
"@types/react": "^19.2.0",
"@types/write-file-atomic": "^4.0.3",
"react-devtools-core": "^7.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}