forked from cnighswonger/claude-code-cache-fix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "claude-code-cache-fix",
"version": "3.0.2",
"description": "Cache optimization proxy and interceptor for Claude Code. Fixes prompt cache bugs, stabilizes prefix, reduces quota burn.",
"type": "module",
"exports": "./preload.mjs",
"main": "./preload.mjs",
"bin": {
"cache-fix-proxy": "./bin/claude-via-proxy.mjs"
},
"files": [
"preload.mjs",
"postinstall.js",
"tools/",
"claude-fixed.bat",
"proxy/",
"bin/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test",
"postinstall": "node postinstall.js"
},
"keywords": [
"claude-code",
"claude",
"prompt-cache",
"cache-fix",
"anthropic",
"cost-optimization"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cnighswonger/claude-code-cache-fix.git"
},
"bugs": {
"url": "https://github.com/cnighswonger/claude-code-cache-fix/issues"
},
"homepage": "https://github.com/cnighswonger/claude-code-cache-fix#readme",
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/vsits"
},
"license": "MIT",
"author": "Chris Nighswonger <chris@veritassuperaitsolutions.com> (https://veritassuperaitsolutions.com)"
}