-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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": "@devtheops/opencode-plugin-otel",
"version": "0.6.0",
"description": "OpenTelemetry telemetry plugin for opencode CLI",
"keywords": [
"opentelemetry",
"otel",
"telemetry",
"opencode",
"plugin",
"observability"
],
"license": "MPL-2.0",
"author": "DEVtheOPS",
"homepage": "https://github.com/DEVtheOPS/opencode-plugin-otel#readme",
"bugs": {
"url": "https://github.com/DEVtheOPS/opencode-plugin-otel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DEVtheOPS/opencode-plugin-otel.git"
},
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.23",
"@opencode-ai/sdk": "^1.2.23",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.213.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.213.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-logs": "^0.213.0",
"@opentelemetry/sdk-metrics": "^2.6.0",
"@opentelemetry/sdk-trace-base": "^2.6.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/bun": "latest"
}
}