project.json•957 B
{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"name": "@agiflowai/coding-agent-bridge",
"projectType": "library",
"sourceRoot": "packages/coding-agent-bridge/src",
"targets": {
"build": {
"executor": "nx:run-commands",
"outputs": ["{projectRoot}/dist"],
"options": {
"command": "tsdown",
"cwd": "packages/coding-agent-bridge"
}
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"command": "tsc --noEmit",
"cwd": "packages/coding-agent-bridge"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "biome check packages/coding-agent-bridge"
}
},
"lint:fix": {
"executor": "nx:run-commands",
"options": {
"command": "biome check --write packages/coding-agent-bridge"
}
}
},
"tags": ["type:library"],
"sourceTemplate": "typescript-lib"
}