@playwright/mcp 0.0.60 → 0.0.61
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/LICENSE +1 -2
- package/package.json +2 -4
- package/playwright-cli.js +0 -23
package/LICENSE
CHANGED
|
@@ -186,8 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
|
|
190
|
-
Portions Copyright 2017 Google Inc.
|
|
189
|
+
Copyright (c) Microsoft Corporation.
|
|
191
190
|
|
|
192
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
192
|
you may not use this file except in compliance with the License.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@playwright/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"description": "Playwright Tools for MCP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,12 +34,10 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"minimist": "^1.2.5",
|
|
38
37
|
"playwright": "1.59.0-alpha-1769452054000",
|
|
39
38
|
"playwright-core": "1.59.0-alpha-1769452054000"
|
|
40
39
|
},
|
|
41
40
|
"bin": {
|
|
42
|
-
"mcp": "cli.js"
|
|
43
|
-
"playwright-cli": "./playwright-cli.js"
|
|
41
|
+
"playwright-mcp": "cli.js"
|
|
44
42
|
}
|
|
45
43
|
}
|
package/playwright-cli.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* Copyright (c) Microsoft Corporation.
|
|
4
|
-
*
|
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
* you may not use this file except in compliance with the License.
|
|
7
|
-
* You may obtain a copy of the License at
|
|
8
|
-
*
|
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
*
|
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
* See the License for the specific language governing permissions and
|
|
15
|
-
* limitations under the License.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
const { program } = require('playwright/lib/mcp/terminal/program');
|
|
19
|
-
const packageJSON = require('./package.json');
|
|
20
|
-
program({ version: packageJSON.version }).catch(e => {
|
|
21
|
-
console.error(e.message);
|
|
22
|
-
process.exit(1);
|
|
23
|
-
});
|