-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 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
{
"name": "iridescent-devsecops-agent",
"version": "2.2.0",
"description": "Iridescent DevSecOps Platform: A unified AI orchestrator and turnkey security system for automated code review and intelligent vulnerability remediation, developed by David Akpoviroro Oke (MrIridescent).",
"main": "dist/index.js",
"type": "module",
"bin": {
"iridescent-sec-agent": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"review": "node dist/cli.js review",
"fix": "node dist/cli.js fix",
"ai-review": "node dist/cli.js review --ai",
"ai-fix": "node dist/cli.js fix --ai",
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"setup": "node scripts/setup.js",
"doctor": "node dist/cli.js doctor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrIridescent/DevSecOps-Agent.git"
},
"keywords": [
"iridescent",
"devsecops",
"security-orchestrator",
"automated-remediation",
"code-review",
"static-analysis",
"ai-security",
"claude-sonnet",
"purple-teaming",
"turnkey-security"
],
"author": "David Akpoviroro Oke (MrIridescent)",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.30.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"glob": "^13.0.5",
"ora": "^8.0.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/ui": "^4.0.18",
"eslint": "^10.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^2.7.0",
"prettier": "^3.8.1",
"vitest": "^4.0.18"
}
}