forked from xDarkicex/openclaw-memory-libravdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.53 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": "@xdarkicex/openclaw-memory-libravdb",
"version": "1.10.13",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./openclaw.plugin.json": "./openclaw.plugin.json",
"./HOOK.md": "./HOOK.md"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"HOOK.md",
"index.js",
"cli-metadata.js",
"openclaw.plugin.json",
"package.json",
"docs/",
"dist/"
],
"engines": {
"node": ">=22"
},
"openclaw": {
"extensions": [
"./dist/index.js",
"./dist/cli-metadata.js"
],
"compat": {
"pluginApi": ">=2026.3.22",
"minGatewayVersion": ">=2026.3.22"
},
"build": {
"openclawVersion": "2026.4.23",
"pluginSdkVersion": "2026.4.23"
},
"install": {
"minHostVersion": ">=2026.4.23"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json && node scripts/bundle-entrypoint.mjs && mkdir -p dist/proto && cp -rf api/proto/. dist/proto/",
"check": "tsc --noEmit && pnpm run test:ts && pnpm run test:integration",
"clean:test": "node scripts/clean-test-build.mjs",
"test:inspect": "pnpm run plugin:ci",
"test:ts": "pnpm run test:inspect && pnpm run clean:test && tsc -p tsconfig.tests.json && node --test .ts-build/test/unit/*.test.js",
"test:integration": "pnpm run test:inspect && pnpm run clean:test && tsc -p tsconfig.tests.json && node --test .ts-build/test/integration/checklist-validation.test.js .ts-build/test/integration/dream-promotion.test.js .ts-build/test/integration/host-flow.test.js .ts-build/test/integration/markdown-ingest.test.js",
"benchmark:session_search_mid": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 node --test --test-name-pattern=\"real sidecar mid-sized session search benchmark\" .ts-build/test/integration/host-flow.test.js",
"gate:assemble_optimization": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 OPENCLAW_ENFORCE_ASSEMBLE_EVIDENCE_GATE=1 node --test --test-name-pattern=\"real sidecar mid-sized session search benchmark\" .ts-build/test/integration/host-flow.test.js",
"probe:session_recall": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 node --test --test-name-pattern=\"real sidecar mid-sized session search benchmark\" .ts-build/test/integration/host-flow.test.js",
"probe:session_recall_threshold": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 node --test --test-name-pattern=\"real sidecar session_recall index threshold probe\" .ts-build/test/integration/host-flow.test.js",
"benchmark:longmemeval:score": "node scripts/longmemeval-score.mjs",
"benchmark:longmemeval:diagnose": "node scripts/longmemeval-diagnose.mjs",
"plugin:check": "plugin-inspector inspect --no-openclaw",
"plugin:ci": "plugin-inspector ci --no-openclaw --runtime --mock-sdk --allow-execute",
"prepack": "npm run build",
"build:daemon": "bash scripts/build-daemon.sh"
},
"devDependencies": {
"@bufbuild/protobuf": "1.10.1",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@openclaw/plugin-inspector": "0.3.7",
"@types/node": "^20.11.0",
"esbuild": "^0.27.0",
"openclaw": "2026.4.23",
"typescript": "^6.0.3"
},
"peerDependencies": {
"openclaw": ">=2026.3.22"
},
"dependencies": {
"@connectrpc/connect": "^1.7.0",
"@connectrpc/connect-node": "^1.7.0",
"@xdarkicex/libravdb-contracts": "^2.0.27"
}
}