-
Notifications
You must be signed in to change notification settings - Fork 569
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.57 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
{
"name": "gentle-engram",
"version": "0.1.4",
"description": "Persistent memory for Pi agents — one local-or-cloud brain shared across sessions, compactions, and MCP agents",
"type": "module",
"license": "MIT",
"author": "Gentleman Programming",
"homepage": "https://github.com/Gentleman-Programming/engram",
"repository": {
"type": "git",
"url": "git+https://github.com/Gentleman-Programming/engram.git",
"directory": "plugin/pi"
},
"bin": {
"pi-engram": "cli.js"
},
"scripts": {
"test": "node --test test/*.test.mjs"
},
"keywords": [
"pi-package",
"pi",
"engram",
"memory",
"persistent-memory",
"project-memory",
"compaction-recovery",
"agent-memory",
"ai-memory",
"engram-cloud",
"token-saving",
"mcp",
"coding-agent",
"extension"
],
"pi": {
"image": "https://raw.githubusercontent.com/Gentleman-Programming/engram/main/plugin/pi/assets/engram-logo-only.png",
"extensions": [
"./index.ts"
]
},
"files": [
"assets/",
"cli.js",
"compaction-recovery.js",
"index.ts",
"memory-tool-chrome.js",
"mcp-template.json",
"private-redaction.js",
"test/",
"README.md",
"package.json"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"dependencies": {
"@earendil-works/pi-tui": "^0.74.0",
"typebox": "^1.1.38"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"pi-mcp-adapter": ">=2.5.0"
},
"peerDependenciesMeta": {
"pi-mcp-adapter": {
"optional": true
}
}
}