-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 KB
/
package.json
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
{
"name": "mcp-client-langchain-ts",
"version": "0.1.11",
"description": "MCP Client Using LangChain / TypeScript",
"license": "MIT",
"keywords": [
"modelcontextprotocol",
"mcp",
"mcp-client",
"langchain",
"langchain-tyoescript",
"tool-calling",
"typescript",
"nodejs"
],
"author": "hideya kawahara",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"start:h": "tsx src/index.ts -h",
"start:v": "tsx src/index.ts -v",
"dev": "tsx watch src/index.ts",
"lint": "eslint src",
"clean": "git clean -fdxn -e .env && read -p 'OK?' && git clean -fdx -e .env"
},
"dependencies": {
"@h1deya/langchain-mcp-tools": "^0.1.11",
"@langchain/anthropic": "^0.3.11",
"@langchain/community": "^0.3.20",
"@langchain/core": "^0.3.26",
"@langchain/groq": "^0.1.2",
"@langchain/langgraph": "^0.2.36",
"@langchain/openai": "^0.3.16",
"@modelcontextprotocol/sdk": "^1.0.4",
"@n8n/json-schema-to-zod": "^1.1.0",
"@types/yargs": "^17.0.33",
"dotenv": "^16.4.7",
"json5": "^2.2.3",
"yargs": "^17.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
}
}