@cotestdev/mcp_playwright 0.0.28 → 0.0.30

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.
@@ -22,6 +22,7 @@ __export(utilsBundle_exports, {
22
22
  enquirer: () => enquirer,
23
23
  getEastAsianWidth: () => getEastAsianWidth,
24
24
  json5: () => json5,
25
+ parseMarkdown: () => parseMarkdown,
25
26
  sourceMapSupport: () => sourceMapSupport,
26
27
  stoppable: () => stoppable
27
28
  });
@@ -32,12 +33,18 @@ const stoppable = require("./utilsBundleImpl").stoppable;
32
33
  const enquirer = require("./utilsBundleImpl").enquirer;
33
34
  const chokidar = require("./utilsBundleImpl").chokidar;
34
35
  const getEastAsianWidth = require("./utilsBundleImpl").getEastAsianWidth;
36
+ const { unified } = require("./utilsBundleImpl").unified;
37
+ const remarkParse = require("./utilsBundleImpl").remarkParse;
38
+ function parseMarkdown(content) {
39
+ return unified().use(remarkParse).parse(content);
40
+ }
35
41
  // Annotate the CommonJS export names for ESM import in node:
36
42
  0 && (module.exports = {
37
43
  chokidar,
38
44
  enquirer,
39
45
  getEastAsianWidth,
40
46
  json5,
47
+ parseMarkdown,
41
48
  sourceMapSupport,
42
49
  stoppable
43
50
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cotestdev/mcp_playwright",
3
- "version": "0.0.28",
3
+ "version": "0.0.30",
4
4
  "description": "Playwright MCP (Model Context Protocol) tools for browser automation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "build": "tsc && node scripts/copy-mcp-tools.js",
17
- "start": "node lib/program.js"
17
+ "start": "node lib/mcp/cli.js"
18
18
  },
19
19
  "keywords": [
20
20
  "playwright",