-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "multi-agent-research",
"version": "0.1.0",
"description": "基于MultiAgent架构的深度研究助手",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"server": "ts-node-dev --respawn --transpile-only src/server.ts",
"research": "ts-node src/index.ts research",
"create-task": "ts-node scripts/createTask.js",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"dependencies": {
"@langchain/community": "^0.0.20",
"@langchain/core": "^0.1.63",
"@langchain/langgraph": "^0.0.10",
"@langchain/openai": "^0.0.10",
"axios": "^1.6.2",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"langchain": "^0.0.196",
"openai": "^4.24.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "MIT"
}