-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 KB
/
package.json
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
{
"name": "@aws/agents-for-amazon-bedrock-blueprints",
"description": "A collection of L3 construct for AWS CDK that allows you to create and deploy Bedrock agents and related resources",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"homepage": "https://awslabs.github.io/agents-for-amazon-bedrock-blueprints/",
"license": "MIT-0",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/agents-for-amazon-bedrock-blueprints.git"
},
"engines": {
"node": ">=12"
},
"author": "Amazon Web Services",
"contributors": [
{
"name": "Shubham Divekar"
}
],
"scripts": {
"clean": "rm -rf dist cdk.out",
"build": "tsc --outdir dist",
"format": "npx prettier --check .",
"format-fix": "npx prettier --write .",
"lint": "npx eslint . --ext .ts,.tsx",
"lint-fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix",
"watch": "tsc -w",
"copy-compiled-js": "npm run build && cp dist/utilities/lambdaFunctions/*.js lib/utilities/lambdaFunctions/",
"test": "npm run copy-compiled-js && jest && rm lib/utilities/lambdaFunctions/*.js",
"cdk": "cdk"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.6.0",
"@aws-sdk/client-bedrock-agent": "^3.529.0",
"@aws-sdk/client-lambda": "^3.529.0",
"@aws-sdk/client-secrets-manager": "^3.529.0",
"@aws-sdk/credential-providers": "^3.529.0",
"@opensearch-project/opensearch": "^2.6.0",
"source-map-support": "^0.5.21",
"ts-retry": "^4.2.5",
"uuid": "^9.0.1"
},
"peerDependencies": {
"aws-cdk-lib": "^2.140.0",
"constructs": "^10.0.0",
"esbuild": "^0.23.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/aws-lambda": "^8.10.137",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "20.12.7",
"@types/prettier": "2.6.0",
"@types/uuid": "^9.0.8",
"aws-cdk": "2.141.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"jest": "^29.7.0",
"prettier": "^3.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.4.5",
"typescript-eslint": "^7.11.0"
}
}