-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "researchify",
"version": "1.1.0",
"description": "Researchify - A CLI multi-agent research assistant built using LangChain and LangGraph",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"prepare": "pnpm build",
"typecheck": "tsc --noEmit"
},
"bin": {
"researchify": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"research",
"agent",
"cli",
"langchain",
"langgraph",
"ai"
],
"author": "Mustafa Sayyed",
"repository": {
"url": "git+https://github.com/mustafa-sayyed/researchify.git",
"type": "git"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.22.0",
"dependencies": {
"@clack/prompts": "^1.2.0",
"@langchain/community": "^1.1.26",
"@langchain/core": "^1.1.36",
"@langchain/google": "^0.1.9",
"@langchain/groq": "^1.1.5",
"@langchain/langgraph": "^1.2.6",
"@langchain/tavily": "^1.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"figlet": "^1.11.0",
"inquirer": "^13.4.2",
"langchain": "^1.2.38",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0"
}
}