-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@henrikrexed/openclaw-otel-observability",
"version": "0.9.1",
"description": "OpenTelemetry observability plugin for OpenClaw — traces, metrics, and logs for your AI agent using OpenLLMetry",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
]
},
"files": [
"dist/**",
"index.ts",
"src/**/*.ts",
"instrumentation/preload.mjs",
"instrumentation/capture-content.mjs",
"openclaw.plugin.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/henrikrexed/openclaw-observability-plugin.git"
},
"homepage": "https://github.com/henrikrexed/openclaw-observability-plugin#readme",
"bugs": {
"url": "https://github.com/henrikrexed/openclaw-observability-plugin/issues"
},
"scripts": {
"build": "tsc --project tsconfig.json --declaration --outDir dist",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "node --test instrumentation/*.test.mjs && vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"openclaw",
"opentelemetry",
"observability",
"llm",
"tracing",
"metrics",
"dynatrace",
"openllmetry"
],
"author": "Henrik Rexed",
"license": "Apache-2.0",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.203.0",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.203.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.203.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.203.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-logs": "^0.203.0",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/sdk-trace-node": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.30.0",
"@traceloop/node-server-sdk": "^0.22.6"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^2.1.9"
}
}