-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 5 KB
/
package.json
File metadata and controls
153 lines (153 loc) · 5 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "bedrock-agentcore",
"version": "0.2.0",
"description": "TypeScript SDK for AWS Bedrock AgentCore",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./browser": {
"import": "./dist/src/tools/browser/index.js",
"types": "./dist/src/tools/browser/index.d.ts"
},
"./browser/playwright": {
"import": "./dist/src/tools/browser/integrations/playwright/index.js",
"types": "./dist/src/tools/browser/integrations/playwright/index.d.ts"
},
"./browser/vercel-ai": {
"import": "./dist/src/tools/browser/integrations/vercel-ai/index.js",
"types": "./dist/src/tools/browser/integrations/vercel-ai/index.d.ts"
},
"./experimental/browser/strands": {
"import": "./dist/src/tools/browser/integrations/strands/index.js",
"types": "./dist/src/tools/browser/integrations/strands/index.d.ts"
},
"./code-interpreter": {
"import": "./dist/src/tools/code-interpreter/index.js",
"types": "./dist/src/tools/code-interpreter/index.d.ts"
},
"./code-interpreter/vercel-ai": {
"import": "./dist/src/tools/code-interpreter/integrations/vercel-ai/index.js",
"types": "./dist/src/tools/code-interpreter/integrations/vercel-ai/index.d.ts"
},
"./experimental/code-interpreter/strands": {
"import": "./dist/src/tools/code-interpreter/integrations/strands/index.js",
"types": "./dist/src/tools/code-interpreter/integrations/strands/index.d.ts"
},
"./runtime": {
"import": "./dist/src/runtime/index.js",
"types": "./dist/src/runtime/index.d.ts"
},
"./identity": {
"import": "./dist/src/identity/index.js",
"types": "./dist/src/identity/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"check": "npm run lint && npm run format && npm run type-check:all && npm run test:coverage",
"clean": "rm -rf node_modules dist package-lock.json",
"test": "vitest run --project unit-node",
"test:all": "vitest run --project unit-node && vitest run --project integ",
"ci": "npm run lint && npm run format:check && npm run type-check:all && npm run build && npm run test:all",
"test:watch": "vitest --project unit-node",
"test:coverage": "vitest run --coverage --project unit-node",
"test:integ": "vitest run --project integ",
"lint": "eslint src tests_integ",
"lint:fix": "eslint src tests_integ --fix",
"format": "prettier --write src tests_integ",
"format:check": "prettier --check src tests_integ",
"type-check": "tsc --noEmit",
"type-check:tests": "tsc --noEmit -p tsconfig.test.json",
"type-check:all": "npm run type-check && npm run type-check:tests",
"type-check:watch": "tsc --noEmit --watch",
"prepare": "npm run build && husky || true"
},
"keywords": [
"aws",
"bedrock",
"agentcore",
"agents",
"ai",
"typescript",
"sdk"
],
"author": "Amazon Web Services",
"license": "Apache-2.0",
"devDependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.0-beta.67",
"@aws-sdk/client-cognito-identity-provider": "^3.957.0",
"@strands-agents/sdk": "^0.1.4",
"@types/express": "^4.17.0",
"@types/node": "^24.10.4",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.0.13",
"ai": "^6.0.0-beta.114",
"eslint": "^9.0.0",
"eslint-plugin-tsdoc": "^0.5.0",
"husky": "^9.1.7",
"playwright": "^1.56.1",
"prettier": "^3.0.0",
"supertest": "^7.1.4",
"tsx": "^4.19.4",
"typescript": "^5.5.0",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/bedrock-agentcore-sdk-typescript.git"
},
"bugs": {
"url": "https://github.com/aws/bedrock-agentcore-sdk-typescript/issues"
},
"homepage": "https://github.com/aws/bedrock-agentcore-sdk-typescript#readme",
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-bedrock-agentcore": "^3.948.0",
"@aws-sdk/client-bedrock-agentcore-control": "^3.948.0",
"@aws-sdk/credential-providers": "^3.939.0",
"@aws-sdk/protocol-http": "^3.370.0",
"@aws-sdk/signature-v4": "^3.370.0",
"@fastify/sse": "^0.4.0",
"@fastify/websocket": "^11.0.1",
"@smithy/protocol-http": "^5.3.5",
"@smithy/signature-v4": "^5.3.5",
"@smithy/util-utf8": "^4.2.0",
"uuid": "^13.0.0",
"@types/ws": "^8.18.1",
"fastify": "^5.7.1",
"uuid": "^13.0.0",
"ws": "^8.18.3",
"zod": "^4.1.13"
},
"peerDependencies": {
"@strands-agents/sdk": ">=0.1.0",
"ai": ">=6.0.0-beta",
"playwright": ">=1.56.0"
},
"peerDependenciesMeta": {
"ai": {
"optional": true
},
"playwright": {
"optional": true
},
"@strands-agents/sdk": {
"optional": true
}
}
}