-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@agent-controller/runtime-codex",
"version": "0.7.0",
"description": "codex runtime adapter for agent-controller — runs an ADL CompiledSpec via codex exec and emits the NDJSON wire-event stream.",
"keywords": [
"agent-controller",
"adl",
"codex",
"agent",
"ai-agents",
"llm",
"openai",
"runtime-adapter"
],
"homepage": "https://github.com/CCDevelopForFun/agent-controller#readme",
"bugs": "https://github.com/CCDevelopForFun/agent-controller/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/CCDevelopForFun/agent-controller.git",
"directory": "runtime-codex"
},
"license": "MIT",
"author": "CCDevelopForFun",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p .",
"test": "npm run build && vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/core": "^2.8.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-trace-base": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"@opentelemetry/semantic-conventions": "^1.41.1"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"vitest": "latest"
}
}