mirror of
https://github.com/langchain-ai/react-agent-js.git
synced 2026-07-21 01:15:25 -04:00
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "example-graph",
|
|
"version": "0.0.1",
|
|
"description": "A starter template for creating a LangGraph workflow.",
|
|
"main": "src/react_agent/graph.ts",
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.test\\.ts$ --testPathIgnorePatterns=\\.int\\.test\\.ts$",
|
|
"test:int": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.int\\.test\\.ts$",
|
|
"format": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"@elastic/elasticsearch": "^8.15.0",
|
|
"@langchain/anthropic": "^0.2.15",
|
|
"@langchain/community": "^0.2.31",
|
|
"@langchain/langgraph": "^0.1.2",
|
|
"langchain": "^0.2.17",
|
|
"ts-node": "^10.9.2"
|
|
},
|
|
"resolutions": {
|
|
"@langchain/core": "^0.2.28"
|
|
},
|
|
"devDependencies": {
|
|
"@langchain/openai": "^0.2.7",
|
|
"@tsconfig/recommended": "^1.0.7",
|
|
"@types/jest": "^29.5.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|