-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "redai-cli",
"version": "0.5.0",
"description": "An open-source autonomous cybersecurity testing CLI for the terminal",
"type": "module",
"bin": {
"red": "bin/red.js"
},
"scripts": {
"start": "node bin/red.js",
"test": "vitest run",
"test:watch": "vitest",
"test:security": "node bin/red.js security test",
"test:smoke": "node bin/red.js security test --smoke",
"lint": "eslint src/ bin/ test/ eslint.config.js"
},
"keywords": [
"ai",
"cli",
"coding-assistant",
"anthropic",
"openai",
"gemini",
"ollama",
"agentic",
"auto-agent"
],
"homepage": "https://github.com/ragibalikhan/red-cli",
"bugs": {
"url": "https://github.com/ragibalikhan/red-cli/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"src/"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@anthropic-ai/tokenizer": "^0.0.4",
"@google/generative-ai": "^0.21.0",
"@inquirer/prompts": "^8.4.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"fuse.js": "^7.3.0",
"gpt-tokenizer": "^3.4.0",
"ink": "^5.2.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"openai": "^4.77.0",
"ora": "^8.0.1",
"react": "^18.3.1"
},
"devDependencies": {
"eslint": "^9.0.0",
"vitest": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ragibalikhan/red-cli.git"
}
}