@xberg-io/opencode-html-to-markdown 0.1.1 → 3.10.1
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/.opencode/plugins/html-to-markdown.js +78 -88
- package/README.md +5 -6
- package/assets/icon.svg +22 -5
- package/assets/logo.svg +54 -24
- package/package.json +13 -24
|
@@ -1,27 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// AI-RULEZ :: GENERATED FILE — DO NOT EDIT
|
|
2
|
+
// Content-Hash: blake3:a6fa2bc34f3c3e8e95bd74acc79163d573b3c7d544c54ad82b5ca81e21f0f39c
|
|
3
|
+
// Source-Hash: blake3:52a9e795318c65309bedf23c4148a244ae457abb074800a546ad13641285c9c3
|
|
4
|
+
// Schema-Version: v1
|
|
5
|
+
|
|
6
|
+
import {tool} from "@opencode-ai/plugin";
|
|
7
|
+
import {spawn} from "node:child_process";
|
|
3
8
|
|
|
4
9
|
const schema = tool.schema;
|
|
5
10
|
|
|
6
|
-
const headingStyle = schema
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
.describe("Markdown heading style. Default: atx.");
|
|
11
|
+
const headingStyle = schema.enum([ "atx", "underlined", "atx-closed" ])
|
|
12
|
+
.optional()
|
|
13
|
+
.describe("Markdown heading style. Default: atx.");
|
|
10
14
|
|
|
11
|
-
const codeBlockStyle =
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
+
const codeBlockStyle =
|
|
16
|
+
schema.enum([ "backticks", "indented", "tildes" ])
|
|
17
|
+
.optional()
|
|
18
|
+
.describe("Code block fence style. Default: backticks.");
|
|
15
19
|
|
|
16
|
-
const outputFormat = schema
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
.describe("Output markup format. Default: markdown.");
|
|
20
|
+
const outputFormat = schema.enum([ "markdown", "djot" ])
|
|
21
|
+
.optional()
|
|
22
|
+
.describe("Output markup format. Default: markdown.");
|
|
20
23
|
|
|
21
|
-
const preset =
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
const preset =
|
|
25
|
+
schema.enum([ "minimal", "standard", "aggressive" ])
|
|
26
|
+
.optional()
|
|
27
|
+
.describe(
|
|
28
|
+
"Preprocessing aggressiveness. Requires `preprocess`. Default: standard.");
|
|
25
29
|
|
|
26
30
|
function hasValue(value) {
|
|
27
31
|
return value !== undefined && value !== null && value !== "";
|
|
@@ -44,10 +48,10 @@ function runCli(args, context, stdin) {
|
|
|
44
48
|
|
|
45
49
|
return new Promise((resolve, reject) => {
|
|
46
50
|
const child = spawn("html-to-markdown", args, {
|
|
47
|
-
cwd: directory,
|
|
48
|
-
env: process.env,
|
|
49
|
-
signal: context?.abort,
|
|
50
|
-
stdio: [stdin === undefined ? "ignore" : "pipe", "pipe", "pipe"],
|
|
51
|
+
cwd : directory,
|
|
52
|
+
env : process.env,
|
|
53
|
+
signal : context?.abort,
|
|
54
|
+
stdio : [ stdin === undefined ? "ignore" : "pipe", "pipe", "pipe" ],
|
|
51
55
|
});
|
|
52
56
|
|
|
53
57
|
const stdout = [];
|
|
@@ -58,10 +62,10 @@ function runCli(args, context, stdin) {
|
|
|
58
62
|
child.on("error", (error) => {
|
|
59
63
|
if (error.code === "ENOENT") {
|
|
60
64
|
resolve({
|
|
61
|
-
title: "html-to-markdown CLI not found",
|
|
62
|
-
output:
|
|
63
|
-
|
|
64
|
-
metadata: {
|
|
65
|
+
title : "html-to-markdown CLI not found",
|
|
66
|
+
output :
|
|
67
|
+
"Install the html-to-markdown CLI with `brew install xberg-io/tap/html-to-markdown`, or run it via `npx -y @xberg-io/html-to-markdown-cli` / `uvx --from html-to-markdown-cli html-to-markdown`.",
|
|
68
|
+
metadata : {exitCode : 127, command : "html-to-markdown"},
|
|
65
69
|
});
|
|
66
70
|
return;
|
|
67
71
|
}
|
|
@@ -70,14 +74,14 @@ function runCli(args, context, stdin) {
|
|
|
70
74
|
child.on("close", (exitCode, signal) => {
|
|
71
75
|
const stdoutText = Buffer.concat(stdout).toString("utf8").trim();
|
|
72
76
|
const stderrText = Buffer.concat(stderr).toString("utf8").trim();
|
|
73
|
-
const output = [
|
|
74
|
-
|
|
75
|
-
|
|
77
|
+
const output = [
|
|
78
|
+
stdoutText, stderrText && `stderr:\n${stderrText}`
|
|
79
|
+
].filter(Boolean).join("\n\n");
|
|
76
80
|
|
|
77
81
|
resolve({
|
|
78
|
-
title: exitCode === 0 ? "html-to-markdown" : "html-to-markdown failed",
|
|
79
|
-
output: output || "(no output)",
|
|
80
|
-
metadata: {
|
|
82
|
+
title : exitCode === 0 ? "html-to-markdown" : "html-to-markdown failed",
|
|
83
|
+
output : output || "(no output)",
|
|
84
|
+
metadata : {exitCode, signal, command : "html-to-markdown"},
|
|
81
85
|
});
|
|
82
86
|
});
|
|
83
87
|
|
|
@@ -97,24 +101,20 @@ function styleArgs(args, params) {
|
|
|
97
101
|
}
|
|
98
102
|
|
|
99
103
|
export const HtmlToMarkdownPlugin = async () => ({
|
|
100
|
-
tool: {
|
|
101
|
-
html_to_markdown_convert: tool({
|
|
102
|
-
description:
|
|
103
|
-
|
|
104
|
-
args: {
|
|
105
|
-
path: schema.string().min(1).optional().describe(
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
preprocess: schema
|
|
115
|
-
.boolean()
|
|
116
|
-
.optional()
|
|
117
|
-
.describe("Strip navigation, ads, and forms before converting."),
|
|
104
|
+
tool : {
|
|
105
|
+
html_to_markdown_convert : tool({
|
|
106
|
+
description :
|
|
107
|
+
"Convert an HTML file or HTML string to Markdown (or Djot) with the html-to-markdown CLI. Provide either `path` or `html`.",
|
|
108
|
+
args : {
|
|
109
|
+
path : schema.string().min(1).optional().describe(
|
|
110
|
+
"Path to a local HTML file."),
|
|
111
|
+
html : schema.string().min(1).optional().describe(
|
|
112
|
+
"Inline HTML to convert (used when `path` is omitted)."),
|
|
113
|
+
heading_style : headingStyle,
|
|
114
|
+
code_block_style : codeBlockStyle,
|
|
115
|
+
output_format : outputFormat,
|
|
116
|
+
preprocess : schema.boolean().optional().describe(
|
|
117
|
+
"Strip navigation, ads, and forms before converting."),
|
|
118
118
|
preset,
|
|
119
119
|
},
|
|
120
120
|
async execute(args, context) {
|
|
@@ -131,54 +131,44 @@ export const HtmlToMarkdownPlugin = async () => ({
|
|
|
131
131
|
throw new Error("Provide either `path` or `html`.");
|
|
132
132
|
},
|
|
133
133
|
}),
|
|
134
|
-
html_to_markdown_fetch_url: tool({
|
|
135
|
-
description:
|
|
136
|
-
|
|
137
|
-
args: {
|
|
138
|
-
url: schema.string().min(1).describe("URL to fetch and convert."),
|
|
139
|
-
heading_style: headingStyle,
|
|
140
|
-
code_block_style: codeBlockStyle,
|
|
141
|
-
output_format: outputFormat,
|
|
142
|
-
preprocess: schema
|
|
143
|
-
|
|
144
|
-
.optional()
|
|
145
|
-
.describe("Strip navigation, ads, and forms before converting."),
|
|
134
|
+
html_to_markdown_fetch_url : tool({
|
|
135
|
+
description :
|
|
136
|
+
"Fetch a URL and convert its HTML to Markdown (or Djot) with the html-to-markdown CLI.",
|
|
137
|
+
args : {
|
|
138
|
+
url : schema.string().min(1).describe("URL to fetch and convert."),
|
|
139
|
+
heading_style : headingStyle,
|
|
140
|
+
code_block_style : codeBlockStyle,
|
|
141
|
+
output_format : outputFormat,
|
|
142
|
+
preprocess : schema.boolean().optional().describe(
|
|
143
|
+
"Strip navigation, ads, and forms before converting."),
|
|
146
144
|
preset,
|
|
147
|
-
user_agent: schema
|
|
148
|
-
|
|
149
|
-
.min(1)
|
|
150
|
-
.optional()
|
|
151
|
-
.describe("Custom User-Agent header for the fetch."),
|
|
145
|
+
user_agent : schema.string().min(1).optional().describe(
|
|
146
|
+
"Custom User-Agent header for the fetch."),
|
|
152
147
|
},
|
|
153
148
|
async execute(args, context) {
|
|
154
|
-
const cliArgs = ["--url", args.url];
|
|
149
|
+
const cliArgs = [ "--url", args.url ];
|
|
155
150
|
pushOption(cliArgs, "--user-agent", args.user_agent);
|
|
156
151
|
styleArgs(cliArgs, args);
|
|
157
152
|
return runCli(cliArgs, context);
|
|
158
153
|
},
|
|
159
154
|
}),
|
|
160
|
-
html_to_markdown_extract: tool({
|
|
161
|
-
description:
|
|
162
|
-
|
|
163
|
-
args: {
|
|
164
|
-
path: schema.string().min(1).optional().describe(
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
.describe("Include the document structure tree in the JSON output."),
|
|
175
|
-
no_content: schema
|
|
176
|
-
.boolean()
|
|
177
|
-
.optional()
|
|
178
|
-
.describe("Suppress the Markdown content field — return metadata/tables/images only."),
|
|
155
|
+
html_to_markdown_extract : tool({
|
|
156
|
+
description :
|
|
157
|
+
"Extract structured metadata, tables, and (optionally) document structure from HTML as JSON. Returns the full ConversionResult. Provide `path`, `html`, or `url`.",
|
|
158
|
+
args : {
|
|
159
|
+
path : schema.string().min(1).optional().describe(
|
|
160
|
+
"Path to a local HTML file."),
|
|
161
|
+
html : schema.string().min(1).optional().describe(
|
|
162
|
+
"Inline HTML to analyze (used when `path` and `url` are omitted)."),
|
|
163
|
+
url : schema.string().min(1).optional().describe(
|
|
164
|
+
"URL to fetch and analyze."),
|
|
165
|
+
include_structure : schema.boolean().optional().describe(
|
|
166
|
+
"Include the document structure tree in the JSON output."),
|
|
167
|
+
no_content : schema.boolean().optional().describe(
|
|
168
|
+
"Suppress the Markdown content field — return metadata/tables/images only."),
|
|
179
169
|
},
|
|
180
170
|
async execute(args, context) {
|
|
181
|
-
const cliArgs = ["--json"];
|
|
171
|
+
const cliArgs = [ "--json" ];
|
|
182
172
|
pushFlag(cliArgs, "--include-structure", args.include_structure);
|
|
183
173
|
pushFlag(cliArgs, "--no-content", args.no_content);
|
|
184
174
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Fast, lossless HTML→Markdown conversion with structured metadata, tables, and document-structure extraction — using the local `html-to-markdown` CLI in your agent.
|
|
4
4
|
|
|
5
|
-
<!-- TODO: screenshot -->
|
|
5
|
+
<!-- ~keep TODO: add screenshot -->
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -13,8 +13,8 @@ Pending review for official Claude marketplace.
|
|
|
13
13
|
Self-host:
|
|
14
14
|
|
|
15
15
|
```text
|
|
16
|
-
/plugin marketplace add xberg-io/
|
|
17
|
-
/plugin install html-to-markdown@
|
|
16
|
+
/plugin marketplace add xberg-io/html-to-markdown
|
|
17
|
+
/plugin install html-to-markdown@html-to-markdown
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
### Binary requirement
|
|
@@ -162,7 +162,7 @@ html-to-markdown input.html --output-format djot --heading-style underlined
|
|
|
162
162
|
|
|
163
163
|
## Versioning
|
|
164
164
|
|
|
165
|
-
The plugin version tracks the
|
|
165
|
+
The plugin version tracks the html-to-markdown core release (`Cargo.toml`). See [CHANGELOG.md](../CHANGELOG.md) for release notes.
|
|
166
166
|
|
|
167
167
|
## License
|
|
168
168
|
|
|
@@ -170,6 +170,5 @@ MIT. The skill content references the upstream [html-to-markdown](https://github
|
|
|
170
170
|
|
|
171
171
|
## See also
|
|
172
172
|
|
|
173
|
-
- **Marketplace**:
|
|
173
|
+
- **Marketplace**: this repo — `/plugin marketplace add xberg-io/html-to-markdown`
|
|
174
174
|
- **Upstream**: [xberg-io/html-to-markdown](https://github.com/xberg-io/html-to-markdown)
|
|
175
|
-
- **Sibling plugins**: [xberg](../xberg/README.md), [crawlberg](../crawlberg/README.md)
|
package/assets/icon.svg
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
|
|
2
|
-
<rect width="256" height="256" rx="48" fill="#2E2D36"/>
|
|
3
|
-
<path
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
<rect width="256" height="256" rx="48" fill="#2E2D36" />
|
|
3
|
+
<path
|
|
4
|
+
d="M64 56 L152 56 L196 100 L196 196 C196 200.4 192.4 204 188 204 L64 204 C59.6 204 56 200.4 56 196 L56 64 C56 59.6 59.6 56 64 56 Z"
|
|
5
|
+
fill="#58FBDA"
|
|
6
|
+
/>
|
|
7
|
+
<path d="M152 56 L152 92 C152 96.4 155.6 100 160 100 L196 100 Z" fill="#2E2D36" />
|
|
8
|
+
<path
|
|
9
|
+
d="M84 168 L84 124 L100 144 L116 124 L116 168"
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="#2E2D36"
|
|
12
|
+
stroke-width="12"
|
|
13
|
+
stroke-linecap="round"
|
|
14
|
+
stroke-linejoin="round"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M150 124 L150 168 M150 168 L134 150 M150 168 L166 150"
|
|
18
|
+
fill="none"
|
|
19
|
+
stroke="#2E2D36"
|
|
20
|
+
stroke-width="12"
|
|
21
|
+
stroke-linecap="round"
|
|
22
|
+
stroke-linejoin="round"
|
|
23
|
+
/>
|
|
7
24
|
</svg>
|
package/assets/logo.svg
CHANGED
|
@@ -1,26 +1,56 @@
|
|
|
1
1
|
<svg width="800" height="800" viewBox="0 0 800 800" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="400" cy="400" r="313.839" fill="#58FBDA" stroke="#2E2D36" stroke-width="7.67819"/>
|
|
3
|
-
<path
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<path
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
2
|
+
<circle cx="400" cy="400" r="313.839" fill="#58FBDA" stroke="#2E2D36" stroke-width="7.67819" />
|
|
3
|
+
<path
|
|
4
|
+
d="M469.155 481.996L497.619 509.815L517.95 513.534L529.157 523.7"
|
|
5
|
+
stroke="#2E2D36"
|
|
6
|
+
stroke-width="7.67819"
|
|
7
|
+
stroke-linecap="round"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
d="M428.146 495.931V565.751L454.576 592.876V615.587"
|
|
11
|
+
stroke="#2E2D36"
|
|
12
|
+
stroke-width="7.67819"
|
|
13
|
+
stroke-linecap="round"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M333.878 482.343L310.522 509.468L289.15 512.543L271.199 525.733"
|
|
17
|
+
stroke="#2E2D36"
|
|
18
|
+
stroke-width="7.67819"
|
|
19
|
+
stroke-linecap="round"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M404.521 155.839C498.389 155.839 574.411 231.075 574.411 323.792C574.411 416.509 498.389 491.744 404.521 491.744C310.653 491.744 234.631 416.509 234.631 323.792C234.631 231.075 310.653 155.839 404.521 155.839Z"
|
|
23
|
+
fill="#79FFE6"
|
|
24
|
+
stroke="#2E2D36"
|
|
25
|
+
stroke-width="7.67819"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M401.021 218.481C450.893 218.481 491.275 258.538 491.275 307.892C491.275 357.246 450.893 397.303 401.021 397.303C351.149 397.303 310.767 357.246 310.767 307.892C310.767 258.538 351.149 218.481 401.021 218.481Z"
|
|
29
|
+
fill="white"
|
|
30
|
+
stroke="#2E2D36"
|
|
31
|
+
stroke-width="6.14255"
|
|
32
|
+
/>
|
|
33
|
+
<circle cx="231.379" cy="476.492" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
34
|
+
<circle cx="256.471" cy="535.8" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
35
|
+
<circle cx="300.109" cy="582.413" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
36
|
+
<circle cx="401.071" cy="643.307" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
37
|
+
<circle cx="457.998" cy="631.009" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
38
|
+
<path d="M457.304 487.798V535.601L489.139 569.123" stroke="#2E2D36" stroke-width="7.67819" stroke-linecap="round" />
|
|
39
|
+
<circle cx="499.354" cy="582.413" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
40
|
+
<circle cx="542.695" cy="535.006" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
41
|
+
<circle cx="562.332" cy="476.393" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
42
|
+
<path d="M303.381 465.483L289.993 476.988H248.834" stroke="#2E2D36" stroke-width="7.67819" stroke-linecap="round" />
|
|
43
|
+
<path d="M351.532 489.484V531.188L312.555 569.817" stroke="#2E2D36" stroke-width="7.67819" stroke-linecap="round" />
|
|
44
|
+
<path
|
|
45
|
+
d="M371.863 494.889V569.123L345.78 596.942V615.24"
|
|
46
|
+
stroke="#2E2D36"
|
|
47
|
+
stroke-width="7.67819"
|
|
48
|
+
stroke-linecap="round"
|
|
49
|
+
/>
|
|
50
|
+
<path d="M401.368 498.311V625.753" stroke="#2E2D36" stroke-width="7.67819" stroke-linecap="round" />
|
|
51
|
+
<path d="M496.925 465.731L505.057 473.566H545.422" stroke="#2E2D36" stroke-width="7.67819" stroke-linecap="round" />
|
|
52
|
+
<ellipse cx="401.021" cy="307.892" rx="51.671" ry="53.0099" fill="#2E2D36" />
|
|
53
|
+
<ellipse cx="411.286" cy="294.106" rx="18.5956" ry="19.0915" fill="white" />
|
|
54
|
+
<ellipse cx="428.493" cy="322.471" rx="8.43002" ry="8.67796" fill="white" />
|
|
55
|
+
<circle cx="344.143" cy="632.299" r="14.8269" fill="white" stroke="#2E2D36" stroke-width="4.60691" />
|
|
26
56
|
</svg>
|
package/package.json
CHANGED
|
@@ -1,42 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xberg-io/opencode-html-to-markdown",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.10.1",
|
|
4
|
+
"description": "Fast, lossless HTML→Markdown conversion with structured metadata, tables, and document-structure extraction.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"conversion",
|
|
7
|
-
"html",
|
|
8
6
|
"html-to-markdown",
|
|
9
7
|
"markdown",
|
|
10
|
-
"
|
|
8
|
+
"html",
|
|
9
|
+
"conversion",
|
|
10
|
+
"metadata"
|
|
11
11
|
],
|
|
12
|
-
"homepage": "https://
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/xberg-io/plugins/issues"
|
|
15
|
-
},
|
|
16
|
-
"license": "MIT",
|
|
12
|
+
"homepage": "https://xberg.io",
|
|
17
13
|
"repository": {
|
|
18
14
|
"type": "git",
|
|
19
|
-
"url": "
|
|
20
|
-
"directory": "plugins/html-to-markdown"
|
|
15
|
+
"url": "https://github.com/xberg-io/html-to-markdown"
|
|
21
16
|
},
|
|
22
|
-
"
|
|
23
|
-
".opencode/",
|
|
24
|
-
"assets/",
|
|
25
|
-
"README.md"
|
|
26
|
-
],
|
|
17
|
+
"license": "MIT",
|
|
27
18
|
"type": "module",
|
|
28
19
|
"main": ".opencode/plugins/html-to-markdown.js",
|
|
29
20
|
"exports": {
|
|
30
21
|
".": "./.opencode/plugins/html-to-markdown.js"
|
|
31
22
|
},
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
23
|
+
"files": [
|
|
24
|
+
".opencode/",
|
|
25
|
+
"assets/",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
36
28
|
"dependencies": {
|
|
37
29
|
"@opencode-ai/plugin": "^1.17.8"
|
|
38
|
-
},
|
|
39
|
-
"engines": {
|
|
40
|
-
"node": ">=22.14.0"
|
|
41
30
|
}
|
|
42
31
|
}
|