-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.94 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
81
82
83
84
85
{
"name": "@opik/opik-openclaw",
"version": "0.2.15",
"license": "Apache-2.0",
"description": "OpenClaw Opik exporter — sends LLM traces to Opik",
"repository": {
"type": "git",
"url": "https://github.com/comet-ml/opik-openclaw"
},
"type": "module",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=22.12.0",
"npm": ">=10"
},
"scripts": {
"build": "node .scripts/build.mjs",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "vitest run src/**/*.e2e.test.ts",
"test:live": "node .scripts/live-e2e.mjs",
"smoke": "vitest run src/plugin.smoke.test.ts",
"pack:check": "node .scripts/check-pack-payload.mjs",
"prepack": "npm run build"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"opik": "^2.0.9",
"zod": "^4.3.6"
},
"peerDependencies": {
"openclaw": ">=2026.3.2"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.3.3",
"commander": "^14.0.3",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"overrides": {
"@anthropic-ai/sdk": "^0.92.0",
"uuid": "^14.0.0"
},
"files": [
"dist/**",
"index.ts",
"src/cli.ts",
"src/configure.ts",
"src/service.ts",
"src/service/constants.ts",
"src/service/helpers.ts",
"src/service/payload-sanitizer.ts",
"src/service/media.ts",
"src/service/attachment-uploader.ts",
"src/service/hooks/llm.ts",
"src/service/hooks/tool.ts",
"src/service/hooks/subagent.ts",
"src/types.ts",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.3.2",
"minGatewayVersion": "2026.3.2"
},
"build": {
"openclawVersion": "2026.3.2",
"pluginSdkVersion": "2026.3.2"
}
}
}