-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "pi-cache-optimizer",
"version": "2.8.2",
"description": "Improve Pi prompt/KV cache hit rates with stable prompts, OpenAI-compatible cache keys, proxy compat warnings, and footer cache stats.",
"keywords": [
"pi-package",
"deepseek",
"openai",
"claude",
"gemini",
"cache",
"kv-cache",
"prompt-cache",
"optimizer"
],
"author": "freescheme",
"license": "MIT",
"files": [
"index.ts"
],
"pi": {
"extensions": [
"./index.ts"
],
"image": "https://img.shields.io/badge/Pi-Cache%20Optimizer-4A90D9"
},
"imports": {
"#extension": "./index.ts"
},
"scripts": {
"test": "node --import jiti/register tests/review-findings.test.ts",
"typecheck": "tsc --noEmit --pretty false",
"check:diff": "git diff --check",
"check:pack": "npm pack --dry-run --cache node_modules/.cache/npm",
"check": "npm run typecheck && npm test && npm run check:diff && npm run check:pack"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.84.1",
"@types/node": "^22.0.0",
"jiti": "^2.7.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiangge/pi-cache-optimizer.git"
}
}