-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.24 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": "megg",
"version": "1.1.0",
"description": "megg - Memory for AI Agents. Simplified knowledge system with auto-discovery and size-aware loading.",
"main": "build/index.js",
"bin": {
"megg": "./build/cli.js",
"megg-mcp": "./build/index.js"
},
"files": [
"build",
"hooks",
".claude"
],
"directories": {
"test": "tests"
},
"type": "module",
"scripts": {
"build": "tsc && chmod +x build/index.js && chmod +x build/cli.js",
"start": "node build/index.js",
"cli": "node build/cli.js",
"test": "vitest"
},
"keywords": [
"ai",
"ai-memory",
"ai-agents",
"llm",
"llm-memory",
"mcp",
"mcp-server",
"model-context-protocol",
"claude",
"claude-code",
"gpt",
"openai",
"anthropic",
"knowledge-management",
"context-management",
"persistent-memory",
"agent-memory",
"ai-assistant",
"stateful-agents"
],
"author": "ToruAI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/toruai/megg"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}