-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "@langfuse/codex-observability-plugin",
"version": "0.1.0",
"description": "OpenAI Codex plugin that traces agent turns, tool calls, and subagents to Langfuse",
"keywords": [
"codex",
"langfuse",
"openai",
"observability",
"tracing",
"opentelemetry"
],
"homepage": "https://github.com/langfuse/codex-observability-plugin#readme",
"bugs": {
"url": "https://github.com/langfuse/codex-observability-plugin/issues"
},
"license": "MIT",
"author": "Langfuse",
"repository": {
"type": "git",
"url": "https://github.com/langfuse/codex-observability-plugin.git"
},
"type": "module",
"scripts": {
"build": "tsdown --config plugins/tracing/tsdown.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"lint:dist": "pnpm run build && git diff --exit-code -- plugins/tracing/dist/index.mjs",
"lint": "pnpm run format:check && pnpm run lint:tsc && pnpm run lint:dist"
},
"dependencies": {
"@langfuse/otel": "^5.4.1",
"@langfuse/tracing": "^5.4.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.205.0",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@opentelemetry/sdk-trace-node": "^2.0.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/node": "^22.10.0",
"prettier": "^3.4.2",
"tsdown": "^0.18.0",
"typescript": "^5.7.2",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.5.0"
}