Files
copilotkit__copilotkit/packages/intelligence-adk-python/project.json
2026-09-11 16:17:06 -07:00

76 lines
1.9 KiB
JSON

{
"name": "intelligence-adk-python",
"projectType": "library",
"root": "packages/intelligence-adk-python",
"targets": {
"test": {
"executor": "nx:run-commands",
"options": {
"command": "uv run pytest",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "uv run ruff check . && uv run ruff format --check .",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"command": "uv run mypy src",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "uv build",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
},
"verify-distribution": {
"executor": "nx:run-commands",
"options": {
"command": "uv run python scripts/check_distribution.py",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
},
"test-minimum": {
"executor": "nx:run-commands",
"options": {
"command": "uv run --isolated --with google-adk==1.17.0 pytest",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
},
"test-latest": {
"executor": "nx:run-commands",
"options": {
"command": "uv run --upgrade-package google-adk pytest",
"cwd": "packages/intelligence-adk-python"
},
"cache": false,
"dependsOn": []
}
},
"tags": ["scope:intelligence", "lang:python"],
"implicitDependencies": [
"intelligence-delivery-python-core",
"runtime-python"
]
}