-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.76 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.76 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
{
"name": "crack-code",
"version": "0.3.0",
"description": "AI-powered CLI security auditor that scans codebases for vulnerabilities, explains findings with exact code references, and optionally applies fixes. Provider-agnostic — works with Anthropic, OpenAI, Google, Azure, Vertex AI, and Ollama.",
"module": "src/index.ts",
"bin": {
"crack-code": "src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"setup": "bun run src/index.ts --setup"
},
"type": "module",
"license": "MIT",
"author": "Grenish rai",
"repository": {
"type": "git",
"url": "https://github.com/grenishrai/crack-code"
},
"homepage": "https://github.com/grenishrai/crack-code#readme",
"bugs": {
"url": "https://github.com/grenishrai/crack-code/issues"
},
"keywords": [
"security",
"vulnerability-scanner",
"code-audit",
"ai",
"cli",
"llm",
"anthropic",
"openai",
"google",
"azure",
"vertex-ai",
"ollama",
"static-analysis",
"pentesting",
"devtools",
"bun",
"ai-agent",
"code-review",
"sast"
],
"engines": {
"bun": ">=1.0.0"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/bun": "latest",
"@types/gradient-string": "^1.1.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.54",
"@ai-sdk/azure": "^3.0.40",
"@ai-sdk/google": "^3.0.37",
"@ai-sdk/google-vertex": "^4.0.73",
"@ai-sdk/openai": "^3.0.39",
"@clack/prompts": "^1.2.0",
"ai": "^6.0.111",
"cli-highlight": "^2.1.11",
"gradient-string": "^3.0.0",
"ollama-ai-provider-v2": "^3.3.1",
"picocolors": "^1.1.1",
"zod": "^4.3.6"
}
}