forked from aws-samples/agent-preparation-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 916 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 916 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
32
33
34
{
"name": "agents-build-kit",
"version": "0.1.0",
"bin": {
"agents-build-kit": "bin/agents-build-kit.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"cdk": "cdk",
"cdk:deploy": "cdk deploy --require-approval never --asset-parallelism --asset-prebuild=false --concurrency 3 --method=direct",
"cdk:destroy": "cdk destroy --force"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"aws-cdk": "^2.1002.0",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.23.0"
},
"dependencies": {
"aws-cdk-lib": "2.189.1",
"cdk-nag": "^2.35.10",
"constructs": "^10.0.0",
"zod": "^3.24.2"
}
}