@superdoc-dev/cli 0.17.0 → 0.17.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/dist/index.js +27 -40
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -68327,7 +68327,7 @@ var init_remark_gfm_BhnWr3yf_es = __esm(() => {
|
|
|
68327
68327
|
emptyOptions2 = {};
|
|
68328
68328
|
});
|
|
68329
68329
|
|
|
68330
|
-
// ../../packages/superdoc/dist/chunks/SuperConverter-
|
|
68330
|
+
// ../../packages/superdoc/dist/chunks/SuperConverter-B-c9oe1O.es.js
|
|
68331
68331
|
function getExtensionConfigField(extension$1, field, context = { name: "" }) {
|
|
68332
68332
|
const fieldValue = extension$1.config[field];
|
|
68333
68333
|
if (typeof fieldValue === "function")
|
|
@@ -103549,7 +103549,7 @@ function compareLogicalFamily(a, b) {
|
|
|
103549
103549
|
return a.logicalFamily.localeCompare(b.logicalFamily, "en", { sensitivity: "base" });
|
|
103550
103550
|
}
|
|
103551
103551
|
function getBuiltInToolbarFontOfferings() {
|
|
103552
|
-
return FONT_OFFERINGS.filter((o) => o.
|
|
103552
|
+
return FONT_OFFERINGS.filter((o) => o.bundled && BUILT_IN_TOOLBAR_BASELINE_FAMILIES.has(o.logicalFamily)).sort(compareLogicalFamily);
|
|
103553
103553
|
}
|
|
103554
103554
|
function fontOfferingStack(offering) {
|
|
103555
103555
|
return `${offering.logicalFamily}, ${offering.generic}`;
|
|
@@ -131055,7 +131055,7 @@ var isRegExp = (value) => {
|
|
|
131055
131055
|
const detail = sources && sources.length ? ` from ${sources.join(", ")}` : "";
|
|
131056
131056
|
console.warn(`[superdoc] font asset failed to load for "${family$1}"${detail}. Check fonts.assetBaseUrl / fonts.resolveAssetUrl so the bundled .woff2 are served.`);
|
|
131057
131057
|
}
|
|
131058
|
-
}, registriesByFontSet, domlessRegistry = null, BUNDLED_FAMILIES, SUPPORTED_ALIAS_FAMILIES,
|
|
131058
|
+
}, registriesByFontSet, domlessRegistry = null, BUNDLED_FAMILIES, SUPPORTED_ALIAS_FAMILIES, BUILT_IN_TOOLBAR_BASELINE_FAMILIES, FONT_OFFERINGS, prepareCommentParaIds = (comment) => {
|
|
131059
131059
|
return {
|
|
131060
131060
|
...comment,
|
|
131061
131061
|
commentParaId: generateDocxRandomId()
|
|
@@ -135176,7 +135176,7 @@ var isRegExp = (value) => {
|
|
|
135176
135176
|
sourceId: stringOf(primary.sourceId),
|
|
135177
135177
|
revisionGroupId: stringOf(primary.revisionGroupId) || representativeRevisionId
|
|
135178
135178
|
});
|
|
135179
|
-
}, stringOf = (value) => typeof value === "string" ? value : value == null ? "" : String(value), groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", SDT_INLINE_NAME = "structuredContent", SDT_NODE_TYPES, VALID_CONTROL_TYPES, VALID_LOCK_MODES2, VALID_APPEARANCES, FIELD_LIKE_SDT_TYPES, liveDocumentCountsCache, BIBLIOGRAPHY_NAMESPACE_URI = "http://schemas.openxmlformats.org/officeDocument/2006/bibliography", CUSTOM_XML_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", DEFAULT_SELECTED_STYLE = "/APA.XSL", DEFAULT_STYLE_NAME = "APA", DEFAULT_VERSION = "6", API_TO_OOXML_SOURCE_TYPE, OOXML_TO_API_SOURCE_TYPE, SIMPLE_FIELD_TO_XML_TAG, XML_TAG_TO_SIMPLE_FIELD, import_lib2, FONT_FAMILY_FALLBACKS, DEFAULT_GENERIC_FALLBACK = "sans-serif", DEFAULT_FONT_SIZE_PT = 10, CURRENT_APP_VERSION = "1.
|
|
135179
|
+
}, stringOf = (value) => typeof value === "string" ? value : value == null ? "" : String(value), groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", SDT_INLINE_NAME = "structuredContent", SDT_NODE_TYPES, VALID_CONTROL_TYPES, VALID_LOCK_MODES2, VALID_APPEARANCES, FIELD_LIKE_SDT_TYPES, liveDocumentCountsCache, BIBLIOGRAPHY_NAMESPACE_URI = "http://schemas.openxmlformats.org/officeDocument/2006/bibliography", CUSTOM_XML_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", DEFAULT_SELECTED_STYLE = "/APA.XSL", DEFAULT_STYLE_NAME = "APA", DEFAULT_VERSION = "6", API_TO_OOXML_SOURCE_TYPE, OOXML_TO_API_SOURCE_TYPE, SIMPLE_FIELD_TO_XML_TAG, XML_TAG_TO_SIMPLE_FIELD, import_lib2, FONT_FAMILY_FALLBACKS, DEFAULT_GENERIC_FALLBACK = "sans-serif", DEFAULT_FONT_SIZE_PT = 10, CURRENT_APP_VERSION = "1.40.0", SUPERDOC_DOCUMENT_ORIGIN_PROPERTY = "SuperdocDocumentOrigin", STORED_DOCUMENT_ORIGINS, collectRunDefaultProperties = (runProps, { allowOverrideTypeface = true, allowOverrideSize = true, themeResolver, state }) => {
|
|
135180
135180
|
if (!runProps?.elements?.length || !state)
|
|
135181
135181
|
return;
|
|
135182
135182
|
const fontsNode = runProps.elements.find((el) => el.name === "w:rFonts");
|
|
@@ -135210,7 +135210,7 @@ var isRegExp = (value) => {
|
|
|
135210
135210
|
state.kern = kernNode.attributes["w:val"];
|
|
135211
135211
|
}
|
|
135212
135212
|
}, SuperConverter;
|
|
135213
|
-
var
|
|
135213
|
+
var init_SuperConverter_B_c9oe1O_es = __esm(() => {
|
|
135214
135214
|
init_rolldown_runtime_Bg48TavK_es();
|
|
135215
135215
|
init_jszip_C49i9kUs_es();
|
|
135216
135216
|
init_xml_js_CqGKpaft_es();
|
|
@@ -174140,24 +174140,11 @@ var init_SuperConverter_DAuqlmYY_es = __esm(() => {
|
|
|
174140
174140
|
"Courier",
|
|
174141
174141
|
"Times"
|
|
174142
174142
|
]);
|
|
174143
|
-
|
|
174144
|
-
"Arial
|
|
174145
|
-
"
|
|
174146
|
-
"Baskerville Old Face",
|
|
174147
|
-
"Bookman Old Style",
|
|
174148
|
-
"Brush Script MT",
|
|
174149
|
-
"Century",
|
|
174150
|
-
"Century Gothic",
|
|
174151
|
-
"Cooper Black",
|
|
174152
|
-
"Comic Sans MS",
|
|
174153
|
-
"Garamond",
|
|
174143
|
+
BUILT_IN_TOOLBAR_BASELINE_FAMILIES = new Set([
|
|
174144
|
+
"Arial",
|
|
174145
|
+
"Courier New",
|
|
174154
174146
|
"Georgia",
|
|
174155
|
-
"
|
|
174156
|
-
"Lucida Console",
|
|
174157
|
-
"Segoe UI",
|
|
174158
|
-
"Tahoma",
|
|
174159
|
-
"Trebuchet MS",
|
|
174160
|
-
"Verdana"
|
|
174147
|
+
"Times New Roman"
|
|
174161
174148
|
]);
|
|
174162
174149
|
FONT_OFFERINGS = deriveOfferings();
|
|
174163
174150
|
ALL_COMMENT_TARGETS = COMMENT_FILE_BASENAMES;
|
|
@@ -175954,7 +175941,7 @@ var init_SuperConverter_DAuqlmYY_es = __esm(() => {
|
|
|
175954
175941
|
};
|
|
175955
175942
|
});
|
|
175956
175943
|
|
|
175957
|
-
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-
|
|
175944
|
+
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-D5MP8sn4.es.js
|
|
175958
175945
|
function parseSizeUnit(val = "0") {
|
|
175959
175946
|
const length3 = val.toString() || "0";
|
|
175960
175947
|
const value = Number.parseFloat(length3);
|
|
@@ -186603,8 +186590,8 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, normalizeActorId = (value) => {
|
|
|
186603
186590
|
}
|
|
186604
186591
|
};
|
|
186605
186592
|
};
|
|
186606
|
-
var
|
|
186607
|
-
|
|
186593
|
+
var init_create_headless_toolbar_D5MP8sn4_es = __esm(() => {
|
|
186594
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
186608
186595
|
init_uuid_B2wVPhPi_es();
|
|
186609
186596
|
init_constants_D9qj59G2_es();
|
|
186610
186597
|
init_dist_B8HfvhaK_es();
|
|
@@ -235773,7 +235760,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
235773
235760
|
init_remark_gfm_BhnWr3yf_es();
|
|
235774
235761
|
});
|
|
235775
235762
|
|
|
235776
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
235763
|
+
// ../../packages/superdoc/dist/chunks/src-6DTL8c0l.es.js
|
|
235777
235764
|
function deleteProps(obj, propOrProps) {
|
|
235778
235765
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
235779
235766
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -235847,7 +235834,7 @@ function prosemirrorToYXmlFragment(doc$12, xmlFragment) {
|
|
|
235847
235834
|
}
|
|
235848
235835
|
function getSuperdocVersion() {
|
|
235849
235836
|
try {
|
|
235850
|
-
return "1.
|
|
235837
|
+
return "1.40.0";
|
|
235851
235838
|
} catch {
|
|
235852
235839
|
return "unknown";
|
|
235853
235840
|
}
|
|
@@ -313424,7 +313411,7 @@ var Node$13 = class Node$14 {
|
|
|
313424
313411
|
domAvailabilityCache = false;
|
|
313425
313412
|
return false;
|
|
313426
313413
|
}
|
|
313427
|
-
}, summaryVersion = "1.
|
|
313414
|
+
}, summaryVersion = "1.40.0", nodeKeys, markKeys, transformListsInCopiedContent = (html3) => {
|
|
313428
313415
|
const container = document.createElement("div");
|
|
313429
313416
|
container.innerHTML = html3;
|
|
313430
313417
|
const result = [];
|
|
@@ -314610,7 +314597,7 @@ var Node$13 = class Node$14 {
|
|
|
314610
314597
|
return () => {};
|
|
314611
314598
|
const handle3 = setInterval(callback, intervalMs);
|
|
314612
314599
|
return () => clearInterval(handle3);
|
|
314613
|
-
}, HISTORY_UNSAFE_OPS, CANONICAL_COMMENT_IGNORED_KEYS, INITIAL_HASH, ROUND_CONSTANTS, V1_COVERAGE, V2_COVERAGE, SNAPSHOT_VERSION_V2 = "sd-diff-snapshot/v2", PAYLOAD_VERSION_V1 = "sd-diff-payload/v1", PAYLOAD_VERSION_V2 = "sd-diff-payload/v2", ENGINE_ID = "super-editor", STAGED_CONVERTER_KEYS, DiffServiceError, TC_LEVEL_MIN = 1, TC_LEVEL_MAX = 9, ALLOWED_WRAP_ATTRS, WRAP_TYPES_SUPPORTING_SIDE, WRAP_TYPES_SUPPORTING_DISTANCES, RELATIVE_HEIGHT_MIN = 0, RELATIVE_HEIGHT_MAX = 4294967295, FORBIDDEN_RAW_PATCH_NAMES, CONTROL_TYPE_SDT_PR_ELEMENTS, DEFAULT_CHECKBOX_SYMBOL_FONT2 = "MS Gothic", DEFAULT_CHECKBOX_CHECKED_HEX2 = "2612", DEFAULT_CHECKBOX_UNCHECKED_HEX2 = "2610", VARIANT_ORDER, KIND_ORDER, HEADER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header", FOOTER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer", DOCUMENT_RELS_PATH2 = "word/_rels/document.xml.rels", HEADER_FILE_PATTERN2, FOOTER_FILE_PATTERN2, SPECIAL_NOTE_TYPES, BOOKMARK_SCAN_REVISION_PREFIX = "bookmark-scan:", import_lib4, CUSTOM_XML_DATA_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE2 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", CUSTOM_XML_DATASTORE_NAMESPACE = "http://schemas.openxmlformats.org/officeDocument/2006/customXml", SETTINGS_PART, RESTART_POLICY_TO_OOXML, VALID_DISPLAYS, REFERENCE_BLOCK_PREFIX, CAPTION_STYLE_NAMES, CAPTION_PARAGRAPH_STYLE_ID = "Caption", CAPTION_FORMAT_TO_OOXML, DOCUMENT_STAT_FIELD_TYPES, TOA_LEADER_REVERSE_MAP, EDGE_NODE_TYPES, CONTENT_TYPES_PART_ID = "[Content_Types].xml", CONTENT_TYPES_NS = "http://schemas.openxmlformats.org/package/2006/content-types", contentTypesPartDescriptor, empty_exports, init_empty, CURRENT_APP_VERSION2 = "1.
|
|
314600
|
+
}, HISTORY_UNSAFE_OPS, CANONICAL_COMMENT_IGNORED_KEYS, INITIAL_HASH, ROUND_CONSTANTS, V1_COVERAGE, V2_COVERAGE, SNAPSHOT_VERSION_V2 = "sd-diff-snapshot/v2", PAYLOAD_VERSION_V1 = "sd-diff-payload/v1", PAYLOAD_VERSION_V2 = "sd-diff-payload/v2", ENGINE_ID = "super-editor", STAGED_CONVERTER_KEYS, DiffServiceError, TC_LEVEL_MIN = 1, TC_LEVEL_MAX = 9, ALLOWED_WRAP_ATTRS, WRAP_TYPES_SUPPORTING_SIDE, WRAP_TYPES_SUPPORTING_DISTANCES, RELATIVE_HEIGHT_MIN = 0, RELATIVE_HEIGHT_MAX = 4294967295, FORBIDDEN_RAW_PATCH_NAMES, CONTROL_TYPE_SDT_PR_ELEMENTS, DEFAULT_CHECKBOX_SYMBOL_FONT2 = "MS Gothic", DEFAULT_CHECKBOX_CHECKED_HEX2 = "2612", DEFAULT_CHECKBOX_UNCHECKED_HEX2 = "2610", VARIANT_ORDER, KIND_ORDER, HEADER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header", FOOTER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer", DOCUMENT_RELS_PATH2 = "word/_rels/document.xml.rels", HEADER_FILE_PATTERN2, FOOTER_FILE_PATTERN2, SPECIAL_NOTE_TYPES, BOOKMARK_SCAN_REVISION_PREFIX = "bookmark-scan:", import_lib4, CUSTOM_XML_DATA_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE2 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", CUSTOM_XML_DATASTORE_NAMESPACE = "http://schemas.openxmlformats.org/officeDocument/2006/customXml", SETTINGS_PART, RESTART_POLICY_TO_OOXML, VALID_DISPLAYS, REFERENCE_BLOCK_PREFIX, CAPTION_STYLE_NAMES, CAPTION_PARAGRAPH_STYLE_ID = "Caption", CAPTION_FORMAT_TO_OOXML, DOCUMENT_STAT_FIELD_TYPES, TOA_LEADER_REVERSE_MAP, EDGE_NODE_TYPES, CONTENT_TYPES_PART_ID = "[Content_Types].xml", CONTENT_TYPES_NS = "http://schemas.openxmlformats.org/package/2006/content-types", contentTypesPartDescriptor, empty_exports, init_empty, CURRENT_APP_VERSION2 = "1.40.0", PIXELS_PER_INCH2 = 96, MAX_HEIGHT_BUFFER_PX = 50, MAX_WIDTH_BUFFER_PX = 20, TRACKED_REVIEW_MARK_NAMES2, isTrackedReviewMark = (mark2) => Boolean(mark2?.type?.name && TRACKED_REVIEW_MARK_NAMES2.has(mark2.type.name)), trackedReviewMarkKey = (mark2) => {
|
|
314614
314601
|
if (!isTrackedReviewMark(mark2))
|
|
314615
314602
|
return null;
|
|
314616
314603
|
const id2 = typeof mark2.attrs?.id === "string" ? mark2.attrs.id : "";
|
|
@@ -334150,13 +334137,13 @@ menclose::after {
|
|
|
334150
334137
|
return;
|
|
334151
334138
|
console.log(...args$1);
|
|
334152
334139
|
}, HEADER_FOOTER_INIT_BUDGET_MS = 200, MAX_ZOOM_WARNING_THRESHOLD = 10, MAX_SELECTION_RECTS_PER_USER = 100, SEMANTIC_RESIZE_DEBOUNCE_MS = 120, MIN_SEMANTIC_CONTENT_WIDTH_PX = 1, GLOBAL_PERFORMANCE, PresentationEditor, ICONS, TEXTS, tableActionsOptions, TRACKED_MARK_NAMES;
|
|
334153
|
-
var
|
|
334140
|
+
var init_src_6DTL8c0l_es = __esm(() => {
|
|
334154
334141
|
init_rolldown_runtime_Bg48TavK_es();
|
|
334155
|
-
|
|
334142
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
334156
334143
|
init_jszip_C49i9kUs_es();
|
|
334157
334144
|
init_xml_js_CqGKpaft_es();
|
|
334158
334145
|
init_uuid_B2wVPhPi_es();
|
|
334159
|
-
|
|
334146
|
+
init_create_headless_toolbar_D5MP8sn4_es();
|
|
334160
334147
|
init_constants_D9qj59G2_es();
|
|
334161
334148
|
init_dist_B8HfvhaK_es();
|
|
334162
334149
|
init_unified_Dsuw2be5_es();
|
|
@@ -369943,11 +369930,11 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
369943
369930
|
]);
|
|
369944
369931
|
});
|
|
369945
369932
|
|
|
369946
|
-
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-
|
|
369933
|
+
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-BoJ3k-UK.es.js
|
|
369947
369934
|
var DEFAULT_TEXT_ALIGN_OPTIONS, DEFAULT_LINE_HEIGHT_OPTIONS, DEFAULT_ZOOM_OPTIONS, DEFAULT_DOCUMENT_MODE_OPTIONS, DEFAULT_FONT_SIZE_OPTIONS, headlessToolbarConstants, MOD_ALIASES, ALT_ALIASES, CTRL_ALIASES, SHIFT_ALIASES, BUILTIN_CONTEXT_MENU_GROUPS, BUILTIN_GROUP_ORDER, RESERVED_PROXY_PROPERTY_NAMES, ALL_TOOLBAR_COMMAND_IDS, EMPTY_ACTIVE_IDS, FONT_SIZE_OPTIONS;
|
|
369948
|
-
var
|
|
369949
|
-
|
|
369950
|
-
|
|
369935
|
+
var init_create_super_doc_ui_BoJ3k_UK_es = __esm(() => {
|
|
369936
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
369937
|
+
init_create_headless_toolbar_D5MP8sn4_es();
|
|
369951
369938
|
DEFAULT_TEXT_ALIGN_OPTIONS = [
|
|
369952
369939
|
{
|
|
369953
369940
|
label: "Left",
|
|
@@ -370238,16 +370225,16 @@ var init_zipper_yaJVJ4z9_es = __esm(() => {
|
|
|
370238
370225
|
|
|
370239
370226
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
370240
370227
|
var init_super_editor_es = __esm(() => {
|
|
370241
|
-
|
|
370242
|
-
|
|
370228
|
+
init_src_6DTL8c0l_es();
|
|
370229
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
370243
370230
|
init_jszip_C49i9kUs_es();
|
|
370244
370231
|
init_xml_js_CqGKpaft_es();
|
|
370245
|
-
|
|
370232
|
+
init_create_headless_toolbar_D5MP8sn4_es();
|
|
370246
370233
|
init_constants_D9qj59G2_es();
|
|
370247
370234
|
init_dist_B8HfvhaK_es();
|
|
370248
370235
|
init_unified_Dsuw2be5_es();
|
|
370249
370236
|
init_DocxZipper_FUsfThjV_es();
|
|
370250
|
-
|
|
370237
|
+
init_create_super_doc_ui_BoJ3k_UK_es();
|
|
370251
370238
|
init_ui_C5PAS9hY_es();
|
|
370252
370239
|
init_eventemitter3_BnGqBE_Q_es();
|
|
370253
370240
|
init_errors_CNaD6vcg_es();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdoc-dev/cli",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"superdoc": "./dist/index.js"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@types/ws": "^8.5.13",
|
|
26
26
|
"typescript": "^5.9.2",
|
|
27
27
|
"@superdoc/document-api": "0.0.1",
|
|
28
|
-
"superdoc": "1.
|
|
28
|
+
"superdoc": "1.40.0",
|
|
29
29
|
"@superdoc/super-editor": "0.0.1"
|
|
30
30
|
},
|
|
31
31
|
"module": "src/index.ts",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@superdoc-dev/cli-darwin-arm64": "0.17.
|
|
37
|
-
"@superdoc-dev/cli-darwin-x64": "0.17.
|
|
38
|
-
"@superdoc-dev/cli-linux-x64": "0.17.
|
|
39
|
-
"@superdoc-dev/cli-
|
|
40
|
-
"@superdoc-dev/cli-
|
|
36
|
+
"@superdoc-dev/cli-darwin-arm64": "0.17.1",
|
|
37
|
+
"@superdoc-dev/cli-darwin-x64": "0.17.1",
|
|
38
|
+
"@superdoc-dev/cli-linux-x64": "0.17.1",
|
|
39
|
+
"@superdoc-dev/cli-windows-x64": "0.17.1",
|
|
40
|
+
"@superdoc-dev/cli-linux-arm64": "0.17.1"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"predev": "node scripts/ensure-superdoc-build.js",
|