mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
d611ef108c
Provide native Intelligence SDK operations and runtime routes with application-owned identity, durable runs, A2UI, MCP Apps, entitlements, Inspector metadata, and telemetry. Include package docs, hosting examples, and regression tests.
38 lines
872 B
JSON
38 lines
872 B
JSON
{
|
|
"name": "runtime-go",
|
|
"root": "packages/runtime-go",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"test": {
|
|
"executor": "nx:run-commands",
|
|
"inputs": ["{projectRoot}/**/*"],
|
|
"options": {
|
|
"command": "go test -race ./...",
|
|
"cwd": "packages/runtime-go"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"inputs": ["{projectRoot}/**/*"],
|
|
"options": {
|
|
"command": "go build ./...",
|
|
"cwd": "packages/runtime-go"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"lint": {
|
|
"executor": "nx:run-commands",
|
|
"inputs": ["{projectRoot}/**/*"],
|
|
"options": {
|
|
"command": "go vet ./... && test -z \"$(gofmt -l .)\"",
|
|
"cwd": "packages/runtime-go"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
}
|
|
}
|
|
}
|