@storm-software/linting-tools 1.132.70 → 1.132.72

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.
Files changed (4) hide show
  1. package/README.md +6 -6
  2. package/bin/lint.cjs +1885 -10
  3. package/bin/lint.js +2002 -9
  4. package/package.json +2 -2
package/bin/lint.js CHANGED
@@ -264589,11 +264589,2004 @@ var require_spawn = __commonJS({
264589
264589
  }
264590
264590
  });
264591
264591
 
264592
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/constants.js
264593
+ var require_constants5 = __commonJS({
264594
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/constants.js"(exports2, module) {
264595
+ init_esm_shims();
264596
+ var SEMVER_SPEC_VERSION = "2.0.0";
264597
+ var MAX_LENGTH = 256;
264598
+ var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || /* istanbul ignore next */
264599
+ 9007199254740991;
264600
+ var MAX_SAFE_COMPONENT_LENGTH = 16;
264601
+ var MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;
264602
+ var RELEASE_TYPES = [
264603
+ "major",
264604
+ "premajor",
264605
+ "minor",
264606
+ "preminor",
264607
+ "patch",
264608
+ "prepatch",
264609
+ "prerelease"
264610
+ ];
264611
+ module.exports = {
264612
+ MAX_LENGTH,
264613
+ MAX_SAFE_COMPONENT_LENGTH,
264614
+ MAX_SAFE_BUILD_LENGTH,
264615
+ MAX_SAFE_INTEGER,
264616
+ RELEASE_TYPES,
264617
+ SEMVER_SPEC_VERSION,
264618
+ FLAG_INCLUDE_PRERELEASE: 1,
264619
+ FLAG_LOOSE: 2
264620
+ };
264621
+ }
264622
+ });
264623
+
264624
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/debug.js
264625
+ var require_debug2 = __commonJS({
264626
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/debug.js"(exports2, module) {
264627
+ init_esm_shims();
264628
+ var debug14 = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
264629
+ };
264630
+ module.exports = debug14;
264631
+ }
264632
+ });
264633
+
264634
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js
264635
+ var require_re = __commonJS({
264636
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/re.js"(exports2, module) {
264637
+ init_esm_shims();
264638
+ var __import___constants = __toESM(require_constants5());
264639
+ var __import___debug = __toESM(require_debug2());
264640
+ var {
264641
+ MAX_SAFE_COMPONENT_LENGTH,
264642
+ MAX_SAFE_BUILD_LENGTH,
264643
+ MAX_LENGTH
264644
+ } = __import___constants;
264645
+ var debug14 = __import___debug;
264646
+ exports2 = module.exports = {};
264647
+ var re = exports2.re = [];
264648
+ var safeRe = exports2.safeRe = [];
264649
+ var src = exports2.src = [];
264650
+ var t = exports2.t = {};
264651
+ var R = 0;
264652
+ var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
264653
+ var safeRegexReplacements = [
264654
+ ["\\s", 1],
264655
+ ["\\d", MAX_LENGTH],
264656
+ [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH]
264657
+ ];
264658
+ var makeSafeRegex = (value) => {
264659
+ for (const [token, max4] of safeRegexReplacements) {
264660
+ value = value.split(`${token}*`).join(`${token}{0,${max4}}`).split(`${token}+`).join(`${token}{1,${max4}}`);
264661
+ }
264662
+ return value;
264663
+ };
264664
+ var createToken = (name3, value, isGlobal) => {
264665
+ const safe = makeSafeRegex(value);
264666
+ const index2 = R++;
264667
+ debug14(name3, index2, value);
264668
+ t[name3] = index2;
264669
+ src[index2] = value;
264670
+ re[index2] = new RegExp(value, isGlobal ? "g" : void 0);
264671
+ safeRe[index2] = new RegExp(safe, isGlobal ? "g" : void 0);
264672
+ };
264673
+ createToken("NUMERICIDENTIFIER", "0|[1-9]\\d*");
264674
+ createToken("NUMERICIDENTIFIERLOOSE", "\\d+");
264675
+ createToken("NONNUMERICIDENTIFIER", `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`);
264676
+ createToken("MAINVERSION", `(${src[t.NUMERICIDENTIFIER]})\\.(${src[t.NUMERICIDENTIFIER]})\\.(${src[t.NUMERICIDENTIFIER]})`);
264677
+ createToken("MAINVERSIONLOOSE", `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.(${src[t.NUMERICIDENTIFIERLOOSE]})\\.(${src[t.NUMERICIDENTIFIERLOOSE]})`);
264678
+ createToken("PRERELEASEIDENTIFIER", `(?:${src[t.NUMERICIDENTIFIER]}|${src[t.NONNUMERICIDENTIFIER]})`);
264679
+ createToken("PRERELEASEIDENTIFIERLOOSE", `(?:${src[t.NUMERICIDENTIFIERLOOSE]}|${src[t.NONNUMERICIDENTIFIER]})`);
264680
+ createToken("PRERELEASE", `(?:-(${src[t.PRERELEASEIDENTIFIER]}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`);
264681
+ createToken("PRERELEASELOOSE", `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`);
264682
+ createToken("BUILDIDENTIFIER", `${LETTERDASHNUMBER}+`);
264683
+ createToken("BUILD", `(?:\\+(${src[t.BUILDIDENTIFIER]}(?:\\.${src[t.BUILDIDENTIFIER]})*))`);
264684
+ createToken("FULLPLAIN", `v?${src[t.MAINVERSION]}${src[t.PRERELEASE]}?${src[t.BUILD]}?`);
264685
+ createToken("FULL", `^${src[t.FULLPLAIN]}$`);
264686
+ createToken("LOOSEPLAIN", `[v=\\s]*${src[t.MAINVERSIONLOOSE]}${src[t.PRERELEASELOOSE]}?${src[t.BUILD]}?`);
264687
+ createToken("LOOSE", `^${src[t.LOOSEPLAIN]}$`);
264688
+ createToken("GTLT", "((?:<|>)?=?)");
264689
+ createToken("XRANGEIDENTIFIERLOOSE", `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);
264690
+ createToken("XRANGEIDENTIFIER", `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`);
264691
+ createToken("XRANGEPLAIN", `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})(?:\\.(${src[t.XRANGEIDENTIFIER]})(?:\\.(${src[t.XRANGEIDENTIFIER]})(?:${src[t.PRERELEASE]})?${src[t.BUILD]}?)?)?`);
264692
+ createToken("XRANGEPLAINLOOSE", `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})(?:${src[t.PRERELEASELOOSE]})?${src[t.BUILD]}?)?)?`);
264693
+ createToken("XRANGE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`);
264694
+ createToken("XRANGELOOSE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`);
264695
+ createToken("COERCEPLAIN", `${"(^|[^\\d])(\\d{1,"}${MAX_SAFE_COMPONENT_LENGTH}})(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`);
264696
+ createToken("COERCE", `${src[t.COERCEPLAIN]}(?:$|[^\\d])`);
264697
+ createToken("COERCEFULL", src[t.COERCEPLAIN] + `(?:${src[t.PRERELEASE]})?(?:${src[t.BUILD]})?(?:$|[^\\d])`);
264698
+ createToken("COERCERTL", src[t.COERCE], true);
264699
+ createToken("COERCERTLFULL", src[t.COERCEFULL], true);
264700
+ createToken("LONETILDE", "(?:~>?)");
264701
+ createToken("TILDETRIM", `(\\s*)${src[t.LONETILDE]}\\s+`, true);
264702
+ exports2.tildeTrimReplace = "$1~";
264703
+ createToken("TILDE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);
264704
+ createToken("TILDELOOSE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);
264705
+ createToken("LONECARET", "(?:\\^)");
264706
+ createToken("CARETTRIM", `(\\s*)${src[t.LONECARET]}\\s+`, true);
264707
+ exports2.caretTrimReplace = "$1^";
264708
+ createToken("CARET", `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);
264709
+ createToken("CARETLOOSE", `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);
264710
+ createToken("COMPARATORLOOSE", `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`);
264711
+ createToken("COMPARATOR", `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`);
264712
+ createToken("COMPARATORTRIM", `(\\s*)${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);
264713
+ exports2.comparatorTrimReplace = "$1$2$3";
264714
+ createToken("HYPHENRANGE", `^\\s*(${src[t.XRANGEPLAIN]})\\s+-\\s+(${src[t.XRANGEPLAIN]})\\s*$`);
264715
+ createToken("HYPHENRANGELOOSE", `^\\s*(${src[t.XRANGEPLAINLOOSE]})\\s+-\\s+(${src[t.XRANGEPLAINLOOSE]})\\s*$`);
264716
+ createToken("STAR", "(<|>)?=?\\s*\\*");
264717
+ createToken("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$");
264718
+ createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
264719
+ }
264720
+ });
264721
+
264722
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/parse-options.js
264723
+ var require_parse_options = __commonJS({
264724
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/parse-options.js"(exports2, module) {
264725
+ init_esm_shims();
264726
+ var looseOption = Object.freeze({ loose: true });
264727
+ var emptyOpts = Object.freeze({});
264728
+ var parseOptions = (options) => {
264729
+ if (!options) {
264730
+ return emptyOpts;
264731
+ }
264732
+ if (typeof options !== "object") {
264733
+ return looseOption;
264734
+ }
264735
+ return options;
264736
+ };
264737
+ module.exports = parseOptions;
264738
+ }
264739
+ });
264740
+
264741
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/identifiers.js
264742
+ var require_identifiers = __commonJS({
264743
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/identifiers.js"(exports2, module) {
264744
+ init_esm_shims();
264745
+ var numeric2 = /^[0-9]+$/;
264746
+ var compareIdentifiers = (a, b) => {
264747
+ const anum = numeric2.test(a);
264748
+ const bnum = numeric2.test(b);
264749
+ if (anum && bnum) {
264750
+ a = +a;
264751
+ b = +b;
264752
+ }
264753
+ return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1;
264754
+ };
264755
+ var rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
264756
+ module.exports = {
264757
+ compareIdentifiers,
264758
+ rcompareIdentifiers
264759
+ };
264760
+ }
264761
+ });
264762
+
264763
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js
264764
+ var require_semver2 = __commonJS({
264765
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/semver.js"(exports2, module) {
264766
+ init_esm_shims();
264767
+ var __import____internal_debug = __toESM(require_debug2());
264768
+ var __import____internal_constants = __toESM(require_constants5());
264769
+ var __import____internal_re = __toESM(require_re());
264770
+ var __import____internal_parseOptions = __toESM(require_parse_options());
264771
+ var __import____internal_identifiers = __toESM(require_identifiers());
264772
+ var debug14 = __import____internal_debug;
264773
+ var { MAX_LENGTH, MAX_SAFE_INTEGER } = __import____internal_constants;
264774
+ var { safeRe: re, t } = __import____internal_re;
264775
+ var parseOptions = __import____internal_parseOptions;
264776
+ var { compareIdentifiers } = __import____internal_identifiers;
264777
+ var SemVer = class _SemVer {
264778
+ constructor(version6, options) {
264779
+ options = parseOptions(options);
264780
+ if (version6 instanceof _SemVer) {
264781
+ if (version6.loose === !!options.loose && version6.includePrerelease === !!options.includePrerelease) {
264782
+ return version6;
264783
+ } else {
264784
+ version6 = version6.version;
264785
+ }
264786
+ } else if (typeof version6 !== "string") {
264787
+ throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version6}".`);
264788
+ }
264789
+ if (version6.length > MAX_LENGTH) {
264790
+ throw new TypeError(
264791
+ `version is longer than ${MAX_LENGTH} characters`
264792
+ );
264793
+ }
264794
+ debug14("SemVer", version6, options);
264795
+ this.options = options;
264796
+ this.loose = !!options.loose;
264797
+ this.includePrerelease = !!options.includePrerelease;
264798
+ const m = version6.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]);
264799
+ if (!m) {
264800
+ throw new TypeError(`Invalid Version: ${version6}`);
264801
+ }
264802
+ this.raw = version6;
264803
+ this.major = +m[1];
264804
+ this.minor = +m[2];
264805
+ this.patch = +m[3];
264806
+ if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
264807
+ throw new TypeError("Invalid major version");
264808
+ }
264809
+ if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
264810
+ throw new TypeError("Invalid minor version");
264811
+ }
264812
+ if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
264813
+ throw new TypeError("Invalid patch version");
264814
+ }
264815
+ if (!m[4]) {
264816
+ this.prerelease = [];
264817
+ } else {
264818
+ this.prerelease = m[4].split(".").map((id) => {
264819
+ if (/^[0-9]+$/.test(id)) {
264820
+ const num = +id;
264821
+ if (num >= 0 && num < MAX_SAFE_INTEGER) {
264822
+ return num;
264823
+ }
264824
+ }
264825
+ return id;
264826
+ });
264827
+ }
264828
+ this.build = m[5] ? m[5].split(".") : [];
264829
+ this.format();
264830
+ }
264831
+ format() {
264832
+ this.version = `${this.major}.${this.minor}.${this.patch}`;
264833
+ if (this.prerelease.length) {
264834
+ this.version += `-${this.prerelease.join(".")}`;
264835
+ }
264836
+ return this.version;
264837
+ }
264838
+ toString() {
264839
+ return this.version;
264840
+ }
264841
+ compare(other) {
264842
+ debug14("SemVer.compare", this.version, this.options, other);
264843
+ if (!(other instanceof _SemVer)) {
264844
+ if (typeof other === "string" && other === this.version) {
264845
+ return 0;
264846
+ }
264847
+ other = new _SemVer(other, this.options);
264848
+ }
264849
+ if (other.version === this.version) {
264850
+ return 0;
264851
+ }
264852
+ return this.compareMain(other) || this.comparePre(other);
264853
+ }
264854
+ compareMain(other) {
264855
+ if (!(other instanceof _SemVer)) {
264856
+ other = new _SemVer(other, this.options);
264857
+ }
264858
+ return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch);
264859
+ }
264860
+ comparePre(other) {
264861
+ if (!(other instanceof _SemVer)) {
264862
+ other = new _SemVer(other, this.options);
264863
+ }
264864
+ if (this.prerelease.length && !other.prerelease.length) {
264865
+ return -1;
264866
+ } else if (!this.prerelease.length && other.prerelease.length) {
264867
+ return 1;
264868
+ } else if (!this.prerelease.length && !other.prerelease.length) {
264869
+ return 0;
264870
+ }
264871
+ let i = 0;
264872
+ do {
264873
+ const a = this.prerelease[i];
264874
+ const b = other.prerelease[i];
264875
+ debug14("prerelease compare", i, a, b);
264876
+ if (a === void 0 && b === void 0) {
264877
+ return 0;
264878
+ } else if (b === void 0) {
264879
+ return 1;
264880
+ } else if (a === void 0) {
264881
+ return -1;
264882
+ } else if (a === b) {
264883
+ continue;
264884
+ } else {
264885
+ return compareIdentifiers(a, b);
264886
+ }
264887
+ } while (++i);
264888
+ }
264889
+ compareBuild(other) {
264890
+ if (!(other instanceof _SemVer)) {
264891
+ other = new _SemVer(other, this.options);
264892
+ }
264893
+ let i = 0;
264894
+ do {
264895
+ const a = this.build[i];
264896
+ const b = other.build[i];
264897
+ debug14("build compare", i, a, b);
264898
+ if (a === void 0 && b === void 0) {
264899
+ return 0;
264900
+ } else if (b === void 0) {
264901
+ return 1;
264902
+ } else if (a === void 0) {
264903
+ return -1;
264904
+ } else if (a === b) {
264905
+ continue;
264906
+ } else {
264907
+ return compareIdentifiers(a, b);
264908
+ }
264909
+ } while (++i);
264910
+ }
264911
+ // preminor will bump the version up to the next minor release, and immediately
264912
+ // down to pre-release. premajor and prepatch work the same way.
264913
+ inc(release, identifier, identifierBase) {
264914
+ switch (release) {
264915
+ case "premajor":
264916
+ this.prerelease.length = 0;
264917
+ this.patch = 0;
264918
+ this.minor = 0;
264919
+ this.major++;
264920
+ this.inc("pre", identifier, identifierBase);
264921
+ break;
264922
+ case "preminor":
264923
+ this.prerelease.length = 0;
264924
+ this.patch = 0;
264925
+ this.minor++;
264926
+ this.inc("pre", identifier, identifierBase);
264927
+ break;
264928
+ case "prepatch":
264929
+ this.prerelease.length = 0;
264930
+ this.inc("patch", identifier, identifierBase);
264931
+ this.inc("pre", identifier, identifierBase);
264932
+ break;
264933
+ // If the input is a non-prerelease version, this acts the same as
264934
+ // prepatch.
264935
+ case "prerelease":
264936
+ if (this.prerelease.length === 0) {
264937
+ this.inc("patch", identifier, identifierBase);
264938
+ }
264939
+ this.inc("pre", identifier, identifierBase);
264940
+ break;
264941
+ case "major":
264942
+ if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
264943
+ this.major++;
264944
+ }
264945
+ this.minor = 0;
264946
+ this.patch = 0;
264947
+ this.prerelease = [];
264948
+ break;
264949
+ case "minor":
264950
+ if (this.patch !== 0 || this.prerelease.length === 0) {
264951
+ this.minor++;
264952
+ }
264953
+ this.patch = 0;
264954
+ this.prerelease = [];
264955
+ break;
264956
+ case "patch":
264957
+ if (this.prerelease.length === 0) {
264958
+ this.patch++;
264959
+ }
264960
+ this.prerelease = [];
264961
+ break;
264962
+ // This probably shouldn't be used publicly.
264963
+ // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.
264964
+ case "pre": {
264965
+ const base2 = Number(identifierBase) ? 1 : 0;
264966
+ if (!identifier && identifierBase === false) {
264967
+ throw new Error("invalid increment argument: identifier is empty");
264968
+ }
264969
+ if (this.prerelease.length === 0) {
264970
+ this.prerelease = [base2];
264971
+ } else {
264972
+ let i = this.prerelease.length;
264973
+ while (--i >= 0) {
264974
+ if (typeof this.prerelease[i] === "number") {
264975
+ this.prerelease[i]++;
264976
+ i = -2;
264977
+ }
264978
+ }
264979
+ if (i === -1) {
264980
+ if (identifier === this.prerelease.join(".") && identifierBase === false) {
264981
+ throw new Error("invalid increment argument: identifier already exists");
264982
+ }
264983
+ this.prerelease.push(base2);
264984
+ }
264985
+ }
264986
+ if (identifier) {
264987
+ let prerelease = [identifier, base2];
264988
+ if (identifierBase === false) {
264989
+ prerelease = [identifier];
264990
+ }
264991
+ if (compareIdentifiers(this.prerelease[0], identifier) === 0) {
264992
+ if (isNaN(this.prerelease[1])) {
264993
+ this.prerelease = prerelease;
264994
+ }
264995
+ } else {
264996
+ this.prerelease = prerelease;
264997
+ }
264998
+ }
264999
+ break;
265000
+ }
265001
+ default:
265002
+ throw new Error(`invalid increment argument: ${release}`);
265003
+ }
265004
+ this.raw = this.format();
265005
+ if (this.build.length) {
265006
+ this.raw += `+${this.build.join(".")}`;
265007
+ }
265008
+ return this;
265009
+ }
265010
+ };
265011
+ module.exports = SemVer;
265012
+ }
265013
+ });
265014
+
265015
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js
265016
+ var require_parse5 = __commonJS({
265017
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js"(exports2, module) {
265018
+ init_esm_shims();
265019
+ var __import____classes_semver = __toESM(require_semver2());
265020
+ var SemVer = __import____classes_semver;
265021
+ var parse9 = (version6, options, throwErrors = false) => {
265022
+ if (version6 instanceof SemVer) {
265023
+ return version6;
265024
+ }
265025
+ try {
265026
+ return new SemVer(version6, options);
265027
+ } catch (er) {
265028
+ if (!throwErrors) {
265029
+ return null;
265030
+ }
265031
+ throw er;
265032
+ }
265033
+ };
265034
+ module.exports = parse9;
265035
+ }
265036
+ });
265037
+
265038
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js
265039
+ var require_valid2 = __commonJS({
265040
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js"(exports2, module) {
265041
+ init_esm_shims();
265042
+ var __import___parse = __toESM(require_parse5());
265043
+ var parse9 = __import___parse;
265044
+ var valid = (version6, options) => {
265045
+ const v = parse9(version6, options);
265046
+ return v ? v.version : null;
265047
+ };
265048
+ module.exports = valid;
265049
+ }
265050
+ });
265051
+
265052
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js
265053
+ var require_clean2 = __commonJS({
265054
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js"(exports2, module) {
265055
+ init_esm_shims();
265056
+ var __import___parse = __toESM(require_parse5());
265057
+ var parse9 = __import___parse;
265058
+ var clean6 = (version6, options) => {
265059
+ const s = parse9(version6.trim().replace(/^[=v]+/, ""), options);
265060
+ return s ? s.version : null;
265061
+ };
265062
+ module.exports = clean6;
265063
+ }
265064
+ });
265065
+
265066
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/inc.js
265067
+ var require_inc = __commonJS({
265068
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/inc.js"(exports2, module) {
265069
+ init_esm_shims();
265070
+ var __import____classes_semver = __toESM(require_semver2());
265071
+ var SemVer = __import____classes_semver;
265072
+ var inc = (version6, release, options, identifier, identifierBase) => {
265073
+ if (typeof options === "string") {
265074
+ identifierBase = identifier;
265075
+ identifier = options;
265076
+ options = void 0;
265077
+ }
265078
+ try {
265079
+ return new SemVer(
265080
+ version6 instanceof SemVer ? version6.version : version6,
265081
+ options
265082
+ ).inc(release, identifier, identifierBase).version;
265083
+ } catch (er) {
265084
+ return null;
265085
+ }
265086
+ };
265087
+ module.exports = inc;
265088
+ }
265089
+ });
265090
+
265091
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js
265092
+ var require_diff = __commonJS({
265093
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js"(exports2, module) {
265094
+ init_esm_shims();
265095
+ var __import___parse_js = __toESM(require_parse5());
265096
+ var parse9 = __import___parse_js;
265097
+ var diff = (version1, version22) => {
265098
+ const v1 = parse9(version1, null, true);
265099
+ const v2 = parse9(version22, null, true);
265100
+ const comparison = v1.compare(v2);
265101
+ if (comparison === 0) {
265102
+ return null;
265103
+ }
265104
+ const v1Higher = comparison > 0;
265105
+ const highVersion = v1Higher ? v1 : v2;
265106
+ const lowVersion = v1Higher ? v2 : v1;
265107
+ const highHasPre = !!highVersion.prerelease.length;
265108
+ const lowHasPre = !!lowVersion.prerelease.length;
265109
+ if (lowHasPre && !highHasPre) {
265110
+ if (!lowVersion.patch && !lowVersion.minor) {
265111
+ return "major";
265112
+ }
265113
+ if (highVersion.patch) {
265114
+ return "patch";
265115
+ }
265116
+ if (highVersion.minor) {
265117
+ return "minor";
265118
+ }
265119
+ return "major";
265120
+ }
265121
+ const prefix = highHasPre ? "pre" : "";
265122
+ if (v1.major !== v2.major) {
265123
+ return prefix + "major";
265124
+ }
265125
+ if (v1.minor !== v2.minor) {
265126
+ return prefix + "minor";
265127
+ }
265128
+ if (v1.patch !== v2.patch) {
265129
+ return prefix + "patch";
265130
+ }
265131
+ return "prerelease";
265132
+ };
265133
+ module.exports = diff;
265134
+ }
265135
+ });
265136
+
265137
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/major.js
265138
+ var require_major = __commonJS({
265139
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/major.js"(exports2, module) {
265140
+ init_esm_shims();
265141
+ var __import____classes_semver = __toESM(require_semver2());
265142
+ var SemVer = __import____classes_semver;
265143
+ var major = (a, loose) => new SemVer(a, loose).major;
265144
+ module.exports = major;
265145
+ }
265146
+ });
265147
+
265148
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/minor.js
265149
+ var require_minor = __commonJS({
265150
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/minor.js"(exports2, module) {
265151
+ init_esm_shims();
265152
+ var __import____classes_semver = __toESM(require_semver2());
265153
+ var SemVer = __import____classes_semver;
265154
+ var minor = (a, loose) => new SemVer(a, loose).minor;
265155
+ module.exports = minor;
265156
+ }
265157
+ });
265158
+
265159
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/patch.js
265160
+ var require_patch = __commonJS({
265161
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/patch.js"(exports2, module) {
265162
+ init_esm_shims();
265163
+ var __import____classes_semver = __toESM(require_semver2());
265164
+ var SemVer = __import____classes_semver;
265165
+ var patch2 = (a, loose) => new SemVer(a, loose).patch;
265166
+ module.exports = patch2;
265167
+ }
265168
+ });
265169
+
265170
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js
265171
+ var require_prerelease = __commonJS({
265172
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js"(exports2, module) {
265173
+ init_esm_shims();
265174
+ var __import___parse = __toESM(require_parse5());
265175
+ var parse9 = __import___parse;
265176
+ var prerelease = (version6, options) => {
265177
+ const parsed = parse9(version6, options);
265178
+ return parsed && parsed.prerelease.length ? parsed.prerelease : null;
265179
+ };
265180
+ module.exports = prerelease;
265181
+ }
265182
+ });
265183
+
265184
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare.js
265185
+ var require_compare = __commonJS({
265186
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare.js"(exports2, module) {
265187
+ init_esm_shims();
265188
+ var __import____classes_semver = __toESM(require_semver2());
265189
+ var SemVer = __import____classes_semver;
265190
+ var compare6 = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
265191
+ module.exports = compare6;
265192
+ }
265193
+ });
265194
+
265195
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rcompare.js
265196
+ var require_rcompare = __commonJS({
265197
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rcompare.js"(exports2, module) {
265198
+ init_esm_shims();
265199
+ var __import___compare = __toESM(require_compare());
265200
+ var compare6 = __import___compare;
265201
+ var rcompare2 = (a, b, loose) => compare6(b, a, loose);
265202
+ module.exports = rcompare2;
265203
+ }
265204
+ });
265205
+
265206
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-loose.js
265207
+ var require_compare_loose = __commonJS({
265208
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-loose.js"(exports2, module) {
265209
+ init_esm_shims();
265210
+ var __import___compare = __toESM(require_compare());
265211
+ var compare6 = __import___compare;
265212
+ var compareLoose = (a, b) => compare6(a, b, true);
265213
+ module.exports = compareLoose;
265214
+ }
265215
+ });
265216
+
265217
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js
265218
+ var require_compare_build = __commonJS({
265219
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/compare-build.js"(exports2, module) {
265220
+ init_esm_shims();
265221
+ var __import____classes_semver = __toESM(require_semver2());
265222
+ var SemVer = __import____classes_semver;
265223
+ var compareBuild = (a, b, loose) => {
265224
+ const versionA = new SemVer(a, loose);
265225
+ const versionB = new SemVer(b, loose);
265226
+ return versionA.compare(versionB) || versionA.compareBuild(versionB);
265227
+ };
265228
+ module.exports = compareBuild;
265229
+ }
265230
+ });
265231
+
265232
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/sort.js
265233
+ var require_sort = __commonJS({
265234
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/sort.js"(exports2, module) {
265235
+ init_esm_shims();
265236
+ var __import___compareBuild = __toESM(require_compare_build());
265237
+ var compareBuild = __import___compareBuild;
265238
+ var sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
265239
+ module.exports = sort;
265240
+ }
265241
+ });
265242
+
265243
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rsort.js
265244
+ var require_rsort = __commonJS({
265245
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/rsort.js"(exports2, module) {
265246
+ init_esm_shims();
265247
+ var __import___compareBuild = __toESM(require_compare_build());
265248
+ var compareBuild = __import___compareBuild;
265249
+ var rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
265250
+ module.exports = rsort;
265251
+ }
265252
+ });
265253
+
265254
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/gt.js
265255
+ var require_gt = __commonJS({
265256
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/gt.js"(exports2, module) {
265257
+ init_esm_shims();
265258
+ var __import___compare = __toESM(require_compare());
265259
+ var compare6 = __import___compare;
265260
+ var gt = (a, b, loose) => compare6(a, b, loose) > 0;
265261
+ module.exports = gt;
265262
+ }
265263
+ });
265264
+
265265
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/lt.js
265266
+ var require_lt = __commonJS({
265267
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/lt.js"(exports2, module) {
265268
+ init_esm_shims();
265269
+ var __import___compare = __toESM(require_compare());
265270
+ var compare6 = __import___compare;
265271
+ var lt = (a, b, loose) => compare6(a, b, loose) < 0;
265272
+ module.exports = lt;
265273
+ }
265274
+ });
265275
+
265276
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/eq.js
265277
+ var require_eq = __commonJS({
265278
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/eq.js"(exports2, module) {
265279
+ init_esm_shims();
265280
+ var __import___compare = __toESM(require_compare());
265281
+ var compare6 = __import___compare;
265282
+ var eq2 = (a, b, loose) => compare6(a, b, loose) === 0;
265283
+ module.exports = eq2;
265284
+ }
265285
+ });
265286
+
265287
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/neq.js
265288
+ var require_neq = __commonJS({
265289
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/neq.js"(exports2, module) {
265290
+ init_esm_shims();
265291
+ var __import___compare = __toESM(require_compare());
265292
+ var compare6 = __import___compare;
265293
+ var neq = (a, b, loose) => compare6(a, b, loose) !== 0;
265294
+ module.exports = neq;
265295
+ }
265296
+ });
265297
+
265298
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/gte.js
265299
+ var require_gte = __commonJS({
265300
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/gte.js"(exports2, module) {
265301
+ init_esm_shims();
265302
+ var __import___compare = __toESM(require_compare());
265303
+ var compare6 = __import___compare;
265304
+ var gte2 = (a, b, loose) => compare6(a, b, loose) >= 0;
265305
+ module.exports = gte2;
265306
+ }
265307
+ });
265308
+
265309
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/lte.js
265310
+ var require_lte = __commonJS({
265311
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/lte.js"(exports2, module) {
265312
+ init_esm_shims();
265313
+ var __import___compare = __toESM(require_compare());
265314
+ var compare6 = __import___compare;
265315
+ var lte2 = (a, b, loose) => compare6(a, b, loose) <= 0;
265316
+ module.exports = lte2;
265317
+ }
265318
+ });
265319
+
265320
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/cmp.js
265321
+ var require_cmp = __commonJS({
265322
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/cmp.js"(exports2, module) {
265323
+ init_esm_shims();
265324
+ var __import___eq = __toESM(require_eq());
265325
+ var __import___neq = __toESM(require_neq());
265326
+ var __import___gt = __toESM(require_gt());
265327
+ var __import___gte = __toESM(require_gte());
265328
+ var __import___lt = __toESM(require_lt());
265329
+ var __import___lte = __toESM(require_lte());
265330
+ var eq2 = __import___eq;
265331
+ var neq = __import___neq;
265332
+ var gt = __import___gt;
265333
+ var gte2 = __import___gte;
265334
+ var lt = __import___lt;
265335
+ var lte2 = __import___lte;
265336
+ var cmp = (a, op, b, loose) => {
265337
+ switch (op) {
265338
+ case "===":
265339
+ if (typeof a === "object") {
265340
+ a = a.version;
265341
+ }
265342
+ if (typeof b === "object") {
265343
+ b = b.version;
265344
+ }
265345
+ return a === b;
265346
+ case "!==":
265347
+ if (typeof a === "object") {
265348
+ a = a.version;
265349
+ }
265350
+ if (typeof b === "object") {
265351
+ b = b.version;
265352
+ }
265353
+ return a !== b;
265354
+ case "":
265355
+ case "=":
265356
+ case "==":
265357
+ return eq2(a, b, loose);
265358
+ case "!=":
265359
+ return neq(a, b, loose);
265360
+ case ">":
265361
+ return gt(a, b, loose);
265362
+ case ">=":
265363
+ return gte2(a, b, loose);
265364
+ case "<":
265365
+ return lt(a, b, loose);
265366
+ case "<=":
265367
+ return lte2(a, b, loose);
265368
+ default:
265369
+ throw new TypeError(`Invalid operator: ${op}`);
265370
+ }
265371
+ };
265372
+ module.exports = cmp;
265373
+ }
265374
+ });
265375
+
265376
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js
265377
+ var require_coerce = __commonJS({
265378
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js"(exports2, module) {
265379
+ init_esm_shims();
265380
+ var __import____classes_semver = __toESM(require_semver2());
265381
+ var __import___parse = __toESM(require_parse5());
265382
+ var __import____internal_re = __toESM(require_re());
265383
+ var SemVer = __import____classes_semver;
265384
+ var parse9 = __import___parse;
265385
+ var { safeRe: re, t } = __import____internal_re;
265386
+ var coerce = (version6, options) => {
265387
+ if (version6 instanceof SemVer) {
265388
+ return version6;
265389
+ }
265390
+ if (typeof version6 === "number") {
265391
+ version6 = String(version6);
265392
+ }
265393
+ if (typeof version6 !== "string") {
265394
+ return null;
265395
+ }
265396
+ options = options || {};
265397
+ let match4 = null;
265398
+ if (!options.rtl) {
265399
+ match4 = version6.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]);
265400
+ } else {
265401
+ const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL];
265402
+ let next;
265403
+ while ((next = coerceRtlRegex.exec(version6)) && (!match4 || match4.index + match4[0].length !== version6.length)) {
265404
+ if (!match4 || next.index + next[0].length !== match4.index + match4[0].length) {
265405
+ match4 = next;
265406
+ }
265407
+ coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
265408
+ }
265409
+ coerceRtlRegex.lastIndex = -1;
265410
+ }
265411
+ if (match4 === null) {
265412
+ return null;
265413
+ }
265414
+ const major = match4[2];
265415
+ const minor = match4[3] || "0";
265416
+ const patch2 = match4[4] || "0";
265417
+ const prerelease = options.includePrerelease && match4[5] ? `-${match4[5]}` : "";
265418
+ const build2 = options.includePrerelease && match4[6] ? `+${match4[6]}` : "";
265419
+ return parse9(`${major}.${minor}.${patch2}${prerelease}${build2}`, options);
265420
+ };
265421
+ module.exports = coerce;
265422
+ }
265423
+ });
265424
+
265425
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/lrucache.js
265426
+ var require_lrucache = __commonJS({
265427
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/internal/lrucache.js"(exports2, module) {
265428
+ init_esm_shims();
265429
+ var LRUCache3 = class {
265430
+ constructor() {
265431
+ this.max = 1e3;
265432
+ this.map = /* @__PURE__ */ new Map();
265433
+ }
265434
+ get(key) {
265435
+ const value = this.map.get(key);
265436
+ if (value === void 0) {
265437
+ return void 0;
265438
+ } else {
265439
+ this.map.delete(key);
265440
+ this.map.set(key, value);
265441
+ return value;
265442
+ }
265443
+ }
265444
+ delete(key) {
265445
+ return this.map.delete(key);
265446
+ }
265447
+ set(key, value) {
265448
+ const deleted = this.delete(key);
265449
+ if (!deleted && value !== void 0) {
265450
+ if (this.map.size >= this.max) {
265451
+ const firstKey = this.map.keys().next().value;
265452
+ this.delete(firstKey);
265453
+ }
265454
+ this.map.set(key, value);
265455
+ }
265456
+ return this;
265457
+ }
265458
+ };
265459
+ module.exports = LRUCache3;
265460
+ }
265461
+ });
265462
+
265463
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/range.js
265464
+ var require_range = __commonJS({
265465
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/range.js"(exports2, module) {
265466
+ init_esm_shims();
265467
+ var __import____internal_lrucache = __toESM(require_lrucache());
265468
+ var __import____internal_parseOptions = __toESM(require_parse_options());
265469
+ var __import___comparator = __toESM(require_comparator());
265470
+ var __import____internal_debug = __toESM(require_debug2());
265471
+ var __import___semver = __toESM(require_semver2());
265472
+ var __import____internal_re = __toESM(require_re());
265473
+ var __import____internal_constants = __toESM(require_constants5());
265474
+ var Range2 = class _Range {
265475
+ constructor(range2, options) {
265476
+ options = parseOptions(options);
265477
+ if (range2 instanceof _Range) {
265478
+ if (range2.loose === !!options.loose && range2.includePrerelease === !!options.includePrerelease) {
265479
+ return range2;
265480
+ } else {
265481
+ return new _Range(range2.raw, options);
265482
+ }
265483
+ }
265484
+ if (range2 instanceof Comparator2) {
265485
+ this.raw = range2.value;
265486
+ this.set = [[range2]];
265487
+ this.format();
265488
+ return this;
265489
+ }
265490
+ this.options = options;
265491
+ this.loose = !!options.loose;
265492
+ this.includePrerelease = !!options.includePrerelease;
265493
+ this.raw = range2.trim().split(/\s+/).join(" ");
265494
+ this.set = this.raw.split("||").map((r) => this.parseRange(r.trim())).filter((c) => c.length);
265495
+ if (!this.set.length) {
265496
+ throw new TypeError(`Invalid SemVer Range: ${this.raw}`);
265497
+ }
265498
+ if (this.set.length > 1) {
265499
+ const first3 = this.set[0];
265500
+ this.set = this.set.filter((c) => !isNullSet(c[0]));
265501
+ if (this.set.length === 0) {
265502
+ this.set = [first3];
265503
+ } else if (this.set.length > 1) {
265504
+ for (const c of this.set) {
265505
+ if (c.length === 1 && isAny(c[0])) {
265506
+ this.set = [c];
265507
+ break;
265508
+ }
265509
+ }
265510
+ }
265511
+ }
265512
+ this.format();
265513
+ }
265514
+ format() {
265515
+ this.range = this.set.map((comps) => comps.join(" ").trim()).join("||").trim();
265516
+ return this.range;
265517
+ }
265518
+ toString() {
265519
+ return this.range;
265520
+ }
265521
+ parseRange(range2) {
265522
+ const memoOpts = (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | (this.options.loose && FLAG_LOOSE);
265523
+ const memoKey = memoOpts + ":" + range2;
265524
+ const cached2 = cache5.get(memoKey);
265525
+ if (cached2) {
265526
+ return cached2;
265527
+ }
265528
+ const loose = this.options.loose;
265529
+ const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE];
265530
+ range2 = range2.replace(hr, hyphenReplace(this.options.includePrerelease));
265531
+ debug14("hyphen replace", range2);
265532
+ range2 = range2.replace(re[t.COMPARATORTRIM], comparatorTrimReplace);
265533
+ debug14("comparator trim", range2);
265534
+ range2 = range2.replace(re[t.TILDETRIM], tildeTrimReplace);
265535
+ debug14("tilde trim", range2);
265536
+ range2 = range2.replace(re[t.CARETTRIM], caretTrimReplace);
265537
+ debug14("caret trim", range2);
265538
+ let rangeList = range2.split(" ").map((comp) => parseComparator(comp, this.options)).join(" ").split(/\s+/).map((comp) => replaceGTE0(comp, this.options));
265539
+ if (loose) {
265540
+ rangeList = rangeList.filter((comp) => {
265541
+ debug14("loose invalid filter", comp, this.options);
265542
+ return !!comp.match(re[t.COMPARATORLOOSE]);
265543
+ });
265544
+ }
265545
+ debug14("range list", rangeList);
265546
+ const rangeMap = /* @__PURE__ */ new Map();
265547
+ const comparators = rangeList.map((comp) => new Comparator2(comp, this.options));
265548
+ for (const comp of comparators) {
265549
+ if (isNullSet(comp)) {
265550
+ return [comp];
265551
+ }
265552
+ rangeMap.set(comp.value, comp);
265553
+ }
265554
+ if (rangeMap.size > 1 && rangeMap.has("")) {
265555
+ rangeMap.delete("");
265556
+ }
265557
+ const result = [...rangeMap.values()];
265558
+ cache5.set(memoKey, result);
265559
+ return result;
265560
+ }
265561
+ intersects(range2, options) {
265562
+ if (!(range2 instanceof _Range)) {
265563
+ throw new TypeError("a Range is required");
265564
+ }
265565
+ return this.set.some((thisComparators) => {
265566
+ return isSatisfiable(thisComparators, options) && range2.set.some((rangeComparators) => {
265567
+ return isSatisfiable(rangeComparators, options) && thisComparators.every((thisComparator) => {
265568
+ return rangeComparators.every((rangeComparator) => {
265569
+ return thisComparator.intersects(rangeComparator, options);
265570
+ });
265571
+ });
265572
+ });
265573
+ });
265574
+ }
265575
+ // if ANY of the sets match ALL of its comparators, then pass
265576
+ test(version6) {
265577
+ if (!version6) {
265578
+ return false;
265579
+ }
265580
+ if (typeof version6 === "string") {
265581
+ try {
265582
+ version6 = new SemVer(version6, this.options);
265583
+ } catch (er) {
265584
+ return false;
265585
+ }
265586
+ }
265587
+ for (let i = 0; i < this.set.length; i++) {
265588
+ if (testSet(this.set[i], version6, this.options)) {
265589
+ return true;
265590
+ }
265591
+ }
265592
+ return false;
265593
+ }
265594
+ };
265595
+ module.exports = Range2;
265596
+ var LRU = __import____internal_lrucache;
265597
+ var cache5 = new LRU();
265598
+ var parseOptions = __import____internal_parseOptions;
265599
+ var Comparator2 = __import___comparator;
265600
+ var debug14 = __import____internal_debug;
265601
+ var SemVer = __import___semver;
265602
+ var {
265603
+ safeRe: re,
265604
+ t,
265605
+ comparatorTrimReplace,
265606
+ tildeTrimReplace,
265607
+ caretTrimReplace
265608
+ } = __import____internal_re;
265609
+ var { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __import____internal_constants;
265610
+ var isNullSet = (c) => c.value === "<0.0.0-0";
265611
+ var isAny = (c) => c.value === "";
265612
+ var isSatisfiable = (comparators, options) => {
265613
+ let result = true;
265614
+ const remainingComparators = comparators.slice();
265615
+ let testComparator = remainingComparators.pop();
265616
+ while (result && remainingComparators.length) {
265617
+ result = remainingComparators.every((otherComparator) => {
265618
+ return testComparator.intersects(otherComparator, options);
265619
+ });
265620
+ testComparator = remainingComparators.pop();
265621
+ }
265622
+ return result;
265623
+ };
265624
+ var parseComparator = (comp, options) => {
265625
+ debug14("comp", comp, options);
265626
+ comp = replaceCarets(comp, options);
265627
+ debug14("caret", comp);
265628
+ comp = replaceTildes(comp, options);
265629
+ debug14("tildes", comp);
265630
+ comp = replaceXRanges(comp, options);
265631
+ debug14("xrange", comp);
265632
+ comp = replaceStars(comp, options);
265633
+ debug14("stars", comp);
265634
+ return comp;
265635
+ };
265636
+ var isX = (id) => !id || id.toLowerCase() === "x" || id === "*";
265637
+ var replaceTildes = (comp, options) => {
265638
+ return comp.trim().split(/\s+/).map((c) => replaceTilde(c, options)).join(" ");
265639
+ };
265640
+ var replaceTilde = (comp, options) => {
265641
+ const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE];
265642
+ return comp.replace(r, (_, M, m, p, pr) => {
265643
+ debug14("tilde", comp, _, M, m, p, pr);
265644
+ let ret;
265645
+ if (isX(M)) {
265646
+ ret = "";
265647
+ } else if (isX(m)) {
265648
+ ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;
265649
+ } else if (isX(p)) {
265650
+ ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;
265651
+ } else if (pr) {
265652
+ debug14("replaceTilde pr", pr);
265653
+ ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`;
265654
+ } else {
265655
+ ret = `>=${M}.${m}.${p} <${M}.${+m + 1}.0-0`;
265656
+ }
265657
+ debug14("tilde return", ret);
265658
+ return ret;
265659
+ });
265660
+ };
265661
+ var replaceCarets = (comp, options) => {
265662
+ return comp.trim().split(/\s+/).map((c) => replaceCaret(c, options)).join(" ");
265663
+ };
265664
+ var replaceCaret = (comp, options) => {
265665
+ debug14("caret", comp, options);
265666
+ const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET];
265667
+ const z = options.includePrerelease ? "-0" : "";
265668
+ return comp.replace(r, (_, M, m, p, pr) => {
265669
+ debug14("caret", comp, _, M, m, p, pr);
265670
+ let ret;
265671
+ if (isX(M)) {
265672
+ ret = "";
265673
+ } else if (isX(m)) {
265674
+ ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`;
265675
+ } else if (isX(p)) {
265676
+ if (M === "0") {
265677
+ ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`;
265678
+ } else {
265679
+ ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0`;
265680
+ }
265681
+ } else if (pr) {
265682
+ debug14("replaceCaret pr", pr);
265683
+ if (M === "0") {
265684
+ if (m === "0") {
265685
+ ret = `>=${M}.${m}.${p}-${pr} <${M}.${m}.${+p + 1}-0`;
265686
+ } else {
265687
+ ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`;
265688
+ }
265689
+ } else {
265690
+ ret = `>=${M}.${m}.${p}-${pr} <${+M + 1}.0.0-0`;
265691
+ }
265692
+ } else {
265693
+ debug14("no pr");
265694
+ if (M === "0") {
265695
+ if (m === "0") {
265696
+ ret = `>=${M}.${m}.${p}${z} <${M}.${m}.${+p + 1}-0`;
265697
+ } else {
265698
+ ret = `>=${M}.${m}.${p}${z} <${M}.${+m + 1}.0-0`;
265699
+ }
265700
+ } else {
265701
+ ret = `>=${M}.${m}.${p} <${+M + 1}.0.0-0`;
265702
+ }
265703
+ }
265704
+ debug14("caret return", ret);
265705
+ return ret;
265706
+ });
265707
+ };
265708
+ var replaceXRanges = (comp, options) => {
265709
+ debug14("replaceXRanges", comp, options);
265710
+ return comp.split(/\s+/).map((c) => replaceXRange(c, options)).join(" ");
265711
+ };
265712
+ var replaceXRange = (comp, options) => {
265713
+ comp = comp.trim();
265714
+ const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE];
265715
+ return comp.replace(r, (ret, gtlt, M, m, p, pr) => {
265716
+ debug14("xRange", comp, ret, gtlt, M, m, p, pr);
265717
+ const xM = isX(M);
265718
+ const xm = xM || isX(m);
265719
+ const xp = xm || isX(p);
265720
+ const anyX = xp;
265721
+ if (gtlt === "=" && anyX) {
265722
+ gtlt = "";
265723
+ }
265724
+ pr = options.includePrerelease ? "-0" : "";
265725
+ if (xM) {
265726
+ if (gtlt === ">" || gtlt === "<") {
265727
+ ret = "<0.0.0-0";
265728
+ } else {
265729
+ ret = "*";
265730
+ }
265731
+ } else if (gtlt && anyX) {
265732
+ if (xm) {
265733
+ m = 0;
265734
+ }
265735
+ p = 0;
265736
+ if (gtlt === ">") {
265737
+ gtlt = ">=";
265738
+ if (xm) {
265739
+ M = +M + 1;
265740
+ m = 0;
265741
+ p = 0;
265742
+ } else {
265743
+ m = +m + 1;
265744
+ p = 0;
265745
+ }
265746
+ } else if (gtlt === "<=") {
265747
+ gtlt = "<";
265748
+ if (xm) {
265749
+ M = +M + 1;
265750
+ } else {
265751
+ m = +m + 1;
265752
+ }
265753
+ }
265754
+ if (gtlt === "<") {
265755
+ pr = "-0";
265756
+ }
265757
+ ret = `${gtlt + M}.${m}.${p}${pr}`;
265758
+ } else if (xm) {
265759
+ ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0`;
265760
+ } else if (xp) {
265761
+ ret = `>=${M}.${m}.0${pr} <${M}.${+m + 1}.0-0`;
265762
+ }
265763
+ debug14("xRange return", ret);
265764
+ return ret;
265765
+ });
265766
+ };
265767
+ var replaceStars = (comp, options) => {
265768
+ debug14("replaceStars", comp, options);
265769
+ return comp.trim().replace(re[t.STAR], "");
265770
+ };
265771
+ var replaceGTE0 = (comp, options) => {
265772
+ debug14("replaceGTE0", comp, options);
265773
+ return comp.trim().replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], "");
265774
+ };
265775
+ var hyphenReplace = (incPr) => ($0, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr) => {
265776
+ if (isX(fM)) {
265777
+ from = "";
265778
+ } else if (isX(fm)) {
265779
+ from = `>=${fM}.0.0${incPr ? "-0" : ""}`;
265780
+ } else if (isX(fp)) {
265781
+ from = `>=${fM}.${fm}.0${incPr ? "-0" : ""}`;
265782
+ } else if (fpr) {
265783
+ from = `>=${from}`;
265784
+ } else {
265785
+ from = `>=${from}${incPr ? "-0" : ""}`;
265786
+ }
265787
+ if (isX(tM)) {
265788
+ to = "";
265789
+ } else if (isX(tm)) {
265790
+ to = `<${+tM + 1}.0.0-0`;
265791
+ } else if (isX(tp)) {
265792
+ to = `<${tM}.${+tm + 1}.0-0`;
265793
+ } else if (tpr) {
265794
+ to = `<=${tM}.${tm}.${tp}-${tpr}`;
265795
+ } else if (incPr) {
265796
+ to = `<${tM}.${tm}.${+tp + 1}-0`;
265797
+ } else {
265798
+ to = `<=${to}`;
265799
+ }
265800
+ return `${from} ${to}`.trim();
265801
+ };
265802
+ var testSet = (set5, version6, options) => {
265803
+ for (let i = 0; i < set5.length; i++) {
265804
+ if (!set5[i].test(version6)) {
265805
+ return false;
265806
+ }
265807
+ }
265808
+ if (version6.prerelease.length && !options.includePrerelease) {
265809
+ for (let i = 0; i < set5.length; i++) {
265810
+ debug14(set5[i].semver);
265811
+ if (set5[i].semver === Comparator2.ANY) {
265812
+ continue;
265813
+ }
265814
+ if (set5[i].semver.prerelease.length > 0) {
265815
+ const allowed = set5[i].semver;
265816
+ if (allowed.major === version6.major && allowed.minor === version6.minor && allowed.patch === version6.patch) {
265817
+ return true;
265818
+ }
265819
+ }
265820
+ }
265821
+ return false;
265822
+ }
265823
+ return true;
265824
+ };
265825
+ }
265826
+ });
265827
+
265828
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/comparator.js
265829
+ var require_comparator = __commonJS({
265830
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/classes/comparator.js"(exports2, module) {
265831
+ init_esm_shims();
265832
+ var __import____internal_parseOptions = __toESM(require_parse_options());
265833
+ var __import____internal_re = __toESM(require_re());
265834
+ var __import____functions_cmp = __toESM(require_cmp());
265835
+ var __import____internal_debug = __toESM(require_debug2());
265836
+ var __import___semver = __toESM(require_semver2());
265837
+ var __import___range = __toESM(require_range());
265838
+ var ANY = Symbol("SemVer ANY");
265839
+ var Comparator2 = class _Comparator {
265840
+ static get ANY() {
265841
+ return ANY;
265842
+ }
265843
+ constructor(comp, options) {
265844
+ options = parseOptions(options);
265845
+ if (comp instanceof _Comparator) {
265846
+ if (comp.loose === !!options.loose) {
265847
+ return comp;
265848
+ } else {
265849
+ comp = comp.value;
265850
+ }
265851
+ }
265852
+ comp = comp.trim().split(/\s+/).join(" ");
265853
+ debug14("comparator", comp, options);
265854
+ this.options = options;
265855
+ this.loose = !!options.loose;
265856
+ this.parse(comp);
265857
+ if (this.semver === ANY) {
265858
+ this.value = "";
265859
+ } else {
265860
+ this.value = this.operator + this.semver.version;
265861
+ }
265862
+ debug14("comp", this);
265863
+ }
265864
+ parse(comp) {
265865
+ const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR];
265866
+ const m = comp.match(r);
265867
+ if (!m) {
265868
+ throw new TypeError(`Invalid comparator: ${comp}`);
265869
+ }
265870
+ this.operator = m[1] !== void 0 ? m[1] : "";
265871
+ if (this.operator === "=") {
265872
+ this.operator = "";
265873
+ }
265874
+ if (!m[2]) {
265875
+ this.semver = ANY;
265876
+ } else {
265877
+ this.semver = new SemVer(m[2], this.options.loose);
265878
+ }
265879
+ }
265880
+ toString() {
265881
+ return this.value;
265882
+ }
265883
+ test(version6) {
265884
+ debug14("Comparator.test", version6, this.options.loose);
265885
+ if (this.semver === ANY || version6 === ANY) {
265886
+ return true;
265887
+ }
265888
+ if (typeof version6 === "string") {
265889
+ try {
265890
+ version6 = new SemVer(version6, this.options);
265891
+ } catch (er) {
265892
+ return false;
265893
+ }
265894
+ }
265895
+ return cmp(version6, this.operator, this.semver, this.options);
265896
+ }
265897
+ intersects(comp, options) {
265898
+ if (!(comp instanceof _Comparator)) {
265899
+ throw new TypeError("a Comparator is required");
265900
+ }
265901
+ if (this.operator === "") {
265902
+ if (this.value === "") {
265903
+ return true;
265904
+ }
265905
+ return new Range2(comp.value, options).test(this.value);
265906
+ } else if (comp.operator === "") {
265907
+ if (comp.value === "") {
265908
+ return true;
265909
+ }
265910
+ return new Range2(this.value, options).test(comp.semver);
265911
+ }
265912
+ options = parseOptions(options);
265913
+ if (options.includePrerelease && (this.value === "<0.0.0-0" || comp.value === "<0.0.0-0")) {
265914
+ return false;
265915
+ }
265916
+ if (!options.includePrerelease && (this.value.startsWith("<0.0.0") || comp.value.startsWith("<0.0.0"))) {
265917
+ return false;
265918
+ }
265919
+ if (this.operator.startsWith(">") && comp.operator.startsWith(">")) {
265920
+ return true;
265921
+ }
265922
+ if (this.operator.startsWith("<") && comp.operator.startsWith("<")) {
265923
+ return true;
265924
+ }
265925
+ if (this.semver.version === comp.semver.version && this.operator.includes("=") && comp.operator.includes("=")) {
265926
+ return true;
265927
+ }
265928
+ if (cmp(this.semver, "<", comp.semver, options) && this.operator.startsWith(">") && comp.operator.startsWith("<")) {
265929
+ return true;
265930
+ }
265931
+ if (cmp(this.semver, ">", comp.semver, options) && this.operator.startsWith("<") && comp.operator.startsWith(">")) {
265932
+ return true;
265933
+ }
265934
+ return false;
265935
+ }
265936
+ };
265937
+ module.exports = Comparator2;
265938
+ var parseOptions = __import____internal_parseOptions;
265939
+ var { safeRe: re, t } = __import____internal_re;
265940
+ var cmp = __import____functions_cmp;
265941
+ var debug14 = __import____internal_debug;
265942
+ var SemVer = __import___semver;
265943
+ var Range2 = __import___range;
265944
+ }
265945
+ });
265946
+
265947
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/satisfies.js
265948
+ var require_satisfies = __commonJS({
265949
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/satisfies.js"(exports2, module) {
265950
+ init_esm_shims();
265951
+ var __import____classes_range = __toESM(require_range());
265952
+ var Range2 = __import____classes_range;
265953
+ var satisfies = (version6, range2, options) => {
265954
+ try {
265955
+ range2 = new Range2(range2, options);
265956
+ } catch (er) {
265957
+ return false;
265958
+ }
265959
+ return range2.test(version6);
265960
+ };
265961
+ module.exports = satisfies;
265962
+ }
265963
+ });
265964
+
265965
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/to-comparators.js
265966
+ var require_to_comparators = __commonJS({
265967
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/to-comparators.js"(exports2, module) {
265968
+ init_esm_shims();
265969
+ var __import____classes_range = __toESM(require_range());
265970
+ var Range2 = __import____classes_range;
265971
+ var toComparators = (range2, options) => new Range2(range2, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
265972
+ module.exports = toComparators;
265973
+ }
265974
+ });
265975
+
265976
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/max-satisfying.js
265977
+ var require_max_satisfying = __commonJS({
265978
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/max-satisfying.js"(exports2, module) {
265979
+ init_esm_shims();
265980
+ var __import____classes_semver = __toESM(require_semver2());
265981
+ var __import____classes_range = __toESM(require_range());
265982
+ var SemVer = __import____classes_semver;
265983
+ var Range2 = __import____classes_range;
265984
+ var maxSatisfying = (versions, range2, options) => {
265985
+ let max4 = null;
265986
+ let maxSV = null;
265987
+ let rangeObj = null;
265988
+ try {
265989
+ rangeObj = new Range2(range2, options);
265990
+ } catch (er) {
265991
+ return null;
265992
+ }
265993
+ versions.forEach((v) => {
265994
+ if (rangeObj.test(v)) {
265995
+ if (!max4 || maxSV.compare(v) === -1) {
265996
+ max4 = v;
265997
+ maxSV = new SemVer(max4, options);
265998
+ }
265999
+ }
266000
+ });
266001
+ return max4;
266002
+ };
266003
+ module.exports = maxSatisfying;
266004
+ }
266005
+ });
266006
+
266007
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/min-satisfying.js
266008
+ var require_min_satisfying = __commonJS({
266009
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/min-satisfying.js"(exports2, module) {
266010
+ init_esm_shims();
266011
+ var __import____classes_semver = __toESM(require_semver2());
266012
+ var __import____classes_range = __toESM(require_range());
266013
+ var SemVer = __import____classes_semver;
266014
+ var Range2 = __import____classes_range;
266015
+ var minSatisfying = (versions, range2, options) => {
266016
+ let min3 = null;
266017
+ let minSV = null;
266018
+ let rangeObj = null;
266019
+ try {
266020
+ rangeObj = new Range2(range2, options);
266021
+ } catch (er) {
266022
+ return null;
266023
+ }
266024
+ versions.forEach((v) => {
266025
+ if (rangeObj.test(v)) {
266026
+ if (!min3 || minSV.compare(v) === 1) {
266027
+ min3 = v;
266028
+ minSV = new SemVer(min3, options);
266029
+ }
266030
+ }
266031
+ });
266032
+ return min3;
266033
+ };
266034
+ module.exports = minSatisfying;
266035
+ }
266036
+ });
266037
+
266038
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/min-version.js
266039
+ var require_min_version = __commonJS({
266040
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/min-version.js"(exports2, module) {
266041
+ init_esm_shims();
266042
+ var __import____classes_semver = __toESM(require_semver2());
266043
+ var __import____classes_range = __toESM(require_range());
266044
+ var __import____functions_gt = __toESM(require_gt());
266045
+ var SemVer = __import____classes_semver;
266046
+ var Range2 = __import____classes_range;
266047
+ var gt = __import____functions_gt;
266048
+ var minVersion = (range2, loose) => {
266049
+ range2 = new Range2(range2, loose);
266050
+ let minver = new SemVer("0.0.0");
266051
+ if (range2.test(minver)) {
266052
+ return minver;
266053
+ }
266054
+ minver = new SemVer("0.0.0-0");
266055
+ if (range2.test(minver)) {
266056
+ return minver;
266057
+ }
266058
+ minver = null;
266059
+ for (let i = 0; i < range2.set.length; ++i) {
266060
+ const comparators = range2.set[i];
266061
+ let setMin = null;
266062
+ comparators.forEach((comparator) => {
266063
+ const compver = new SemVer(comparator.semver.version);
266064
+ switch (comparator.operator) {
266065
+ case ">":
266066
+ if (compver.prerelease.length === 0) {
266067
+ compver.patch++;
266068
+ } else {
266069
+ compver.prerelease.push(0);
266070
+ }
266071
+ compver.raw = compver.format();
266072
+ /* fallthrough */
266073
+ case "":
266074
+ case ">=":
266075
+ if (!setMin || gt(compver, setMin)) {
266076
+ setMin = compver;
266077
+ }
266078
+ break;
266079
+ case "<":
266080
+ case "<=":
266081
+ break;
266082
+ /* istanbul ignore next */
266083
+ default:
266084
+ throw new Error(`Unexpected operation: ${comparator.operator}`);
266085
+ }
266086
+ });
266087
+ if (setMin && (!minver || gt(minver, setMin))) {
266088
+ minver = setMin;
266089
+ }
266090
+ }
266091
+ if (minver && range2.test(minver)) {
266092
+ return minver;
266093
+ }
266094
+ return null;
266095
+ };
266096
+ module.exports = minVersion;
266097
+ }
266098
+ });
266099
+
266100
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/valid.js
266101
+ var require_valid3 = __commonJS({
266102
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/valid.js"(exports2, module) {
266103
+ init_esm_shims();
266104
+ var __import____classes_range = __toESM(require_range());
266105
+ var Range2 = __import____classes_range;
266106
+ var validRange3 = (range2, options) => {
266107
+ try {
266108
+ return new Range2(range2, options).range || "*";
266109
+ } catch (er) {
266110
+ return null;
266111
+ }
266112
+ };
266113
+ module.exports = validRange3;
266114
+ }
266115
+ });
266116
+
266117
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/outside.js
266118
+ var require_outside = __commonJS({
266119
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/outside.js"(exports2, module) {
266120
+ init_esm_shims();
266121
+ var __import____classes_semver = __toESM(require_semver2());
266122
+ var __import____classes_comparator = __toESM(require_comparator());
266123
+ var __import____classes_range = __toESM(require_range());
266124
+ var __import____functions_satisfies = __toESM(require_satisfies());
266125
+ var __import____functions_gt = __toESM(require_gt());
266126
+ var __import____functions_lt = __toESM(require_lt());
266127
+ var __import____functions_lte = __toESM(require_lte());
266128
+ var __import____functions_gte = __toESM(require_gte());
266129
+ var SemVer = __import____classes_semver;
266130
+ var Comparator2 = __import____classes_comparator;
266131
+ var { ANY } = Comparator2;
266132
+ var Range2 = __import____classes_range;
266133
+ var satisfies = __import____functions_satisfies;
266134
+ var gt = __import____functions_gt;
266135
+ var lt = __import____functions_lt;
266136
+ var lte2 = __import____functions_lte;
266137
+ var gte2 = __import____functions_gte;
266138
+ var outside = (version6, range2, hilo, options) => {
266139
+ version6 = new SemVer(version6, options);
266140
+ range2 = new Range2(range2, options);
266141
+ let gtfn, ltefn, ltfn, comp, ecomp;
266142
+ switch (hilo) {
266143
+ case ">":
266144
+ gtfn = gt;
266145
+ ltefn = lte2;
266146
+ ltfn = lt;
266147
+ comp = ">";
266148
+ ecomp = ">=";
266149
+ break;
266150
+ case "<":
266151
+ gtfn = lt;
266152
+ ltefn = gte2;
266153
+ ltfn = gt;
266154
+ comp = "<";
266155
+ ecomp = "<=";
266156
+ break;
266157
+ default:
266158
+ throw new TypeError('Must provide a hilo val of "<" or ">"');
266159
+ }
266160
+ if (satisfies(version6, range2, options)) {
266161
+ return false;
266162
+ }
266163
+ for (let i = 0; i < range2.set.length; ++i) {
266164
+ const comparators = range2.set[i];
266165
+ let high = null;
266166
+ let low = null;
266167
+ comparators.forEach((comparator) => {
266168
+ if (comparator.semver === ANY) {
266169
+ comparator = new Comparator2(">=0.0.0");
266170
+ }
266171
+ high = high || comparator;
266172
+ low = low || comparator;
266173
+ if (gtfn(comparator.semver, high.semver, options)) {
266174
+ high = comparator;
266175
+ } else if (ltfn(comparator.semver, low.semver, options)) {
266176
+ low = comparator;
266177
+ }
266178
+ });
266179
+ if (high.operator === comp || high.operator === ecomp) {
266180
+ return false;
266181
+ }
266182
+ if ((!low.operator || low.operator === comp) && ltefn(version6, low.semver)) {
266183
+ return false;
266184
+ } else if (low.operator === ecomp && ltfn(version6, low.semver)) {
266185
+ return false;
266186
+ }
266187
+ }
266188
+ return true;
266189
+ };
266190
+ module.exports = outside;
266191
+ }
266192
+ });
266193
+
266194
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/gtr.js
266195
+ var require_gtr = __commonJS({
266196
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/gtr.js"(exports2, module) {
266197
+ init_esm_shims();
266198
+ var __import___outside = __toESM(require_outside());
266199
+ var outside = __import___outside;
266200
+ var gtr = (version6, range2, options) => outside(version6, range2, ">", options);
266201
+ module.exports = gtr;
266202
+ }
266203
+ });
266204
+
266205
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/ltr.js
266206
+ var require_ltr = __commonJS({
266207
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/ltr.js"(exports2, module) {
266208
+ init_esm_shims();
266209
+ var __import___outside = __toESM(require_outside());
266210
+ var outside = __import___outside;
266211
+ var ltr = (version6, range2, options) => outside(version6, range2, "<", options);
266212
+ module.exports = ltr;
266213
+ }
266214
+ });
266215
+
266216
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/intersects.js
266217
+ var require_intersects = __commonJS({
266218
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/intersects.js"(exports2, module) {
266219
+ init_esm_shims();
266220
+ var __import____classes_range = __toESM(require_range());
266221
+ var Range2 = __import____classes_range;
266222
+ var intersects = (r1, r2, options) => {
266223
+ r1 = new Range2(r1, options);
266224
+ r2 = new Range2(r2, options);
266225
+ return r1.intersects(r2, options);
266226
+ };
266227
+ module.exports = intersects;
266228
+ }
266229
+ });
266230
+
266231
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/simplify.js
266232
+ var require_simplify = __commonJS({
266233
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/simplify.js"(exports2, module) {
266234
+ init_esm_shims();
266235
+ var __import____functions_satisfies_js = __toESM(require_satisfies());
266236
+ var __import____functions_compare_js = __toESM(require_compare());
266237
+ var satisfies = __import____functions_satisfies_js;
266238
+ var compare6 = __import____functions_compare_js;
266239
+ module.exports = (versions, range2, options) => {
266240
+ const set5 = [];
266241
+ let first3 = null;
266242
+ let prev = null;
266243
+ const v = versions.sort((a, b) => compare6(a, b, options));
266244
+ for (const version6 of v) {
266245
+ const included = satisfies(version6, range2, options);
266246
+ if (included) {
266247
+ prev = version6;
266248
+ if (!first3) {
266249
+ first3 = version6;
266250
+ }
266251
+ } else {
266252
+ if (prev) {
266253
+ set5.push([first3, prev]);
266254
+ }
266255
+ prev = null;
266256
+ first3 = null;
266257
+ }
266258
+ }
266259
+ if (first3) {
266260
+ set5.push([first3, null]);
266261
+ }
266262
+ const ranges = [];
266263
+ for (const [min3, max4] of set5) {
266264
+ if (min3 === max4) {
266265
+ ranges.push(min3);
266266
+ } else if (!max4 && min3 === v[0]) {
266267
+ ranges.push("*");
266268
+ } else if (!max4) {
266269
+ ranges.push(`>=${min3}`);
266270
+ } else if (min3 === v[0]) {
266271
+ ranges.push(`<=${max4}`);
266272
+ } else {
266273
+ ranges.push(`${min3} - ${max4}`);
266274
+ }
266275
+ }
266276
+ const simplified = ranges.join(" || ");
266277
+ const original = typeof range2.raw === "string" ? range2.raw : String(range2);
266278
+ return simplified.length < original.length ? simplified : range2;
266279
+ };
266280
+ }
266281
+ });
266282
+
266283
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/subset.js
266284
+ var require_subset = __commonJS({
266285
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/ranges/subset.js"(exports2, module) {
266286
+ init_esm_shims();
266287
+ var __import____classes_range_js = __toESM(require_range());
266288
+ var __import____classes_comparator_js = __toESM(require_comparator());
266289
+ var __import____functions_satisfies_js = __toESM(require_satisfies());
266290
+ var __import____functions_compare_js = __toESM(require_compare());
266291
+ var Range2 = __import____classes_range_js;
266292
+ var Comparator2 = __import____classes_comparator_js;
266293
+ var { ANY } = Comparator2;
266294
+ var satisfies = __import____functions_satisfies_js;
266295
+ var compare6 = __import____functions_compare_js;
266296
+ var subset = (sub, dom, options = {}) => {
266297
+ if (sub === dom) {
266298
+ return true;
266299
+ }
266300
+ sub = new Range2(sub, options);
266301
+ dom = new Range2(dom, options);
266302
+ let sawNonNull = false;
266303
+ OUTER: for (const simpleSub of sub.set) {
266304
+ for (const simpleDom of dom.set) {
266305
+ const isSub = simpleSubset(simpleSub, simpleDom, options);
266306
+ sawNonNull = sawNonNull || isSub !== null;
266307
+ if (isSub) {
266308
+ continue OUTER;
266309
+ }
266310
+ }
266311
+ if (sawNonNull) {
266312
+ return false;
266313
+ }
266314
+ }
266315
+ return true;
266316
+ };
266317
+ var minimumVersionWithPreRelease = [new Comparator2(">=0.0.0-0")];
266318
+ var minimumVersion = [new Comparator2(">=0.0.0")];
266319
+ var simpleSubset = (sub, dom, options) => {
266320
+ if (sub === dom) {
266321
+ return true;
266322
+ }
266323
+ if (sub.length === 1 && sub[0].semver === ANY) {
266324
+ if (dom.length === 1 && dom[0].semver === ANY) {
266325
+ return true;
266326
+ } else if (options.includePrerelease) {
266327
+ sub = minimumVersionWithPreRelease;
266328
+ } else {
266329
+ sub = minimumVersion;
266330
+ }
266331
+ }
266332
+ if (dom.length === 1 && dom[0].semver === ANY) {
266333
+ if (options.includePrerelease) {
266334
+ return true;
266335
+ } else {
266336
+ dom = minimumVersion;
266337
+ }
266338
+ }
266339
+ const eqSet = /* @__PURE__ */ new Set();
266340
+ let gt, lt;
266341
+ for (const c of sub) {
266342
+ if (c.operator === ">" || c.operator === ">=") {
266343
+ gt = higherGT(gt, c, options);
266344
+ } else if (c.operator === "<" || c.operator === "<=") {
266345
+ lt = lowerLT(lt, c, options);
266346
+ } else {
266347
+ eqSet.add(c.semver);
266348
+ }
266349
+ }
266350
+ if (eqSet.size > 1) {
266351
+ return null;
266352
+ }
266353
+ let gtltComp;
266354
+ if (gt && lt) {
266355
+ gtltComp = compare6(gt.semver, lt.semver, options);
266356
+ if (gtltComp > 0) {
266357
+ return null;
266358
+ } else if (gtltComp === 0 && (gt.operator !== ">=" || lt.operator !== "<=")) {
266359
+ return null;
266360
+ }
266361
+ }
266362
+ for (const eq2 of eqSet) {
266363
+ if (gt && !satisfies(eq2, String(gt), options)) {
266364
+ return null;
266365
+ }
266366
+ if (lt && !satisfies(eq2, String(lt), options)) {
266367
+ return null;
266368
+ }
266369
+ for (const c of dom) {
266370
+ if (!satisfies(eq2, String(c), options)) {
266371
+ return false;
266372
+ }
266373
+ }
266374
+ return true;
266375
+ }
266376
+ let higher, lower;
266377
+ let hasDomLT, hasDomGT;
266378
+ let needDomLTPre = lt && !options.includePrerelease && lt.semver.prerelease.length ? lt.semver : false;
266379
+ let needDomGTPre = gt && !options.includePrerelease && gt.semver.prerelease.length ? gt.semver : false;
266380
+ if (needDomLTPre && needDomLTPre.prerelease.length === 1 && lt.operator === "<" && needDomLTPre.prerelease[0] === 0) {
266381
+ needDomLTPre = false;
266382
+ }
266383
+ for (const c of dom) {
266384
+ hasDomGT = hasDomGT || c.operator === ">" || c.operator === ">=";
266385
+ hasDomLT = hasDomLT || c.operator === "<" || c.operator === "<=";
266386
+ if (gt) {
266387
+ if (needDomGTPre) {
266388
+ if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomGTPre.major && c.semver.minor === needDomGTPre.minor && c.semver.patch === needDomGTPre.patch) {
266389
+ needDomGTPre = false;
266390
+ }
266391
+ }
266392
+ if (c.operator === ">" || c.operator === ">=") {
266393
+ higher = higherGT(gt, c, options);
266394
+ if (higher === c && higher !== gt) {
266395
+ return false;
266396
+ }
266397
+ } else if (gt.operator === ">=" && !satisfies(gt.semver, String(c), options)) {
266398
+ return false;
266399
+ }
266400
+ }
266401
+ if (lt) {
266402
+ if (needDomLTPre) {
266403
+ if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomLTPre.major && c.semver.minor === needDomLTPre.minor && c.semver.patch === needDomLTPre.patch) {
266404
+ needDomLTPre = false;
266405
+ }
266406
+ }
266407
+ if (c.operator === "<" || c.operator === "<=") {
266408
+ lower = lowerLT(lt, c, options);
266409
+ if (lower === c && lower !== lt) {
266410
+ return false;
266411
+ }
266412
+ } else if (lt.operator === "<=" && !satisfies(lt.semver, String(c), options)) {
266413
+ return false;
266414
+ }
266415
+ }
266416
+ if (!c.operator && (lt || gt) && gtltComp !== 0) {
266417
+ return false;
266418
+ }
266419
+ }
266420
+ if (gt && hasDomLT && !lt && gtltComp !== 0) {
266421
+ return false;
266422
+ }
266423
+ if (lt && hasDomGT && !gt && gtltComp !== 0) {
266424
+ return false;
266425
+ }
266426
+ if (needDomGTPre || needDomLTPre) {
266427
+ return false;
266428
+ }
266429
+ return true;
266430
+ };
266431
+ var higherGT = (a, b, options) => {
266432
+ if (!a) {
266433
+ return b;
266434
+ }
266435
+ const comp = compare6(a.semver, b.semver, options);
266436
+ return comp > 0 ? a : comp < 0 ? b : b.operator === ">" && a.operator === ">=" ? b : a;
266437
+ };
266438
+ var lowerLT = (a, b, options) => {
266439
+ if (!a) {
266440
+ return b;
266441
+ }
266442
+ const comp = compare6(a.semver, b.semver, options);
266443
+ return comp < 0 ? a : comp > 0 ? b : b.operator === "<" && a.operator === "<=" ? b : a;
266444
+ };
266445
+ module.exports = subset;
266446
+ }
266447
+ });
266448
+
266449
+ // ../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/index.js
266450
+ var require_semver3 = __commonJS({
266451
+ "../../node_modules/.pnpm/semver@7.6.2/node_modules/semver/index.js"(exports2, module) {
266452
+ init_esm_shims();
266453
+ var __import___internal_re = __toESM(require_re());
266454
+ var __import___internal_constants = __toESM(require_constants5());
266455
+ var __import___classes_semver = __toESM(require_semver2());
266456
+ var __import___internal_identifiers = __toESM(require_identifiers());
266457
+ var __import___functions_parse = __toESM(require_parse5());
266458
+ var __import___functions_valid = __toESM(require_valid2());
266459
+ var __import___functions_clean = __toESM(require_clean2());
266460
+ var __import___functions_inc = __toESM(require_inc());
266461
+ var __import___functions_diff = __toESM(require_diff());
266462
+ var __import___functions_major = __toESM(require_major());
266463
+ var __import___functions_minor = __toESM(require_minor());
266464
+ var __import___functions_patch = __toESM(require_patch());
266465
+ var __import___functions_prerelease = __toESM(require_prerelease());
266466
+ var __import___functions_compare = __toESM(require_compare());
266467
+ var __import___functions_rcompare = __toESM(require_rcompare());
266468
+ var __import___functions_compareLoose = __toESM(require_compare_loose());
266469
+ var __import___functions_compareBuild = __toESM(require_compare_build());
266470
+ var __import___functions_sort = __toESM(require_sort());
266471
+ var __import___functions_rsort = __toESM(require_rsort());
266472
+ var __import___functions_gt = __toESM(require_gt());
266473
+ var __import___functions_lt = __toESM(require_lt());
266474
+ var __import___functions_eq = __toESM(require_eq());
266475
+ var __import___functions_neq = __toESM(require_neq());
266476
+ var __import___functions_gte = __toESM(require_gte());
266477
+ var __import___functions_lte = __toESM(require_lte());
266478
+ var __import___functions_cmp = __toESM(require_cmp());
266479
+ var __import___functions_coerce = __toESM(require_coerce());
266480
+ var __import___classes_comparator = __toESM(require_comparator());
266481
+ var __import___classes_range = __toESM(require_range());
266482
+ var __import___functions_satisfies = __toESM(require_satisfies());
266483
+ var __import___ranges_toComparators = __toESM(require_to_comparators());
266484
+ var __import___ranges_maxSatisfying = __toESM(require_max_satisfying());
266485
+ var __import___ranges_minSatisfying = __toESM(require_min_satisfying());
266486
+ var __import___ranges_minVersion = __toESM(require_min_version());
266487
+ var __import___ranges_valid = __toESM(require_valid3());
266488
+ var __import___ranges_outside = __toESM(require_outside());
266489
+ var __import___ranges_gtr = __toESM(require_gtr());
266490
+ var __import___ranges_ltr = __toESM(require_ltr());
266491
+ var __import___ranges_intersects = __toESM(require_intersects());
266492
+ var __import___ranges_simplify = __toESM(require_simplify());
266493
+ var __import___ranges_subset = __toESM(require_subset());
266494
+ var internalRe = __import___internal_re;
266495
+ var constants = __import___internal_constants;
266496
+ var SemVer = __import___classes_semver;
266497
+ var identifiers = __import___internal_identifiers;
266498
+ var parse9 = __import___functions_parse;
266499
+ var valid = __import___functions_valid;
266500
+ var clean6 = __import___functions_clean;
266501
+ var inc = __import___functions_inc;
266502
+ var diff = __import___functions_diff;
266503
+ var major = __import___functions_major;
266504
+ var minor = __import___functions_minor;
266505
+ var patch2 = __import___functions_patch;
266506
+ var prerelease = __import___functions_prerelease;
266507
+ var compare6 = __import___functions_compare;
266508
+ var rcompare2 = __import___functions_rcompare;
266509
+ var compareLoose = __import___functions_compareLoose;
266510
+ var compareBuild = __import___functions_compareBuild;
266511
+ var sort = __import___functions_sort;
266512
+ var rsort = __import___functions_rsort;
266513
+ var gt = __import___functions_gt;
266514
+ var lt = __import___functions_lt;
266515
+ var eq2 = __import___functions_eq;
266516
+ var neq = __import___functions_neq;
266517
+ var gte2 = __import___functions_gte;
266518
+ var lte2 = __import___functions_lte;
266519
+ var cmp = __import___functions_cmp;
266520
+ var coerce = __import___functions_coerce;
266521
+ var Comparator2 = __import___classes_comparator;
266522
+ var Range2 = __import___classes_range;
266523
+ var satisfies = __import___functions_satisfies;
266524
+ var toComparators = __import___ranges_toComparators;
266525
+ var maxSatisfying = __import___ranges_maxSatisfying;
266526
+ var minSatisfying = __import___ranges_minSatisfying;
266527
+ var minVersion = __import___ranges_minVersion;
266528
+ var validRange3 = __import___ranges_valid;
266529
+ var outside = __import___ranges_outside;
266530
+ var gtr = __import___ranges_gtr;
266531
+ var ltr = __import___ranges_ltr;
266532
+ var intersects = __import___ranges_intersects;
266533
+ var simplifyRange = __import___ranges_simplify;
266534
+ var subset = __import___ranges_subset;
266535
+ module.exports = {
266536
+ parse: parse9,
266537
+ valid,
266538
+ clean: clean6,
266539
+ inc,
266540
+ diff,
266541
+ major,
266542
+ minor,
266543
+ patch: patch2,
266544
+ prerelease,
266545
+ compare: compare6,
266546
+ rcompare: rcompare2,
266547
+ compareLoose,
266548
+ compareBuild,
266549
+ sort,
266550
+ rsort,
266551
+ gt,
266552
+ lt,
266553
+ eq: eq2,
266554
+ neq,
266555
+ gte: gte2,
266556
+ lte: lte2,
266557
+ cmp,
266558
+ coerce,
266559
+ Comparator: Comparator2,
266560
+ Range: Range2,
266561
+ satisfies,
266562
+ toComparators,
266563
+ maxSatisfying,
266564
+ minSatisfying,
266565
+ minVersion,
266566
+ validRange: validRange3,
266567
+ outside,
266568
+ gtr,
266569
+ ltr,
266570
+ intersects,
266571
+ simplifyRange,
266572
+ subset,
266573
+ SemVer,
266574
+ re: internalRe.re,
266575
+ src: internalRe.src,
266576
+ tokens: internalRe.t,
266577
+ SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION,
266578
+ RELEASE_TYPES: constants.RELEASE_TYPES,
266579
+ compareIdentifiers: identifiers.compareIdentifiers,
266580
+ rcompareIdentifiers: identifiers.rcompareIdentifiers
266581
+ };
266582
+ }
266583
+ });
266584
+
264592
266585
  // ../../node_modules/.pnpm/@npmcli+git@5.0.8/node_modules/@npmcli/git/lib/lines-to-revs.js
264593
266586
  var require_lines_to_revs = __commonJS({
264594
266587
  "../../node_modules/.pnpm/@npmcli+git@5.0.8/node_modules/@npmcli/git/lib/lines-to-revs.js"(exports2, module) {
264595
266588
  init_esm_shims();
264596
- var __import_semver = __toESM(require_semver());
266589
+ var __import_semver = __toESM(require_semver3());
264597
266590
  var semver8 = __import_semver;
264598
266591
  module.exports = (lines) => finish(lines.reduce(linesToRevsReducer, {
264599
266592
  versions: {},
@@ -266597,7 +268590,7 @@ var require_scan3 = __commonJS({
266597
268590
  });
266598
268591
 
266599
268592
  // ../../node_modules/.pnpm/spdx-expression-parse@3.0.1/node_modules/spdx-expression-parse/parse.js
266600
- var require_parse5 = __commonJS({
268593
+ var require_parse6 = __commonJS({
266601
268594
  "../../node_modules/.pnpm/spdx-expression-parse@3.0.1/node_modules/spdx-expression-parse/parse.js"(exports2, module) {
266602
268595
  "use strict";
266603
268596
  init_esm_shims();
@@ -266716,7 +268709,7 @@ var require_spdx_expression_parse = __commonJS({
266716
268709
  "../../node_modules/.pnpm/spdx-expression-parse@3.0.1/node_modules/spdx-expression-parse/index.js"(exports2, module) {
266717
268710
  init_esm_shims();
266718
268711
  var __import___scan = __toESM(require_scan3());
266719
- var __import___parse = __toESM(require_parse5());
268712
+ var __import___parse = __toESM(require_parse6());
266720
268713
  var scan3 = __import___scan;
266721
268714
  var parse9 = __import___parse;
266722
268715
  module.exports = function(source) {
@@ -278212,7 +280205,7 @@ var require_unicode = __commonJS({
278212
280205
  });
278213
280206
 
278214
280207
  // ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/parse.js
278215
- var require_parse6 = __commonJS({
280208
+ var require_parse7 = __commonJS({
278216
280209
  "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/parse.js"(exports2, module) {
278217
280210
  init_esm_shims();
278218
280211
  var __import___unicode = __toESM(require_unicode());
@@ -279012,7 +281005,7 @@ var require_stringify4 = __commonJS({
279012
281005
  var require_analyze = __commonJS({
279013
281006
  "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/analyze.js"(exports2, module) {
279014
281007
  init_esm_shims();
279015
- var __import___parse = __toESM(require_parse6());
281008
+ var __import___parse = __toESM(require_parse7());
279016
281009
  var tokenize = __import___parse.tokenize;
279017
281010
  module.exports.analyze = function analyzeJSON(input, options) {
279018
281011
  if (options == null) options = {};
@@ -279092,7 +281085,7 @@ import * as __import_assert2 from "assert";
279092
281085
  var require_document = __commonJS({
279093
281086
  "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/document.js"(exports2, module) {
279094
281087
  init_esm_shims();
279095
- var __import___parse = __toESM(require_parse6());
281088
+ var __import___parse = __toESM(require_parse7());
279096
281089
  var __import___stringify = __toESM(require_stringify4());
279097
281090
  var __import___analyze = __toESM(require_analyze());
279098
281091
  var assert29 = __import_assert2;
@@ -279474,7 +281467,7 @@ var require_utils12 = __commonJS({
279474
281467
  var require_jju = __commonJS({
279475
281468
  "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/index.js"(exports2, module) {
279476
281469
  init_esm_shims();
279477
- var __import___lib_parse = __toESM(require_parse6());
281470
+ var __import___lib_parse = __toESM(require_parse7());
279478
281471
  var __import___lib_stringify = __toESM(require_stringify4());
279479
281472
  var __import___lib_document = __toESM(require_document());
279480
281473
  var __import___lib_analyze = __toESM(require_analyze());
@@ -282236,7 +284229,7 @@ var require_readShebang = __commonJS({
282236
284229
  });
282237
284230
 
282238
284231
  // ../../node_modules/.pnpm/cross-spawn@5.1.0/node_modules/cross-spawn/lib/parse.js
282239
- var require_parse7 = __commonJS({
284232
+ var require_parse8 = __commonJS({
282240
284233
  "../../node_modules/.pnpm/cross-spawn@5.1.0/node_modules/cross-spawn/lib/parse.js"(exports2, module) {
282241
284234
  init_esm_shims();
282242
284235
  var __import___util_resolveCommand = __toESM(require_resolveCommand());
@@ -282386,7 +284379,7 @@ import * as __import_child_process2 from "child_process";
282386
284379
  var require_cross_spawn = __commonJS({
282387
284380
  "../../node_modules/.pnpm/cross-spawn@5.1.0/node_modules/cross-spawn/index.js"(exports2, module) {
282388
284381
  init_esm_shims();
282389
- var __import___lib_parse = __toESM(require_parse7());
284382
+ var __import___lib_parse = __toESM(require_parse8());
282390
284383
  var __import___lib_enoent = __toESM(require_enoent());
282391
284384
  var cp = __import_child_process2;
282392
284385
  var parse9 = __import___lib_parse;