-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·104 lines (104 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·104 lines (104 loc) · 2.27 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "graph-memory",
"version": "1.6.0-beta.8",
"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",
"./pro": "./dist/pro/index.js",
"./pro/dsh": "./dist/pro/dsh.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"index.ts",
"dsh.ts",
"tsconfig.json",
"tsconfig.dsh.json",
"pro",
"src",
"docs",
"cordis.patch.yml",
"cordis.pro-lite.patch.yml",
"openclaw.plugin.json",
"README.md",
"README_CN.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:dsh": "tsc -p tsconfig.dsh.json",
"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": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.8",
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"vitest": "^1.4.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4",
"@deepseek-ai/dsh-typert-protocol": ">=0.1.0-rc.5",
"openclaw": "*"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-typert-protocol": {
"optional": true
},
"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"
}
}
}