-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 930 Bytes
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
{
"name": "claude-context-optimizer",
"version": "4.6.0",
"description": "Opus 4.8-aware context optimization: cache-aware real costs & cache-break detection, session baseline audit (/cco-overhead), auto .contextignore, self-calibrating estimates, delegation advisor, ru/en prompt coach",
"type": "module",
"main": "src/tracker.js",
"bin": {
"cco-tracker": "src/tracker.js",
"cco-report": "src/report.js"
},
"files": [
"src/",
"agents/",
"skills/",
"hooks/",
"benchmark/",
".claude-plugin/"
],
"keywords": [
"claude-code",
"plugin",
"context-optimization",
"token-tracking",
"skills"
],
"scripts": {
"test": "node --test tests/test.js",
"benchmark": "node benchmark/run.js",
"doctor": "node src/doctor.js",
"sync-version": "node scripts/sync-version.js",
"prepublishOnly": "npm run sync-version && npm test"
},
"license": "MIT"
}