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
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "claude-code-cache-fix",
"version": "2.0.0-beta.3",
"description": "Fixes prompt cache regression in Claude Code that causes up to 20x cost increase on resumed sessions",
"type": "module",
"exports": "./preload.mjs",
"main": "./preload.mjs",
"files": [
"preload.mjs",
"postinstall.js",
"tools/",
"claude-fixed.bat"
],
"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)"
}