-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.36 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@trellisclad/cloud-audit-agent",
"version": "0.1.0",
"description": "AI-powered CLI agent that audits AWS accounts for security misconfigurations and cost anomalies using Claude",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cloud-audit-agent": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/agent.d.ts",
"import": "./dist/agent.js"
},
"./aws": {
"types": "./dist/aws/client.d.ts",
"import": "./dist/aws/client.js"
},
"./tools": {
"types": "./dist/tools/index.d.ts",
"import": "./dist/tools/index.js"
},
"./types": {
"types": "./dist/types/findings.d.ts",
"import": "./dist/types/findings.js"
},
"./report": {
"types": "./dist/report/formatter.d.ts",
"import": "./dist/report/formatter.js"
},
"./tracing": {
"types": "./dist/tracing.d.ts",
"import": "./dist/tracing.js"
}
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:eval": "vitest run tests/eval",
"test:watch": "vitest"
},
"keywords": [
"aws",
"security",
"audit",
"cost",
"claude",
"ai-agent",
"mcp",
"iam",
"s3",
"ec2",
"compliance"
],
"author": "Trellisclad",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/trellisclad/cloud-audit-agent.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.71",
"@arizeai/phoenix-otel": "^0.3.0",
"@aws-sdk/client-bedrock": "^3.1004.0",
"@aws-sdk/client-cloudwatch": "^3.1046.0",
"@aws-sdk/client-config-service": "^3.700.0",
"@aws-sdk/client-cost-explorer": "^3.700.0",
"@aws-sdk/client-ec2": "^3.700.0",
"@aws-sdk/client-iam": "^3.700.0",
"@aws-sdk/client-s3": "^3.700.0",
"@aws-sdk/client-securityhub": "^3.700.0",
"@aws-sdk/client-sts": "^3.1004.0",
"@aws-sdk/credential-providers": "^3.700.0",
"@opentelemetry/api": "^1.9.0",
"commander": "^12.0.0",
"effect": "^3.19.19",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"aws-sdk-client-mock": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
}
}