-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.4 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.4 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
{
"name": "pi-lcm",
"version": "0.1.3",
"description": "Lossless Context Management for Pi — DAG-based summarization with full history recovery",
"type": "module",
"license": "MIT",
"author": "codexstar69 <engazedigital@gmail.com>",
"keywords": [
"pi-package",
"pi",
"pi-extension",
"context-management",
"llm",
"summarization",
"conversation-memory",
"dag",
"sqlite",
"fts5",
"compaction",
"lossless",
"ai-agent",
"coding-assistant",
"developer-tools"
],
"files": [
"index.ts",
"src/**/*.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codexstar69/pi-lcm.git"
},
"homepage": "https://github.com/codexstar69/pi-lcm#readme",
"bugs": {
"url": "https://github.com/codexstar69/pi-lcm/issues"
},
"pi": {
"extensions": ["./index.ts"]
},
"scripts": {
"test": "vitest run --dir test",
"test:watch": "vitest --dir test",
"prepublishOnly": "vitest run --dir test"
},
"dependencies": {
"better-sqlite3": "^11.9.1"
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"vitest": "^3.0.0",
"typescript": "^5.7.0"
},
"trustedDependencies": [
"koffi",
"protobufjs"
]
}