mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
96e29c886b
Fix the long-standing typo across the example directory name + module identifiers, align imports + package names. Also touches examples/integrations/adk docker-compose fixtures and examples/e2e agents reference doc.
30 lines
753 B
JSON
30 lines
753 B
JSON
{
|
|
"name": "agent-langgraph-interrupt",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/agent/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"dev": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "pnpm --filter agent-langgraph-interrupt dev"
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "tsc -p tsconfig.json --noEmit",
|
|
"cwd": "examples/v2/interrupts-langgraph/apps/agent"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "tsc -p tsconfig.json --noEmit",
|
|
"cwd": "examples/v2/interrupts-langgraph/apps/agent"
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|