-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "computer-use-cache",
"version": "0.1.1",
"description": "Drop-in OpenAI-compatible cache that replays repeated computer-use and agent workflows at near-zero cost.",
"type": "module",
"license": "MIT",
"author": "SuperPowers AI",
"homepage": "https://app.getsupers.com/developer/api-dashboard",
"repository": {
"type": "git",
"url": "git+https://github.com/rohanarun/computer-use-cache.git"
},
"bugs": {
"url": "https://github.com/rohanarun/computer-use-cache/issues"
},
"keywords": [
"computer-use",
"ai-agents",
"agent-tools",
"cache",
"codex",
"claude-code",
"cursor",
"openclaw",
"hermes",
"openai",
"openai-compatible",
"openrouter",
"llm",
"llm-cache",
"proxy",
"chat-completions",
"cost-savings",
"browserbase",
"daytona"
],
"bin": {
"computer-use-cache": "bin/computer-use-cache.mjs"
},
"exports": {
".": "./src/client.mjs",
"./server": "./src/server.mjs"
},
"files": [
"bin/",
"src/",
"server.py",
"requirements.txt",
"Dockerfile",
"examples/",
".env.example",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/computer-use-cache.mjs start",
"test": "npm run test:smoke && npm run test:cli",
"test:smoke": "node test/smoke.mjs",
"test:cli": "node bin/computer-use-cache.mjs --version && node bin/computer-use-cache.mjs doctor",
"pack:check": "npm pack --dry-run --cache ./.npm-cache",
"publish:dry": "npm publish --dry-run --cache ./.npm-cache",
"publish:npm": "npm publish --cache ./.npm-cache",
"prepublishOnly": "npm test && npm run pack:check"
},
"engines": {
"node": ">=18.17"
},
"publishConfig": {
"access": "public"
}
}