oxfmt 0.41.0 → 0.42.0
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/configuration_schema.json +78 -0
- package/dist/{apis-CF7S9zfN.js → apis-B6IsFaEf.js} +10 -2
- package/dist/cli-worker.js +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +102 -2
- package/dist/index.js +1 -1
- package/dist/{prettier-plugin-oxfmt-BqWJLUOn.js → prettier-plugin-oxfmt-DkmSndQ0.js} +1 -1
- package/package.json +20 -20
|
@@ -63,6 +63,15 @@
|
|
|
63
63
|
"type": "boolean",
|
|
64
64
|
"markdownDescription": "Whether to insert a final newline at the end of the file.\n\n- Default: `true`\n- Overrides `.editorconfig.insert_final_newline`"
|
|
65
65
|
},
|
|
66
|
+
"jsdoc": {
|
|
67
|
+
"description": "Enable JSDoc comment formatting.\n\nWhen enabled, JSDoc comments are normalized and reformatted:\ntag aliases are canonicalized, descriptions are capitalized,\nlong lines are wrapped, and short comments are collapsed to single-line.\n\nPass an object (`jsdoc: {}`) to enable with defaults, or omit to disable.\n\n- Default: Disabled",
|
|
68
|
+
"allOf": [
|
|
69
|
+
{
|
|
70
|
+
"$ref": "#/definitions/JsdocConfig"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"markdownDescription": "Enable JSDoc comment formatting.\n\nWhen enabled, JSDoc comments are normalized and reformatted:\ntag aliases are canonicalized, descriptions are capitalized,\nlong lines are wrapped, and short comments are collapsed to single-line.\n\nPass an object (`jsdoc: {}`) to enable with defaults, or omit to disable.\n\n- Default: Disabled"
|
|
74
|
+
},
|
|
66
75
|
"jsxSingleQuote": {
|
|
67
76
|
"description": "Use single quotes instead of double quotes in JSX.\n\n- Default: `false`",
|
|
68
77
|
"type": "boolean",
|
|
@@ -291,6 +300,15 @@
|
|
|
291
300
|
"type": "boolean",
|
|
292
301
|
"markdownDescription": "Whether to insert a final newline at the end of the file.\n\n- Default: `true`\n- Overrides `.editorconfig.insert_final_newline`"
|
|
293
302
|
},
|
|
303
|
+
"jsdoc": {
|
|
304
|
+
"description": "Enable JSDoc comment formatting.\n\nWhen enabled, JSDoc comments are normalized and reformatted:\ntag aliases are canonicalized, descriptions are capitalized,\nlong lines are wrapped, and short comments are collapsed to single-line.\n\nPass an object (`jsdoc: {}`) to enable with defaults, or omit to disable.\n\n- Default: Disabled",
|
|
305
|
+
"allOf": [
|
|
306
|
+
{
|
|
307
|
+
"$ref": "#/definitions/JsdocConfig"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"markdownDescription": "Enable JSDoc comment formatting.\n\nWhen enabled, JSDoc comments are normalized and reformatted:\ntag aliases are canonicalized, descriptions are capitalized,\nlong lines are wrapped, and short comments are collapsed to single-line.\n\nPass an object (`jsdoc: {}`) to enable with defaults, or omit to disable.\n\n- Default: Disabled"
|
|
311
|
+
},
|
|
294
312
|
"jsxSingleQuote": {
|
|
295
313
|
"description": "Use single quotes instead of double quotes in JSX.\n\n- Default: `false`",
|
|
296
314
|
"type": "boolean",
|
|
@@ -408,6 +426,66 @@
|
|
|
408
426
|
"ignore"
|
|
409
427
|
]
|
|
410
428
|
},
|
|
429
|
+
"JsdocConfig": {
|
|
430
|
+
"type": "object",
|
|
431
|
+
"properties": {
|
|
432
|
+
"addDefaultToDescription": {
|
|
433
|
+
"description": "Append default values to `@param` descriptions (e.g. \"Default is `value`\").\n\n- Default: `true`",
|
|
434
|
+
"type": "boolean",
|
|
435
|
+
"markdownDescription": "Append default values to `@param` descriptions (e.g. \"Default is `value`\").\n\n- Default: `true`"
|
|
436
|
+
},
|
|
437
|
+
"bracketSpacing": {
|
|
438
|
+
"description": "Add spaces inside JSDoc type braces: `{string}` → `{ string }`.\n\n- Default: `false`",
|
|
439
|
+
"type": "boolean",
|
|
440
|
+
"markdownDescription": "Add spaces inside JSDoc type braces: `{string}` → `{ string }`.\n\n- Default: `false`"
|
|
441
|
+
},
|
|
442
|
+
"capitalizeDescriptions": {
|
|
443
|
+
"description": "Capitalize the first letter of tag descriptions.\n\n- Default: `true`",
|
|
444
|
+
"type": "boolean",
|
|
445
|
+
"markdownDescription": "Capitalize the first letter of tag descriptions.\n\n- Default: `true`"
|
|
446
|
+
},
|
|
447
|
+
"commentLineStrategy": {
|
|
448
|
+
"description": "How to format comment blocks.\n\n- `\"singleLine\"` — Convert to single-line `/** content */` when possible.\n- `\"multiline\"` — Always use multi-line format.\n- `\"keep\"` — Preserve original formatting.\n\n- Default: `\"singleLine\"`",
|
|
449
|
+
"type": "string",
|
|
450
|
+
"markdownDescription": "How to format comment blocks.\n\n- `\"singleLine\"` — Convert to single-line `/** content */` when possible.\n- `\"multiline\"` — Always use multi-line format.\n- `\"keep\"` — Preserve original formatting.\n\n- Default: `\"singleLine\"`"
|
|
451
|
+
},
|
|
452
|
+
"descriptionTag": {
|
|
453
|
+
"description": "Emit `@description` tag instead of inline description.\n\n- Default: `false`",
|
|
454
|
+
"type": "boolean",
|
|
455
|
+
"markdownDescription": "Emit `@description` tag instead of inline description.\n\n- Default: `false`"
|
|
456
|
+
},
|
|
457
|
+
"descriptionWithDot": {
|
|
458
|
+
"description": "Add a trailing dot to the end of descriptions.\n\n- Default: `false`",
|
|
459
|
+
"type": "boolean",
|
|
460
|
+
"markdownDescription": "Add a trailing dot to the end of descriptions.\n\n- Default: `false`"
|
|
461
|
+
},
|
|
462
|
+
"keepUnparsableExampleIndent": {
|
|
463
|
+
"description": "Preserve indentation in unparsable `@example` code.\n\n- Default: `false`",
|
|
464
|
+
"type": "boolean",
|
|
465
|
+
"markdownDescription": "Preserve indentation in unparsable `@example` code.\n\n- Default: `false`"
|
|
466
|
+
},
|
|
467
|
+
"lineWrappingStyle": {
|
|
468
|
+
"description": "Strategy for wrapping description lines at print width.\n\n- `\"greedy\"` — Always re-wrap text to fit within print width.\n- `\"balance\"` — Preserve original line breaks if all lines fit within print width.\n\n- Default: `\"greedy\"`",
|
|
469
|
+
"type": "string",
|
|
470
|
+
"markdownDescription": "Strategy for wrapping description lines at print width.\n\n- `\"greedy\"` — Always re-wrap text to fit within print width.\n- `\"balance\"` — Preserve original line breaks if all lines fit within print width.\n\n- Default: `\"greedy\"`"
|
|
471
|
+
},
|
|
472
|
+
"preferCodeFences": {
|
|
473
|
+
"description": "Use fenced code blocks (```` ``` ````) instead of 4-space indentation for code without a language tag.\n\n- Default: `false`",
|
|
474
|
+
"type": "boolean",
|
|
475
|
+
"markdownDescription": "Use fenced code blocks (```` ``` ````) instead of 4-space indentation for code without a language tag.\n\n- Default: `false`"
|
|
476
|
+
},
|
|
477
|
+
"separateReturnsFromParam": {
|
|
478
|
+
"description": "Add a blank line between the last `@param` and `@returns`.\n\n- Default: `false`",
|
|
479
|
+
"type": "boolean",
|
|
480
|
+
"markdownDescription": "Add a blank line between the last `@param` and `@returns`.\n\n- Default: `false`"
|
|
481
|
+
},
|
|
482
|
+
"separateTagGroups": {
|
|
483
|
+
"description": "Add blank lines between different tag groups (e.g. between `@param` and `@returns`).\n\n- Default: `false`",
|
|
484
|
+
"type": "boolean",
|
|
485
|
+
"markdownDescription": "Add blank lines between different tag groups (e.g. between `@param` and `@returns`).\n\n- Default: `false`"
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
411
489
|
"NewlinesBetweenMarker": {
|
|
412
490
|
"description": "A marker object for overriding `newlinesBetween` at a specific group boundary.",
|
|
413
491
|
"type": "object",
|
|
@@ -3,6 +3,9 @@ let prettierCache;
|
|
|
3
3
|
async function loadPrettier() {
|
|
4
4
|
if (prettierCache) return prettierCache;
|
|
5
5
|
prettierCache = await import("./prettier-DmvT5K0i.js");
|
|
6
|
+
const { formatOptionsHiddenDefaults } = prettierCache.__internal;
|
|
7
|
+
formatOptionsHiddenDefaults.parentParser = null;
|
|
8
|
+
formatOptionsHiddenDefaults.__onHtmlRoot = null;
|
|
6
9
|
return prettierCache;
|
|
7
10
|
}
|
|
8
11
|
/**
|
|
@@ -55,10 +58,15 @@ async function formatEmbeddedDoc({ texts, options }) {
|
|
|
55
58
|
const prettier = await loadPrettier();
|
|
56
59
|
await setupTailwindPlugin(options);
|
|
57
60
|
return Promise.all(texts.map(async (text) => {
|
|
61
|
+
const metadata = {};
|
|
62
|
+
if (options.parser === "html") {
|
|
63
|
+
options.parentParser = "OXFMT";
|
|
64
|
+
options.__onHtmlRoot = (root) => metadata.htmlHasMultipleRootElements = (root.children?.length ?? 0) > 1;
|
|
65
|
+
}
|
|
58
66
|
const doc = await prettier.__debug.printToDoc(text, options);
|
|
59
67
|
const symbolToNumber = /* @__PURE__ */ new Map();
|
|
60
68
|
let nextId = 1;
|
|
61
|
-
return JSON.stringify(doc, (_key, value) => {
|
|
69
|
+
return JSON.stringify([doc, metadata], (_key, value) => {
|
|
62
70
|
if (typeof value === "symbol") {
|
|
63
71
|
if (!symbolToNumber.has(value)) symbolToNumber.set(value, nextId++);
|
|
64
72
|
return symbolToNumber.get(value);
|
|
@@ -104,7 +112,7 @@ async function sortTailwindClasses({ classes, options }) {
|
|
|
104
112
|
let oxfmtPluginCache;
|
|
105
113
|
async function loadOxfmtPlugin() {
|
|
106
114
|
if (oxfmtPluginCache) return oxfmtPluginCache;
|
|
107
|
-
oxfmtPluginCache = await import("./prettier-plugin-oxfmt-
|
|
115
|
+
oxfmtPluginCache = await import("./prettier-plugin-oxfmt-DkmSndQ0.js");
|
|
108
116
|
return oxfmtPluginCache;
|
|
109
117
|
}
|
|
110
118
|
/**
|
package/dist/cli-worker.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as sortTailwindClasses, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-
|
|
1
|
+
import { a as sortTailwindClasses, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-B6IsFaEf.js";
|
|
2
2
|
export { formatEmbeddedCode, formatEmbeddedDoc, formatFile, sortTailwindClasses };
|
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as runCli } from "./bindings-D6U4DxG3.js";
|
|
2
|
-
import { i as resolvePlugins } from "./apis-
|
|
2
|
+
import { i as resolvePlugins } from "./apis-B6IsFaEf.js";
|
|
3
3
|
import Tinypool from "tinypool";
|
|
4
4
|
import { basename } from "node:path";
|
|
5
5
|
import { pathToFileURL } from "node:url";
|
package/dist/index.d.ts
CHANGED
|
@@ -98,6 +98,18 @@ interface Oxfmtrc {
|
|
|
98
98
|
* - Overrides `.editorconfig.insert_final_newline`
|
|
99
99
|
*/
|
|
100
100
|
insertFinalNewline?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Enable JSDoc comment formatting.
|
|
103
|
+
*
|
|
104
|
+
* When enabled, JSDoc comments are normalized and reformatted:
|
|
105
|
+
* tag aliases are canonicalized, descriptions are capitalized,
|
|
106
|
+
* long lines are wrapped, and short comments are collapsed to single-line.
|
|
107
|
+
*
|
|
108
|
+
* Pass an object (`jsdoc: {}`) to enable with defaults, or omit to disable.
|
|
109
|
+
*
|
|
110
|
+
* - Default: Disabled
|
|
111
|
+
*/
|
|
112
|
+
jsdoc?: JsdocConfig;
|
|
101
113
|
/**
|
|
102
114
|
* Use single quotes instead of double quotes in JSX.
|
|
103
115
|
*
|
|
@@ -224,6 +236,82 @@ interface Oxfmtrc {
|
|
|
224
236
|
vueIndentScriptAndStyle?: boolean;
|
|
225
237
|
[k: string]: unknown;
|
|
226
238
|
}
|
|
239
|
+
interface JsdocConfig {
|
|
240
|
+
/**
|
|
241
|
+
* Append default values to `@param` descriptions (e.g. "Default is `value`").
|
|
242
|
+
*
|
|
243
|
+
* - Default: `true`
|
|
244
|
+
*/
|
|
245
|
+
addDefaultToDescription?: boolean;
|
|
246
|
+
/**
|
|
247
|
+
* Add spaces inside JSDoc type braces: `{string}` → `{ string }`.
|
|
248
|
+
*
|
|
249
|
+
* - Default: `false`
|
|
250
|
+
*/
|
|
251
|
+
bracketSpacing?: boolean;
|
|
252
|
+
/**
|
|
253
|
+
* Capitalize the first letter of tag descriptions.
|
|
254
|
+
*
|
|
255
|
+
* - Default: `true`
|
|
256
|
+
*/
|
|
257
|
+
capitalizeDescriptions?: boolean;
|
|
258
|
+
/**
|
|
259
|
+
* How to format comment blocks.
|
|
260
|
+
*
|
|
261
|
+
* - `"singleLine"` — Convert to single-line `/** content * /` when possible.
|
|
262
|
+
* - `"multiline"` — Always use multi-line format.
|
|
263
|
+
* - `"keep"` — Preserve original formatting.
|
|
264
|
+
*
|
|
265
|
+
* - Default: `"singleLine"`
|
|
266
|
+
*/
|
|
267
|
+
commentLineStrategy?: string;
|
|
268
|
+
/**
|
|
269
|
+
* Emit `@description` tag instead of inline description.
|
|
270
|
+
*
|
|
271
|
+
* - Default: `false`
|
|
272
|
+
*/
|
|
273
|
+
descriptionTag?: boolean;
|
|
274
|
+
/**
|
|
275
|
+
* Add a trailing dot to the end of descriptions.
|
|
276
|
+
*
|
|
277
|
+
* - Default: `false`
|
|
278
|
+
*/
|
|
279
|
+
descriptionWithDot?: boolean;
|
|
280
|
+
/**
|
|
281
|
+
* Preserve indentation in unparsable `@example` code.
|
|
282
|
+
*
|
|
283
|
+
* - Default: `false`
|
|
284
|
+
*/
|
|
285
|
+
keepUnparsableExampleIndent?: boolean;
|
|
286
|
+
/**
|
|
287
|
+
* Strategy for wrapping description lines at print width.
|
|
288
|
+
*
|
|
289
|
+
* - `"greedy"` — Always re-wrap text to fit within print width.
|
|
290
|
+
* - `"balance"` — Preserve original line breaks if all lines fit within print width.
|
|
291
|
+
*
|
|
292
|
+
* - Default: `"greedy"`
|
|
293
|
+
*/
|
|
294
|
+
lineWrappingStyle?: string;
|
|
295
|
+
/**
|
|
296
|
+
* Use fenced code blocks (```` ``` ````) instead of 4-space indentation for code without a language tag.
|
|
297
|
+
*
|
|
298
|
+
* - Default: `false`
|
|
299
|
+
*/
|
|
300
|
+
preferCodeFences?: boolean;
|
|
301
|
+
/**
|
|
302
|
+
* Add a blank line between the last `@param` and `@returns`.
|
|
303
|
+
*
|
|
304
|
+
* - Default: `false`
|
|
305
|
+
*/
|
|
306
|
+
separateReturnsFromParam?: boolean;
|
|
307
|
+
/**
|
|
308
|
+
* Add blank lines between different tag groups (e.g. between `@param` and `@returns`).
|
|
309
|
+
*
|
|
310
|
+
* - Default: `false`
|
|
311
|
+
*/
|
|
312
|
+
separateTagGroups?: boolean;
|
|
313
|
+
[k: string]: unknown;
|
|
314
|
+
}
|
|
227
315
|
interface OxfmtOverrideConfig {
|
|
228
316
|
/**
|
|
229
317
|
* Glob patterns to exclude from this override.
|
|
@@ -290,6 +378,18 @@ interface FormatConfig {
|
|
|
290
378
|
* - Overrides `.editorconfig.insert_final_newline`
|
|
291
379
|
*/
|
|
292
380
|
insertFinalNewline?: boolean;
|
|
381
|
+
/**
|
|
382
|
+
* Enable JSDoc comment formatting.
|
|
383
|
+
*
|
|
384
|
+
* When enabled, JSDoc comments are normalized and reformatted:
|
|
385
|
+
* tag aliases are canonicalized, descriptions are capitalized,
|
|
386
|
+
* long lines are wrapped, and short comments are collapsed to single-line.
|
|
387
|
+
*
|
|
388
|
+
* Pass an object (`jsdoc: {}`) to enable with defaults, or omit to disable.
|
|
389
|
+
*
|
|
390
|
+
* - Default: Disabled
|
|
391
|
+
*/
|
|
392
|
+
jsdoc?: JsdocConfig;
|
|
293
393
|
/**
|
|
294
394
|
* Use single quotes instead of double quotes in JSX.
|
|
295
395
|
*
|
|
@@ -639,7 +739,7 @@ interface SortTailwindcssConfig {
|
|
|
639
739
|
}
|
|
640
740
|
//#endregion
|
|
641
741
|
//#region src-js/index.d.ts
|
|
642
|
-
|
|
742
|
+
interface OxfmtConfig extends Oxfmtrc {}
|
|
643
743
|
/**
|
|
644
744
|
* Configuration options for the `format()` API.
|
|
645
745
|
*
|
|
@@ -673,4 +773,4 @@ declare function format(fileName: string, sourceText: string, options?: FormatCo
|
|
|
673
773
|
*/
|
|
674
774
|
declare function jsTextToDoc(sourceExt: string, sourceText: string, oxfmtPluginOptionsJson: string, parentContext: string): Promise<string | null>;
|
|
675
775
|
//#endregion
|
|
676
|
-
export {
|
|
776
|
+
export { ArrowParensConfig, CustomGroupItemConfig, EmbeddedLanguageFormattingConfig, EndOfLineConfig, FormatConfig, FormatOptions, HtmlWhitespaceSensitivityConfig, JsdocConfig, NewlinesBetweenMarker, ObjectWrapConfig, OxfmtConfig, OxfmtOverrideConfig, Oxfmtrc, ProseWrapConfig, QuotePropsConfig, SortGroupItemConfig, SortImportsConfig, SortImportsOptions, SortOrderConfig, SortPackageJsonConfig, SortPackageJsonOptions, SortPackageJsonUserConfig, SortTailwindcssConfig, SortTailwindcssOptions, TailwindcssOptions, TrailingCommaConfig, defineConfig, format, jsTextToDoc };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as jsTextToDoc$1, t as format$1 } from "./bindings-D6U4DxG3.js";
|
|
2
|
-
import { a as sortTailwindClasses, i as resolvePlugins, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-
|
|
2
|
+
import { a as sortTailwindClasses, i as resolvePlugins, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-B6IsFaEf.js";
|
|
3
3
|
//#region src-js/index.ts
|
|
4
4
|
/**
|
|
5
5
|
* Define an oxfmt configuration with type inference.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxfmt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.42.0",
|
|
4
4
|
"description": "Formatter for the JavaScript Oxidation Compiler",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"formatter",
|
|
@@ -67,24 +67,24 @@
|
|
|
67
67
|
},
|
|
68
68
|
"preferUnplugged": true,
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"@oxfmt/binding-darwin-arm64": "0.
|
|
71
|
-
"@oxfmt/binding-android-arm64": "0.
|
|
72
|
-
"@oxfmt/binding-win32-arm64-msvc": "0.
|
|
73
|
-
"@oxfmt/binding-linux-arm64-gnu": "0.
|
|
74
|
-
"@oxfmt/binding-linux-arm64-musl": "0.
|
|
75
|
-
"@oxfmt/binding-openharmony-arm64": "0.
|
|
76
|
-
"@oxfmt/binding-android-arm-eabi": "0.
|
|
77
|
-
"@oxfmt/binding-linux-arm-gnueabihf": "0.
|
|
78
|
-
"@oxfmt/binding-linux-arm-musleabihf": "0.
|
|
79
|
-
"@oxfmt/binding-win32-ia32-msvc": "0.
|
|
80
|
-
"@oxfmt/binding-linux-ppc64-gnu": "0.
|
|
81
|
-
"@oxfmt/binding-linux-riscv64-gnu": "0.
|
|
82
|
-
"@oxfmt/binding-linux-riscv64-musl": "0.
|
|
83
|
-
"@oxfmt/binding-linux-s390x-gnu": "0.
|
|
84
|
-
"@oxfmt/binding-darwin-x64": "0.
|
|
85
|
-
"@oxfmt/binding-win32-x64-msvc": "0.
|
|
86
|
-
"@oxfmt/binding-freebsd-x64": "0.
|
|
87
|
-
"@oxfmt/binding-linux-x64-gnu": "0.
|
|
88
|
-
"@oxfmt/binding-linux-x64-musl": "0.
|
|
70
|
+
"@oxfmt/binding-darwin-arm64": "0.42.0",
|
|
71
|
+
"@oxfmt/binding-android-arm64": "0.42.0",
|
|
72
|
+
"@oxfmt/binding-win32-arm64-msvc": "0.42.0",
|
|
73
|
+
"@oxfmt/binding-linux-arm64-gnu": "0.42.0",
|
|
74
|
+
"@oxfmt/binding-linux-arm64-musl": "0.42.0",
|
|
75
|
+
"@oxfmt/binding-openharmony-arm64": "0.42.0",
|
|
76
|
+
"@oxfmt/binding-android-arm-eabi": "0.42.0",
|
|
77
|
+
"@oxfmt/binding-linux-arm-gnueabihf": "0.42.0",
|
|
78
|
+
"@oxfmt/binding-linux-arm-musleabihf": "0.42.0",
|
|
79
|
+
"@oxfmt/binding-win32-ia32-msvc": "0.42.0",
|
|
80
|
+
"@oxfmt/binding-linux-ppc64-gnu": "0.42.0",
|
|
81
|
+
"@oxfmt/binding-linux-riscv64-gnu": "0.42.0",
|
|
82
|
+
"@oxfmt/binding-linux-riscv64-musl": "0.42.0",
|
|
83
|
+
"@oxfmt/binding-linux-s390x-gnu": "0.42.0",
|
|
84
|
+
"@oxfmt/binding-darwin-x64": "0.42.0",
|
|
85
|
+
"@oxfmt/binding-win32-x64-msvc": "0.42.0",
|
|
86
|
+
"@oxfmt/binding-freebsd-x64": "0.42.0",
|
|
87
|
+
"@oxfmt/binding-linux-x64-gnu": "0.42.0",
|
|
88
|
+
"@oxfmt/binding-linux-x64-musl": "0.42.0"
|
|
89
89
|
}
|
|
90
90
|
}
|