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
68 lines (68 loc) · 2.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.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
{
"name": "@xdarkicex/openclaw-memory-libravdb",
"version": "1.4.19",
"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"
],
"install": {
"minHostVersion": ">=2026.3.22"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json && mkdir -p dist/proto dist/generated && cp -rf api/proto/. dist/proto/ && cp -rf src/generated/. dist/generated/",
"check": "tsc --noEmit && pnpm run test:ts",
"test:ts": "tsc -p tsconfig.tests.json && node --test .ts-build/test/unit/*.test.js",
"test:integration": "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 .ts-build/test/integration/sidecar-lifecycle.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": "tsc -p tsconfig.tests.json && node --test .ts-build/test/integration/longmemeval-benchmark.test.js",
"benchmark:longmemeval:score": "node scripts/longmemeval-score.mjs",
"benchmark:longmemeval:diagnose": "node scripts/longmemeval-diagnose.mjs",
"prepack": "npm run build",
"build:daemon": "bash scripts/build-daemon.sh"
},
"dependencies": {
"@bufbuild/protobuf": "1.7.2",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"openclaw": "*"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"openclaw": ">=2026.3.22"
}
}