@boluo-ai/relay 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@boluo-ai/relay",
3
+ "version": "0.1.0",
4
+ "description": "Boluo encrypted relay — WebSocket bridge between Boluo daemon and Boluo web UI, with bundled web SPA.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/cli.js",
8
+ "bin": {
9
+ "boluo-relay": "./dist/cli.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "web-dist",
14
+ "package.json"
15
+ ],
16
+ "keywords": [
17
+ "boluo",
18
+ "relay",
19
+ "websocket",
20
+ "claude-code",
21
+ "encrypted",
22
+ "acp"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/ascdong/buoluo.git",
27
+ "directory": "packages/relay"
28
+ },
29
+ "homepage": "https://github.com/ascdong/buoluo",
30
+ "scripts": {
31
+ "dev": "tsx watch src/cli.ts",
32
+ "build": "tsup",
33
+ "build:web": "bun run --cwd ../web build && rm -rf web-dist && cp -r ../web/dist web-dist && find web-dist -name 'README.md' -delete",
34
+ "typecheck": "tsc -b --noEmit",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "test:cov": "vitest run --coverage",
38
+ "prepublishOnly": "npm run build:web && npm run build"
39
+ },
40
+ "dependencies": {
41
+ "@hono/node-server": "^1.13.7",
42
+ "better-sqlite3": "^11.7.0",
43
+ "commander": "^12.1.0",
44
+ "hono": "^4.6.13",
45
+ "ws": "^8.18.0"
46
+ },
47
+ "devDependencies": {
48
+ "@boluo/shared": "workspace:*",
49
+ "@types/better-sqlite3": "^7.6.12",
50
+ "@types/node": "^22.10.0",
51
+ "@types/ws": "^8.5.13",
52
+ "@vitest/coverage-v8": "^2.1.8",
53
+ "tsup": "^8.3.5",
54
+ "tsx": "^4.19.2",
55
+ "typescript": "^5.6.3",
56
+ "vitest": "^2.1.8"
57
+ }
58
+ }