-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.76 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
{
"name": "@liaomx/opik-opencode",
"version": "0.4.4",
"description": "OpenCode plugin for Opik observability - traces LLM/Tool/Subagent execution to Opik platform",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opik-opencode": "./dist/src/configure-cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit",
"test:all": "vitest run && vitest run --config vitest.e2e.config.ts",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"prepublishOnly": "npm run typecheck && npm run test:all && npm run build"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"opik": "^1.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"engines": {
"node": ">=22.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/liaomingxin/opik-opencode.git"
},
"homepage": "https://github.com/liaomingxin/opik-opencode#readme",
"bugs": {
"url": "https://github.com/liaomingxin/opik-opencode/issues"
},
"keywords": [
"opencode",
"opik",
"observability",
"llm",
"tracing",
"plugin"
]
}