forked from strands-agents/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "lambda-error-analysis-agent",
"version": "1.0.0",
"description": "AI-powered Lambda error analysis system that transforms generic error messages into actionable insights with root cause identification, specific fix recommendations, and confidence scoring using AWS Strands SDK and Amazon Bedrock",
"author": "Asif Mithawala",
"main": "cdk-app.js",
"scripts": {
"build": "tsc",
"build-layer": "cd cdk/layers/strands-layer && ./build.sh",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"predeploy": "npm run build && npm run build-layer",
"deploy": "cdk deploy",
"destroy": "cdk destroy",
"synth": "cdk synth"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "18.14.6",
"aws-cdk": "2.176.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"@cdklabs/generative-ai-cdk-constructs": "0.1.250",
"aws-cdk-lib": "2.176.0",
"cdk-nag": "^2.37.49",
"constructs": "^10.0.0"
}
}