-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.9 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
{
"name": "@cyb3rb1ade/plur1bus-memory",
"version": "7.4.8",
"description": "Persistent, per-agent memory for OpenClaw. Turns every conversation into lasting knowledge — recalls, learns, and grows with your agent.",
"type": "module",
"main": "./index.js",
"license": "MIT",
"openclaw": {
"extensions": [
"./index.js"
],
"compat": {
"pluginApi": ">=2026.5.12-beta.6",
"minGatewayVersion": "2026.5.12-beta.6"
},
"build": {
"openclawVersion": "2026.5.12",
"pluginSdkVersion": "2026.5.12"
}
},
"files": [
"index.js",
"lib/",
"patches/apply-cron-plugin-direct-dispatch.mjs",
"scripts/",
"docs/audits/",
"docs/runbooks/",
"docs/configuration.md",
"docs/recall-architecture.md",
"docs/migration-v6.md",
"docs/release-checklist.md",
"docs/known-issues.md",
".openclaw/extensions/emotional-state-injector/",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "node --check index.js && find lib tests test -name '*.js' -exec node --check {} + && find scripts -name '*.mjs' -exec node --check {} +",
"test": "node --check index.js && node --check lib/memory-dynamics.js && node --check lib/safe-update.js && node --check lib/memory-history.js && node --test tests/*.test.js test/*.test.js",
"test:coverage": "c8 --include='index.js' --include='lib/**/*.js' --reporter=text --reporter=html --check-coverage=false node --test tests/*.test.js test/*.test.js",
"repair": "node scripts/repair-installed-plugin.mjs",
"repair:dry-run": "node scripts/repair-installed-plugin.mjs --dry-run",
"repair:full": "node scripts/repair-installed-plugin.mjs --maintain-lancedb --run-cron",
"code-index": "node scripts/build-code-index.mjs",
"maintain-lancedb": "node scripts/maintain-lancedb.mjs",
"maintain-lancedb:apply": "node scripts/maintain-lancedb.mjs --apply",
"repair-dreaming-cron": "node scripts/repair-dreaming-cron.mjs",
"reindex-promotions": "node scripts/embed-promoted-memories.mjs --dry-run",
"setup-feature-crons": "node scripts/setup-feature-crons.mjs",
"postinstall": "node scripts/setup-feature-crons.mjs || true"
},
"engines": {
"node": ">=22.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Cyb3rb1ade/openclaw-plur1bus-memory.git"
},
"bugs": {
"url": "https://github.com/Cyb3rb1ade/openclaw-plur1bus-memory/issues"
},
"homepage": "https://github.com/Cyb3rb1ade/openclaw-plur1bus-memory#readme",
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"openai": "^6.27.0"
},
"optionalDependencies": {
"@huggingface/transformers": "4.2.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"c8": "^11.0.0"
},
"overrides": {
"@huggingface/transformers": {
"sharp": "0.35.3",
"onnxruntime-node": {
"adm-zip": "0.6.0"
},
"onnxruntime-web": "1.26.0"
}
}
}