@roxybrowser/playwright-mcp 0.0.3 → 0.0.5
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/cli.js +0 -1
- package/lib/program.js +1 -1
- package/package.json +5 -3
package/cli.js
CHANGED
package/lib/program.js
CHANGED
|
@@ -55,7 +55,7 @@ program
|
|
|
55
55
|
.option('--user-data-dir <path>', 'path to the user data directory. If not specified, a temporary directory will be created.')
|
|
56
56
|
.option('--viewport-size <size>', 'specify browser viewport size in pixels, for example "1280, 720"')
|
|
57
57
|
.addOption(new Option('--connect-tool', 'Allow to switch between different browser connection methods.').hideHelp())
|
|
58
|
-
.addOption(new Option('--roxy-mode', 'Enable RoxyBrowser dynamic connection mode').hideHelp())
|
|
58
|
+
.addOption(new Option('--roxy-mode', 'Enable RoxyBrowser dynamic connection mode').default(true).hideHelp())
|
|
59
59
|
.addOption(new Option('--vscode', 'VS Code tools.').hideHelp())
|
|
60
60
|
.addOption(new Option('--loop-tools', 'Run loop tools').hideHelp())
|
|
61
61
|
.addOption(new Option('--vision', 'Legacy option, use --caps=vision instead').hideHelp())
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roxybrowser/playwright-mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Playwright Tools for MCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/roxybrowserlabs/roxybrowser-playwright-mcp"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://playwright.dev",
|
|
11
11
|
"engines": {
|
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
"wtest": "playwright test --project=webkit",
|
|
29
29
|
"run-server": "node lib/browserServer.js",
|
|
30
30
|
"clean": "npx rimraf lib",
|
|
31
|
-
"npm-publish": "npm run clean && npm run build && npm publish"
|
|
31
|
+
"npm-publish": "npm run clean && npm run build && npm publish",
|
|
32
|
+
"publish:release": "npm run clean && npm version patch --no-git-tag-version && npm run build && npm publish",
|
|
33
|
+
"publish:beta": "npm version prerelease --preid=beta --no-git-tag-version && npm run build && npm publish --tag beta"
|
|
32
34
|
},
|
|
33
35
|
"publishConfig": {
|
|
34
36
|
"access": "public",
|