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
31 lines (31 loc) · 665 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 665 Bytes
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
{
"name": "deploy_to_lambda",
"version": "0.1.0",
"description": "CDK TypeScript project to deploy a sample Agent Lambda function",
"private": true,
"bin": {
"cdk-app": "cdk/cdk-app.js"
},
"scripts": {
"format": "prettier --write .",
"watch": "tsc -w",
"test": "vitest run",
"cdk": "cdk"
},
"devDependencies": {
"@types/node": "22.15.3",
"aws-cdk": "2.1012.0",
"prettier": "~3.5.3",
"tsx": "^4.7.0",
"typescript": "~5.8.3",
"vitest": "^3.1.2"
},
"dependencies": {
"aws-cdk-lib": "2.192.0",
"cdk-nag": "^2.35.101",
"constructs": "^10.2.0"
},
"prettier": {
"printWidth": 120
}
}