-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 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
56
57
58
59
60
{
"name": "opencode-telemetry-plugin",
"version": "1.0.0",
"description": "OpenTelemetry metrics collection plugin for OpenCode",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"analyze_metrics.py",
"README.md",
"DISTRIBUTION.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"bundle": "node bundle.js",
"bundle:prod": "node bundle.js --production",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://your-gitea-server.com/your-org/opencode-telemetry-plugin.git"
},
"publishConfig": {
"registry": "https://your-gitea-server.com/api/packages/your-org/npm/"
},
"keywords": [
"opencode",
"opentelemetry",
"telemetry",
"metrics",
"ai-coding",
"developer-tools"
],
"author": "Your Company Name",
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.54.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.54.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.54.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.54.0",
"@opentelemetry/resources": "^1.29.0",
"@opentelemetry/sdk-metrics": "^1.29.0",
"@opentelemetry/sdk-node": "^0.54.0",
"@opentelemetry/semantic-conventions": "^1.29.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"esbuild": "^0.19.12",
"typescript": "^5.0.0"
}
}