-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1016 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1016 Bytes
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
{
"name": "engram",
"version": "0.4.0",
"description": "Standardized long-term memory for AI agents — forgetting curve, behavior observer, shared memory spaces, memory versioning, and MCP stdio server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"engram-mcp": "./dist/mcp-stdio.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist"
},
"keywords": [
"agent",
"memory",
"long-term-memory",
"forgetting-curve",
"ebbinghaus",
"multi-agent",
"shared-memory",
"memory-versioning",
"behavior-observer",
"behavioral-memory",
"ai-agent",
"llm",
"mcp",
"model-context-protocol",
"stdio",
"memory-graph"
],
"author": "cdzzy",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^2.1.9"
}
}