-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "opencode-plugin-langfuse",
"version": "0.1.8",
"description": "Langfuse observability plugin for OpenCode - LLM tracing, prompt versioning, and cost tracking",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"prepare": "husky"
},
"keywords": [
"opencode",
"langfuse",
"observability",
"llm",
"tracing",
"ai"
],
"author": "omercnet",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omercnet/opencode-plugin-langfuse.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@langfuse/otel": "4.5.1",
"@opencode-ai/plugin": "1.1.14",
"@opentelemetry/sdk-node": "^0.217.0",
"@opentelemetry/sdk-trace-base": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/bun": "^1.3.5",
"@types/node": "^22.19.5",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}