-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "metaintent-agent",
"version": "1.0.0",
"description": "Modular autonomous onboarding agent for low-bandwidth environments",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rmdir /s /q dist",
"package": "npm run build && cd dist && tar -czf ../lambda-package.zip .",
"test": "jest",
"deploy": "sam build && sam deploy"
},
"keywords": [
"aws",
"bedrock",
"nvidia",
"nim",
"agent",
"onboarding"
],
"author": "",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.914.0",
"@aws-sdk/client-dynamodb": "^3.700.0",
"@aws-sdk/client-s3": "^3.700.0",
"@aws-sdk/client-sagemaker-runtime": "^3.700.0",
"@aws-sdk/client-textract": "^3.700.0",
"@aws-sdk/client-transcribe": "^3.700.0",
"@aws-sdk/lib-dynamodb": "^3.700.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.6",
"@types/uuid": "^9.0.8",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"type": "commonjs"
}