-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 915 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
35
36
37
{
"name": "@kiyo-e/claude-code-proxy",
"version": "0.1.5",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kiyo-e/claude-code-proxy.git"
},
"bin": "./bin",
"files": [
"bin"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"bin": "./bin",
"dev": "wrangler dev src/index.ts",
"start": "bun run --hot src/server.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"build": "bun build ./src/server.ts --outfile=./bin --target=node --format=esm --banner='#!/usr/bin/env node'",
"prepack": "bun run build && chmod +x ./bin"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250601.0",
"bun-types": "latest",
"wrangler": "^4.18.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@hono/node-server": "^1.14.3",
"hono": "^4.9.0"
}
}