-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "openclaw-openviking-plugin",
"version": "0.1.6",
"description": "OpenClaw plugin for long-term memory via OpenViking. Hook-only design, works alongside LCM without conflict.",
"type": "module",
"main": "./index.ts",
"author": "liushuangls",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/liushuangls/openclaw-openviking-plugin.git"
},
"homepage": "https://github.com/liushuangls/openclaw-openviking-plugin#readme",
"keywords": [
"openclaw",
"openviking",
"plugin",
"memory",
"ai-agent",
"long-term-memory"
],
"files": [
"client.ts",
"index.ts",
"src/",
"openclaw.plugin.json",
"README.md",
"README_CN.md"
],
"scripts": {
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
}
}
}