-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "@pcircle/memesh",
"version": "4.0.1",
"description": "MeMesh — The lightest universal AI memory layer. One SQLite file, any LLM, zero cloud.",
"main": "dist/index.js",
"type": "module",
"bin": {
"memesh": "dist/transports/cli/cli.js",
"memesh-mcp": "dist/mcp/server.js",
"memesh-http": "dist/transports/http/server.js",
"memesh-view": "dist/cli/view.js"
},
"files": [
"dist/",
"dashboard/dist/",
".mcp.json",
"hooks/hooks.json",
"scripts/hooks/",
"skills/",
"plugin.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/copy-cli-assets.mjs && node scripts/set-executable-bits.mjs",
"test": "vitest",
"test:packaged": "node scripts/smoke-packed-artifact.mjs",
"typecheck": "tsc --noEmit",
"start": "node dist/mcp/server.js"
},
"author": "PCIRCLE-AI",
"license": "MIT",
"homepage": "https://github.com/PCIRCLE-AI/memesh-llm-memory",
"bugs": {
"url": "https://github.com/PCIRCLE-AI/memesh-llm-memory/issues"
},
"keywords": [
"claude-code",
"mcp",
"model-context-protocol",
"memory",
"sqlite",
"knowledge-graph"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PCIRCLE-AI/memesh-llm-memory.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.9.0",
"commander": "^14.0.3",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"sqlite-vec": "^0.1.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.0.9",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"overrides": {
"protobufjs": "^7.5.5"
},
"engines": {
"node": ">=20.0.0"
}
}