-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.56 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
{
"name": "wb-red-team",
"version": "1.0.0",
"description": "White-box red-teaming framework for agentic AI apps — analyzes source code, generates LLM-powered attacks across 141 categories, and produces scored security reports",
"type": "module",
"license": "MIT",
"author": "Jyotirmoy Sundi",
"repository": {
"type": "git",
"url": "https://github.com/sundi133/wb-red-team"
},
"homepage": "https://github.com/sundi133/wb-red-team#readme",
"bugs": {
"url": "https://github.com/sundi133/wb-red-team/issues"
},
"keywords": [
"red-team",
"security",
"testing",
"llm",
"ai-agents",
"vulnerability",
"penetration-testing",
"prompt-injection",
"agentic-ai"
],
"engines": {
"node": ">=18.0.0"
},
"bin": {
"red-team-ai": "./red-team.ts"
},
"scripts": {
"start": "tsx red-team.ts",
"start:gap-2026": "tsx red-team.ts config.gap-2026-run.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"scan": "tsx scripts/run-with-progress.ts",
"demo": "tsx red-team.ts config-quick-test.json",
"ai": "tsx scripts/ai-assistant.ts",
"gen:interactive": "tsx scripts/gen-interactive.ts",
"gen:dataset": "tsx scripts/gen-dataset-nemo.ts",
"analyze:dump": "tsx scripts/dump-analysis.ts",
"eval:quality": "tsx scripts/run-quality-eval.ts",
"dashboard:build": "cd dashboard/ui && npm run build",
"dashboard:dev": "cd dashboard/ui && npm run dev",
"dashboard": "npm run dashboard:build && tsx dashboard/server.ts 4200",
"hermes:setup": "bash hermes-redteam/setup.sh",
"hermes:run": "bash hermes-redteam/run-analyst.sh",
"hermes:quick": "bash hermes-redteam/quick-config.sh",
"hermes:tools": "tsx hermes-redteam/tool-server.ts",
"hermes:mcp": "tsx hermes-redteam/mcp-server.ts",
"gen": "bash hermes-redteam/gen.sh",
"gen:config": "tsx hermes-redteam/gen-config.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"bcryptjs": "^3.0.3",
"csv-parse": "^6.2.1",
"glob": "^11.1.0",
"jose": "^5.0.0",
"openai": "^4.50.0",
"pg": "^8.20.0",
"undici": "^6.25.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.0.0",
"@types/pg": "^8.20.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"tsx": "^4.21.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
}
}