-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·87 lines (87 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·87 lines (87 loc) · 1.76 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
79
80
81
82
83
84
85
86
87
{
"name": "graph-memory",
"version": "1.6.0-beta.1",
"description": "Knowledge graph memory for DeepSeek Harness and OpenClaw — cross-session recall, PageRank, communities, and vector search",
"keywords": [
"deepseek-harness",
"cordis",
"openclaw",
"agent-memory",
"knowledge-graph",
"sqlite"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adoresever/graph-memory.git"
},
"homepage": "https://github.com/adoresever/graph-memory#readme",
"bugs": {
"url": "https://github.com/adoresever/graph-memory/issues"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./dsh": "./dist/dsh.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"index.ts",
"dsh.ts",
"src",
"docs",
"cordis.patch.yml",
"openclaw.plugin.json",
"README.md",
"README_CN.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@photostructure/sqlite": "^1.0.0",
"@sinclair/typebox": "^0.34.48"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"vitest": "^1.4.0"
},
"peerDependencies": {
"openclaw": "*"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"hooks": {},
"compat": {
"pluginApi": ">=2026.4.2"
},
"install": {
"minHostVersion": ">=2026.4.2"
}
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}