-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.67 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
{
"name": "@mornlong/openclaw-memvault",
"version": "0.2.6",
"type": "module",
"description": "MemVault memory plugin for OpenClaw — persistent long-term memory backed by vector search",
"author": "MORNLONG",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MORNLONG/memvault-openclaw-plugin.git"
},
"homepage": "https://mv.mornlong.com/",
"bugs": {
"url": "https://github.com/MORNLONG/memvault-openclaw-plugin/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/MORNLONG"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"memvault",
"ai-agent",
"long-term-memory",
"vector-search",
"qdrant",
"typescript",
"plugin"
],
"engines": {
"node": ">=22"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@sinclair/typebox": "0.34.47"
},
"peerDependencies": {
"openclaw": ">=2026.1.29"
},
"files": [
"dist/",
"openclaw.plugin.json",
"scripts/setup.sh",
"README.md",
"README.zh-CN.md",
"LICENSE",
"CHANGELOG.md"
],
"openclaw": {
"kind": "plugin",
"capabilities": ["vector-storage", "memory-api"],
"requires": { "openclaw": ">=2026.1.29" },
"extensions": ["./dist/index.js"],
"install": {
"npmSpec": "@mornlong/openclaw-memvault",
"localPath": ".",
"defaultChoice": "npm"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"check-types": "tsc --noEmit",
"audit": "npm audit --omit=dev",
"test": "node --test tests/**/*.test.mjs",
"prepack": "npm run build",
"setup": "bash scripts/setup.sh"
},
"devDependencies": {
"@types/node": "^22.13.10",
"openclaw": "2026.3.13",
"typescript": "^5.9.3"
}
}