arcade-mcp/examples/langgraph-ts/package.json
Sergio Serrano 3a45d5fec0
Add LangGraph-TS example (#356)
This PR adds a new example showcasing how to integrate Arcade tools with
LangGraph.js to create a ReAct agent. The example is based on the
[LangChain React Agent
JS](https://github.com/langchain-ai/react-agent-js/tree/main)
repository.
2025-04-09 21:08:18 -03:00

28 lines
626 B
JSON

{
"name": "arcade-langgraph",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "npx @langchain/langgraph-cli dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.0",
"dependencies": {
"@arcadeai/arcadejs": "1.2.1",
"@dmitryrechkin/json-schema-to-zod": "^1.0.1",
"@langchain/community": "^0.3.27",
"@langchain/core": "^0.3.37",
"@langchain/langgraph": "^0.2.43",
"langchain": "^0.3.14",
"@langchain/openai": "^0.5.4",
"dotenv": "^16.4.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.0"
}
}