create-agent-chat-app
Version:
Create a LangGraph chat app with one command
23 lines (22 loc) • 428 B
JSON
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"lint:fix": {
"dependsOn": ["^lint:fix"]
},
"format": {
"dependsOn": ["^format"]
},
"dev": {
"dependsOn": ["^dev"]
}
}
}