-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "@memtensor/memos-cloud-openclaw-plugin",
"version": "0.1.14",
"description": "OpenClaw lifecycle plugin for MemOS Cloud (add + recall memory)",
"scripts": {
"sync-version": "node scripts/sync-version.js",
"version": "npm run sync-version && git add openclaw.plugin.json moltbot.plugin.json clawdbot.plugin.json",
"publish-beta": "npm publish --tag beta",
"publish-beta-patch": "npm version prepatch --preid=beta && npm publish --tag beta",
"publish-latest": "npm version $(node -p \"require('./package.json').version.split('-')[0]\") && npm publish",
"publish-latest-patch": "npm version patch && npm publish"
},
"keywords": [
"memos",
"memos-cloud",
"openclaw",
"plugin",
"memory"
],
"homepage": "https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin#readme",
"bugs": {
"url": "https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin.git"
},
"type": "module",
"author": "MemTensor",
"license": "MIT",
"openclaw": {
"extensions": [
"./index.js"
]
},
"clawdbot": {
"extensions": [
"./index.js"
]
},
"moltbot": {
"extensions": [
"./index.js"
]
}
}