create-agent-chat-app
Version:
Create a LangGraph chat app with one command
44 lines (43 loc) • 1.28 kB
JSON
{
"name": "agents",
"author": "Your Name",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "npx @langchain/langgraph-cli dev --port 2024 --config ../../langgraph.json",
"build": "turbo build:internal --filter=agents",
"build:internal": "{PACKAGE_MANAGER} run clean && tsc",
"clean": "rm -rf ./dist .turbo || true",
"format": "prettier --config .prettierrc --write \"src\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@langchain/core": "^0.3.42",
"@langchain/langgraph": "^0.2.55",
"langchain": "^0.3.19",
"dotenv": "^16.4.5",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"@jest/globals": "^29.7.0",
"globals": "^15.14.0",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^5.2.3",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@types/node": "^20",
"@types/uuid": "^10.0.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"turbo": "latest",
"typescript": "^5"
}
}