@hmduc16031996/claude-mb-bridge 2.0.0 → 2.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/dist/index.js +23 -16
- package/dist/server.d.ts +4 -1
- package/dist/server.js +23 -11
- package/package.json +1 -1
- package/public/app.js +252 -0
- package/public/index.html +154 -64
- package/public/manifest.json +25 -0
- package/public/styles.css +1970 -0
- package/public/sw.js +42 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Claude Code Remote",
|
|
3
|
+
"short_name": "Claude Remote",
|
|
4
|
+
"description": "Remote access to Claude Code sessions from any device",
|
|
5
|
+
"start_url": "/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"orientation": "any",
|
|
8
|
+
"background_color": "#0d1117",
|
|
9
|
+
"theme_color": "#0d1117",
|
|
10
|
+
"icons": [
|
|
11
|
+
{
|
|
12
|
+
"src": "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><defs><linearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'><stop offset='0%25' stop-color='%23f0a500'/><stop offset='100%25' stop-color='%23ffb627'/></linearGradient></defs><rect fill='%230d1117' width='512' height='512' rx='102'/><text x='256' y='340' font-size='280' font-weight='bold' text-anchor='middle' fill='url(%23g)' font-family='system-ui'>C</text></svg>",
|
|
13
|
+
"sizes": "512x512",
|
|
14
|
+
"type": "image/svg+xml",
|
|
15
|
+
"purpose": "any"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"src": "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><rect fill='%230d1117' width='512' height='512'/><text x='256' y='340' font-size='280' font-weight='bold' text-anchor='middle' fill='%23f0a500' font-family='system-ui'>C</text></svg>",
|
|
19
|
+
"sizes": "512x512",
|
|
20
|
+
"type": "image/svg+xml",
|
|
21
|
+
"purpose": "maskable"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"categories": ["developer", "productivity", "utilities"]
|
|
25
|
+
}
|