-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "pi-hermes-memory",
"version": "0.9.1",
"description": "🧠 Persistent memory + 🔍 session search + 🛡️ secret scanning for Pi. Token-aware policy-only memory by default, SQLite FTS5 search, auto-consolidation, procedural skills. 693 tests. Ported from Hermes agent.",
"type": "module",
"main": "src/index.ts",
"files": [
"src",
"scripts",
"README.md",
"LICENSE",
"docs"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"check": "node scripts/ensure-dev.mjs check && tsc --noEmit",
"test": "node scripts/ensure-dev.mjs test && tests/run-all.sh"
},
"keywords": [
"pi-package",
"pi-extension",
"memory",
"persistent-memory",
"session-search",
"sqlite",
"fts5",
"skills",
"learning-loop",
"agent",
"hermes",
"secret-scanning",
"content-scanner",
"correction-detection",
"auto-consolidation",
"memory-aging",
"context-fencing",
"two-tier-memory"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chandra447/pi-hermes-memory"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": ">=0.74.0"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.80.2",
"@earendil-works/pi-coding-agent": "^0.80.2",
"@types/better-sqlite3": "^7.6.13",
"tsx": "^4.21.0",
"typebox": "^1.1.33",
"typescript": "^6.0.3"
},
"dependencies": {
"@earendil-works/pi-tui": "^0.80.2",
"better-sqlite3": "^12.9.0"
},
"allowScripts": {
"better-sqlite3": true
}
}