-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 KB
/
package.json
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
{
"name": "agent-orchestrator-ts",
"version": "0.0.1",
"description": "Agent Orchestrator Framework for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kelsus/agent-orchestrator-ts"
},
"bugs": {
"url": "https://github.com/kelsus/agent-orchestrator-ts"
},
"homepage": "https://github.com/kelsus/agent-orchestrator-ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"coverage": "jest --coverage"
},
"license": "Apache-2.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"@aws-sdk/client-bedrock-agent-runtime": "^3.701.0",
"@aws-sdk/client-bedrock-runtime": "^3.621.0",
"@aws-sdk/client-comprehend": "^3.637.0",
"@aws-sdk/client-dynamodb": "^3.621.0",
"@aws-sdk/client-lambda": "^3.621.0",
"@aws-sdk/client-lex-runtime-v2": "^3.621.0",
"@aws-sdk/lib-dynamodb": "^3.621.0",
"@aws-sdk/util-dynamodb": "^3.621.0",
"@libsql/client": "^0.14.0",
"axios": "^1.7.2",
"eslint-config-prettier": "^9.1.0",
"natural": "^7.0.7",
"openai": "^4.52.7",
"prettier": "^3.3.3",
"stopword": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"aws-sdk-client-mock": "^4.0.1",
"aws-sdk-client-mock-jest": "^4.0.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}