pull-request-split-advisor 3.1.2
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/LICENSE +52 -0
- package/README.md +168 -0
- package/dist/ai/config-wizard.js +282 -0
- package/dist/ai/enricher.js +290 -0
- package/dist/ai/prompts.js +231 -0
- package/dist/ai/provider.js +265 -0
- package/dist/cli.js +442 -0
- package/dist/config/config.js +315 -0
- package/dist/config/default-config.js +223 -0
- package/dist/core/blocks.js +145 -0
- package/dist/core/commit-planner.js +273 -0
- package/dist/core/dependency.js +284 -0
- package/dist/core/file-stats.js +341 -0
- package/dist/core/history.js +72 -0
- package/dist/core/planner.js +25 -0
- package/dist/core/scoring.js +166 -0
- package/dist/core/strategy.js +486 -0
- package/dist/git/branch-naming.js +120 -0
- package/dist/git/executor.js +378 -0
- package/dist/git/git.js +239 -0
- package/dist/output/report-styles.generated.js +10 -0
- package/dist/output/report.js +726 -0
- package/dist/output/ui.js +417 -0
- package/dist/shared/constants.js +59 -0
- package/dist/shared/types.js +7 -0
- package/dist/shared/utils.js +73 -0
- package/node_modules/@colors/colors/LICENSE +26 -0
- package/node_modules/@colors/colors/README.md +219 -0
- package/node_modules/@colors/colors/examples/normal-usage.js +83 -0
- package/node_modules/@colors/colors/examples/safe-string.js +80 -0
- package/node_modules/@colors/colors/index.d.ts +136 -0
- package/node_modules/@colors/colors/lib/colors.js +211 -0
- package/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- package/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
- package/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- package/node_modules/@colors/colors/lib/index.js +13 -0
- package/node_modules/@colors/colors/lib/maps/america.js +10 -0
- package/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
- package/node_modules/@colors/colors/lib/maps/random.js +11 -0
- package/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- package/node_modules/@colors/colors/lib/styles.js +95 -0
- package/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- package/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- package/node_modules/@colors/colors/package.json +45 -0
- package/node_modules/@colors/colors/safe.d.ts +48 -0
- package/node_modules/@colors/colors/safe.js +10 -0
- package/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- package/node_modules/ansi-align/LICENSE +13 -0
- package/node_modules/ansi-align/README.md +80 -0
- package/node_modules/ansi-align/index.js +61 -0
- package/node_modules/ansi-align/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/ansi-align/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-align/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-align/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/ansi-align/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/ansi-align/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/ansi-align/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/ansi-align/node_modules/string-width/index.js +47 -0
- package/node_modules/ansi-align/node_modules/string-width/license +9 -0
- package/node_modules/ansi-align/node_modules/string-width/package.json +56 -0
- package/node_modules/ansi-align/node_modules/string-width/readme.md +50 -0
- package/node_modules/ansi-align/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/ansi-align/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/ansi-align/node_modules/strip-ansi/license +9 -0
- package/node_modules/ansi-align/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/ansi-align/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/ansi-align/package.json +43 -0
- package/node_modules/ansi-regex/index.d.ts +33 -0
- package/node_modules/ansi-regex/index.js +14 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +61 -0
- package/node_modules/ansi-regex/readme.md +66 -0
- package/node_modules/ansi-styles/index.d.ts +236 -0
- package/node_modules/ansi-styles/index.js +223 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +54 -0
- package/node_modules/ansi-styles/readme.md +173 -0
- package/node_modules/boxen/index.d.ts +267 -0
- package/node_modules/boxen/index.js +376 -0
- package/node_modules/boxen/license +9 -0
- package/node_modules/boxen/package.json +69 -0
- package/node_modules/boxen/readme.md +300 -0
- package/node_modules/camelcase/index.d.ts +102 -0
- package/node_modules/camelcase/index.js +110 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +47 -0
- package/node_modules/camelcase/readme.md +135 -0
- package/node_modules/chalk/license +9 -0
- package/node_modules/chalk/package.json +83 -0
- package/node_modules/chalk/readme.md +297 -0
- package/node_modules/chalk/source/index.d.ts +325 -0
- package/node_modules/chalk/source/index.js +225 -0
- package/node_modules/chalk/source/utilities.js +33 -0
- package/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
- package/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
- package/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
- package/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
- package/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
- package/node_modules/cli-boxes/boxes.json +82 -0
- package/node_modules/cli-boxes/index.d.ts +127 -0
- package/node_modules/cli-boxes/index.js +6 -0
- package/node_modules/cli-boxes/license +9 -0
- package/node_modules/cli-boxes/package.json +42 -0
- package/node_modules/cli-boxes/readme.md +115 -0
- package/node_modules/cli-table3/LICENSE +21 -0
- package/node_modules/cli-table3/README.md +236 -0
- package/node_modules/cli-table3/index.d.ts +96 -0
- package/node_modules/cli-table3/index.js +1 -0
- package/node_modules/cli-table3/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/cli-table3/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/cli-table3/node_modules/ansi-regex/license +9 -0
- package/node_modules/cli-table3/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/cli-table3/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/cli-table3/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/cli-table3/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/cli-table3/node_modules/string-width/index.js +47 -0
- package/node_modules/cli-table3/node_modules/string-width/license +9 -0
- package/node_modules/cli-table3/node_modules/string-width/package.json +56 -0
- package/node_modules/cli-table3/node_modules/string-width/readme.md +50 -0
- package/node_modules/cli-table3/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/cli-table3/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/cli-table3/node_modules/strip-ansi/license +9 -0
- package/node_modules/cli-table3/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/cli-table3/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/cli-table3/package.json +100 -0
- package/node_modules/cli-table3/src/cell.js +409 -0
- package/node_modules/cli-table3/src/debug.js +28 -0
- package/node_modules/cli-table3/src/layout-manager.js +254 -0
- package/node_modules/cli-table3/src/table.js +106 -0
- package/node_modules/cli-table3/src/utils.js +344 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +1157 -0
- package/node_modules/commander/esm.mjs +16 -0
- package/node_modules/commander/index.js +24 -0
- package/node_modules/commander/lib/argument.js +149 -0
- package/node_modules/commander/lib/command.js +2509 -0
- package/node_modules/commander/lib/error.js +39 -0
- package/node_modules/commander/lib/help.js +520 -0
- package/node_modules/commander/lib/option.js +330 -0
- package/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/commander/package-support.json +16 -0
- package/node_modules/commander/package.json +84 -0
- package/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/commander/typings/index.d.ts +969 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +107 -0
- package/node_modules/emoji-regex/index.d.ts +3 -0
- package/node_modules/emoji-regex/index.js +4 -0
- package/node_modules/emoji-regex/index.mjs +4 -0
- package/node_modules/emoji-regex/package.json +45 -0
- package/node_modules/get-east-asian-width/index.d.ts +60 -0
- package/node_modules/get-east-asian-width/index.js +30 -0
- package/node_modules/get-east-asian-width/license +9 -0
- package/node_modules/get-east-asian-width/lookup-data.js +18 -0
- package/node_modules/get-east-asian-width/lookup.js +135 -0
- package/node_modules/get-east-asian-width/package.json +71 -0
- package/node_modules/get-east-asian-width/readme.md +65 -0
- package/node_modules/get-east-asian-width/utilities.js +24 -0
- package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/isbinaryfile/LICENSE.txt +22 -0
- package/node_modules/isbinaryfile/README.md +70 -0
- package/node_modules/isbinaryfile/lib/index.d.ts +3 -0
- package/node_modules/isbinaryfile/lib/index.js +256 -0
- package/node_modules/isbinaryfile/package.json +64 -0
- package/node_modules/string-width/index.d.ts +39 -0
- package/node_modules/string-width/index.js +82 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +64 -0
- package/node_modules/string-width/readme.md +66 -0
- package/node_modules/strip-ansi/index.d.ts +15 -0
- package/node_modules/strip-ansi/index.js +19 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +59 -0
- package/node_modules/strip-ansi/readme.md +37 -0
- package/node_modules/type-fest/index.d.ts +178 -0
- package/node_modules/type-fest/license-cc0 +121 -0
- package/node_modules/type-fest/license-mit +9 -0
- package/node_modules/type-fest/package.json +91 -0
- package/node_modules/type-fest/readme.md +1060 -0
- package/node_modules/type-fest/source/all-union-fields.d.ts +88 -0
- package/node_modules/type-fest/source/and.d.ts +25 -0
- package/node_modules/type-fest/source/array-indices.d.ts +23 -0
- package/node_modules/type-fest/source/array-slice.d.ts +109 -0
- package/node_modules/type-fest/source/array-splice.d.ts +99 -0
- package/node_modules/type-fest/source/array-tail.d.ts +76 -0
- package/node_modules/type-fest/source/array-values.d.ts +22 -0
- package/node_modules/type-fest/source/arrayable.d.ts +29 -0
- package/node_modules/type-fest/source/async-return-type.d.ts +23 -0
- package/node_modules/type-fest/source/asyncify.d.ts +32 -0
- package/node_modules/type-fest/source/basic.d.ts +68 -0
- package/node_modules/type-fest/source/camel-case.d.ts +89 -0
- package/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +97 -0
- package/node_modules/type-fest/source/camel-cased-properties.d.ts +43 -0
- package/node_modules/type-fest/source/conditional-except.d.ts +45 -0
- package/node_modules/type-fest/source/conditional-keys.d.ts +47 -0
- package/node_modules/type-fest/source/conditional-pick-deep.d.ts +118 -0
- package/node_modules/type-fest/source/conditional-pick.d.ts +44 -0
- package/node_modules/type-fest/source/conditional-simplify.d.ts +32 -0
- package/node_modules/type-fest/source/delimiter-case.d.ts +78 -0
- package/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +106 -0
- package/node_modules/type-fest/source/delimiter-cased-properties.d.ts +46 -0
- package/node_modules/type-fest/source/distributed-omit.d.ts +89 -0
- package/node_modules/type-fest/source/distributed-pick.d.ts +85 -0
- package/node_modules/type-fest/source/empty-object.d.ts +46 -0
- package/node_modules/type-fest/source/enforce-optional.d.ts +47 -0
- package/node_modules/type-fest/source/entries.d.ts +62 -0
- package/node_modules/type-fest/source/entry.d.ts +65 -0
- package/node_modules/type-fest/source/exact.d.ts +68 -0
- package/node_modules/type-fest/source/except.d.ts +108 -0
- package/node_modules/type-fest/source/find-global-type.d.ts +64 -0
- package/node_modules/type-fest/source/fixed-length-array.d.ts +43 -0
- package/node_modules/type-fest/source/get.d.ts +219 -0
- package/node_modules/type-fest/source/global-this.d.ts +21 -0
- package/node_modules/type-fest/source/greater-than-or-equal.d.ts +22 -0
- package/node_modules/type-fest/source/greater-than.d.ts +56 -0
- package/node_modules/type-fest/source/has-optional-keys.d.ts +21 -0
- package/node_modules/type-fest/source/has-readonly-keys.d.ts +21 -0
- package/node_modules/type-fest/source/has-required-keys.d.ts +59 -0
- package/node_modules/type-fest/source/has-writable-keys.d.ts +21 -0
- package/node_modules/type-fest/source/if-any.d.ts +24 -0
- package/node_modules/type-fest/source/if-empty-object.d.ts +26 -0
- package/node_modules/type-fest/source/if-never.d.ts +24 -0
- package/node_modules/type-fest/source/if-null.d.ts +24 -0
- package/node_modules/type-fest/source/if-unknown.d.ts +24 -0
- package/node_modules/type-fest/source/includes.d.ts +22 -0
- package/node_modules/type-fest/source/int-closed-range.d.ts +35 -0
- package/node_modules/type-fest/source/int-range.d.ts +55 -0
- package/node_modules/type-fest/source/internal/array.d.ts +126 -0
- package/node_modules/type-fest/source/internal/characters.d.ts +67 -0
- package/node_modules/type-fest/source/internal/index.d.ts +8 -0
- package/node_modules/type-fest/source/internal/keys.d.ts +97 -0
- package/node_modules/type-fest/source/internal/numeric.d.ts +118 -0
- package/node_modules/type-fest/source/internal/object.d.ts +236 -0
- package/node_modules/type-fest/source/internal/string.d.ts +210 -0
- package/node_modules/type-fest/source/internal/tuple.d.ts +90 -0
- package/node_modules/type-fest/source/internal/type.d.ts +139 -0
- package/node_modules/type-fest/source/invariant-of.d.ts +76 -0
- package/node_modules/type-fest/source/is-any.d.ts +33 -0
- package/node_modules/type-fest/source/is-equal.d.ts +31 -0
- package/node_modules/type-fest/source/is-float.d.ts +41 -0
- package/node_modules/type-fest/source/is-integer.d.ts +58 -0
- package/node_modules/type-fest/source/is-literal.d.ts +296 -0
- package/node_modules/type-fest/source/is-never.d.ts +42 -0
- package/node_modules/type-fest/source/is-null.d.ts +20 -0
- package/node_modules/type-fest/source/is-tuple.d.ts +89 -0
- package/node_modules/type-fest/source/is-unknown.d.ts +52 -0
- package/node_modules/type-fest/source/iterable-element.d.ts +64 -0
- package/node_modules/type-fest/source/join.d.ts +68 -0
- package/node_modules/type-fest/source/jsonifiable.d.ts +37 -0
- package/node_modules/type-fest/source/jsonify.d.ts +122 -0
- package/node_modules/type-fest/source/kebab-case.d.ts +44 -0
- package/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +63 -0
- package/node_modules/type-fest/source/kebab-cased-properties.d.ts +40 -0
- package/node_modules/type-fest/source/keys-of-union.d.ts +42 -0
- package/node_modules/type-fest/source/last-array-element.d.ts +38 -0
- package/node_modules/type-fest/source/less-than-or-equal.d.ts +22 -0
- package/node_modules/type-fest/source/less-than.d.ts +26 -0
- package/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +36 -0
- package/node_modules/type-fest/source/literal-to-primitive.d.ts +36 -0
- package/node_modules/type-fest/source/literal-union.d.ts +37 -0
- package/node_modules/type-fest/source/merge-deep.d.ts +486 -0
- package/node_modules/type-fest/source/merge-exclusive.d.ts +41 -0
- package/node_modules/type-fest/source/merge.d.ts +48 -0
- package/node_modules/type-fest/source/multidimensional-array.d.ts +44 -0
- package/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +48 -0
- package/node_modules/type-fest/source/non-empty-object.d.ts +35 -0
- package/node_modules/type-fest/source/non-empty-string.d.ts +28 -0
- package/node_modules/type-fest/source/non-empty-tuple.d.ts +21 -0
- package/node_modules/type-fest/source/numeric.d.ts +222 -0
- package/node_modules/type-fest/source/observable-like.d.ts +63 -0
- package/node_modules/type-fest/source/omit-deep.d.ts +167 -0
- package/node_modules/type-fest/source/omit-index-signature.d.ts +95 -0
- package/node_modules/type-fest/source/opaque.d.ts +1 -0
- package/node_modules/type-fest/source/optional-keys-of.d.ts +39 -0
- package/node_modules/type-fest/source/or.d.ts +25 -0
- package/node_modules/type-fest/source/override-properties.d.ts +36 -0
- package/node_modules/type-fest/source/package-json.d.ts +676 -0
- package/node_modules/type-fest/source/partial-deep.d.ts +151 -0
- package/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +78 -0
- package/node_modules/type-fest/source/pascal-case.d.ts +42 -0
- package/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +62 -0
- package/node_modules/type-fest/source/pascal-cased-properties.d.ts +36 -0
- package/node_modules/type-fest/source/paths.d.ts +262 -0
- package/node_modules/type-fest/source/pick-deep.d.ts +149 -0
- package/node_modules/type-fest/source/pick-index-signature.d.ts +50 -0
- package/node_modules/type-fest/source/primitive.d.ts +13 -0
- package/node_modules/type-fest/source/promisable.d.ts +25 -0
- package/node_modules/type-fest/source/readonly-deep.d.ts +81 -0
- package/node_modules/type-fest/source/readonly-keys-of.d.ts +30 -0
- package/node_modules/type-fest/source/readonly-tuple.d.ts +41 -0
- package/node_modules/type-fest/source/replace.d.ts +85 -0
- package/node_modules/type-fest/source/require-all-or-none.d.ts +51 -0
- package/node_modules/type-fest/source/require-at-least-one.d.ts +47 -0
- package/node_modules/type-fest/source/require-exactly-one.d.ts +45 -0
- package/node_modules/type-fest/source/require-one-or-none.d.ts +46 -0
- package/node_modules/type-fest/source/required-deep.d.ts +78 -0
- package/node_modules/type-fest/source/required-keys-of.d.ts +30 -0
- package/node_modules/type-fest/source/schema.d.ts +114 -0
- package/node_modules/type-fest/source/screaming-snake-case.d.ts +28 -0
- package/node_modules/type-fest/source/set-field-type.d.ts +65 -0
- package/node_modules/type-fest/source/set-non-nullable-deep.d.ts +83 -0
- package/node_modules/type-fest/source/set-non-nullable.d.ts +39 -0
- package/node_modules/type-fest/source/set-optional.d.ts +38 -0
- package/node_modules/type-fest/source/set-parameter-type.d.ts +117 -0
- package/node_modules/type-fest/source/set-readonly.d.ts +39 -0
- package/node_modules/type-fest/source/set-required-deep.d.ts +68 -0
- package/node_modules/type-fest/source/set-required.d.ts +70 -0
- package/node_modules/type-fest/source/set-return-type.d.ts +29 -0
- package/node_modules/type-fest/source/shared-union-fields-deep.d.ts +178 -0
- package/node_modules/type-fest/source/shared-union-fields.d.ts +76 -0
- package/node_modules/type-fest/source/simplify-deep.d.ts +115 -0
- package/node_modules/type-fest/source/simplify.d.ts +58 -0
- package/node_modules/type-fest/source/single-key-object.d.ts +29 -0
- package/node_modules/type-fest/source/snake-case.d.ts +45 -0
- package/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +63 -0
- package/node_modules/type-fest/source/snake-cased-properties.d.ts +40 -0
- package/node_modules/type-fest/source/split.d.ts +88 -0
- package/node_modules/type-fest/source/spread.d.ts +84 -0
- package/node_modules/type-fest/source/string-key-of.d.ts +25 -0
- package/node_modules/type-fest/source/string-repeat.d.ts +47 -0
- package/node_modules/type-fest/source/string-slice.d.ts +37 -0
- package/node_modules/type-fest/source/stringified.d.ts +23 -0
- package/node_modules/type-fest/source/structured-cloneable.d.ts +92 -0
- package/node_modules/type-fest/source/subtract.d.ts +83 -0
- package/node_modules/type-fest/source/sum.d.ts +78 -0
- package/node_modules/type-fest/source/tagged-union.d.ts +51 -0
- package/node_modules/type-fest/source/tagged.d.ts +256 -0
- package/node_modules/type-fest/source/trim.d.ts +27 -0
- package/node_modules/type-fest/source/tsconfig-json.d.ts +1294 -0
- package/node_modules/type-fest/source/tuple-to-object.d.ts +42 -0
- package/node_modules/type-fest/source/tuple-to-union.d.ts +51 -0
- package/node_modules/type-fest/source/typed-array.d.ts +17 -0
- package/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +80 -0
- package/node_modules/type-fest/source/union-to-intersection.d.ts +61 -0
- package/node_modules/type-fest/source/union-to-tuple.d.ts +56 -0
- package/node_modules/type-fest/source/unknown-array.d.ts +25 -0
- package/node_modules/type-fest/source/unknown-map.d.ts +24 -0
- package/node_modules/type-fest/source/unknown-record.d.ts +31 -0
- package/node_modules/type-fest/source/unknown-set.d.ts +24 -0
- package/node_modules/type-fest/source/value-of.d.ts +42 -0
- package/node_modules/type-fest/source/words.d.ts +118 -0
- package/node_modules/type-fest/source/writable-deep.d.ts +83 -0
- package/node_modules/type-fest/source/writable-keys-of.d.ts +33 -0
- package/node_modules/type-fest/source/writable.d.ts +68 -0
- package/node_modules/widest-line/index.d.ts +12 -0
- package/node_modules/widest-line/index.js +11 -0
- package/node_modules/widest-line/license +9 -0
- package/node_modules/widest-line/package.json +60 -0
- package/node_modules/widest-line/readme.md +26 -0
- package/node_modules/wrap-ansi/index.d.ts +41 -0
- package/node_modules/wrap-ansi/index.js +222 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/package.json +69 -0
- package/node_modules/wrap-ansi/readme.md +75 -0
- package/package.json +78 -0
- package/scripts/postinstall.cjs +122 -0
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
const { InvalidArgumentError } = require('./error.js');
|
|
2
|
+
|
|
3
|
+
class Option {
|
|
4
|
+
/**
|
|
5
|
+
* Initialize a new `Option` with the given `flags` and `description`.
|
|
6
|
+
*
|
|
7
|
+
* @param {string} flags
|
|
8
|
+
* @param {string} [description]
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
constructor(flags, description) {
|
|
12
|
+
this.flags = flags;
|
|
13
|
+
this.description = description || '';
|
|
14
|
+
|
|
15
|
+
this.required = flags.includes('<'); // A value must be supplied when the option is specified.
|
|
16
|
+
this.optional = flags.includes('['); // A value is optional when the option is specified.
|
|
17
|
+
// variadic test ignores <value,...> et al which might be used to describe custom splitting of single argument
|
|
18
|
+
this.variadic = /\w\.\.\.[>\]]$/.test(flags); // The option can take multiple values.
|
|
19
|
+
this.mandatory = false; // The option must have a value after parsing, which usually means it must be specified on command line.
|
|
20
|
+
const optionFlags = splitOptionFlags(flags);
|
|
21
|
+
this.short = optionFlags.shortFlag;
|
|
22
|
+
this.long = optionFlags.longFlag;
|
|
23
|
+
this.negate = false;
|
|
24
|
+
if (this.long) {
|
|
25
|
+
this.negate = this.long.startsWith('--no-');
|
|
26
|
+
}
|
|
27
|
+
this.defaultValue = undefined;
|
|
28
|
+
this.defaultValueDescription = undefined;
|
|
29
|
+
this.presetArg = undefined;
|
|
30
|
+
this.envVar = undefined;
|
|
31
|
+
this.parseArg = undefined;
|
|
32
|
+
this.hidden = false;
|
|
33
|
+
this.argChoices = undefined;
|
|
34
|
+
this.conflictsWith = [];
|
|
35
|
+
this.implied = undefined;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Set the default value, and optionally supply the description to be displayed in the help.
|
|
40
|
+
*
|
|
41
|
+
* @param {*} value
|
|
42
|
+
* @param {string} [description]
|
|
43
|
+
* @return {Option}
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
default(value, description) {
|
|
47
|
+
this.defaultValue = value;
|
|
48
|
+
this.defaultValueDescription = description;
|
|
49
|
+
return this;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Preset to use when option used without option-argument, especially optional but also boolean and negated.
|
|
54
|
+
* The custom processing (parseArg) is called.
|
|
55
|
+
*
|
|
56
|
+
* @example
|
|
57
|
+
* new Option('--color').default('GREYSCALE').preset('RGB');
|
|
58
|
+
* new Option('--donate [amount]').preset('20').argParser(parseFloat);
|
|
59
|
+
*
|
|
60
|
+
* @param {*} arg
|
|
61
|
+
* @return {Option}
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
preset(arg) {
|
|
65
|
+
this.presetArg = arg;
|
|
66
|
+
return this;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Add option name(s) that conflict with this option.
|
|
71
|
+
* An error will be displayed if conflicting options are found during parsing.
|
|
72
|
+
*
|
|
73
|
+
* @example
|
|
74
|
+
* new Option('--rgb').conflicts('cmyk');
|
|
75
|
+
* new Option('--js').conflicts(['ts', 'jsx']);
|
|
76
|
+
*
|
|
77
|
+
* @param {(string | string[])} names
|
|
78
|
+
* @return {Option}
|
|
79
|
+
*/
|
|
80
|
+
|
|
81
|
+
conflicts(names) {
|
|
82
|
+
this.conflictsWith = this.conflictsWith.concat(names);
|
|
83
|
+
return this;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Specify implied option values for when this option is set and the implied options are not.
|
|
88
|
+
*
|
|
89
|
+
* The custom processing (parseArg) is not called on the implied values.
|
|
90
|
+
*
|
|
91
|
+
* @example
|
|
92
|
+
* program
|
|
93
|
+
* .addOption(new Option('--log', 'write logging information to file'))
|
|
94
|
+
* .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));
|
|
95
|
+
*
|
|
96
|
+
* @param {object} impliedOptionValues
|
|
97
|
+
* @return {Option}
|
|
98
|
+
*/
|
|
99
|
+
implies(impliedOptionValues) {
|
|
100
|
+
let newImplied = impliedOptionValues;
|
|
101
|
+
if (typeof impliedOptionValues === 'string') {
|
|
102
|
+
// string is not documented, but easy mistake and we can do what user probably intended.
|
|
103
|
+
newImplied = { [impliedOptionValues]: true };
|
|
104
|
+
}
|
|
105
|
+
this.implied = Object.assign(this.implied || {}, newImplied);
|
|
106
|
+
return this;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Set environment variable to check for option value.
|
|
111
|
+
*
|
|
112
|
+
* An environment variable is only used if when processed the current option value is
|
|
113
|
+
* undefined, or the source of the current value is 'default' or 'config' or 'env'.
|
|
114
|
+
*
|
|
115
|
+
* @param {string} name
|
|
116
|
+
* @return {Option}
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
env(name) {
|
|
120
|
+
this.envVar = name;
|
|
121
|
+
return this;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Set the custom handler for processing CLI option arguments into option values.
|
|
126
|
+
*
|
|
127
|
+
* @param {Function} [fn]
|
|
128
|
+
* @return {Option}
|
|
129
|
+
*/
|
|
130
|
+
|
|
131
|
+
argParser(fn) {
|
|
132
|
+
this.parseArg = fn;
|
|
133
|
+
return this;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Whether the option is mandatory and must have a value after parsing.
|
|
138
|
+
*
|
|
139
|
+
* @param {boolean} [mandatory=true]
|
|
140
|
+
* @return {Option}
|
|
141
|
+
*/
|
|
142
|
+
|
|
143
|
+
makeOptionMandatory(mandatory = true) {
|
|
144
|
+
this.mandatory = !!mandatory;
|
|
145
|
+
return this;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Hide option in help.
|
|
150
|
+
*
|
|
151
|
+
* @param {boolean} [hide=true]
|
|
152
|
+
* @return {Option}
|
|
153
|
+
*/
|
|
154
|
+
|
|
155
|
+
hideHelp(hide = true) {
|
|
156
|
+
this.hidden = !!hide;
|
|
157
|
+
return this;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @package
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
_concatValue(value, previous) {
|
|
165
|
+
if (previous === this.defaultValue || !Array.isArray(previous)) {
|
|
166
|
+
return [value];
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
return previous.concat(value);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Only allow option value to be one of choices.
|
|
174
|
+
*
|
|
175
|
+
* @param {string[]} values
|
|
176
|
+
* @return {Option}
|
|
177
|
+
*/
|
|
178
|
+
|
|
179
|
+
choices(values) {
|
|
180
|
+
this.argChoices = values.slice();
|
|
181
|
+
this.parseArg = (arg, previous) => {
|
|
182
|
+
if (!this.argChoices.includes(arg)) {
|
|
183
|
+
throw new InvalidArgumentError(
|
|
184
|
+
`Allowed choices are ${this.argChoices.join(', ')}.`,
|
|
185
|
+
);
|
|
186
|
+
}
|
|
187
|
+
if (this.variadic) {
|
|
188
|
+
return this._concatValue(arg, previous);
|
|
189
|
+
}
|
|
190
|
+
return arg;
|
|
191
|
+
};
|
|
192
|
+
return this;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Return option name.
|
|
197
|
+
*
|
|
198
|
+
* @return {string}
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
name() {
|
|
202
|
+
if (this.long) {
|
|
203
|
+
return this.long.replace(/^--/, '');
|
|
204
|
+
}
|
|
205
|
+
return this.short.replace(/^-/, '');
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Return option name, in a camelcase format that can be used
|
|
210
|
+
* as a object attribute key.
|
|
211
|
+
*
|
|
212
|
+
* @return {string}
|
|
213
|
+
*/
|
|
214
|
+
|
|
215
|
+
attributeName() {
|
|
216
|
+
return camelcase(this.name().replace(/^no-/, ''));
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Check if `arg` matches the short or long flag.
|
|
221
|
+
*
|
|
222
|
+
* @param {string} arg
|
|
223
|
+
* @return {boolean}
|
|
224
|
+
* @package
|
|
225
|
+
*/
|
|
226
|
+
|
|
227
|
+
is(arg) {
|
|
228
|
+
return this.short === arg || this.long === arg;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Return whether a boolean option.
|
|
233
|
+
*
|
|
234
|
+
* Options are one of boolean, negated, required argument, or optional argument.
|
|
235
|
+
*
|
|
236
|
+
* @return {boolean}
|
|
237
|
+
* @package
|
|
238
|
+
*/
|
|
239
|
+
|
|
240
|
+
isBoolean() {
|
|
241
|
+
return !this.required && !this.optional && !this.negate;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* This class is to make it easier to work with dual options, without changing the existing
|
|
247
|
+
* implementation. We support separate dual options for separate positive and negative options,
|
|
248
|
+
* like `--build` and `--no-build`, which share a single option value. This works nicely for some
|
|
249
|
+
* use cases, but is tricky for others where we want separate behaviours despite
|
|
250
|
+
* the single shared option value.
|
|
251
|
+
*/
|
|
252
|
+
class DualOptions {
|
|
253
|
+
/**
|
|
254
|
+
* @param {Option[]} options
|
|
255
|
+
*/
|
|
256
|
+
constructor(options) {
|
|
257
|
+
this.positiveOptions = new Map();
|
|
258
|
+
this.negativeOptions = new Map();
|
|
259
|
+
this.dualOptions = new Set();
|
|
260
|
+
options.forEach((option) => {
|
|
261
|
+
if (option.negate) {
|
|
262
|
+
this.negativeOptions.set(option.attributeName(), option);
|
|
263
|
+
} else {
|
|
264
|
+
this.positiveOptions.set(option.attributeName(), option);
|
|
265
|
+
}
|
|
266
|
+
});
|
|
267
|
+
this.negativeOptions.forEach((value, key) => {
|
|
268
|
+
if (this.positiveOptions.has(key)) {
|
|
269
|
+
this.dualOptions.add(key);
|
|
270
|
+
}
|
|
271
|
+
});
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Did the value come from the option, and not from possible matching dual option?
|
|
276
|
+
*
|
|
277
|
+
* @param {*} value
|
|
278
|
+
* @param {Option} option
|
|
279
|
+
* @returns {boolean}
|
|
280
|
+
*/
|
|
281
|
+
valueFromOption(value, option) {
|
|
282
|
+
const optionKey = option.attributeName();
|
|
283
|
+
if (!this.dualOptions.has(optionKey)) return true;
|
|
284
|
+
|
|
285
|
+
// Use the value to deduce if (probably) came from the option.
|
|
286
|
+
const preset = this.negativeOptions.get(optionKey).presetArg;
|
|
287
|
+
const negativeValue = preset !== undefined ? preset : false;
|
|
288
|
+
return option.negate === (negativeValue === value);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Convert string from kebab-case to camelCase.
|
|
294
|
+
*
|
|
295
|
+
* @param {string} str
|
|
296
|
+
* @return {string}
|
|
297
|
+
* @private
|
|
298
|
+
*/
|
|
299
|
+
|
|
300
|
+
function camelcase(str) {
|
|
301
|
+
return str.split('-').reduce((str, word) => {
|
|
302
|
+
return str + word[0].toUpperCase() + word.slice(1);
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Split the short and long flag out of something like '-m,--mixed <value>'
|
|
308
|
+
*
|
|
309
|
+
* @private
|
|
310
|
+
*/
|
|
311
|
+
|
|
312
|
+
function splitOptionFlags(flags) {
|
|
313
|
+
let shortFlag;
|
|
314
|
+
let longFlag;
|
|
315
|
+
// Use original very loose parsing to maintain backwards compatibility for now,
|
|
316
|
+
// which allowed for example unintended `-sw, --short-word` [sic].
|
|
317
|
+
const flagParts = flags.split(/[ |,]+/);
|
|
318
|
+
if (flagParts.length > 1 && !/^[[<]/.test(flagParts[1]))
|
|
319
|
+
shortFlag = flagParts.shift();
|
|
320
|
+
longFlag = flagParts.shift();
|
|
321
|
+
// Add support for lone short flag without significantly changing parsing!
|
|
322
|
+
if (!shortFlag && /^-[^-]$/.test(longFlag)) {
|
|
323
|
+
shortFlag = longFlag;
|
|
324
|
+
longFlag = undefined;
|
|
325
|
+
}
|
|
326
|
+
return { shortFlag, longFlag };
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
exports.Option = Option;
|
|
330
|
+
exports.DualOptions = DualOptions;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
const maxDistance = 3;
|
|
2
|
+
|
|
3
|
+
function editDistance(a, b) {
|
|
4
|
+
// https://en.wikipedia.org/wiki/Damerau–Levenshtein_distance
|
|
5
|
+
// Calculating optimal string alignment distance, no substring is edited more than once.
|
|
6
|
+
// (Simple implementation.)
|
|
7
|
+
|
|
8
|
+
// Quick early exit, return worst case.
|
|
9
|
+
if (Math.abs(a.length - b.length) > maxDistance)
|
|
10
|
+
return Math.max(a.length, b.length);
|
|
11
|
+
|
|
12
|
+
// distance between prefix substrings of a and b
|
|
13
|
+
const d = [];
|
|
14
|
+
|
|
15
|
+
// pure deletions turn a into empty string
|
|
16
|
+
for (let i = 0; i <= a.length; i++) {
|
|
17
|
+
d[i] = [i];
|
|
18
|
+
}
|
|
19
|
+
// pure insertions turn empty string into b
|
|
20
|
+
for (let j = 0; j <= b.length; j++) {
|
|
21
|
+
d[0][j] = j;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// fill matrix
|
|
25
|
+
for (let j = 1; j <= b.length; j++) {
|
|
26
|
+
for (let i = 1; i <= a.length; i++) {
|
|
27
|
+
let cost = 1;
|
|
28
|
+
if (a[i - 1] === b[j - 1]) {
|
|
29
|
+
cost = 0;
|
|
30
|
+
} else {
|
|
31
|
+
cost = 1;
|
|
32
|
+
}
|
|
33
|
+
d[i][j] = Math.min(
|
|
34
|
+
d[i - 1][j] + 1, // deletion
|
|
35
|
+
d[i][j - 1] + 1, // insertion
|
|
36
|
+
d[i - 1][j - 1] + cost, // substitution
|
|
37
|
+
);
|
|
38
|
+
// transposition
|
|
39
|
+
if (i > 1 && j > 1 && a[i - 1] === b[j - 2] && a[i - 2] === b[j - 1]) {
|
|
40
|
+
d[i][j] = Math.min(d[i][j], d[i - 2][j - 2] + 1);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
return d[a.length][b.length];
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Find close matches, restricted to same number of edits.
|
|
50
|
+
*
|
|
51
|
+
* @param {string} word
|
|
52
|
+
* @param {string[]} candidates
|
|
53
|
+
* @returns {string}
|
|
54
|
+
*/
|
|
55
|
+
|
|
56
|
+
function suggestSimilar(word, candidates) {
|
|
57
|
+
if (!candidates || candidates.length === 0) return '';
|
|
58
|
+
// remove possible duplicates
|
|
59
|
+
candidates = Array.from(new Set(candidates));
|
|
60
|
+
|
|
61
|
+
const searchingOptions = word.startsWith('--');
|
|
62
|
+
if (searchingOptions) {
|
|
63
|
+
word = word.slice(2);
|
|
64
|
+
candidates = candidates.map((candidate) => candidate.slice(2));
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
let similar = [];
|
|
68
|
+
let bestDistance = maxDistance;
|
|
69
|
+
const minSimilarity = 0.4;
|
|
70
|
+
candidates.forEach((candidate) => {
|
|
71
|
+
if (candidate.length <= 1) return; // no one character guesses
|
|
72
|
+
|
|
73
|
+
const distance = editDistance(word, candidate);
|
|
74
|
+
const length = Math.max(word.length, candidate.length);
|
|
75
|
+
const similarity = (length - distance) / length;
|
|
76
|
+
if (similarity > minSimilarity) {
|
|
77
|
+
if (distance < bestDistance) {
|
|
78
|
+
// better edit distance, throw away previous worse matches
|
|
79
|
+
bestDistance = distance;
|
|
80
|
+
similar = [candidate];
|
|
81
|
+
} else if (distance === bestDistance) {
|
|
82
|
+
similar.push(candidate);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
similar.sort((a, b) => a.localeCompare(b));
|
|
88
|
+
if (searchingOptions) {
|
|
89
|
+
similar = similar.map((candidate) => `--${candidate}`);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
if (similar.length > 1) {
|
|
93
|
+
return `\n(Did you mean one of ${similar.join(', ')}?)`;
|
|
94
|
+
}
|
|
95
|
+
if (similar.length === 1) {
|
|
96
|
+
return `\n(Did you mean ${similar[0]}?)`;
|
|
97
|
+
}
|
|
98
|
+
return '';
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
exports.suggestSimilar = suggestSimilar;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "commander",
|
|
3
|
+
"version": "12.1.0",
|
|
4
|
+
"description": "the complete solution for node.js command-line programs",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"commander",
|
|
7
|
+
"command",
|
|
8
|
+
"option",
|
|
9
|
+
"parser",
|
|
10
|
+
"cli",
|
|
11
|
+
"argument",
|
|
12
|
+
"args",
|
|
13
|
+
"argv"
|
|
14
|
+
],
|
|
15
|
+
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/tj/commander.js.git"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"check": "npm run check:type && npm run check:lint && npm run check:format",
|
|
23
|
+
"check:format": "prettier --check .",
|
|
24
|
+
"check:lint": "eslint .",
|
|
25
|
+
"check:type": "npm run check:type:js && npm run check:type:ts",
|
|
26
|
+
"check:type:ts": "tsd && tsc -p tsconfig.ts.json",
|
|
27
|
+
"check:type:js": "tsc -p tsconfig.js.json",
|
|
28
|
+
"fix": "npm run fix:lint && npm run fix:format",
|
|
29
|
+
"fix:format": "prettier --write .",
|
|
30
|
+
"fix:lint": "eslint --fix .",
|
|
31
|
+
"test": "jest && npm run check:type:ts",
|
|
32
|
+
"test-all": "jest && npm run test-esm && npm run check",
|
|
33
|
+
"test-esm": "node ./tests/esm-imports-test.mjs"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"index.js",
|
|
37
|
+
"lib/*.js",
|
|
38
|
+
"esm.mjs",
|
|
39
|
+
"typings/index.d.ts",
|
|
40
|
+
"typings/esm.d.mts",
|
|
41
|
+
"package-support.json"
|
|
42
|
+
],
|
|
43
|
+
"type": "commonjs",
|
|
44
|
+
"main": "./index.js",
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"require": {
|
|
48
|
+
"types": "./typings/index.d.ts",
|
|
49
|
+
"default": "./index.js"
|
|
50
|
+
},
|
|
51
|
+
"import": {
|
|
52
|
+
"types": "./typings/esm.d.mts",
|
|
53
|
+
"default": "./esm.mjs"
|
|
54
|
+
},
|
|
55
|
+
"default": "./index.js"
|
|
56
|
+
},
|
|
57
|
+
"./esm.mjs": {
|
|
58
|
+
"types": "./typings/esm.d.mts",
|
|
59
|
+
"import": "./esm.mjs"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@eslint/js": "^8.56.0",
|
|
64
|
+
"@types/jest": "^29.2.4",
|
|
65
|
+
"@types/node": "^20.2.5",
|
|
66
|
+
"eslint": "^8.30.0",
|
|
67
|
+
"eslint-config-prettier": "^9.1.0",
|
|
68
|
+
"eslint-plugin-jest": "^28.3.0",
|
|
69
|
+
"eslint-plugin-jsdoc": "^48.1.0",
|
|
70
|
+
"globals": "^13.24.0",
|
|
71
|
+
"jest": "^29.3.1",
|
|
72
|
+
"prettier": "^3.2.5",
|
|
73
|
+
"prettier-plugin-jsdoc": "^1.3.0",
|
|
74
|
+
"ts-jest": "^29.0.3",
|
|
75
|
+
"tsd": "^0.31.0",
|
|
76
|
+
"typescript": "^5.0.4",
|
|
77
|
+
"typescript-eslint": "^7.0.1"
|
|
78
|
+
},
|
|
79
|
+
"types": "typings/index.d.ts",
|
|
80
|
+
"engines": {
|
|
81
|
+
"node": ">=18"
|
|
82
|
+
},
|
|
83
|
+
"support": true
|
|
84
|
+
}
|