-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.45 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.45 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": "@hunt-agent/cli",
"version": "0.1.0-dev",
"description": "Your AI pentest agent. Your models. Your tools. Open-source AI pentest agent for authorized security testing.",
"type": "module",
"bin": {
"hunt-agent": "./dist/cli.js",
"hunt": "./dist/cli.js",
"hunt-agent-browser-mcp": "./dist/browser-mcp.js"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli/index.ts",
"dev:burp": "tsx src/cli/index.ts --burp",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"smoke": "bash scripts/smoke.sh",
"test:providers": "bash scripts/test-providers.sh",
"test:ollama": "bash scripts/test-ollama.sh",
"test:local-bug": "bash scripts/test-local-bug.sh",
"fixtures:list": "node -e \"const fs=require('fs');fs.readdirSync('tests/fixtures/security-apps').filter(d=>fs.statSync('tests/fixtures/security-apps/'+d).isDirectory()).forEach(d=>console.log(d))\"",
"bench:local": "bash scripts/test-local-bug.sh",
"ci": "npm run typecheck && npm run lint && npm run test && npm run build && npm run smoke"
},
"keywords": [
"hunt-agent",
"pentest",
"bug-bounty",
"security",
"cli",
"agent",
"llm",
"ollama",
"mcp",
"offensive-security",
"red-team"
],
"license": "Apache-2.0",
"homepage": "https://github.com/hunt-agent/hunt-agent",
"repository": {
"type": "git",
"url": "https://github.com/hunt-agent/hunt-agent.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"execa": "^9.5.1",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"marked": "^14.1.4",
"marked-terminal": "^7.2.1",
"pino": "^9.5.0",
"react": "^18.3.1",
"undici": "^6.21.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": "^18.3.12",
"@types/write-file-atomic": "^4.0.3",
"ink-testing-library": "^4.0.0",
"react-devtools-core": "^4.28.5",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}