-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.06 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 4.06 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
{
"name": "@tawk.to/tawk-agents-sdk",
"version": "2.0.0",
"description": "Production-ready AI agent framework with true agentic architecture, multi-agent orchestration, dynamic HITL approvals, native MCP integration, and full observability.",
"author": "Tawk.to <support@tawk.to>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Manoj-tawk/tawk-agents-sdk.git"
},
"homepage": "https://github.com/Manoj-tawk/tawk-agents-sdk#readme",
"bugs": {
"url": "https://github.com/Manoj-tawk/tawk-agents-sdk/issues"
},
"publishConfig": {
"access": "restricted"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"ai",
"agents",
"agentic",
"multi-agent",
"agent-framework",
"openai",
"anthropic",
"google",
"groq",
"langfuse",
"mcp",
"model-context-protocol",
"vercel-ai-sdk",
"typescript",
"production-ready",
"tracing",
"observability",
"guardrails",
"human-in-the-loop",
"hitl",
"approvals",
"tool-calling",
"parallel-execution",
"handoffs",
"streaming"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build:check": "rm -rf dist && tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:basic": "jest unit/core/agent",
"test:multi": "jest unit/core/multi-agent",
"test:stream": "jest unit/core/streaming",
"test:guards": "jest unit/guardrails",
"test:sessions": "jest unit/sessions",
"test:tracing": "jest unit/tracing",
"test:tools": "jest unit/tools",
"test:race": "jest unit/core/race-agents",
"test:core": "jest unit/core",
"e2e:basic": "ts-node tests/e2e/01-basic-e2e.test.ts",
"e2e:multi": "ts-node tests/e2e/02-multi-agent-e2e.test.ts",
"e2e:stream": "ts-node tests/e2e/03-streaming-sessions-e2e.test.ts",
"e2e:rag": "ts-node tests/e2e/04-agentic-rag-e2e.test.ts",
"e2e:toon": "ts-node tests/e2e/11-toon-optimization-e2e.test.ts",
"e2e:escalation": "ts-node tests/e2e/05-ecommerce-refund-escalation-e2e.test.ts",
"e2e:comprehensive": "ts-node tests/e2e/06-comprehensive-issues-solution-e2e.test.ts",
"e2e:anthropic-research": "ts-node tests/e2e/07-anthropic-multi-agent-research-e2e.test.ts",
"e2e": "npm run e2e:basic && npm run e2e:multi && npm run e2e:stream",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down -v",
"docker:logs": "docker-compose logs -f",
"example": "ts-node examples/complete-examples.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublish": "npm run build && npm test"
},
"dependencies": {
"@ai-sdk/groq": "^2.0.29",
"@toon-format/toon": "^1.0.0",
"ai": "^5.0.93",
"langfuse": "^3.30.3",
"zod": "^3.25.40"
},
"peerDependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0"
},
"peerDependenciesMeta": {
"@ai-sdk/openai": {
"optional": true
},
"@ai-sdk/anthropic": {
"optional": true
},
"@ai-sdk/google": {
"optional": true
}
},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"ioredis": "^5.4.2",
"mongodb": "^6.12.0"
},
"devDependencies": {
"@ai-sdk/anthropic": "^2.0.45",
"@ai-sdk/google": "^2.0.34",
"@ai-sdk/openai": "^2.0.68",
"@jest/globals": "^30.2.0",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"jest": "^30.2.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}