-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.34 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
{
"name": "megamemory",
"version": "1.6.1",
"description": "MCP server that gives coding agents persistent project understanding via a knowledge graph",
"type": "module",
"main": "dist/index.js",
"bin": {
"megamemory": "dist/index.js"
},
"files": [
"dist/",
"plugin/",
"commands/",
"web/"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"knowledge-graph",
"coding-agent",
"persistent-memory",
"opencode",
"llm",
"sqlite",
"embeddings",
"ai"
],
"author": "0xk3vin <https://github.com/0xk3vin>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/0xK3vin/MegaMemory.git"
},
"homepage": "https://github.com/0xK3vin/MegaMemory#readme",
"bugs": {
"url": "https://github.com/0xK3vin/MegaMemory/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@xenova/transformers": "^2.17.2",
"libsql": "^0.5.22",
"picocolors": "^1.1.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.17.14",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}