This commit is contained in:
Tommy D. Rossi
2025-11-13 20:38:16 +01:00
parent a47b3bd99d
commit ddde04fe63
2 changed files with 3 additions and 342 deletions
+3 -6
View File
@@ -22,22 +22,19 @@
* - /extension/guid - Extension connection for chrome.debugger forwarding
*/
import net from 'net'
import net from 'net';
import { spawn } from 'child_process';
import http from 'http';
import { debug, ws, wsServer } from 'playwright-core/lib/utilsBundle';
import { registry } from 'playwright-core/lib/server/registry/index';
import { ManualPromise } from 'playwright-core/lib/utils';
import * as protocol from './protocol.js';
import type { WebSocket, WebSocketServer } from 'playwright-core/lib/utilsBundle';
import type websocket from 'ws';
import type { ExtensionCommand, ExtensionEvents } from './protocol.js';
import type { WebSocket, WebSocketServer } from 'playwright-core/lib/utilsBundle';
import { ClientInfo } from './types.js';
const debugLogger = debug('pw:mcp:relay');