-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "cachebro",
"version": "0.2.1",
"mcpName": "io.github.glommer/cachebro",
"description": "File cache with diff tracking for AI coding agents. Drop-in replacement for file reads that saves ~26% tokens.",
"type": "module",
"bin": {
"cachebro": "dist/cli.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build packages/cli/src/index.ts --target node --external @tursodatabase/database --external @modelcontextprotocol/sdk --external zod --outfile dist/cli.mjs && node -e \"let f=require('fs');let c=f.readFileSync('dist/cli.mjs','utf8');f.writeFileSync('dist/cli.mjs',c.replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@tursodatabase/database": "^0.4.4",
"zod": "^3.24.0"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.0.0"
},
"workspaces": [
"packages/*"
],
"keywords": [
"mcp",
"ai",
"agent",
"cache",
"tokens",
"coding-agent",
"claude",
"cursor",
"turso"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/glommer/cachebro"
},
"homepage": "https://github.com/glommer/cachebro"
}