-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.78 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": "nemo-relay-openclaw",
"version": "0.5.0",
"description": "NeMo Relay-authored observability plugin for OpenClaw.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/NVIDIA/NeMo-Relay",
"directory": "integrations/openclaw"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/**",
"index.ts",
"src/config.ts",
"src/health.ts",
"src/hook-replay/correlation.ts",
"src/hook-replay/llm.ts",
"src/hook-replay/marks.ts",
"src/hook-replay/session.ts",
"src/hook-replay/tool.ts",
"src/hooks-backend.ts",
"src/modules.ts",
"src/openclaw-hook-types.ts",
"src/runtime-state.ts",
"src/types.ts",
"openclaw.plugin.json",
"README.md"
],
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.5.26",
"minGatewayVersion": "2026.5.26"
},
"build": {
"openclawVersion": "2026.5.26",
"pluginSdkVersion": "2026.5.26"
}
},
"scripts": {
"build": "node scripts/build.mjs",
"build:test": "node scripts/build-test.mjs",
"pack:check": "node scripts/check-pack-payload.mjs",
"prepack": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build:test && node --test \".test-dist/test/*.test.js\"",
"test:live": "npm run build:test && node scripts/test-live.mjs"
},
"peerDependencies": {
"openclaw": "^2026.5.26"
},
"dependencies": {
"nemo-relay-node": "0.5.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.2"
},
"license": "Apache-2.0"
}