-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 749 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
{
"name": "zeta-1",
"version": "0.1.0",
"private": true,
"description": "Transparent dev proxy with Claude Code MCP integration — observe, intercept, and mock HTTP traffic",
"keywords": ["proxy", "dev-tools", "mcp", "claude", "ai", "bun", "devtools", "http-intercept"],
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"files": [
"cli.ts",
"src/",
"client/",
"public/"
],
"bin": {
"zeta1": "./cli.ts"
},
"scripts": {
"proxy": "bun run cli.ts proxy",
"mcp": "bun run src/mcp/server.ts",
"build": "mkdir -p dist && bun build cli.ts --compile --target=bun-darwin-arm64 --outfile dist/zeta1-darwin-arm64"
},
"dependencies": {},
"devDependencies": {
"bun-types": "^1.3.9"
}
}