-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 920 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 920 Bytes
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
{
"name": "memory-powermem",
"version": "1.0.0",
"description": "OpenClaw plugin: long-term memory via PowerMem (default local CLI; optional HTTP server; intelligent extraction, Ebbinghaus forgetting curve).",
"type": "module",
"main": "index.ts",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"config.ts",
"client.ts",
"client-cli.ts",
"openclaw-powermem-env.ts",
"openclaw.plugin.json"
],
"scripts": {
"test": "vitest run",
"lint": "tsc --noEmit"
},
"dependencies": {
"@sinclair/typebox": "^0.34.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.1.0"
},
"peerDependenciesMeta": {
"openclaw": { "optional": true }
},
"openclaw": {
"extensions": ["./index.ts"]
},
"repository": "",
"license": "Apache-2.0"
}