mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
- Replace user agent detection with capability-based detection - Support any touch device (iPad, Android, Surface, etc.) - Add smart detection for hybrid devices (touch + trackpad) - Add user preference support (auto/always/never) - Add keyboard mode toggle button in mobile controls - Fix landscape mode detection on all touch devices - Use hardware capabilities instead of brittle UA strings 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
341 B
JavaScript
8 lines
341 B
JavaScript
import createWebSocketStream from './lib/stream.js';
|
|
import Receiver from './lib/receiver.js';
|
|
import Sender from './lib/sender.js';
|
|
import WebSocket from './lib/websocket.js';
|
|
import WebSocketServer from './lib/websocket-server.js';
|
|
|
|
export { createWebSocketStream, Receiver, Sender, WebSocket, WebSocketServer };
|
|
export default WebSocket;
|