-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.21 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
{
"name": "@everme/openclaw",
"version": "0.6.1",
"type": "module",
"description": "EverMe ContextEngine plugin for OpenClaw — automatic memory recall + persistence per turn, backed by the EverMe gateway.",
"license": "Apache-2.0",
"main": "./index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"openclaw.plugin.json",
"src/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"openclaw": {
"id": "@everme/openclaw",
"kind": "context-engine",
"contextEngine": true,
"extensions": [
"./index.js"
]
},
"scripts": {
"test": "node --test tests/engine.test.js tests/register.test.js"
},
"dependencies": {
"@everme/agent-sdk": "^0.6.1"
},
"keywords": [
"evermind",
"everme",
"openclaw",
"context-engine",
"memory",
"ai",
"agent"
],
"homepage": "https://everme.evermind.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/EverMind-AI/EverMe.git",
"directory": "plugins/openclaw"
},
"bugs": {
"url": "https://github.com/EverMind-AI/EverMe/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}