cdp-tunnel 2.5.13 → 2.5.15

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "CDP Bridge",
4
- "version": "2.5.10",
4
+ "version": "2.5.15",
5
5
  "description": "Chrome DevTools Protocol Bridge for Playwright/Puppeteer automation",
6
6
  "permissions": [
7
7
  "debugger",
@@ -1,5 +1,5 @@
1
1
  var Config = {
2
- WS_URL: 'ws://localhost:9221/plugin',
2
+ WS_URL: 'ws://localhost:19221/plugin',
3
3
  RECONNECT_DELAY: 3000,
4
4
  DEBUGGER_VERSION: '1.3',
5
5
  HEARTBEAT_INTERVAL: 25000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdp-tunnel",
3
- "version": "2.5.13",
3
+ "version": "2.5.15",
4
4
  "description": "Bridge Chrome's debugger API to WebSocket — control your existing browser with Playwright/Puppeteer via CDP",
5
5
  "main": "server/proxy-server.js",
6
6
  "bin": "./cli/index.js",
@@ -14,7 +14,9 @@
14
14
  "benchmark": "node benchmark/run-all.js",
15
15
  "benchmark:native": "node benchmark/run-all.js --native",
16
16
  "benchmark:proxy": "node benchmark/run-all.js --proxy",
17
- "demo": "node demo/server.js"
17
+ "demo": "node demo/server.js",
18
+ "test:compare": "node tests/cdp-compare/cdp-compare-runner.js",
19
+ "prepare": "husky"
18
20
  },
19
21
  "keywords": [
20
22
  "cdp",
@@ -51,10 +53,12 @@
51
53
  "LICENSE"
52
54
  ],
53
55
  "dependencies": {
56
+ "cdp-tunnel": "^2.5.14",
54
57
  "commander": "^12.0.0",
55
58
  "ws": "^8.16.0"
56
59
  },
57
60
  "devDependencies": {
61
+ "husky": "^9.1.7",
58
62
  "lz-string": "^1.5.0",
59
63
  "pako": "^2.1.0",
60
64
  "playwright": "^1.58.2",