-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.05 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.05 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
{
"name": "deepagentsdk",
"version": "0.16.2",
"description": "Deep Agent implementation using Vercel AI SDK - build controllable AI agents with planning, filesystem, and subagent capabilities",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"type": "module",
"bin": {
"deep-agent": "./dist/cli/index.mjs"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/cli/index.d.mts",
"default": "./dist/cli/index.mjs"
}
},
"./elements": {
"import": {
"types": "./dist/adapters/elements/index.d.mts",
"default": "./dist/adapters/elements/index.mjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "bun test test/",
"test:integration": "bun test test-integration/",
"test:all": "bun run test && bun run test:integration",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"cli": "bun src/cli/index.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrispangg/deepagentsdk.git"
},
"homepage": "https://github.com/chrispangg/deepagentsdk#readme",
"bugs": {
"url": "https://github.com/chrispangg/deepagentsdk/issues"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.9",
"@ai-sdk/openai": "^3.0.7",
"@ai-sdk/react": "^3.0.9",
"@daytonaio/sdk": "^0.129.0",
"@e2b/code-interpreter": "^2.3.3",
"@inkjs/ui": "^2.0.0",
"@mozilla/readability": "^0.6.0",
"@runloop/api-client": "^1.0.0",
"@tavily/core": "^0.6.1",
"ai": "^6.0.19",
"fast-glob": "^3.3.3",
"ink": "^5.1.0",
"jsdom": "^25.0.1",
"micromatch": "^4.0.8",
"modal": "^0.6.0",
"react": "^18.2.0",
"react-devtools-core": "^5.3.2",
"turndown": "^7.2.0",
"zhipu-ai-provider": "^0.2.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@langfuse/otel": "^4.5.1",
"@langfuse/tracing": "^4.5.1",
"@opentelemetry/api-logs": "^0.208.0",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/sdk-logs": "^0.208.0",
"@opentelemetry/sdk-node": "^0.208.0",
"@testing-library/react": "^16.3.1",
"@types/bun": "latest",
"@types/jsdom": "^21.1.7",
"@types/micromatch": "^4.0.9",
"@types/react": "^18.3.18",
"@types/turndown": "^5.0.5",
"@vercel/otel": "^2.1.0",
"install": "^0.13.0",
"langfuse-vercel": "^3.38.6",
"react-dom": "^18.2.0",
"shadcn": "^3.7.0",
"tsdown": "^0.19.0-beta.5",
"typescript": "^5.7.3"
},
"peerDependencies": {
"typescript": "^5"
},
"keywords": [
"ai",
"agents",
"deep-agents",
"vercel-ai-sdk",
"llm",
"typescript",
"bun",
"anthropic",
"openai",
"ai-sdk"
],
"engines": {
"bun": ">=1.0.0"
},
"license": "MIT"
}