-
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.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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-api-optimization",
"version": "1.0.0",
"description": "Comprehensive Claude API cost optimization toolkit - reduce costs by 50-95%",
"main": "cost-monitor.js",
"scripts": {
"start": "node demo.js",
"cli": "node cli.js",
"monitor": "node cli.js monitor",
"route": "node cli.js route",
"cache": "node cli.js cache",
"batch": "node cli.js batch",
"benchmark": "node cli.js benchmark",
"optimize": "node cli.js optimize",
"test": "npm run test:all",
"test:all": "npm run test:monitor && npm run test:router && npm run test:cache",
"test:monitor": "node test/cost-monitor.test.js",
"test:router": "node test/model-router.test.js",
"test:cache": "node test/response-cache.test.js",
"example:email": "node examples/email-classification.js",
"example:batch": "node examples/batch-content-generation.js"
},
"keywords": [
"claude-api",
"cost-optimization",
"prompt-caching",
"model-routing",
"batch-processing",
"anthropic",
"ai-cost-reduction",
"llm-optimization"
],
"author": "OpenClawdad",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/LvcidPsyche/claude-api-optimization.git"
},
"bugs": {
"url": "https://github.com/LvcidPsyche/claude-api-optimization/issues"
},
"homepage": "https://github.com/LvcidPsyche/claude-api-optimization#readme"
}