-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1012 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1012 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
35
36
37
38
39
40
41
{
"name": "deep-research-agent-typescript",
"version": "1.0.0",
"description": "An intelligent AI research agent that conducts web research and generates detailed markdown reports using LangChain and OpenAI",
"main": "deep_agent.ts",
"scripts": {
"start": "tsx deep_agent.ts",
"dev": "tsx watch deep_agent.ts"
},
"keywords": [
"ai",
"agent",
"research",
"langchain",
"openai",
"typescript",
"deepagents",
"automation"
],
"author": "Your Name",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/deep-research-agent-typescript.git"
},
"type": "module",
"dependencies": {
"@langchain/core": "^1.0.3",
"@langchain/langgraph": "^1.0.1",
"@langchain/openai": "^1.0.0",
"@langchain/tavily": "^1.0.0",
"deepagents": "^1.1.0",
"dotenv": "^17.2.3",
"langchain": "^1.0.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.10.0",
"tsx": "^4.20.6"
}
}