-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.12 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.12 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
{
"name": "agent-memory-graph",
"version": "0.9.1",
"description": "Domain-agnostic knowledge graph memory for AI agents. Zero-config, local-first, SQLite-powered. Works as OpenClaw skill (CLI) or plugin (auto-hook).",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"memory-graph": "dist/cli/index.js",
"memory-graph-mcp": "dist/mcp/server.js"
},
"openclaw": {
"extensions": [
"./dist/plugin/entry.js"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
},
"build": {
"openclawVersion": ">=2026.3.24",
"entry": "dist/plugin/entry.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"memory",
"knowledge-graph",
"graph-database",
"sqlite",
"llm",
"openclaw",
"openclaw-plugin",
"local-first",
"domain-agnostic"
],
"author": "KLSGG",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KLSGG/agent-memory-graph"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"nanoid": "^5.0.9",
"openai": "^4.78.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"eslint": "^9.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.3.24-beta.2",
"@sinclair/typebox": ">=0.32.0",
"@anthropic-ai/sdk": ">=0.30.0"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
},
"@sinclair/typebox": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
}
},
"files": [
"dist/",
"config/",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/KLSGG/agent-memory-graph#readme",
"bugs": {
"url": "https://github.com/KLSGG/agent-memory-graph/issues"
}
}