-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.67 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.67 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
{
"name": "@ai-sdk-tools/agents",
"version": "1.2.0",
"description": "Multi-agent orchestration system built on AI SDK v5 - handoffs, routing, and coordination for any AI provider",
"keywords": [
"ai",
"ai-sdk",
"agents",
"multi-agent",
"orchestration",
"handoff",
"routing",
"llm",
"openai",
"anthropic",
"google",
"claude"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/midday-ai/ai-sdk-tools.git",
"directory": "packages/agents"
},
"bugs": {
"url": "https://github.com/midday-ai/ai-sdk-tools/issues"
},
"homepage": "https://github.com/midday-ai/ai-sdk-tools/tree/main/packages/agents#readme",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"dependencies": {},
"peerDependencies": {
"ai": ">=5.0.0",
"zod": "^3.25.76 || ^4.1.8"
},
"peerDependenciesMeta": {
"@ai-sdk-tools/artifacts": {
"optional": true
},
"@ai-sdk-tools/cache": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"zod": "^4.1.12",
"ai": "^5.0.97",
"@ai-sdk-tools/debug": "workspace:*",
"@ai-sdk-tools/memory": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}