-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.66 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
{
"name": "openmemory",
"version": "1.0.0",
"description": "Persistent memory server for AI assistants — SQLite-backed REST API, CLI, and MCP server.",
"type": "commonjs",
"keywords": [
"ai-memory",
"llm",
"persistent-memory",
"mcp",
"mcp-server",
"sqlite",
"ai-assistant",
"memory-persistence",
"diary",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/naimkatiman/OpenMemory.git"
},
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/src/server.js",
"dev": "tsx src/server.ts",
"dev:central": "node scripts/run-instance.mjs --mode http --instance central",
"dev:project-a": "node scripts/run-instance.mjs --mode http --instance project-a",
"dev:project-b": "node scripts/run-instance.mjs --mode http --instance project-b",
"cli": "tsx src/cli.ts",
"mcp": "tsx src/mcp.ts",
"mcp:central": "node scripts/run-instance.mjs --mode mcp --instance central",
"mcp:project-a": "node scripts/run-instance.mjs --mode mcp --instance project-a",
"mcp:project-b": "node scripts/run-instance.mjs --mode mcp --instance project-b",
"test": "npm run build && node --test dist/tests/*.test.js",
"clean": "if exist dist rmdir /s /q dist"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.6.2",
"fastify": "^5.6.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}