-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "@openmem/mcp",
"version": "0.19.0",
"description": "AI memory engine exposed as an MCP server",
"type": "module",
"license": "MIT",
"author": "Gordon Lee",
"repository": {
"type": "git",
"url": "https://github.com/gordonkjlee/openmemory"
},
"bin": {
"mcp": "dist/index.js",
"mcp-server-openmemory": "dist/index.js",
"openmemory": "dist/cli/index.js"
},
"files": [
"dist"
],
"engines": {
"node": "^22.5.0 || >=24.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest run",
"test:semantic": "node scripts/require-semantic-eval.mjs",
"test:first-fact": "node scripts/require-first-fact-eval.mjs",
"test:coding-store": "node scripts/require-coding-store-eval.mjs",
"test:watch": "vitest",
"lint": "eslint src/",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0"
},
"devDependencies": {
"@electric-sql/pglite": "^0.5.8",
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.1.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}