-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.75 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": "@codexstar/bug-hunter",
"version": "3.0.10",
"description": "Adversarial AI bug hunter — multi-agent pipeline finds security vulnerabilities, logic errors, and runtime bugs, then fixes them autonomously. Works with Claude Code, Cursor, Codex CLI, Copilot, Kiro, and more.",
"license": "MIT",
"main": "bin/bug-hunter",
"type": "commonjs",
"bin": {
"bug-hunter": "bin/bug-hunter"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ai",
"agent",
"skill",
"bug-hunter",
"security",
"vulnerability",
"code-review",
"auto-fix",
"claude-code",
"cursor",
"codex",
"copilot",
"kiro",
"multi-agent",
"adversarial",
"static-analysis"
],
"files": [
"bin/",
"scripts/",
"schemas/",
"prompts/",
"templates/",
"modes/",
"evals/",
"docs/",
"agents/",
"skills/",
"SKILL.md",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"llms.txt",
"llms-full.txt",
"test-fixture/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codexstar69/bug-hunter.git"
},
"bugs": {
"url": "https://github.com/codexstar69/bug-hunter/issues"
},
"homepage": "https://github.com/codexstar69/bug-hunter#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "node scripts/prepublish-guard.cjs",
"prepack": "node --test scripts/tests/*.test.cjs",
"test": "node --test scripts/tests/*.test.cjs",
"doctor": "node bin/bug-hunter doctor",
"postinstall": "node -e \"console.log('\\n Run: bug-hunter install to set up the skill\\n Run: bug-hunter doctor to check your environment\\n')\""
}
}