-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "my-agent-service",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"invoke": "tsx src/invoke.ts \"$@\"",
"initialize": "bash initialize.sh \"$@\"",
"update": "bash update.sh \"$@\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"check": "npm run lint && npm run format",
"clean": "rm -rf package-lock.json node_modules"
},
"dependencies": {
"@aws-sdk/client-bedrock-agentcore": "latest",
"@strands-agents/sdk": "latest",
"bedrock-agentcore": "file:bedrock-agentcore-0.1.1.tgz",
"express": "^4.18.2",
"tsx": "^4.21.0",
"ws": "^8.18.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.3.3"
}
}