-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.33 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.33 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
{
"name": "@pepk/mcp-memory-sqlite",
"version": "1.1.0",
"description": "Production-ready MCP memory server with SQLite WAL for thread-safe concurrent access. Drop-in replacement for @modelcontextprotocol/server-memory. Prevents race conditions and data loss in multi-session AI agent environments. ACID-compliant knowledge graph for Claude AI and LLMs.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-memory-sqlite": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"memory",
"sqlite",
"sqlite3",
"better-sqlite3",
"knowledge-graph",
"claude",
"claude-ai",
"claude-desktop",
"anthropic",
"ai-agent",
"multi-agent",
"llm",
"llm-memory",
"concurrent",
"concurrency",
"thread-safe",
"wal",
"wal-mode",
"persistence",
"database",
"acid",
"data-integrity",
"typescript"
],
"author": {
"name": "Daichi Kudo",
"url": "https://github.com/Daichi-Kudo"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Daichi-Kudo/mcp-memory-sqlite.git"
},
"homepage": "https://github.com/Daichi-Kudo/mcp-memory-sqlite#readme",
"bugs": {
"url": "https://github.com/Daichi-Kudo/mcp-memory-sqlite/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/express": "^5.0.6",
"better-sqlite3": "^11.0.0",
"commander": "^14.0.2",
"express": "^5.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"rimraf": "^6.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.51.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
}
}