-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "memory-lancedb-pro-mcp",
"version": "0.1.0",
"description": "MCP server exposing memory-lancedb-pro as semantic memory tools for Hermes Agent and other MCP clients.",
"type": "module",
"bin": {
"memory-lancedb-pro-mcp": "./dist/server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"smoke": "node scripts/smoke.mjs all",
"smoke:mcp": "node scripts/smoke.mjs mcp",
"smoke:memory-loop": "node scripts/smoke.mjs memory-loop",
"smoke:persistence": "node scripts/smoke.mjs persistence",
"smoke:scope-delete": "node scripts/smoke.mjs scope-delete",
"smoke:failures": "node scripts/smoke.mjs failures",
"smoke:pack": "node scripts/smoke.mjs pack",
"test": "node --test test/*.test.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"memory-lancedb-pro": "https://github.com/CortexReach/memory-lancedb-pro/archive/3622afb3451939186aec2ab0a4639ed13661c127.tar.gz",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"license": "MIT"
}