@roxybrowser/playwright-mcp 0.0.5 → 0.0.6-beta.7

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.
Files changed (63) hide show
  1. package/README.md +832 -742
  2. package/dist/cli.mjs +250 -0
  3. package/dist/cli.mjs.LICENSE.txt +42 -0
  4. package/dist/index.mjs +250 -0
  5. package/dist/index.mjs.LICENSE.txt +42 -0
  6. package/dist/index.mjs.map +1 -0
  7. package/index.d.ts +86 -23
  8. package/package.json +27 -41
  9. package/cli.js +0 -18
  10. package/config.d.ts +0 -119
  11. package/index.js +0 -19
  12. package/lib/browserContextFactory.js +0 -264
  13. package/lib/browserServerBackend.js +0 -77
  14. package/lib/config.js +0 -246
  15. package/lib/context.js +0 -242
  16. package/lib/extension/cdpRelay.js +0 -355
  17. package/lib/extension/extensionContextFactory.js +0 -54
  18. package/lib/index.js +0 -40
  19. package/lib/loop/loop.js +0 -69
  20. package/lib/loop/loopClaude.js +0 -152
  21. package/lib/loop/loopOpenAI.js +0 -141
  22. package/lib/loop/main.js +0 -60
  23. package/lib/loopTools/context.js +0 -67
  24. package/lib/loopTools/main.js +0 -54
  25. package/lib/loopTools/perform.js +0 -32
  26. package/lib/loopTools/snapshot.js +0 -29
  27. package/lib/loopTools/tool.js +0 -18
  28. package/lib/mcp/http.js +0 -120
  29. package/lib/mcp/inProcessTransport.js +0 -72
  30. package/lib/mcp/proxyBackend.js +0 -104
  31. package/lib/mcp/server.js +0 -123
  32. package/lib/mcp/tool.js +0 -29
  33. package/lib/program.js +0 -145
  34. package/lib/response.js +0 -165
  35. package/lib/sessionLog.js +0 -121
  36. package/lib/tab.js +0 -249
  37. package/lib/tools/common.js +0 -55
  38. package/lib/tools/console.js +0 -33
  39. package/lib/tools/dialogs.js +0 -47
  40. package/lib/tools/evaluate.js +0 -53
  41. package/lib/tools/files.js +0 -44
  42. package/lib/tools/install.js +0 -53
  43. package/lib/tools/keyboard.js +0 -78
  44. package/lib/tools/mouse.js +0 -99
  45. package/lib/tools/navigate.js +0 -70
  46. package/lib/tools/network.js +0 -41
  47. package/lib/tools/pdf.js +0 -40
  48. package/lib/tools/roxy.js +0 -50
  49. package/lib/tools/screenshot.js +0 -79
  50. package/lib/tools/snapshot.js +0 -139
  51. package/lib/tools/tabs.js +0 -87
  52. package/lib/tools/tool.js +0 -33
  53. package/lib/tools/utils.js +0 -74
  54. package/lib/tools/wait.js +0 -55
  55. package/lib/tools.js +0 -52
  56. package/lib/utils/codegen.js +0 -49
  57. package/lib/utils/fileUtils.js +0 -36
  58. package/lib/utils/guid.js +0 -22
  59. package/lib/utils/log.js +0 -21
  60. package/lib/utils/manualPromise.js +0 -111
  61. package/lib/utils/package.js +0 -20
  62. package/lib/vscode/host.js +0 -128
  63. package/lib/vscode/main.js +0 -62
@@ -0,0 +1,42 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2023 Google Inc.
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ /**
8
+ * @license
9
+ * Copyright 2024 Google Inc.
10
+ * Modifications copyright (c) Microsoft Corporation.
11
+ * SPDX-License-Identifier: Apache-2.0
12
+ */
13
+
14
+ /**
15
+ * @license React
16
+ * react-dom.production.js
17
+ *
18
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
19
+ *
20
+ * This source code is licensed under the MIT license found in the
21
+ * LICENSE file in the root directory of this source tree.
22
+ */
23
+
24
+ /**
25
+ * @license React
26
+ * react-jsx-runtime.production.js
27
+ *
28
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
29
+ *
30
+ * This source code is licensed under the MIT license found in the
31
+ * LICENSE file in the root directory of this source tree.
32
+ */
33
+
34
+ /**
35
+ * @license React
36
+ * scheduler.production.js
37
+ *
38
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
39
+ *
40
+ * This source code is licensed under the MIT license found in the
41
+ * LICENSE file in the root directory of this source tree.
42
+ */