Files
Mike Ryan d611ef108c feat(runtime-go): add native Intelligence SDK and net/http runtime
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.
2026-09-11 15:55:30 -07:00

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": []
}
}
}