forked from christian-bromann/deepagents-filesystem-example
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 798 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 798 Bytes
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
{
"name": "deepagent-filesystem-example",
"version": "1.0.0",
"description": "Deep Agents example showcasing virtual filesystem backends",
"type": "module",
"main": "index.ts",
"scripts": {
"start": "bun run index.ts",
"seed": "bun run seed.ts"
},
"keywords": [
"deepagents",
"langchain",
"virtual-filesystem",
"ai-agents"
],
"author": "",
"license": "ISC",
"private": true,
"dependencies": {
"@langchain/anthropic": "^1.3.13",
"@langchain/core": "^1.1.18",
"@langchain/langgraph": "^1.1.3",
"@langchain/openai": "^1.2.4",
"box-typescript-sdk-gen": "^1.19.1",
"deepagents": "^1.6.2",
"langchain": "^1.2.16",
"minimatch": "^10.1.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}