-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.17 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.17 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
{
"name": "pi-readcache",
"version": "0.2.0",
"description": "🧠 Pi extension that optimizes read tool calls with replay-aware caching and compaction-safe trust reconstruction",
"author": "Gurpartap Singh",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gurpartap/pi-readcache.git"
},
"bugs": {
"url": "https://github.com/Gurpartap/pi-readcache/issues"
},
"homepage": "https://github.com/Gurpartap/pi-readcache",
"keywords": [
"pi",
"pi-extension",
"pi-package",
"readcache",
"read",
"cache",
"compaction"
],
"engines": {
"node": ">=20"
},
"files": [
"index.ts",
"src",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@sinclair/typebox": "^0.34.40",
"diff": "^8.0.2"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@types/node": "^24.5.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"pi": {
"extensions": [
"./index.ts"
]
}
}