-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.38 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.38 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
{
"author": "DEVtheOPS",
"bugs": {
"url": "https://github.com/DEVtheOPS/opencode-plugin-otel/issues"
},
"dependencies": {
"@arizeai/openinference-semantic-conventions": "^2.2.0",
"@opencode-ai/plugin": "^1.14.20",
"@opencode-ai/sdk": "^1.14.20",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.213.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.213.0",
"@opentelemetry/exporter-logs-otlp-proto": "^0.213.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.213.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.213.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-proto": "^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"
},
"description": "OpenTelemetry telemetry plugin for opencode CLI",
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-plugin-jsdoc": "^50.6.11"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/"
],
"homepage": "https://github.com/DEVtheOPS/opencode-plugin-otel#readme",
"keywords": [
"opentelemetry",
"otel",
"telemetry",
"opencode",
"plugin",
"observability"
],
"license": "MPL-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"name": "@devtheops/opencode-plugin-otel",
"oc-plugin": [
"server"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/DEVtheOPS/opencode-plugin-otel.git"
},
"scripts": {
"build": "bun build src/index.ts --outdir=./dist --target=node && tsc -p tsconfig.build.json",
"check:jsdoc-coverage": "bun scripts/check-jsdoc-coverage.mjs",
"lint": "bun --bun eslint .",
"typecheck": "tsc --noEmit",
"prepack": "bun run build"
},
"type": "module",
"version": "1.0.0"
}