-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 984 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "lambda-genbot",
"version": "2.0.0",
"private": true,
"type": "module",
"description": "Uses generative AI to create image based on given prompt",
"repository": "https://github.com/caseconsulting/lambda-genbot",
"author": "CASE",
"scripts": {
"build": "sam build -t template.yaml",
"deploy": "npm run build && sam deploy --template-file template.yaml --region us-east-1 --capabilities CAPABILITY_IAM --s3-prefix lambda-genbot --s3-bucket case-consulting-mgmt-sam-deployments --stack-name lambda-genbot --profile mgmt",
"local:generate": "npm run build && sam local invoke GenBotFunction -e event-generate.json --profile mgmt",
"local:retrieve": "npm run build && sam local invoke GenBotRetrieveFunction -e event-retrieve.json --profile mgmt",
"login": "aws sso login --profile mgmt"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "3.1045.0",
"@aws-sdk/client-s3": "3.1045.0",
"@smithy/util-base64": "4.4.1"
}
}