ph-cmd 6.0.0-dev.56 → 6.0.0-dev.58

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/build/cli.js CHANGED
@@ -9701,6 +9701,1789 @@ var require_semver2 = __commonJS((exports, module) => {
9701
9701
  };
9702
9702
  });
9703
9703
 
9704
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/internal/constants.js
9705
+ var require_constants2 = __commonJS((exports, module) => {
9706
+ var SEMVER_SPEC_VERSION = "2.0.0";
9707
+ var MAX_LENGTH = 256;
9708
+ var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
9709
+ var MAX_SAFE_COMPONENT_LENGTH = 16;
9710
+ var MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;
9711
+ var RELEASE_TYPES = [
9712
+ "major",
9713
+ "premajor",
9714
+ "minor",
9715
+ "preminor",
9716
+ "patch",
9717
+ "prepatch",
9718
+ "prerelease"
9719
+ ];
9720
+ module.exports = {
9721
+ MAX_LENGTH,
9722
+ MAX_SAFE_COMPONENT_LENGTH,
9723
+ MAX_SAFE_BUILD_LENGTH,
9724
+ MAX_SAFE_INTEGER,
9725
+ RELEASE_TYPES,
9726
+ SEMVER_SPEC_VERSION,
9727
+ FLAG_INCLUDE_PRERELEASE: 1,
9728
+ FLAG_LOOSE: 2
9729
+ };
9730
+ });
9731
+
9732
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/internal/debug.js
9733
+ var require_debug2 = __commonJS((exports, module) => {
9734
+ var debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {};
9735
+ module.exports = debug;
9736
+ });
9737
+
9738
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/internal/re.js
9739
+ var require_re2 = __commonJS((exports, module) => {
9740
+ var {
9741
+ MAX_SAFE_COMPONENT_LENGTH,
9742
+ MAX_SAFE_BUILD_LENGTH,
9743
+ MAX_LENGTH
9744
+ } = require_constants2();
9745
+ var debug = require_debug2();
9746
+ exports = module.exports = {};
9747
+ var re = exports.re = [];
9748
+ var safeRe = exports.safeRe = [];
9749
+ var src = exports.src = [];
9750
+ var safeSrc = exports.safeSrc = [];
9751
+ var t = exports.t = {};
9752
+ var R = 0;
9753
+ var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
9754
+ var safeRegexReplacements = [
9755
+ ["\\s", 1],
9756
+ ["\\d", MAX_LENGTH],
9757
+ [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH]
9758
+ ];
9759
+ var makeSafeRegex = (value2) => {
9760
+ for (const [token, max] of safeRegexReplacements) {
9761
+ value2 = value2.split(`${token}*`).join(`${token}{0,${max}}`).split(`${token}+`).join(`${token}{1,${max}}`);
9762
+ }
9763
+ return value2;
9764
+ };
9765
+ var createToken = (name, value2, isGlobal) => {
9766
+ const safe = makeSafeRegex(value2);
9767
+ const index = R++;
9768
+ debug(name, index, value2);
9769
+ t[name] = index;
9770
+ src[index] = value2;
9771
+ safeSrc[index] = safe;
9772
+ re[index] = new RegExp(value2, isGlobal ? "g" : undefined);
9773
+ safeRe[index] = new RegExp(safe, isGlobal ? "g" : undefined);
9774
+ };
9775
+ createToken("NUMERICIDENTIFIER", "0|[1-9]\\d*");
9776
+ createToken("NUMERICIDENTIFIERLOOSE", "\\d+");
9777
+ createToken("NONNUMERICIDENTIFIER", `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`);
9778
+ createToken("MAINVERSION", `(${src[t.NUMERICIDENTIFIER]})\\.` + `(${src[t.NUMERICIDENTIFIER]})\\.` + `(${src[t.NUMERICIDENTIFIER]})`);
9779
+ createToken("MAINVERSIONLOOSE", `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + `(${src[t.NUMERICIDENTIFIERLOOSE]})`);
9780
+ createToken("PRERELEASEIDENTIFIER", `(?:${src[t.NONNUMERICIDENTIFIER]}|${src[t.NUMERICIDENTIFIER]})`);
9781
+ createToken("PRERELEASEIDENTIFIERLOOSE", `(?:${src[t.NONNUMERICIDENTIFIER]}|${src[t.NUMERICIDENTIFIERLOOSE]})`);
9782
+ createToken("PRERELEASE", `(?:-(${src[t.PRERELEASEIDENTIFIER]}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`);
9783
+ createToken("PRERELEASELOOSE", `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`);
9784
+ createToken("BUILDIDENTIFIER", `${LETTERDASHNUMBER}+`);
9785
+ createToken("BUILD", `(?:\\+(${src[t.BUILDIDENTIFIER]}(?:\\.${src[t.BUILDIDENTIFIER]})*))`);
9786
+ createToken("FULLPLAIN", `v?${src[t.MAINVERSION]}${src[t.PRERELEASE]}?${src[t.BUILD]}?`);
9787
+ createToken("FULL", `^${src[t.FULLPLAIN]}$`);
9788
+ createToken("LOOSEPLAIN", `[v=\\s]*${src[t.MAINVERSIONLOOSE]}${src[t.PRERELEASELOOSE]}?${src[t.BUILD]}?`);
9789
+ createToken("LOOSE", `^${src[t.LOOSEPLAIN]}$`);
9790
+ createToken("GTLT", "((?:<|>)?=?)");
9791
+ createToken("XRANGEIDENTIFIERLOOSE", `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);
9792
+ createToken("XRANGEIDENTIFIER", `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`);
9793
+ createToken("XRANGEPLAIN", `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})` + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + `(?:${src[t.PRERELEASE]})?${src[t.BUILD]}?` + `)?)?`);
9794
+ createToken("XRANGEPLAINLOOSE", `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + `(?:${src[t.PRERELEASELOOSE]})?${src[t.BUILD]}?` + `)?)?`);
9795
+ createToken("XRANGE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`);
9796
+ createToken("XRANGELOOSE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`);
9797
+ createToken("COERCEPLAIN", `${"(^|[^\\d])" + "(\\d{1,"}${MAX_SAFE_COMPONENT_LENGTH}})` + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`);
9798
+ createToken("COERCE", `${src[t.COERCEPLAIN]}(?:$|[^\\d])`);
9799
+ createToken("COERCEFULL", src[t.COERCEPLAIN] + `(?:${src[t.PRERELEASE]})?` + `(?:${src[t.BUILD]})?` + `(?:$|[^\\d])`);
9800
+ createToken("COERCERTL", src[t.COERCE], true);
9801
+ createToken("COERCERTLFULL", src[t.COERCEFULL], true);
9802
+ createToken("LONETILDE", "(?:~>?)");
9803
+ createToken("TILDETRIM", `(\\s*)${src[t.LONETILDE]}\\s+`, true);
9804
+ exports.tildeTrimReplace = "$1~";
9805
+ createToken("TILDE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);
9806
+ createToken("TILDELOOSE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);
9807
+ createToken("LONECARET", "(?:\\^)");
9808
+ createToken("CARETTRIM", `(\\s*)${src[t.LONECARET]}\\s+`, true);
9809
+ exports.caretTrimReplace = "$1^";
9810
+ createToken("CARET", `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);
9811
+ createToken("CARETLOOSE", `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);
9812
+ createToken("COMPARATORLOOSE", `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`);
9813
+ createToken("COMPARATOR", `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`);
9814
+ createToken("COMPARATORTRIM", `(\\s*)${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);
9815
+ exports.comparatorTrimReplace = "$1$2$3";
9816
+ createToken("HYPHENRANGE", `^\\s*(${src[t.XRANGEPLAIN]})` + `\\s+-\\s+` + `(${src[t.XRANGEPLAIN]})` + `\\s*$`);
9817
+ createToken("HYPHENRANGELOOSE", `^\\s*(${src[t.XRANGEPLAINLOOSE]})` + `\\s+-\\s+` + `(${src[t.XRANGEPLAINLOOSE]})` + `\\s*$`);
9818
+ createToken("STAR", "(<|>)?=?\\s*\\*");
9819
+ createToken("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$");
9820
+ createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
9821
+ });
9822
+
9823
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/internal/parse-options.js
9824
+ var require_parse_options2 = __commonJS((exports, module) => {
9825
+ var looseOption = Object.freeze({ loose: true });
9826
+ var emptyOpts = Object.freeze({});
9827
+ var parseOptions = (options) => {
9828
+ if (!options) {
9829
+ return emptyOpts;
9830
+ }
9831
+ if (typeof options !== "object") {
9832
+ return looseOption;
9833
+ }
9834
+ return options;
9835
+ };
9836
+ module.exports = parseOptions;
9837
+ });
9838
+
9839
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/internal/identifiers.js
9840
+ var require_identifiers2 = __commonJS((exports, module) => {
9841
+ var numeric = /^[0-9]+$/;
9842
+ var compareIdentifiers = (a, b) => {
9843
+ if (typeof a === "number" && typeof b === "number") {
9844
+ return a === b ? 0 : a < b ? -1 : 1;
9845
+ }
9846
+ const anum = numeric.test(a);
9847
+ const bnum = numeric.test(b);
9848
+ if (anum && bnum) {
9849
+ a = +a;
9850
+ b = +b;
9851
+ }
9852
+ return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1;
9853
+ };
9854
+ var rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
9855
+ module.exports = {
9856
+ compareIdentifiers,
9857
+ rcompareIdentifiers
9858
+ };
9859
+ });
9860
+
9861
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/classes/semver.js
9862
+ var require_semver3 = __commonJS((exports, module) => {
9863
+ var debug = require_debug2();
9864
+ var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants2();
9865
+ var { safeRe: re, t } = require_re2();
9866
+ var parseOptions = require_parse_options2();
9867
+ var { compareIdentifiers } = require_identifiers2();
9868
+
9869
+ class SemVer {
9870
+ constructor(version, options) {
9871
+ options = parseOptions(options);
9872
+ if (version instanceof SemVer) {
9873
+ if (version.loose === !!options.loose && version.includePrerelease === !!options.includePrerelease) {
9874
+ return version;
9875
+ } else {
9876
+ version = version.version;
9877
+ }
9878
+ } else if (typeof version !== "string") {
9879
+ throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version}".`);
9880
+ }
9881
+ if (version.length > MAX_LENGTH) {
9882
+ throw new TypeError(`version is longer than ${MAX_LENGTH} characters`);
9883
+ }
9884
+ debug("SemVer", version, options);
9885
+ this.options = options;
9886
+ this.loose = !!options.loose;
9887
+ this.includePrerelease = !!options.includePrerelease;
9888
+ const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]);
9889
+ if (!m) {
9890
+ throw new TypeError(`Invalid Version: ${version}`);
9891
+ }
9892
+ this.raw = version;
9893
+ this.major = +m[1];
9894
+ this.minor = +m[2];
9895
+ this.patch = +m[3];
9896
+ if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
9897
+ throw new TypeError("Invalid major version");
9898
+ }
9899
+ if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
9900
+ throw new TypeError("Invalid minor version");
9901
+ }
9902
+ if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
9903
+ throw new TypeError("Invalid patch version");
9904
+ }
9905
+ if (!m[4]) {
9906
+ this.prerelease = [];
9907
+ } else {
9908
+ this.prerelease = m[4].split(".").map((id) => {
9909
+ if (/^[0-9]+$/.test(id)) {
9910
+ const num = +id;
9911
+ if (num >= 0 && num < MAX_SAFE_INTEGER) {
9912
+ return num;
9913
+ }
9914
+ }
9915
+ return id;
9916
+ });
9917
+ }
9918
+ this.build = m[5] ? m[5].split(".") : [];
9919
+ this.format();
9920
+ }
9921
+ format() {
9922
+ this.version = `${this.major}.${this.minor}.${this.patch}`;
9923
+ if (this.prerelease.length) {
9924
+ this.version += `-${this.prerelease.join(".")}`;
9925
+ }
9926
+ return this.version;
9927
+ }
9928
+ toString() {
9929
+ return this.version;
9930
+ }
9931
+ compare(other) {
9932
+ debug("SemVer.compare", this.version, this.options, other);
9933
+ if (!(other instanceof SemVer)) {
9934
+ if (typeof other === "string" && other === this.version) {
9935
+ return 0;
9936
+ }
9937
+ other = new SemVer(other, this.options);
9938
+ }
9939
+ if (other.version === this.version) {
9940
+ return 0;
9941
+ }
9942
+ return this.compareMain(other) || this.comparePre(other);
9943
+ }
9944
+ compareMain(other) {
9945
+ if (!(other instanceof SemVer)) {
9946
+ other = new SemVer(other, this.options);
9947
+ }
9948
+ if (this.major < other.major) {
9949
+ return -1;
9950
+ }
9951
+ if (this.major > other.major) {
9952
+ return 1;
9953
+ }
9954
+ if (this.minor < other.minor) {
9955
+ return -1;
9956
+ }
9957
+ if (this.minor > other.minor) {
9958
+ return 1;
9959
+ }
9960
+ if (this.patch < other.patch) {
9961
+ return -1;
9962
+ }
9963
+ if (this.patch > other.patch) {
9964
+ return 1;
9965
+ }
9966
+ return 0;
9967
+ }
9968
+ comparePre(other) {
9969
+ if (!(other instanceof SemVer)) {
9970
+ other = new SemVer(other, this.options);
9971
+ }
9972
+ if (this.prerelease.length && !other.prerelease.length) {
9973
+ return -1;
9974
+ } else if (!this.prerelease.length && other.prerelease.length) {
9975
+ return 1;
9976
+ } else if (!this.prerelease.length && !other.prerelease.length) {
9977
+ return 0;
9978
+ }
9979
+ let i = 0;
9980
+ do {
9981
+ const a = this.prerelease[i];
9982
+ const b = other.prerelease[i];
9983
+ debug("prerelease compare", i, a, b);
9984
+ if (a === undefined && b === undefined) {
9985
+ return 0;
9986
+ } else if (b === undefined) {
9987
+ return 1;
9988
+ } else if (a === undefined) {
9989
+ return -1;
9990
+ } else if (a === b) {
9991
+ continue;
9992
+ } else {
9993
+ return compareIdentifiers(a, b);
9994
+ }
9995
+ } while (++i);
9996
+ }
9997
+ compareBuild(other) {
9998
+ if (!(other instanceof SemVer)) {
9999
+ other = new SemVer(other, this.options);
10000
+ }
10001
+ let i = 0;
10002
+ do {
10003
+ const a = this.build[i];
10004
+ const b = other.build[i];
10005
+ debug("build compare", i, a, b);
10006
+ if (a === undefined && b === undefined) {
10007
+ return 0;
10008
+ } else if (b === undefined) {
10009
+ return 1;
10010
+ } else if (a === undefined) {
10011
+ return -1;
10012
+ } else if (a === b) {
10013
+ continue;
10014
+ } else {
10015
+ return compareIdentifiers(a, b);
10016
+ }
10017
+ } while (++i);
10018
+ }
10019
+ inc(release, identifier, identifierBase) {
10020
+ if (release.startsWith("pre")) {
10021
+ if (!identifier && identifierBase === false) {
10022
+ throw new Error("invalid increment argument: identifier is empty");
10023
+ }
10024
+ if (identifier) {
10025
+ const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE]);
10026
+ if (!match || match[1] !== identifier) {
10027
+ throw new Error(`invalid identifier: ${identifier}`);
10028
+ }
10029
+ }
10030
+ }
10031
+ switch (release) {
10032
+ case "premajor":
10033
+ this.prerelease.length = 0;
10034
+ this.patch = 0;
10035
+ this.minor = 0;
10036
+ this.major++;
10037
+ this.inc("pre", identifier, identifierBase);
10038
+ break;
10039
+ case "preminor":
10040
+ this.prerelease.length = 0;
10041
+ this.patch = 0;
10042
+ this.minor++;
10043
+ this.inc("pre", identifier, identifierBase);
10044
+ break;
10045
+ case "prepatch":
10046
+ this.prerelease.length = 0;
10047
+ this.inc("patch", identifier, identifierBase);
10048
+ this.inc("pre", identifier, identifierBase);
10049
+ break;
10050
+ case "prerelease":
10051
+ if (this.prerelease.length === 0) {
10052
+ this.inc("patch", identifier, identifierBase);
10053
+ }
10054
+ this.inc("pre", identifier, identifierBase);
10055
+ break;
10056
+ case "release":
10057
+ if (this.prerelease.length === 0) {
10058
+ throw new Error(`version ${this.raw} is not a prerelease`);
10059
+ }
10060
+ this.prerelease.length = 0;
10061
+ break;
10062
+ case "major":
10063
+ if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
10064
+ this.major++;
10065
+ }
10066
+ this.minor = 0;
10067
+ this.patch = 0;
10068
+ this.prerelease = [];
10069
+ break;
10070
+ case "minor":
10071
+ if (this.patch !== 0 || this.prerelease.length === 0) {
10072
+ this.minor++;
10073
+ }
10074
+ this.patch = 0;
10075
+ this.prerelease = [];
10076
+ break;
10077
+ case "patch":
10078
+ if (this.prerelease.length === 0) {
10079
+ this.patch++;
10080
+ }
10081
+ this.prerelease = [];
10082
+ break;
10083
+ case "pre": {
10084
+ const base = Number(identifierBase) ? 1 : 0;
10085
+ if (this.prerelease.length === 0) {
10086
+ this.prerelease = [base];
10087
+ } else {
10088
+ let i = this.prerelease.length;
10089
+ while (--i >= 0) {
10090
+ if (typeof this.prerelease[i] === "number") {
10091
+ this.prerelease[i]++;
10092
+ i = -2;
10093
+ }
10094
+ }
10095
+ if (i === -1) {
10096
+ if (identifier === this.prerelease.join(".") && identifierBase === false) {
10097
+ throw new Error("invalid increment argument: identifier already exists");
10098
+ }
10099
+ this.prerelease.push(base);
10100
+ }
10101
+ }
10102
+ if (identifier) {
10103
+ let prerelease = [identifier, base];
10104
+ if (identifierBase === false) {
10105
+ prerelease = [identifier];
10106
+ }
10107
+ if (compareIdentifiers(this.prerelease[0], identifier) === 0) {
10108
+ if (isNaN(this.prerelease[1])) {
10109
+ this.prerelease = prerelease;
10110
+ }
10111
+ } else {
10112
+ this.prerelease = prerelease;
10113
+ }
10114
+ }
10115
+ break;
10116
+ }
10117
+ default:
10118
+ throw new Error(`invalid increment argument: ${release}`);
10119
+ }
10120
+ this.raw = this.format();
10121
+ if (this.build.length) {
10122
+ this.raw += `+${this.build.join(".")}`;
10123
+ }
10124
+ return this;
10125
+ }
10126
+ }
10127
+ module.exports = SemVer;
10128
+ });
10129
+
10130
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/parse.js
10131
+ var require_parse3 = __commonJS((exports, module) => {
10132
+ var SemVer = require_semver3();
10133
+ var parse = (version, options, throwErrors = false) => {
10134
+ if (version instanceof SemVer) {
10135
+ return version;
10136
+ }
10137
+ try {
10138
+ return new SemVer(version, options);
10139
+ } catch (er) {
10140
+ if (!throwErrors) {
10141
+ return null;
10142
+ }
10143
+ throw er;
10144
+ }
10145
+ };
10146
+ module.exports = parse;
10147
+ });
10148
+
10149
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/valid.js
10150
+ var require_valid3 = __commonJS((exports, module) => {
10151
+ var parse = require_parse3();
10152
+ var valid2 = (version, options) => {
10153
+ const v = parse(version, options);
10154
+ return v ? v.version : null;
10155
+ };
10156
+ module.exports = valid2;
10157
+ });
10158
+
10159
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/clean.js
10160
+ var require_clean2 = __commonJS((exports, module) => {
10161
+ var parse = require_parse3();
10162
+ var clean2 = (version, options) => {
10163
+ const s = parse(version.trim().replace(/^[=v]+/, ""), options);
10164
+ return s ? s.version : null;
10165
+ };
10166
+ module.exports = clean2;
10167
+ });
10168
+
10169
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/inc.js
10170
+ var require_inc2 = __commonJS((exports, module) => {
10171
+ var SemVer = require_semver3();
10172
+ var inc = (version, release, options, identifier, identifierBase) => {
10173
+ if (typeof options === "string") {
10174
+ identifierBase = identifier;
10175
+ identifier = options;
10176
+ options = undefined;
10177
+ }
10178
+ try {
10179
+ return new SemVer(version instanceof SemVer ? version.version : version, options).inc(release, identifier, identifierBase).version;
10180
+ } catch (er) {
10181
+ return null;
10182
+ }
10183
+ };
10184
+ module.exports = inc;
10185
+ });
10186
+
10187
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/diff.js
10188
+ var require_diff2 = __commonJS((exports, module) => {
10189
+ var parse = require_parse3();
10190
+ var diff = (version1, version2) => {
10191
+ const v1 = parse(version1, null, true);
10192
+ const v2 = parse(version2, null, true);
10193
+ const comparison = v1.compare(v2);
10194
+ if (comparison === 0) {
10195
+ return null;
10196
+ }
10197
+ const v1Higher = comparison > 0;
10198
+ const highVersion = v1Higher ? v1 : v2;
10199
+ const lowVersion = v1Higher ? v2 : v1;
10200
+ const highHasPre = !!highVersion.prerelease.length;
10201
+ const lowHasPre = !!lowVersion.prerelease.length;
10202
+ if (lowHasPre && !highHasPre) {
10203
+ if (!lowVersion.patch && !lowVersion.minor) {
10204
+ return "major";
10205
+ }
10206
+ if (lowVersion.compareMain(highVersion) === 0) {
10207
+ if (lowVersion.minor && !lowVersion.patch) {
10208
+ return "minor";
10209
+ }
10210
+ return "patch";
10211
+ }
10212
+ }
10213
+ const prefix = highHasPre ? "pre" : "";
10214
+ if (v1.major !== v2.major) {
10215
+ return prefix + "major";
10216
+ }
10217
+ if (v1.minor !== v2.minor) {
10218
+ return prefix + "minor";
10219
+ }
10220
+ if (v1.patch !== v2.patch) {
10221
+ return prefix + "patch";
10222
+ }
10223
+ return "prerelease";
10224
+ };
10225
+ module.exports = diff;
10226
+ });
10227
+
10228
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/major.js
10229
+ var require_major2 = __commonJS((exports, module) => {
10230
+ var SemVer = require_semver3();
10231
+ var major = (a, loose) => new SemVer(a, loose).major;
10232
+ module.exports = major;
10233
+ });
10234
+
10235
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/minor.js
10236
+ var require_minor2 = __commonJS((exports, module) => {
10237
+ var SemVer = require_semver3();
10238
+ var minor = (a, loose) => new SemVer(a, loose).minor;
10239
+ module.exports = minor;
10240
+ });
10241
+
10242
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/patch.js
10243
+ var require_patch2 = __commonJS((exports, module) => {
10244
+ var SemVer = require_semver3();
10245
+ var patch = (a, loose) => new SemVer(a, loose).patch;
10246
+ module.exports = patch;
10247
+ });
10248
+
10249
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/prerelease.js
10250
+ var require_prerelease2 = __commonJS((exports, module) => {
10251
+ var parse = require_parse3();
10252
+ var prerelease = (version, options) => {
10253
+ const parsed = parse(version, options);
10254
+ return parsed && parsed.prerelease.length ? parsed.prerelease : null;
10255
+ };
10256
+ module.exports = prerelease;
10257
+ });
10258
+
10259
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/compare.js
10260
+ var require_compare2 = __commonJS((exports, module) => {
10261
+ var SemVer = require_semver3();
10262
+ var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
10263
+ module.exports = compare;
10264
+ });
10265
+
10266
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/rcompare.js
10267
+ var require_rcompare2 = __commonJS((exports, module) => {
10268
+ var compare = require_compare2();
10269
+ var rcompare = (a, b, loose) => compare(b, a, loose);
10270
+ module.exports = rcompare;
10271
+ });
10272
+
10273
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/compare-loose.js
10274
+ var require_compare_loose2 = __commonJS((exports, module) => {
10275
+ var compare = require_compare2();
10276
+ var compareLoose = (a, b) => compare(a, b, true);
10277
+ module.exports = compareLoose;
10278
+ });
10279
+
10280
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/compare-build.js
10281
+ var require_compare_build2 = __commonJS((exports, module) => {
10282
+ var SemVer = require_semver3();
10283
+ var compareBuild = (a, b, loose) => {
10284
+ const versionA = new SemVer(a, loose);
10285
+ const versionB = new SemVer(b, loose);
10286
+ return versionA.compare(versionB) || versionA.compareBuild(versionB);
10287
+ };
10288
+ module.exports = compareBuild;
10289
+ });
10290
+
10291
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/sort.js
10292
+ var require_sort2 = __commonJS((exports, module) => {
10293
+ var compareBuild = require_compare_build2();
10294
+ var sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
10295
+ module.exports = sort;
10296
+ });
10297
+
10298
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/rsort.js
10299
+ var require_rsort2 = __commonJS((exports, module) => {
10300
+ var compareBuild = require_compare_build2();
10301
+ var rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
10302
+ module.exports = rsort;
10303
+ });
10304
+
10305
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/gt.js
10306
+ var require_gt2 = __commonJS((exports, module) => {
10307
+ var compare = require_compare2();
10308
+ var gt = (a, b, loose) => compare(a, b, loose) > 0;
10309
+ module.exports = gt;
10310
+ });
10311
+
10312
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/lt.js
10313
+ var require_lt2 = __commonJS((exports, module) => {
10314
+ var compare = require_compare2();
10315
+ var lt = (a, b, loose) => compare(a, b, loose) < 0;
10316
+ module.exports = lt;
10317
+ });
10318
+
10319
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/eq.js
10320
+ var require_eq2 = __commonJS((exports, module) => {
10321
+ var compare = require_compare2();
10322
+ var eq = (a, b, loose) => compare(a, b, loose) === 0;
10323
+ module.exports = eq;
10324
+ });
10325
+
10326
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/neq.js
10327
+ var require_neq2 = __commonJS((exports, module) => {
10328
+ var compare = require_compare2();
10329
+ var neq = (a, b, loose) => compare(a, b, loose) !== 0;
10330
+ module.exports = neq;
10331
+ });
10332
+
10333
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/gte.js
10334
+ var require_gte2 = __commonJS((exports, module) => {
10335
+ var compare = require_compare2();
10336
+ var gte = (a, b, loose) => compare(a, b, loose) >= 0;
10337
+ module.exports = gte;
10338
+ });
10339
+
10340
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/lte.js
10341
+ var require_lte2 = __commonJS((exports, module) => {
10342
+ var compare = require_compare2();
10343
+ var lte = (a, b, loose) => compare(a, b, loose) <= 0;
10344
+ module.exports = lte;
10345
+ });
10346
+
10347
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/cmp.js
10348
+ var require_cmp2 = __commonJS((exports, module) => {
10349
+ var eq = require_eq2();
10350
+ var neq = require_neq2();
10351
+ var gt = require_gt2();
10352
+ var gte = require_gte2();
10353
+ var lt = require_lt2();
10354
+ var lte = require_lte2();
10355
+ var cmp = (a, op, b, loose) => {
10356
+ switch (op) {
10357
+ case "===":
10358
+ if (typeof a === "object") {
10359
+ a = a.version;
10360
+ }
10361
+ if (typeof b === "object") {
10362
+ b = b.version;
10363
+ }
10364
+ return a === b;
10365
+ case "!==":
10366
+ if (typeof a === "object") {
10367
+ a = a.version;
10368
+ }
10369
+ if (typeof b === "object") {
10370
+ b = b.version;
10371
+ }
10372
+ return a !== b;
10373
+ case "":
10374
+ case "=":
10375
+ case "==":
10376
+ return eq(a, b, loose);
10377
+ case "!=":
10378
+ return neq(a, b, loose);
10379
+ case ">":
10380
+ return gt(a, b, loose);
10381
+ case ">=":
10382
+ return gte(a, b, loose);
10383
+ case "<":
10384
+ return lt(a, b, loose);
10385
+ case "<=":
10386
+ return lte(a, b, loose);
10387
+ default:
10388
+ throw new TypeError(`Invalid operator: ${op}`);
10389
+ }
10390
+ };
10391
+ module.exports = cmp;
10392
+ });
10393
+
10394
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/coerce.js
10395
+ var require_coerce2 = __commonJS((exports, module) => {
10396
+ var SemVer = require_semver3();
10397
+ var parse = require_parse3();
10398
+ var { safeRe: re, t } = require_re2();
10399
+ var coerce = (version, options) => {
10400
+ if (version instanceof SemVer) {
10401
+ return version;
10402
+ }
10403
+ if (typeof version === "number") {
10404
+ version = String(version);
10405
+ }
10406
+ if (typeof version !== "string") {
10407
+ return null;
10408
+ }
10409
+ options = options || {};
10410
+ let match = null;
10411
+ if (!options.rtl) {
10412
+ match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]);
10413
+ } else {
10414
+ const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL];
10415
+ let next;
10416
+ while ((next = coerceRtlRegex.exec(version)) && (!match || match.index + match[0].length !== version.length)) {
10417
+ if (!match || next.index + next[0].length !== match.index + match[0].length) {
10418
+ match = next;
10419
+ }
10420
+ coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
10421
+ }
10422
+ coerceRtlRegex.lastIndex = -1;
10423
+ }
10424
+ if (match === null) {
10425
+ return null;
10426
+ }
10427
+ const major = match[2];
10428
+ const minor = match[3] || "0";
10429
+ const patch = match[4] || "0";
10430
+ const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : "";
10431
+ const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
10432
+ return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options);
10433
+ };
10434
+ module.exports = coerce;
10435
+ });
10436
+
10437
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/internal/lrucache.js
10438
+ var require_lrucache2 = __commonJS((exports, module) => {
10439
+ class LRUCache {
10440
+ constructor() {
10441
+ this.max = 1000;
10442
+ this.map = new Map;
10443
+ }
10444
+ get(key) {
10445
+ const value2 = this.map.get(key);
10446
+ if (value2 === undefined) {
10447
+ return;
10448
+ } else {
10449
+ this.map.delete(key);
10450
+ this.map.set(key, value2);
10451
+ return value2;
10452
+ }
10453
+ }
10454
+ delete(key) {
10455
+ return this.map.delete(key);
10456
+ }
10457
+ set(key, value2) {
10458
+ const deleted = this.delete(key);
10459
+ if (!deleted && value2 !== undefined) {
10460
+ if (this.map.size >= this.max) {
10461
+ const firstKey = this.map.keys().next().value;
10462
+ this.delete(firstKey);
10463
+ }
10464
+ this.map.set(key, value2);
10465
+ }
10466
+ return this;
10467
+ }
10468
+ }
10469
+ module.exports = LRUCache;
10470
+ });
10471
+
10472
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/classes/range.js
10473
+ var require_range2 = __commonJS((exports, module) => {
10474
+ var SPACE_CHARACTERS = /\s+/g;
10475
+
10476
+ class Range {
10477
+ constructor(range, options) {
10478
+ options = parseOptions(options);
10479
+ if (range instanceof Range) {
10480
+ if (range.loose === !!options.loose && range.includePrerelease === !!options.includePrerelease) {
10481
+ return range;
10482
+ } else {
10483
+ return new Range(range.raw, options);
10484
+ }
10485
+ }
10486
+ if (range instanceof Comparator) {
10487
+ this.raw = range.value;
10488
+ this.set = [[range]];
10489
+ this.formatted = undefined;
10490
+ return this;
10491
+ }
10492
+ this.options = options;
10493
+ this.loose = !!options.loose;
10494
+ this.includePrerelease = !!options.includePrerelease;
10495
+ this.raw = range.trim().replace(SPACE_CHARACTERS, " ");
10496
+ this.set = this.raw.split("||").map((r) => this.parseRange(r.trim())).filter((c) => c.length);
10497
+ if (!this.set.length) {
10498
+ throw new TypeError(`Invalid SemVer Range: ${this.raw}`);
10499
+ }
10500
+ if (this.set.length > 1) {
10501
+ const first = this.set[0];
10502
+ this.set = this.set.filter((c) => !isNullSet(c[0]));
10503
+ if (this.set.length === 0) {
10504
+ this.set = [first];
10505
+ } else if (this.set.length > 1) {
10506
+ for (const c of this.set) {
10507
+ if (c.length === 1 && isAny(c[0])) {
10508
+ this.set = [c];
10509
+ break;
10510
+ }
10511
+ }
10512
+ }
10513
+ }
10514
+ this.formatted = undefined;
10515
+ }
10516
+ get range() {
10517
+ if (this.formatted === undefined) {
10518
+ this.formatted = "";
10519
+ for (let i = 0;i < this.set.length; i++) {
10520
+ if (i > 0) {
10521
+ this.formatted += "||";
10522
+ }
10523
+ const comps = this.set[i];
10524
+ for (let k = 0;k < comps.length; k++) {
10525
+ if (k > 0) {
10526
+ this.formatted += " ";
10527
+ }
10528
+ this.formatted += comps[k].toString().trim();
10529
+ }
10530
+ }
10531
+ }
10532
+ return this.formatted;
10533
+ }
10534
+ format() {
10535
+ return this.range;
10536
+ }
10537
+ toString() {
10538
+ return this.range;
10539
+ }
10540
+ parseRange(range) {
10541
+ const memoOpts = (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | (this.options.loose && FLAG_LOOSE);
10542
+ const memoKey = memoOpts + ":" + range;
10543
+ const cached = cache.get(memoKey);
10544
+ if (cached) {
10545
+ return cached;
10546
+ }
10547
+ const loose = this.options.loose;
10548
+ const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE];
10549
+ range = range.replace(hr, hyphenReplace(this.options.includePrerelease));
10550
+ debug("hyphen replace", range);
10551
+ range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace);
10552
+ debug("comparator trim", range);
10553
+ range = range.replace(re[t.TILDETRIM], tildeTrimReplace);
10554
+ debug("tilde trim", range);
10555
+ range = range.replace(re[t.CARETTRIM], caretTrimReplace);
10556
+ debug("caret trim", range);
10557
+ let rangeList = range.split(" ").map((comp) => parseComparator(comp, this.options)).join(" ").split(/\s+/).map((comp) => replaceGTE0(comp, this.options));
10558
+ if (loose) {
10559
+ rangeList = rangeList.filter((comp) => {
10560
+ debug("loose invalid filter", comp, this.options);
10561
+ return !!comp.match(re[t.COMPARATORLOOSE]);
10562
+ });
10563
+ }
10564
+ debug("range list", rangeList);
10565
+ const rangeMap = new Map;
10566
+ const comparators = rangeList.map((comp) => new Comparator(comp, this.options));
10567
+ for (const comp of comparators) {
10568
+ if (isNullSet(comp)) {
10569
+ return [comp];
10570
+ }
10571
+ rangeMap.set(comp.value, comp);
10572
+ }
10573
+ if (rangeMap.size > 1 && rangeMap.has("")) {
10574
+ rangeMap.delete("");
10575
+ }
10576
+ const result = [...rangeMap.values()];
10577
+ cache.set(memoKey, result);
10578
+ return result;
10579
+ }
10580
+ intersects(range, options) {
10581
+ if (!(range instanceof Range)) {
10582
+ throw new TypeError("a Range is required");
10583
+ }
10584
+ return this.set.some((thisComparators) => {
10585
+ return isSatisfiable(thisComparators, options) && range.set.some((rangeComparators) => {
10586
+ return isSatisfiable(rangeComparators, options) && thisComparators.every((thisComparator) => {
10587
+ return rangeComparators.every((rangeComparator) => {
10588
+ return thisComparator.intersects(rangeComparator, options);
10589
+ });
10590
+ });
10591
+ });
10592
+ });
10593
+ }
10594
+ test(version) {
10595
+ if (!version) {
10596
+ return false;
10597
+ }
10598
+ if (typeof version === "string") {
10599
+ try {
10600
+ version = new SemVer(version, this.options);
10601
+ } catch (er) {
10602
+ return false;
10603
+ }
10604
+ }
10605
+ for (let i = 0;i < this.set.length; i++) {
10606
+ if (testSet(this.set[i], version, this.options)) {
10607
+ return true;
10608
+ }
10609
+ }
10610
+ return false;
10611
+ }
10612
+ }
10613
+ module.exports = Range;
10614
+ var LRU = require_lrucache2();
10615
+ var cache = new LRU;
10616
+ var parseOptions = require_parse_options2();
10617
+ var Comparator = require_comparator2();
10618
+ var debug = require_debug2();
10619
+ var SemVer = require_semver3();
10620
+ var {
10621
+ safeRe: re,
10622
+ t,
10623
+ comparatorTrimReplace,
10624
+ tildeTrimReplace,
10625
+ caretTrimReplace
10626
+ } = require_re2();
10627
+ var { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = require_constants2();
10628
+ var isNullSet = (c) => c.value === "<0.0.0-0";
10629
+ var isAny = (c) => c.value === "";
10630
+ var isSatisfiable = (comparators, options) => {
10631
+ let result = true;
10632
+ const remainingComparators = comparators.slice();
10633
+ let testComparator = remainingComparators.pop();
10634
+ while (result && remainingComparators.length) {
10635
+ result = remainingComparators.every((otherComparator) => {
10636
+ return testComparator.intersects(otherComparator, options);
10637
+ });
10638
+ testComparator = remainingComparators.pop();
10639
+ }
10640
+ return result;
10641
+ };
10642
+ var parseComparator = (comp, options) => {
10643
+ comp = comp.replace(re[t.BUILD], "");
10644
+ debug("comp", comp, options);
10645
+ comp = replaceCarets(comp, options);
10646
+ debug("caret", comp);
10647
+ comp = replaceTildes(comp, options);
10648
+ debug("tildes", comp);
10649
+ comp = replaceXRanges(comp, options);
10650
+ debug("xrange", comp);
10651
+ comp = replaceStars(comp, options);
10652
+ debug("stars", comp);
10653
+ return comp;
10654
+ };
10655
+ var isX = (id) => !id || id.toLowerCase() === "x" || id === "*";
10656
+ var replaceTildes = (comp, options) => {
10657
+ return comp.trim().split(/\s+/).map((c) => replaceTilde(c, options)).join(" ");
10658
+ };
10659
+ var replaceTilde = (comp, options) => {
10660
+ const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE];
10661
+ return comp.replace(r, (_, M, m, p, pr) => {
10662
+ debug("tilde", comp, _, M, m, p, pr);
10663
+ let ret;
10664
+ if (isX(M)) {
10665
+ ret = "";
10666
+ } else if (isX(m)) {
10667
+ ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;
10668
+ } else if (isX(p)) {
10669
+ ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;
10670
+ } else if (pr) {
10671
+ debug("replaceTilde pr", pr);
10672
+ ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`;
10673
+ } else {
10674
+ ret = `>=${M}.${m}.${p} <${M}.${+m + 1}.0-0`;
10675
+ }
10676
+ debug("tilde return", ret);
10677
+ return ret;
10678
+ });
10679
+ };
10680
+ var replaceCarets = (comp, options) => {
10681
+ return comp.trim().split(/\s+/).map((c) => replaceCaret(c, options)).join(" ");
10682
+ };
10683
+ var replaceCaret = (comp, options) => {
10684
+ debug("caret", comp, options);
10685
+ const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET];
10686
+ const z = options.includePrerelease ? "-0" : "";
10687
+ return comp.replace(r, (_, M, m, p, pr) => {
10688
+ debug("caret", comp, _, M, m, p, pr);
10689
+ let ret;
10690
+ if (isX(M)) {
10691
+ ret = "";
10692
+ } else if (isX(m)) {
10693
+ ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`;
10694
+ } else if (isX(p)) {
10695
+ if (M === "0") {
10696
+ ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`;
10697
+ } else {
10698
+ ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0`;
10699
+ }
10700
+ } else if (pr) {
10701
+ debug("replaceCaret pr", pr);
10702
+ if (M === "0") {
10703
+ if (m === "0") {
10704
+ ret = `>=${M}.${m}.${p}-${pr} <${M}.${m}.${+p + 1}-0`;
10705
+ } else {
10706
+ ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`;
10707
+ }
10708
+ } else {
10709
+ ret = `>=${M}.${m}.${p}-${pr} <${+M + 1}.0.0-0`;
10710
+ }
10711
+ } else {
10712
+ debug("no pr");
10713
+ if (M === "0") {
10714
+ if (m === "0") {
10715
+ ret = `>=${M}.${m}.${p}${z} <${M}.${m}.${+p + 1}-0`;
10716
+ } else {
10717
+ ret = `>=${M}.${m}.${p}${z} <${M}.${+m + 1}.0-0`;
10718
+ }
10719
+ } else {
10720
+ ret = `>=${M}.${m}.${p} <${+M + 1}.0.0-0`;
10721
+ }
10722
+ }
10723
+ debug("caret return", ret);
10724
+ return ret;
10725
+ });
10726
+ };
10727
+ var replaceXRanges = (comp, options) => {
10728
+ debug("replaceXRanges", comp, options);
10729
+ return comp.split(/\s+/).map((c) => replaceXRange(c, options)).join(" ");
10730
+ };
10731
+ var replaceXRange = (comp, options) => {
10732
+ comp = comp.trim();
10733
+ const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE];
10734
+ return comp.replace(r, (ret, gtlt, M, m, p, pr) => {
10735
+ debug("xRange", comp, ret, gtlt, M, m, p, pr);
10736
+ const xM = isX(M);
10737
+ const xm = xM || isX(m);
10738
+ const xp = xm || isX(p);
10739
+ const anyX = xp;
10740
+ if (gtlt === "=" && anyX) {
10741
+ gtlt = "";
10742
+ }
10743
+ pr = options.includePrerelease ? "-0" : "";
10744
+ if (xM) {
10745
+ if (gtlt === ">" || gtlt === "<") {
10746
+ ret = "<0.0.0-0";
10747
+ } else {
10748
+ ret = "*";
10749
+ }
10750
+ } else if (gtlt && anyX) {
10751
+ if (xm) {
10752
+ m = 0;
10753
+ }
10754
+ p = 0;
10755
+ if (gtlt === ">") {
10756
+ gtlt = ">=";
10757
+ if (xm) {
10758
+ M = +M + 1;
10759
+ m = 0;
10760
+ p = 0;
10761
+ } else {
10762
+ m = +m + 1;
10763
+ p = 0;
10764
+ }
10765
+ } else if (gtlt === "<=") {
10766
+ gtlt = "<";
10767
+ if (xm) {
10768
+ M = +M + 1;
10769
+ } else {
10770
+ m = +m + 1;
10771
+ }
10772
+ }
10773
+ if (gtlt === "<") {
10774
+ pr = "-0";
10775
+ }
10776
+ ret = `${gtlt + M}.${m}.${p}${pr}`;
10777
+ } else if (xm) {
10778
+ ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0`;
10779
+ } else if (xp) {
10780
+ ret = `>=${M}.${m}.0${pr} <${M}.${+m + 1}.0-0`;
10781
+ }
10782
+ debug("xRange return", ret);
10783
+ return ret;
10784
+ });
10785
+ };
10786
+ var replaceStars = (comp, options) => {
10787
+ debug("replaceStars", comp, options);
10788
+ return comp.trim().replace(re[t.STAR], "");
10789
+ };
10790
+ var replaceGTE0 = (comp, options) => {
10791
+ debug("replaceGTE0", comp, options);
10792
+ return comp.trim().replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], "");
10793
+ };
10794
+ var hyphenReplace = (incPr) => ($0, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr) => {
10795
+ if (isX(fM)) {
10796
+ from = "";
10797
+ } else if (isX(fm)) {
10798
+ from = `>=${fM}.0.0${incPr ? "-0" : ""}`;
10799
+ } else if (isX(fp)) {
10800
+ from = `>=${fM}.${fm}.0${incPr ? "-0" : ""}`;
10801
+ } else if (fpr) {
10802
+ from = `>=${from}`;
10803
+ } else {
10804
+ from = `>=${from}${incPr ? "-0" : ""}`;
10805
+ }
10806
+ if (isX(tM)) {
10807
+ to = "";
10808
+ } else if (isX(tm)) {
10809
+ to = `<${+tM + 1}.0.0-0`;
10810
+ } else if (isX(tp)) {
10811
+ to = `<${tM}.${+tm + 1}.0-0`;
10812
+ } else if (tpr) {
10813
+ to = `<=${tM}.${tm}.${tp}-${tpr}`;
10814
+ } else if (incPr) {
10815
+ to = `<${tM}.${tm}.${+tp + 1}-0`;
10816
+ } else {
10817
+ to = `<=${to}`;
10818
+ }
10819
+ return `${from} ${to}`.trim();
10820
+ };
10821
+ var testSet = (set, version, options) => {
10822
+ for (let i = 0;i < set.length; i++) {
10823
+ if (!set[i].test(version)) {
10824
+ return false;
10825
+ }
10826
+ }
10827
+ if (version.prerelease.length && !options.includePrerelease) {
10828
+ for (let i = 0;i < set.length; i++) {
10829
+ debug(set[i].semver);
10830
+ if (set[i].semver === Comparator.ANY) {
10831
+ continue;
10832
+ }
10833
+ if (set[i].semver.prerelease.length > 0) {
10834
+ const allowed = set[i].semver;
10835
+ if (allowed.major === version.major && allowed.minor === version.minor && allowed.patch === version.patch) {
10836
+ return true;
10837
+ }
10838
+ }
10839
+ }
10840
+ return false;
10841
+ }
10842
+ return true;
10843
+ };
10844
+ });
10845
+
10846
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/classes/comparator.js
10847
+ var require_comparator2 = __commonJS((exports, module) => {
10848
+ var ANY = Symbol("SemVer ANY");
10849
+
10850
+ class Comparator {
10851
+ static get ANY() {
10852
+ return ANY;
10853
+ }
10854
+ constructor(comp, options) {
10855
+ options = parseOptions(options);
10856
+ if (comp instanceof Comparator) {
10857
+ if (comp.loose === !!options.loose) {
10858
+ return comp;
10859
+ } else {
10860
+ comp = comp.value;
10861
+ }
10862
+ }
10863
+ comp = comp.trim().split(/\s+/).join(" ");
10864
+ debug("comparator", comp, options);
10865
+ this.options = options;
10866
+ this.loose = !!options.loose;
10867
+ this.parse(comp);
10868
+ if (this.semver === ANY) {
10869
+ this.value = "";
10870
+ } else {
10871
+ this.value = this.operator + this.semver.version;
10872
+ }
10873
+ debug("comp", this);
10874
+ }
10875
+ parse(comp) {
10876
+ const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR];
10877
+ const m = comp.match(r);
10878
+ if (!m) {
10879
+ throw new TypeError(`Invalid comparator: ${comp}`);
10880
+ }
10881
+ this.operator = m[1] !== undefined ? m[1] : "";
10882
+ if (this.operator === "=") {
10883
+ this.operator = "";
10884
+ }
10885
+ if (!m[2]) {
10886
+ this.semver = ANY;
10887
+ } else {
10888
+ this.semver = new SemVer(m[2], this.options.loose);
10889
+ }
10890
+ }
10891
+ toString() {
10892
+ return this.value;
10893
+ }
10894
+ test(version) {
10895
+ debug("Comparator.test", version, this.options.loose);
10896
+ if (this.semver === ANY || version === ANY) {
10897
+ return true;
10898
+ }
10899
+ if (typeof version === "string") {
10900
+ try {
10901
+ version = new SemVer(version, this.options);
10902
+ } catch (er) {
10903
+ return false;
10904
+ }
10905
+ }
10906
+ return cmp(version, this.operator, this.semver, this.options);
10907
+ }
10908
+ intersects(comp, options) {
10909
+ if (!(comp instanceof Comparator)) {
10910
+ throw new TypeError("a Comparator is required");
10911
+ }
10912
+ if (this.operator === "") {
10913
+ if (this.value === "") {
10914
+ return true;
10915
+ }
10916
+ return new Range(comp.value, options).test(this.value);
10917
+ } else if (comp.operator === "") {
10918
+ if (comp.value === "") {
10919
+ return true;
10920
+ }
10921
+ return new Range(this.value, options).test(comp.semver);
10922
+ }
10923
+ options = parseOptions(options);
10924
+ if (options.includePrerelease && (this.value === "<0.0.0-0" || comp.value === "<0.0.0-0")) {
10925
+ return false;
10926
+ }
10927
+ if (!options.includePrerelease && (this.value.startsWith("<0.0.0") || comp.value.startsWith("<0.0.0"))) {
10928
+ return false;
10929
+ }
10930
+ if (this.operator.startsWith(">") && comp.operator.startsWith(">")) {
10931
+ return true;
10932
+ }
10933
+ if (this.operator.startsWith("<") && comp.operator.startsWith("<")) {
10934
+ return true;
10935
+ }
10936
+ if (this.semver.version === comp.semver.version && this.operator.includes("=") && comp.operator.includes("=")) {
10937
+ return true;
10938
+ }
10939
+ if (cmp(this.semver, "<", comp.semver, options) && this.operator.startsWith(">") && comp.operator.startsWith("<")) {
10940
+ return true;
10941
+ }
10942
+ if (cmp(this.semver, ">", comp.semver, options) && this.operator.startsWith("<") && comp.operator.startsWith(">")) {
10943
+ return true;
10944
+ }
10945
+ return false;
10946
+ }
10947
+ }
10948
+ module.exports = Comparator;
10949
+ var parseOptions = require_parse_options2();
10950
+ var { safeRe: re, t } = require_re2();
10951
+ var cmp = require_cmp2();
10952
+ var debug = require_debug2();
10953
+ var SemVer = require_semver3();
10954
+ var Range = require_range2();
10955
+ });
10956
+
10957
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/satisfies.js
10958
+ var require_satisfies2 = __commonJS((exports, module) => {
10959
+ var Range = require_range2();
10960
+ var satisfies = (version, range, options) => {
10961
+ try {
10962
+ range = new Range(range, options);
10963
+ } catch (er) {
10964
+ return false;
10965
+ }
10966
+ return range.test(version);
10967
+ };
10968
+ module.exports = satisfies;
10969
+ });
10970
+
10971
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/to-comparators.js
10972
+ var require_to_comparators2 = __commonJS((exports, module) => {
10973
+ var Range = require_range2();
10974
+ var toComparators = (range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
10975
+ module.exports = toComparators;
10976
+ });
10977
+
10978
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/max-satisfying.js
10979
+ var require_max_satisfying2 = __commonJS((exports, module) => {
10980
+ var SemVer = require_semver3();
10981
+ var Range = require_range2();
10982
+ var maxSatisfying = (versions, range, options) => {
10983
+ let max = null;
10984
+ let maxSV = null;
10985
+ let rangeObj = null;
10986
+ try {
10987
+ rangeObj = new Range(range, options);
10988
+ } catch (er) {
10989
+ return null;
10990
+ }
10991
+ versions.forEach((v) => {
10992
+ if (rangeObj.test(v)) {
10993
+ if (!max || maxSV.compare(v) === -1) {
10994
+ max = v;
10995
+ maxSV = new SemVer(max, options);
10996
+ }
10997
+ }
10998
+ });
10999
+ return max;
11000
+ };
11001
+ module.exports = maxSatisfying;
11002
+ });
11003
+
11004
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/min-satisfying.js
11005
+ var require_min_satisfying2 = __commonJS((exports, module) => {
11006
+ var SemVer = require_semver3();
11007
+ var Range = require_range2();
11008
+ var minSatisfying = (versions, range, options) => {
11009
+ let min = null;
11010
+ let minSV = null;
11011
+ let rangeObj = null;
11012
+ try {
11013
+ rangeObj = new Range(range, options);
11014
+ } catch (er) {
11015
+ return null;
11016
+ }
11017
+ versions.forEach((v) => {
11018
+ if (rangeObj.test(v)) {
11019
+ if (!min || minSV.compare(v) === 1) {
11020
+ min = v;
11021
+ minSV = new SemVer(min, options);
11022
+ }
11023
+ }
11024
+ });
11025
+ return min;
11026
+ };
11027
+ module.exports = minSatisfying;
11028
+ });
11029
+
11030
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/min-version.js
11031
+ var require_min_version2 = __commonJS((exports, module) => {
11032
+ var SemVer = require_semver3();
11033
+ var Range = require_range2();
11034
+ var gt = require_gt2();
11035
+ var minVersion = (range, loose) => {
11036
+ range = new Range(range, loose);
11037
+ let minver = new SemVer("0.0.0");
11038
+ if (range.test(minver)) {
11039
+ return minver;
11040
+ }
11041
+ minver = new SemVer("0.0.0-0");
11042
+ if (range.test(minver)) {
11043
+ return minver;
11044
+ }
11045
+ minver = null;
11046
+ for (let i = 0;i < range.set.length; ++i) {
11047
+ const comparators = range.set[i];
11048
+ let setMin = null;
11049
+ comparators.forEach((comparator) => {
11050
+ const compver = new SemVer(comparator.semver.version);
11051
+ switch (comparator.operator) {
11052
+ case ">":
11053
+ if (compver.prerelease.length === 0) {
11054
+ compver.patch++;
11055
+ } else {
11056
+ compver.prerelease.push(0);
11057
+ }
11058
+ compver.raw = compver.format();
11059
+ case "":
11060
+ case ">=":
11061
+ if (!setMin || gt(compver, setMin)) {
11062
+ setMin = compver;
11063
+ }
11064
+ break;
11065
+ case "<":
11066
+ case "<=":
11067
+ break;
11068
+ default:
11069
+ throw new Error(`Unexpected operation: ${comparator.operator}`);
11070
+ }
11071
+ });
11072
+ if (setMin && (!minver || gt(minver, setMin))) {
11073
+ minver = setMin;
11074
+ }
11075
+ }
11076
+ if (minver && range.test(minver)) {
11077
+ return minver;
11078
+ }
11079
+ return null;
11080
+ };
11081
+ module.exports = minVersion;
11082
+ });
11083
+
11084
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/valid.js
11085
+ var require_valid4 = __commonJS((exports, module) => {
11086
+ var Range = require_range2();
11087
+ var validRange = (range, options) => {
11088
+ try {
11089
+ return new Range(range, options).range || "*";
11090
+ } catch (er) {
11091
+ return null;
11092
+ }
11093
+ };
11094
+ module.exports = validRange;
11095
+ });
11096
+
11097
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/outside.js
11098
+ var require_outside2 = __commonJS((exports, module) => {
11099
+ var SemVer = require_semver3();
11100
+ var Comparator = require_comparator2();
11101
+ var { ANY } = Comparator;
11102
+ var Range = require_range2();
11103
+ var satisfies = require_satisfies2();
11104
+ var gt = require_gt2();
11105
+ var lt = require_lt2();
11106
+ var lte = require_lte2();
11107
+ var gte = require_gte2();
11108
+ var outside = (version, range, hilo, options) => {
11109
+ version = new SemVer(version, options);
11110
+ range = new Range(range, options);
11111
+ let gtfn, ltefn, ltfn, comp, ecomp;
11112
+ switch (hilo) {
11113
+ case ">":
11114
+ gtfn = gt;
11115
+ ltefn = lte;
11116
+ ltfn = lt;
11117
+ comp = ">";
11118
+ ecomp = ">=";
11119
+ break;
11120
+ case "<":
11121
+ gtfn = lt;
11122
+ ltefn = gte;
11123
+ ltfn = gt;
11124
+ comp = "<";
11125
+ ecomp = "<=";
11126
+ break;
11127
+ default:
11128
+ throw new TypeError('Must provide a hilo val of "<" or ">"');
11129
+ }
11130
+ if (satisfies(version, range, options)) {
11131
+ return false;
11132
+ }
11133
+ for (let i = 0;i < range.set.length; ++i) {
11134
+ const comparators = range.set[i];
11135
+ let high = null;
11136
+ let low = null;
11137
+ comparators.forEach((comparator) => {
11138
+ if (comparator.semver === ANY) {
11139
+ comparator = new Comparator(">=0.0.0");
11140
+ }
11141
+ high = high || comparator;
11142
+ low = low || comparator;
11143
+ if (gtfn(comparator.semver, high.semver, options)) {
11144
+ high = comparator;
11145
+ } else if (ltfn(comparator.semver, low.semver, options)) {
11146
+ low = comparator;
11147
+ }
11148
+ });
11149
+ if (high.operator === comp || high.operator === ecomp) {
11150
+ return false;
11151
+ }
11152
+ if ((!low.operator || low.operator === comp) && ltefn(version, low.semver)) {
11153
+ return false;
11154
+ } else if (low.operator === ecomp && ltfn(version, low.semver)) {
11155
+ return false;
11156
+ }
11157
+ }
11158
+ return true;
11159
+ };
11160
+ module.exports = outside;
11161
+ });
11162
+
11163
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/gtr.js
11164
+ var require_gtr2 = __commonJS((exports, module) => {
11165
+ var outside = require_outside2();
11166
+ var gtr = (version, range, options) => outside(version, range, ">", options);
11167
+ module.exports = gtr;
11168
+ });
11169
+
11170
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/ltr.js
11171
+ var require_ltr2 = __commonJS((exports, module) => {
11172
+ var outside = require_outside2();
11173
+ var ltr = (version, range, options) => outside(version, range, "<", options);
11174
+ module.exports = ltr;
11175
+ });
11176
+
11177
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/intersects.js
11178
+ var require_intersects2 = __commonJS((exports, module) => {
11179
+ var Range = require_range2();
11180
+ var intersects = (r1, r2, options) => {
11181
+ r1 = new Range(r1, options);
11182
+ r2 = new Range(r2, options);
11183
+ return r1.intersects(r2, options);
11184
+ };
11185
+ module.exports = intersects;
11186
+ });
11187
+
11188
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/simplify.js
11189
+ var require_simplify2 = __commonJS((exports, module) => {
11190
+ var satisfies = require_satisfies2();
11191
+ var compare = require_compare2();
11192
+ module.exports = (versions, range, options) => {
11193
+ const set = [];
11194
+ let first = null;
11195
+ let prev = null;
11196
+ const v = versions.sort((a, b) => compare(a, b, options));
11197
+ for (const version of v) {
11198
+ const included = satisfies(version, range, options);
11199
+ if (included) {
11200
+ prev = version;
11201
+ if (!first) {
11202
+ first = version;
11203
+ }
11204
+ } else {
11205
+ if (prev) {
11206
+ set.push([first, prev]);
11207
+ }
11208
+ prev = null;
11209
+ first = null;
11210
+ }
11211
+ }
11212
+ if (first) {
11213
+ set.push([first, null]);
11214
+ }
11215
+ const ranges = [];
11216
+ for (const [min, max] of set) {
11217
+ if (min === max) {
11218
+ ranges.push(min);
11219
+ } else if (!max && min === v[0]) {
11220
+ ranges.push("*");
11221
+ } else if (!max) {
11222
+ ranges.push(`>=${min}`);
11223
+ } else if (min === v[0]) {
11224
+ ranges.push(`<=${max}`);
11225
+ } else {
11226
+ ranges.push(`${min} - ${max}`);
11227
+ }
11228
+ }
11229
+ const simplified = ranges.join(" || ");
11230
+ const original = typeof range.raw === "string" ? range.raw : String(range);
11231
+ return simplified.length < original.length ? simplified : range;
11232
+ };
11233
+ });
11234
+
11235
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/subset.js
11236
+ var require_subset2 = __commonJS((exports, module) => {
11237
+ var Range = require_range2();
11238
+ var Comparator = require_comparator2();
11239
+ var { ANY } = Comparator;
11240
+ var satisfies = require_satisfies2();
11241
+ var compare = require_compare2();
11242
+ var subset = (sub, dom, options = {}) => {
11243
+ if (sub === dom) {
11244
+ return true;
11245
+ }
11246
+ sub = new Range(sub, options);
11247
+ dom = new Range(dom, options);
11248
+ let sawNonNull = false;
11249
+ OUTER:
11250
+ for (const simpleSub of sub.set) {
11251
+ for (const simpleDom of dom.set) {
11252
+ const isSub = simpleSubset(simpleSub, simpleDom, options);
11253
+ sawNonNull = sawNonNull || isSub !== null;
11254
+ if (isSub) {
11255
+ continue OUTER;
11256
+ }
11257
+ }
11258
+ if (sawNonNull) {
11259
+ return false;
11260
+ }
11261
+ }
11262
+ return true;
11263
+ };
11264
+ var minimumVersionWithPreRelease = [new Comparator(">=0.0.0-0")];
11265
+ var minimumVersion = [new Comparator(">=0.0.0")];
11266
+ var simpleSubset = (sub, dom, options) => {
11267
+ if (sub === dom) {
11268
+ return true;
11269
+ }
11270
+ if (sub.length === 1 && sub[0].semver === ANY) {
11271
+ if (dom.length === 1 && dom[0].semver === ANY) {
11272
+ return true;
11273
+ } else if (options.includePrerelease) {
11274
+ sub = minimumVersionWithPreRelease;
11275
+ } else {
11276
+ sub = minimumVersion;
11277
+ }
11278
+ }
11279
+ if (dom.length === 1 && dom[0].semver === ANY) {
11280
+ if (options.includePrerelease) {
11281
+ return true;
11282
+ } else {
11283
+ dom = minimumVersion;
11284
+ }
11285
+ }
11286
+ const eqSet = new Set;
11287
+ let gt, lt;
11288
+ for (const c of sub) {
11289
+ if (c.operator === ">" || c.operator === ">=") {
11290
+ gt = higherGT(gt, c, options);
11291
+ } else if (c.operator === "<" || c.operator === "<=") {
11292
+ lt = lowerLT(lt, c, options);
11293
+ } else {
11294
+ eqSet.add(c.semver);
11295
+ }
11296
+ }
11297
+ if (eqSet.size > 1) {
11298
+ return null;
11299
+ }
11300
+ let gtltComp;
11301
+ if (gt && lt) {
11302
+ gtltComp = compare(gt.semver, lt.semver, options);
11303
+ if (gtltComp > 0) {
11304
+ return null;
11305
+ } else if (gtltComp === 0 && (gt.operator !== ">=" || lt.operator !== "<=")) {
11306
+ return null;
11307
+ }
11308
+ }
11309
+ for (const eq of eqSet) {
11310
+ if (gt && !satisfies(eq, String(gt), options)) {
11311
+ return null;
11312
+ }
11313
+ if (lt && !satisfies(eq, String(lt), options)) {
11314
+ return null;
11315
+ }
11316
+ for (const c of dom) {
11317
+ if (!satisfies(eq, String(c), options)) {
11318
+ return false;
11319
+ }
11320
+ }
11321
+ return true;
11322
+ }
11323
+ let higher, lower;
11324
+ let hasDomLT, hasDomGT;
11325
+ let needDomLTPre = lt && !options.includePrerelease && lt.semver.prerelease.length ? lt.semver : false;
11326
+ let needDomGTPre = gt && !options.includePrerelease && gt.semver.prerelease.length ? gt.semver : false;
11327
+ if (needDomLTPre && needDomLTPre.prerelease.length === 1 && lt.operator === "<" && needDomLTPre.prerelease[0] === 0) {
11328
+ needDomLTPre = false;
11329
+ }
11330
+ for (const c of dom) {
11331
+ hasDomGT = hasDomGT || c.operator === ">" || c.operator === ">=";
11332
+ hasDomLT = hasDomLT || c.operator === "<" || c.operator === "<=";
11333
+ if (gt) {
11334
+ if (needDomGTPre) {
11335
+ if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomGTPre.major && c.semver.minor === needDomGTPre.minor && c.semver.patch === needDomGTPre.patch) {
11336
+ needDomGTPre = false;
11337
+ }
11338
+ }
11339
+ if (c.operator === ">" || c.operator === ">=") {
11340
+ higher = higherGT(gt, c, options);
11341
+ if (higher === c && higher !== gt) {
11342
+ return false;
11343
+ }
11344
+ } else if (gt.operator === ">=" && !satisfies(gt.semver, String(c), options)) {
11345
+ return false;
11346
+ }
11347
+ }
11348
+ if (lt) {
11349
+ if (needDomLTPre) {
11350
+ if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomLTPre.major && c.semver.minor === needDomLTPre.minor && c.semver.patch === needDomLTPre.patch) {
11351
+ needDomLTPre = false;
11352
+ }
11353
+ }
11354
+ if (c.operator === "<" || c.operator === "<=") {
11355
+ lower = lowerLT(lt, c, options);
11356
+ if (lower === c && lower !== lt) {
11357
+ return false;
11358
+ }
11359
+ } else if (lt.operator === "<=" && !satisfies(lt.semver, String(c), options)) {
11360
+ return false;
11361
+ }
11362
+ }
11363
+ if (!c.operator && (lt || gt) && gtltComp !== 0) {
11364
+ return false;
11365
+ }
11366
+ }
11367
+ if (gt && hasDomLT && !lt && gtltComp !== 0) {
11368
+ return false;
11369
+ }
11370
+ if (lt && hasDomGT && !gt && gtltComp !== 0) {
11371
+ return false;
11372
+ }
11373
+ if (needDomGTPre || needDomLTPre) {
11374
+ return false;
11375
+ }
11376
+ return true;
11377
+ };
11378
+ var higherGT = (a, b, options) => {
11379
+ if (!a) {
11380
+ return b;
11381
+ }
11382
+ const comp = compare(a.semver, b.semver, options);
11383
+ return comp > 0 ? a : comp < 0 ? b : b.operator === ">" && a.operator === ">=" ? b : a;
11384
+ };
11385
+ var lowerLT = (a, b, options) => {
11386
+ if (!a) {
11387
+ return b;
11388
+ }
11389
+ const comp = compare(a.semver, b.semver, options);
11390
+ return comp < 0 ? a : comp > 0 ? b : b.operator === "<" && a.operator === "<=" ? b : a;
11391
+ };
11392
+ module.exports = subset;
11393
+ });
11394
+
11395
+ // ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/index.js
11396
+ var require_semver4 = __commonJS((exports, module) => {
11397
+ var internalRe = require_re2();
11398
+ var constants2 = require_constants2();
11399
+ var SemVer = require_semver3();
11400
+ var identifiers = require_identifiers2();
11401
+ var parse = require_parse3();
11402
+ var valid2 = require_valid3();
11403
+ var clean2 = require_clean2();
11404
+ var inc = require_inc2();
11405
+ var diff = require_diff2();
11406
+ var major = require_major2();
11407
+ var minor = require_minor2();
11408
+ var patch = require_patch2();
11409
+ var prerelease = require_prerelease2();
11410
+ var compare = require_compare2();
11411
+ var rcompare = require_rcompare2();
11412
+ var compareLoose = require_compare_loose2();
11413
+ var compareBuild = require_compare_build2();
11414
+ var sort = require_sort2();
11415
+ var rsort = require_rsort2();
11416
+ var gt = require_gt2();
11417
+ var lt = require_lt2();
11418
+ var eq = require_eq2();
11419
+ var neq = require_neq2();
11420
+ var gte = require_gte2();
11421
+ var lte = require_lte2();
11422
+ var cmp = require_cmp2();
11423
+ var coerce = require_coerce2();
11424
+ var Comparator = require_comparator2();
11425
+ var Range = require_range2();
11426
+ var satisfies = require_satisfies2();
11427
+ var toComparators = require_to_comparators2();
11428
+ var maxSatisfying = require_max_satisfying2();
11429
+ var minSatisfying = require_min_satisfying2();
11430
+ var minVersion = require_min_version2();
11431
+ var validRange = require_valid4();
11432
+ var outside = require_outside2();
11433
+ var gtr = require_gtr2();
11434
+ var ltr = require_ltr2();
11435
+ var intersects = require_intersects2();
11436
+ var simplifyRange = require_simplify2();
11437
+ var subset = require_subset2();
11438
+ module.exports = {
11439
+ parse,
11440
+ valid: valid2,
11441
+ clean: clean2,
11442
+ inc,
11443
+ diff,
11444
+ major,
11445
+ minor,
11446
+ patch,
11447
+ prerelease,
11448
+ compare,
11449
+ rcompare,
11450
+ compareLoose,
11451
+ compareBuild,
11452
+ sort,
11453
+ rsort,
11454
+ gt,
11455
+ lt,
11456
+ eq,
11457
+ neq,
11458
+ gte,
11459
+ lte,
11460
+ cmp,
11461
+ coerce,
11462
+ Comparator,
11463
+ Range,
11464
+ satisfies,
11465
+ toComparators,
11466
+ maxSatisfying,
11467
+ minSatisfying,
11468
+ minVersion,
11469
+ validRange,
11470
+ outside,
11471
+ gtr,
11472
+ ltr,
11473
+ intersects,
11474
+ simplifyRange,
11475
+ subset,
11476
+ SemVer,
11477
+ re: internalRe.re,
11478
+ src: internalRe.src,
11479
+ tokens: internalRe.t,
11480
+ SEMVER_SPEC_VERSION: constants2.SEMVER_SPEC_VERSION,
11481
+ RELEASE_TYPES: constants2.RELEASE_TYPES,
11482
+ compareIdentifiers: identifiers.compareIdentifiers,
11483
+ rcompareIdentifiers: identifiers.rcompareIdentifiers
11484
+ };
11485
+ });
11486
+
9704
11487
  // ../../node_modules/.pnpm/validate-npm-package-name@7.0.2/node_modules/validate-npm-package-name/lib/builtin-modules.json
9705
11488
  var require_builtin_modules = __commonJS((exports, module) => {
9706
11489
  module.exports = ["_http_agent", "_http_client", "_http_common", "_http_incoming", "_http_outgoing", "_http_server", "_stream_duplex", "_stream_passthrough", "_stream_readable", "_stream_transform", "_stream_wrap", "_stream_writable", "_tls_common", "_tls_wrap", "assert", "assert/strict", "async_hooks", "buffer", "child_process", "cluster", "console", "constants", "crypto", "dgram", "diagnostics_channel", "dns", "dns/promises", "domain", "events", "fs", "fs/promises", "http", "http2", "https", "inspector", "inspector/promises", "module", "net", "os", "path", "path/posix", "path/win32", "perf_hooks", "process", "punycode", "querystring", "readline", "readline/promises", "repl", "stream", "stream/consumers", "stream/promises", "stream/web", "string_decoder", "sys", "timers", "timers/promises", "tls", "trace_events", "tty", "url", "util", "util/types", "v8", "vm", "wasi", "worker_threads", "zlib", "node:sea", "node:sqlite", "node:test", "node:test/reporters"];
@@ -9963,7 +11746,7 @@ var require_npa = __commonJS((exports, module) => {
9963
11746
  var path3 = isWindows ? __require("node:path/win32") : __require("node:path");
9964
11747
  var { homedir: homedir2 } = __require("node:os");
9965
11748
  var HostedGit = require_lib3();
9966
- var semver = require_semver2();
11749
+ var semver = require_semver4();
9967
11750
  var validatePackageName = require_lib4();
9968
11751
  var { log } = require_lib5();
9969
11752
  var hasSlashes = isWindows ? /\\|[/]/ : /[/]/;
@@ -14469,7 +16252,7 @@ var require_snippet = __commonJS((exports, module3) => {
14469
16252
  });
14470
16253
 
14471
16254
  // ../../node_modules/.pnpm/enquirer@2.4.1/node_modules/enquirer/lib/prompts/sort.js
14472
- var require_sort2 = __commonJS((exports, module3) => {
16255
+ var require_sort3 = __commonJS((exports, module3) => {
14473
16256
  var hint = "(Use <shift>+<up/down> to sort)";
14474
16257
  var Prompt = require_select();
14475
16258
 
@@ -14810,7 +16593,7 @@ var require_prompts = __commonJS((exports) => {
14810
16593
  define2("Scale", () => require_scale());
14811
16594
  define2("Select", () => require_select());
14812
16595
  define2("Snippet", () => require_snippet());
14813
- define2("Sort", () => require_sort2());
16596
+ define2("Sort", () => require_sort3());
14814
16597
  define2("Survey", () => require_survey());
14815
16598
  define2("Text", () => require_input());
14816
16599
  define2("Toggle", () => require_toggle());
@@ -185840,7 +187623,7 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
185840
187623
  } });
185841
187624
  });
185842
187625
 
185843
- // ../../node_modules/.pnpm/balanced-match@4.0.2/node_modules/balanced-match/dist/commonjs/index.js
187626
+ // ../../node_modules/.pnpm/@isaacs+balanced-match@4.0.1/node_modules/@isaacs/balanced-match/dist/commonjs/index.js
185844
187627
  var require_commonjs2 = __commonJS((exports) => {
185845
187628
  Object.defineProperty(exports, "__esModule", { value: true });
185846
187629
  exports.range = exports.balanced = undefined;
@@ -185899,10 +187682,9 @@ var require_commonjs2 = __commonJS((exports) => {
185899
187682
  exports.range = range;
185900
187683
  });
185901
187684
 
185902
- // ../../node_modules/.pnpm/brace-expansion@5.0.2/node_modules/brace-expansion/dist/commonjs/index.js
187685
+ // ../../node_modules/.pnpm/@isaacs+brace-expansion@5.0.0/node_modules/@isaacs/brace-expansion/dist/commonjs/index.js
185903
187686
  var require_commonjs3 = __commonJS((exports) => {
185904
187687
  Object.defineProperty(exports, "__esModule", { value: true });
185905
- exports.EXPANSION_MAX = undefined;
185906
187688
  exports.expand = expand;
185907
187689
  var balanced_match_1 = require_commonjs2();
185908
187690
  var escSlash = "\x00SLASH" + Math.random() + "\x00";
@@ -185920,7 +187702,6 @@ var require_commonjs3 = __commonJS((exports) => {
185920
187702
  var closePattern = /\\}/g;
185921
187703
  var commaPattern = /\\,/g;
185922
187704
  var periodPattern = /\\./g;
185923
- exports.EXPANSION_MAX = 1e5;
185924
187705
  function numeric(str2) {
185925
187706
  return !isNaN(str2) ? parseInt(str2, 10) : str2.charCodeAt(0);
185926
187707
  }
@@ -185950,15 +187731,14 @@ var require_commonjs3 = __commonJS((exports) => {
185950
187731
  parts.push.apply(parts, p);
185951
187732
  return parts;
185952
187733
  }
185953
- function expand(str2, options = {}) {
187734
+ function expand(str2) {
185954
187735
  if (!str2) {
185955
187736
  return [];
185956
187737
  }
185957
- const { max = exports.EXPANSION_MAX } = options;
185958
187738
  if (str2.slice(0, 2) === "{}") {
185959
187739
  str2 = "\\{\\}" + str2.slice(2);
185960
187740
  }
185961
- return expand_(escapeBraces(str2), max, true).map(unescapeBraces);
187741
+ return expand_(escapeBraces(str2), true).map(unescapeBraces);
185962
187742
  }
185963
187743
  function embrace(str2) {
185964
187744
  return "{" + str2 + "}";
@@ -185972,15 +187752,15 @@ var require_commonjs3 = __commonJS((exports) => {
185972
187752
  function gte(i, y) {
185973
187753
  return i >= y;
185974
187754
  }
185975
- function expand_(str2, max, isTop) {
187755
+ function expand_(str2, isTop) {
185976
187756
  const expansions = [];
185977
187757
  const m = (0, balanced_match_1.balanced)("{", "}", str2);
185978
187758
  if (!m)
185979
187759
  return [str2];
185980
187760
  const pre = m.pre;
185981
- const post = m.post.length ? expand_(m.post, max, false) : [""];
187761
+ const post = m.post.length ? expand_(m.post, false) : [""];
185982
187762
  if (/\$$/.test(m.pre)) {
185983
- for (let k = 0;k < post.length && k < max; k++) {
187763
+ for (let k = 0;k < post.length; k++) {
185984
187764
  const expansion = pre + "{" + m.body + "}" + post[k];
185985
187765
  expansions.push(expansion);
185986
187766
  }
@@ -185992,7 +187772,7 @@ var require_commonjs3 = __commonJS((exports) => {
185992
187772
  if (!isSequence && !isOptions) {
185993
187773
  if (m.post.match(/,(?!,).*\}/)) {
185994
187774
  str2 = m.pre + "{" + m.body + escClose + m.post;
185995
- return expand_(str2, max, true);
187775
+ return expand_(str2);
185996
187776
  }
185997
187777
  return [str2];
185998
187778
  }
@@ -186002,7 +187782,7 @@ var require_commonjs3 = __commonJS((exports) => {
186002
187782
  } else {
186003
187783
  n = parseCommaParts(m.body);
186004
187784
  if (n.length === 1 && n[0] !== undefined) {
186005
- n = expand_(n[0], max, false).map(embrace);
187785
+ n = expand_(n[0], false).map(embrace);
186006
187786
  if (n.length === 1) {
186007
187787
  return post.map((p) => m.pre + n[0] + p);
186008
187788
  }
@@ -186048,11 +187828,11 @@ var require_commonjs3 = __commonJS((exports) => {
186048
187828
  } else {
186049
187829
  N = [];
186050
187830
  for (let j = 0;j < n.length; j++) {
186051
- N.push.apply(N, expand_(n[j], max, false));
187831
+ N.push.apply(N, expand_(n[j], false));
186052
187832
  }
186053
187833
  }
186054
187834
  for (let j = 0;j < N.length; j++) {
186055
- for (let k = 0;k < post.length && expansions.length < max; k++) {
187835
+ for (let k = 0;k < post.length; k++) {
186056
187836
  const expansion = pre + N[j] + post[k];
186057
187837
  if (!isTop || isSequence || expansion) {
186058
187838
  expansions.push(expansion);
@@ -186064,7 +187844,7 @@ var require_commonjs3 = __commonJS((exports) => {
186064
187844
  }
186065
187845
  });
186066
187846
 
186067
- // ../../node_modules/.pnpm/minimatch@10.2.1/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
187847
+ // ../../node_modules/.pnpm/minimatch@10.1.1/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
186068
187848
  var require_assert_valid_pattern = __commonJS((exports) => {
186069
187849
  Object.defineProperty(exports, "__esModule", { value: true });
186070
187850
  exports.assertValidPattern = undefined;
@@ -186080,7 +187860,7 @@ var require_assert_valid_pattern = __commonJS((exports) => {
186080
187860
  exports.assertValidPattern = assertValidPattern;
186081
187861
  });
186082
187862
 
186083
- // ../../node_modules/.pnpm/minimatch@10.2.1/node_modules/minimatch/dist/commonjs/brace-expressions.js
187863
+ // ../../node_modules/.pnpm/minimatch@10.1.1/node_modules/minimatch/dist/commonjs/brace-expressions.js
186084
187864
  var require_brace_expressions = __commonJS((exports) => {
186085
187865
  Object.defineProperty(exports, "__esModule", { value: true });
186086
187866
  exports.parseClass = undefined;
@@ -186195,7 +187975,7 @@ var require_brace_expressions = __commonJS((exports) => {
186195
187975
  exports.parseClass = parseClass;
186196
187976
  });
186197
187977
 
186198
- // ../../node_modules/.pnpm/minimatch@10.2.1/node_modules/minimatch/dist/commonjs/unescape.js
187978
+ // ../../node_modules/.pnpm/minimatch@10.1.1/node_modules/minimatch/dist/commonjs/unescape.js
186199
187979
  var require_unescape = __commonJS((exports) => {
186200
187980
  Object.defineProperty(exports, "__esModule", { value: true });
186201
187981
  exports.unescape = undefined;
@@ -186208,7 +187988,7 @@ var require_unescape = __commonJS((exports) => {
186208
187988
  exports.unescape = unescape;
186209
187989
  });
186210
187990
 
186211
- // ../../node_modules/.pnpm/minimatch@10.2.1/node_modules/minimatch/dist/commonjs/ast.js
187991
+ // ../../node_modules/.pnpm/minimatch@10.1.1/node_modules/minimatch/dist/commonjs/ast.js
186212
187992
  var require_ast = __commonJS((exports) => {
186213
187993
  Object.defineProperty(exports, "__esModule", { value: true });
186214
187994
  exports.AST = undefined;
@@ -186567,7 +188347,6 @@ var require_ast = __commonJS((exports) => {
186567
188347
  let escaping = false;
186568
188348
  let re = "";
186569
188349
  let uflag = false;
186570
- let inStar = false;
186571
188350
  for (let i = 0;i < glob.length; i++) {
186572
188351
  const c2 = glob.charAt(i);
186573
188352
  if (escaping) {
@@ -186575,16 +188354,6 @@ var require_ast = __commonJS((exports) => {
186575
188354
  re += (reSpecials.has(c2) ? "\\" : "") + c2;
186576
188355
  continue;
186577
188356
  }
186578
- if (c2 === "*") {
186579
- if (inStar)
186580
- continue;
186581
- inStar = true;
186582
- re += noEmpty && /^[*]+$/.test(glob) ? starNoEmpty : star;
186583
- hasMagic = true;
186584
- continue;
186585
- } else {
186586
- inStar = false;
186587
- }
186588
188357
  if (c2 === "\\") {
186589
188358
  if (i === glob.length - 1) {
186590
188359
  re += "\\\\";
@@ -186603,6 +188372,11 @@ var require_ast = __commonJS((exports) => {
186603
188372
  continue;
186604
188373
  }
186605
188374
  }
188375
+ if (c2 === "*") {
188376
+ re += noEmpty && glob === "*" ? starNoEmpty : star;
188377
+ hasMagic = true;
188378
+ continue;
188379
+ }
186606
188380
  if (c2 === "?") {
186607
188381
  re += qmark;
186608
188382
  hasMagic = true;
@@ -186616,7 +188390,7 @@ var require_ast = __commonJS((exports) => {
186616
188390
  exports.AST = AST;
186617
188391
  });
186618
188392
 
186619
- // ../../node_modules/.pnpm/minimatch@10.2.1/node_modules/minimatch/dist/commonjs/escape.js
188393
+ // ../../node_modules/.pnpm/minimatch@10.1.1/node_modules/minimatch/dist/commonjs/escape.js
186620
188394
  var require_escape = __commonJS((exports) => {
186621
188395
  Object.defineProperty(exports, "__esModule", { value: true });
186622
188396
  exports.escape = undefined;
@@ -186629,7 +188403,7 @@ var require_escape = __commonJS((exports) => {
186629
188403
  exports.escape = escape;
186630
188404
  });
186631
188405
 
186632
- // ../../node_modules/.pnpm/minimatch@10.2.1/node_modules/minimatch/dist/commonjs/index.js
188406
+ // ../../node_modules/.pnpm/minimatch@10.1.1/node_modules/minimatch/dist/commonjs/index.js
186633
188407
  var require_commonjs4 = __commonJS((exports) => {
186634
188408
  Object.defineProperty(exports, "__esModule", { value: true });
186635
188409
  exports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = undefined;
@@ -186754,7 +188528,7 @@ var require_commonjs4 = __commonJS((exports) => {
186754
188528
  if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
186755
188529
  return [pattern];
186756
188530
  }
186757
- return (0, brace_expansion_1.expand)(pattern, { max: options.braceExpandMax });
188531
+ return (0, brace_expansion_1.expand)(pattern);
186758
188532
  };
186759
188533
  exports.braceExpand = braceExpand;
186760
188534
  exports.minimatch.braceExpand = exports.braceExpand;
@@ -186799,8 +188573,7 @@ var require_commonjs4 = __commonJS((exports) => {
186799
188573
  this.pattern = pattern;
186800
188574
  this.platform = options.platform || defaultPlatform;
186801
188575
  this.isWindows = this.platform === "win32";
186802
- const awe = "allowWindow" + "sEscape";
186803
- this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options[awe] === false;
188576
+ this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
186804
188577
  if (this.windowsPathsNoEscape) {
186805
188578
  this.pattern = this.pattern.replace(/\\/g, "/");
186806
188579
  }
@@ -186856,10 +188629,7 @@ var require_commonjs4 = __commonJS((exports) => {
186856
188629
  const isUNC = s[0] === "" && s[1] === "" && (s[2] === "?" || !globMagic.test(s[2])) && !globMagic.test(s[3]);
186857
188630
  const isDrive = /^[a-z]:/i.test(s[0]);
186858
188631
  if (isUNC) {
186859
- return [
186860
- ...s.slice(0, 4),
186861
- ...s.slice(4).map((ss) => this.parse(ss))
186862
- ];
188632
+ return [...s.slice(0, 4), ...s.slice(4).map((ss) => this.parse(ss))];
186863
188633
  } else if (isDrive) {
186864
188634
  return [s[0], ...s.slice(1).map((ss) => this.parse(ss))];
186865
188635
  }
@@ -187103,10 +188873,7 @@ var require_commonjs4 = __commonJS((exports) => {
187103
188873
  const fdi = fileUNC ? 3 : fileDrive ? 0 : undefined;
187104
188874
  const pdi = patternUNC ? 3 : patternDrive ? 0 : undefined;
187105
188875
  if (typeof fdi === "number" && typeof pdi === "number") {
187106
- const [fd, pd] = [
187107
- file[fdi],
187108
- pattern[pdi]
187109
- ];
188876
+ const [fd, pd] = [file[fdi], pattern[pdi]];
187110
188877
  if (fd.toLowerCase() === pd.toLowerCase()) {
187111
188878
  pattern[pdi] = fd;
187112
188879
  if (pdi > fdi) {
@@ -187776,7 +189543,7 @@ var require_path_browserify = __commonJS((exports, module3) => {
187776
189543
  });
187777
189544
 
187778
189545
  // ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/constants.js
187779
- var require_constants2 = __commonJS((exports, module3) => {
189546
+ var require_constants3 = __commonJS((exports, module3) => {
187780
189547
  var WIN_SLASH = "\\\\/";
187781
189548
  var WIN_NO_SLASH = `[^${WIN_SLASH}]`;
187782
189549
  var DOT_LITERAL = "\\.";
@@ -187924,7 +189691,7 @@ var require_utils3 = __commonJS((exports) => {
187924
189691
  REGEX_REMOVE_BACKSLASH,
187925
189692
  REGEX_SPECIAL_CHARS,
187926
189693
  REGEX_SPECIAL_CHARS_GLOBAL
187927
- } = require_constants2();
189694
+ } = require_constants3();
187928
189695
  exports.isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
187929
189696
  exports.hasRegexChars = (str2) => REGEX_SPECIAL_CHARS.test(str2);
187930
189697
  exports.isRegexChar = (str2) => str2.length === 1 && exports.hasRegexChars(str2);
@@ -187999,7 +189766,7 @@ var require_scan2 = __commonJS((exports, module3) => {
187999
189766
  CHAR_RIGHT_CURLY_BRACE,
188000
189767
  CHAR_RIGHT_PARENTHESES,
188001
189768
  CHAR_RIGHT_SQUARE_BRACKET
188002
- } = require_constants2();
189769
+ } = require_constants3();
188003
189770
  var isPathSeparator = (code) => {
188004
189771
  return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
188005
189772
  };
@@ -188296,8 +190063,8 @@ var require_scan2 = __commonJS((exports, module3) => {
188296
190063
  });
188297
190064
 
188298
190065
  // ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/parse.js
188299
- var require_parse3 = __commonJS((exports, module3) => {
188300
- var constants2 = require_constants2();
190066
+ var require_parse4 = __commonJS((exports, module3) => {
190067
+ var constants2 = require_constants3();
188301
190068
  var utils5 = require_utils3();
188302
190069
  var {
188303
190070
  MAX_LENGTH: MAX_LENGTH2,
@@ -189071,9 +190838,9 @@ var require_parse3 = __commonJS((exports, module3) => {
189071
190838
  // ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/picomatch.js
189072
190839
  var require_picomatch = __commonJS((exports, module3) => {
189073
190840
  var scan = require_scan2();
189074
- var parse3 = require_parse3();
190841
+ var parse3 = require_parse4();
189075
190842
  var utils5 = require_utils3();
189076
- var constants2 = require_constants2();
190843
+ var constants2 = require_constants3();
189077
190844
  var isObject2 = (val) => val && typeof val === "object" && !Array.isArray(val);
189078
190845
  var picomatch = (glob, options, returnState = false) => {
189079
190846
  if (Array.isArray(glob)) {
@@ -258130,7 +259897,7 @@ var require_errors = __commonJS((exports) => {
258130
259897
  });
258131
259898
 
258132
259899
  // ../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/parse.cjs
258133
- var require_parse4 = __commonJS((exports) => {
259900
+ var require_parse5 = __commonJS((exports) => {
258134
259901
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
258135
259902
  if (k2 === undefined)
258136
259903
  k2 = k;
@@ -259094,7 +260861,7 @@ var require_schemas = __commonJS((exports) => {
259094
260861
  var checks = __importStar(require_checks());
259095
260862
  var core = __importStar(require_core());
259096
260863
  var doc_js_1 = require_doc();
259097
- var parse_js_1 = require_parse4();
260864
+ var parse_js_1 = require_parse5();
259098
260865
  var regexes = __importStar(require_regexes());
259099
260866
  var util = __importStar(require_util2());
259100
260867
  var versions_js_1 = require_versions();
@@ -264982,7 +266749,7 @@ var require_ko = __commonJS((exports, module3) => {
264982
266749
  });
264983
266750
 
264984
266751
  // ../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/lt.cjs
264985
- var require_lt2 = __commonJS((exports, module3) => {
266752
+ var require_lt3 = __commonJS((exports, module3) => {
264986
266753
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
264987
266754
  if (k2 === undefined)
264988
266755
  k2 = k;
@@ -268499,7 +270266,7 @@ var require_locales = __commonJS((exports) => {
268499
270266
  Object.defineProperty(exports, "ko", { enumerable: true, get: function() {
268500
270267
  return __importDefault(ko_js_1).default;
268501
270268
  } });
268502
- var lt_js_1 = require_lt2();
270269
+ var lt_js_1 = require_lt3();
268503
270270
  Object.defineProperty(exports, "lt", { enumerable: true, get: function() {
268504
270271
  return __importDefault(lt_js_1).default;
268505
270272
  } });
@@ -270795,7 +272562,7 @@ var require_core2 = __commonJS((exports) => {
270795
272562
  Object.defineProperty(exports, "__esModule", { value: true });
270796
272563
  exports.JSONSchema = exports.JSONSchemaGenerator = exports.toJSONSchema = exports.locales = exports.regexes = exports.util = undefined;
270797
272564
  __exportStar(require_core(), exports);
270798
- __exportStar(require_parse4(), exports);
272565
+ __exportStar(require_parse5(), exports);
270799
272566
  __exportStar(require_errors(), exports);
270800
272567
  __exportStar(require_schemas(), exports);
270801
272568
  __exportStar(require_checks(), exports);
@@ -277302,7 +279069,7 @@ var require_errors2 = __commonJS((exports) => {
277302
279069
  });
277303
279070
 
277304
279071
  // ../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/parse.cjs
277305
- var require_parse5 = __commonJS((exports) => {
279072
+ var require_parse6 = __commonJS((exports) => {
277306
279073
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o34, m73, k65, k210) {
277307
279074
  if (k210 === undefined)
277308
279075
  k210 = k65;
@@ -277490,7 +279257,7 @@ var require_schemas2 = __commonJS((exports) => {
277490
279257
  var to_json_schema_js_1 = require_to_json_schema();
277491
279258
  var checks = __importStar(require_checks2());
277492
279259
  var iso = __importStar(require_iso());
277493
- var parse3 = __importStar(require_parse5());
279260
+ var parse3 = __importStar(require_parse6());
277494
279261
  exports.ZodType = core.$constructor("ZodType", (inst, def) => {
277495
279262
  core.$ZodType.init(inst, def);
277496
279263
  Object.assign(inst["~standard"], {
@@ -279143,7 +280910,7 @@ var require_from_json_schema = __commonJS((exports) => {
279143
280910
  });
279144
280911
 
279145
280912
  // ../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/coerce.cjs
279146
- var require_coerce2 = __commonJS((exports) => {
280913
+ var require_coerce3 = __commonJS((exports) => {
279147
280914
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o34, m73, k65, k210) {
279148
280915
  if (k210 === undefined)
279149
280916
  k210 = k65;
@@ -279249,7 +281016,7 @@ var require_external = __commonJS((exports) => {
279249
281016
  __exportStar(require_schemas2(), exports);
279250
281017
  __exportStar(require_checks2(), exports);
279251
281018
  __exportStar(require_errors2(), exports);
279252
- __exportStar(require_parse5(), exports);
281019
+ __exportStar(require_parse6(), exports);
279253
281020
  __exportStar(require_compat(), exports);
279254
281021
  var index_js_1 = require_core2();
279255
281022
  var en_js_1 = __importDefault(require_en());
@@ -279323,7 +281090,7 @@ var require_external = __commonJS((exports) => {
279323
281090
  return iso_js_1.ZodISODuration;
279324
281091
  } });
279325
281092
  exports.iso = __importStar(require_iso());
279326
- exports.coerce = __importStar(require_coerce2());
281093
+ exports.coerce = __importStar(require_coerce3());
279327
281094
  });
279328
281095
 
279329
281096
  // ../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/index.cjs
@@ -501590,7 +503357,7 @@ var require_lib10 = __commonJS((exports) => {
501590
503357
  });
501591
503358
 
501592
503359
  // ../../node_modules/.pnpm/@babel+types@7.29.0/node_modules/@babel/types/lib/constants/index.js
501593
- var require_constants3 = __commonJS((exports) => {
503360
+ var require_constants4 = __commonJS((exports) => {
501594
503361
  Object.defineProperty(exports, "__esModule", {
501595
503362
  value: true
501596
503363
  });
@@ -501932,7 +503699,7 @@ var require_core3 = __commonJS((exports) => {
501932
503699
  var _isValidIdentifier = require_isValidIdentifier();
501933
503700
  var _helperValidatorIdentifier = require_lib();
501934
503701
  var _helperStringParser = require_lib10();
501935
- var _index = require_constants3();
503702
+ var _index = require_constants4();
501936
503703
  var _utils = require_utils4();
501937
503704
  var classMethodOrPropertyUnionShapeCommon = (allowPrivateName = false) => ({
501938
503705
  unionShape: {
@@ -510227,7 +511994,7 @@ var require_removeComments = __commonJS((exports) => {
510227
511994
  value: true
510228
511995
  });
510229
511996
  exports.default = removeComments;
510230
- var _index = require_constants3();
511997
+ var _index = require_constants4();
510231
511998
  function removeComments(node) {
510232
511999
  _index.COMMENT_KEYS.forEach((key) => {
510233
512000
  node[key] = null;
@@ -510473,7 +512240,7 @@ var require_removeProperties = __commonJS((exports) => {
510473
512240
  value: true
510474
512241
  });
510475
512242
  exports.default = removeProperties;
510476
- var _index = require_constants3();
512243
+ var _index = require_constants4();
510477
512244
  var CLEAR_KEYS = ["tokens", "start", "end", "loc", "raw", "rawValue"];
510478
512245
  var CLEAR_KEYS_PLUS_COMMENTS = [..._index.COMMENT_KEYS, "comments", ...CLEAR_KEYS];
510479
512246
  function removeProperties(node, opts = {}) {
@@ -510693,7 +512460,7 @@ var require_inherits = __commonJS((exports) => {
510693
512460
  value: true
510694
512461
  });
510695
512462
  exports.default = inherits;
510696
- var _index = require_constants3();
512463
+ var _index = require_constants4();
510697
512464
  var _inheritsComments = require_inheritsComments();
510698
512465
  function inherits(child, parent) {
510699
512466
  if (!child || !parent)
@@ -511893,7 +513660,7 @@ var require_lib11 = __commonJS((exports) => {
511893
513660
  }
511894
513661
  });
511895
513662
  });
511896
- var _index4 = require_constants3();
513663
+ var _index4 = require_constants4();
511897
513664
  Object.keys(_index4).forEach(function(key) {
511898
513665
  if (key === "default" || key === "__esModule")
511899
513666
  return;
@@ -512864,7 +514631,7 @@ var require_expand = __commonJS((exports, module3) => {
512864
514631
  });
512865
514632
 
512866
514633
  // ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/constants.js
512867
- var require_constants4 = __commonJS((exports, module3) => {
514634
+ var require_constants5 = __commonJS((exports, module3) => {
512868
514635
  module3.exports = {
512869
514636
  MAX_LENGTH: 1e4,
512870
514637
  CHAR_0: "0",
@@ -512916,7 +514683,7 @@ var require_constants4 = __commonJS((exports, module3) => {
512916
514683
  });
512917
514684
 
512918
514685
  // ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/parse.js
512919
- var require_parse6 = __commonJS((exports, module3) => {
514686
+ var require_parse7 = __commonJS((exports, module3) => {
512920
514687
  var stringify2 = require_stringify2();
512921
514688
  var {
512922
514689
  MAX_LENGTH: MAX_LENGTH2,
@@ -512934,7 +514701,7 @@ var require_parse6 = __commonJS((exports, module3) => {
512934
514701
  CHAR_SINGLE_QUOTE,
512935
514702
  CHAR_NO_BREAK_SPACE,
512936
514703
  CHAR_ZERO_WIDTH_NOBREAK_SPACE
512937
- } = require_constants4();
514704
+ } = require_constants5();
512938
514705
  var parse4 = (input, options = {}) => {
512939
514706
  if (typeof input !== "string") {
512940
514707
  throw new TypeError("Expected a string");
@@ -513147,7 +514914,7 @@ var require_braces = __commonJS((exports, module3) => {
513147
514914
  var stringify2 = require_stringify2();
513148
514915
  var compile = require_compile();
513149
514916
  var expand = require_expand();
513150
- var parse4 = require_parse6();
514917
+ var parse4 = require_parse7();
513151
514918
  var braces = (input, options = {}) => {
513152
514919
  let output = [];
513153
514920
  if (Array.isArray(input)) {
@@ -513203,7 +514970,7 @@ var require_braces = __commonJS((exports, module3) => {
513203
514970
  });
513204
514971
 
513205
514972
  // ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/constants.js
513206
- var require_constants5 = __commonJS((exports, module3) => {
514973
+ var require_constants6 = __commonJS((exports, module3) => {
513207
514974
  var path7 = __require("path");
513208
514975
  var WIN_SLASH = "\\\\/";
513209
514976
  var WIN_NO_SLASH = `[^${WIN_SLASH}]`;
@@ -513351,7 +515118,7 @@ var require_utils6 = __commonJS((exports) => {
513351
515118
  REGEX_REMOVE_BACKSLASH,
513352
515119
  REGEX_SPECIAL_CHARS,
513353
515120
  REGEX_SPECIAL_CHARS_GLOBAL
513354
- } = require_constants5();
515121
+ } = require_constants6();
513355
515122
  exports.isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
513356
515123
  exports.hasRegexChars = (str2) => REGEX_SPECIAL_CHARS.test(str2);
513357
515124
  exports.isRegexChar = (str2) => str2.length === 1 && exports.hasRegexChars(str2);
@@ -513421,7 +515188,7 @@ var require_scan3 = __commonJS((exports, module3) => {
513421
515188
  CHAR_RIGHT_CURLY_BRACE,
513422
515189
  CHAR_RIGHT_PARENTHESES,
513423
515190
  CHAR_RIGHT_SQUARE_BRACKET
513424
- } = require_constants5();
515191
+ } = require_constants6();
513425
515192
  var isPathSeparator = (code) => {
513426
515193
  return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
513427
515194
  };
@@ -513718,8 +515485,8 @@ var require_scan3 = __commonJS((exports, module3) => {
513718
515485
  });
513719
515486
 
513720
515487
  // ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/parse.js
513721
- var require_parse7 = __commonJS((exports, module3) => {
513722
- var constants3 = require_constants5();
515488
+ var require_parse8 = __commonJS((exports, module3) => {
515489
+ var constants3 = require_constants6();
513723
515490
  var utils6 = require_utils6();
513724
515491
  var {
513725
515492
  MAX_LENGTH: MAX_LENGTH2,
@@ -514499,9 +516266,9 @@ var require_parse7 = __commonJS((exports, module3) => {
514499
516266
  var require_picomatch3 = __commonJS((exports, module3) => {
514500
516267
  var path7 = __require("path");
514501
516268
  var scan = require_scan3();
514502
- var parse4 = require_parse7();
516269
+ var parse4 = require_parse8();
514503
516270
  var utils6 = require_utils6();
514504
- var constants3 = require_constants5();
516271
+ var constants3 = require_constants6();
514505
516272
  var isObject2 = (val) => val && typeof val === "object" && !Array.isArray(val);
514506
516273
  var picomatch = (glob, options, returnState = false) => {
514507
516274
  if (Array.isArray(glob)) {
@@ -518140,7 +519907,7 @@ var require_quote = __commonJS((exports, module3) => {
518140
519907
  });
518141
519908
 
518142
519909
  // ../../node_modules/.pnpm/shell-quote@1.8.3/node_modules/shell-quote/parse.js
518143
- var require_parse8 = __commonJS((exports, module3) => {
519910
+ var require_parse9 = __commonJS((exports, module3) => {
518144
519911
  var CONTROL = "(?:" + [
518145
519912
  "\\|\\|",
518146
519913
  "\\&\\&",
@@ -525479,7 +527246,7 @@ var require_options = __commonJS((exports) => {
525479
527246
  });
525480
527247
 
525481
527248
  // ../../node_modules/.pnpm/@babel+template@7.28.6/node_modules/@babel/template/lib/parse.js
525482
- var require_parse9 = __commonJS((exports) => {
527249
+ var require_parse10 = __commonJS((exports) => {
525483
527250
  Object.defineProperty(exports, "__esModule", {
525484
527251
  value: true
525485
527252
  });
@@ -525788,7 +527555,7 @@ var require_string3 = __commonJS((exports) => {
525788
527555
  });
525789
527556
  exports.default = stringTemplate;
525790
527557
  var _options = require_options();
525791
- var _parse = require_parse9();
527558
+ var _parse = require_parse10();
525792
527559
  var _populate = require_populate();
525793
527560
  function stringTemplate(formatter, code, opts) {
525794
527561
  code = formatter.code(code);
@@ -525809,7 +527576,7 @@ var require_literal = __commonJS((exports) => {
525809
527576
  });
525810
527577
  exports.default = literalTemplate;
525811
527578
  var _options = require_options();
525812
- var _parse = require_parse9();
527579
+ var _parse = require_parse10();
525813
527580
  var _populate = require_populate();
525814
527581
  function literalTemplate(formatter, tpl, opts) {
525815
527582
  const {
@@ -539588,7 +541355,7 @@ var require_array2 = __commonJS((exports) => {
539588
541355
  });
539589
541356
 
539590
541357
  // ../../node_modules/.pnpm/diff@4.0.2/node_modules/diff/lib/patch/parse.js
539591
- var require_parse10 = __commonJS((exports) => {
541358
+ var require_parse11 = __commonJS((exports) => {
539592
541359
  Object.defineProperty(exports, "__esModule", {
539593
541360
  value: true
539594
541361
  });
@@ -539736,7 +541503,7 @@ var require_apply = __commonJS((exports) => {
539736
541503
  });
539737
541504
  exports.applyPatch = applyPatch;
539738
541505
  exports.applyPatches = applyPatches;
539739
- var _parse2 = require_parse10();
541506
+ var _parse2 = require_parse11();
539740
541507
  var _distanceIterator = _interopRequireDefault(require_distance_iterator());
539741
541508
  function _interopRequireDefault(obj) {
539742
541509
  return obj && obj.__esModule ? obj : { default: obj };
@@ -540029,7 +541796,7 @@ var require_merge4 = __commonJS((exports) => {
540029
541796
  exports.calcLineCount = calcLineCount;
540030
541797
  exports.merge = merge3;
540031
541798
  var _create = require_create();
540032
- var _parse2 = require_parse10();
541799
+ var _parse2 = require_parse11();
540033
541800
  var _array2 = require_array3();
540034
541801
  function _toConsumableArray(arr) {
540035
541802
  return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread();
@@ -540541,7 +542308,7 @@ var require_lib15 = __commonJS((exports) => {
540541
542308
  var _json = require_json3();
540542
542309
  var _array2 = require_array2();
540543
542310
  var _apply = require_apply();
540544
- var _parse2 = require_parse10();
542311
+ var _parse2 = require_parse11();
540545
542312
  var _merge = require_merge4();
540546
542313
  var _create = require_create();
540547
542314
  var _dmp = require_dmp();
@@ -585518,7 +587285,7 @@ var __dirname = "/home/runner/work/powerhouse/powerhouse/node_modules/.pnpm/@gra
585518
587285
 
585519
587286
  // ../../node_modules/.pnpm/shell-quote@1.8.3/node_modules/shell-quote/index.js
585520
587287
  var $quote = require_quote();
585521
- var $parse = require_parse8();
587288
+ var $parse = require_parse9();
585522
587289
 
585523
587290
  // ../../node_modules/.pnpm/@graphql-codegen+cli@6.1.1_@parcel+watcher@2.5.1_@types+node@25.2.3_bufferutil@4.0.9_cr_0562a99e73eb786a38f99876c20965f9/node_modules/@graphql-codegen/cli/esm/utils/watcher.js
585524
587291
  var import_micromatch2 = __toESM(require_micromatch(), 1);
@@ -602119,7 +603886,7 @@ var use = import_cmd_ts16.command({
602119
603886
  });
602120
603887
 
602121
603888
  // src/commands/ph.ts
602122
- var phCmdVersionInfo = await getPhCmdVersionInfo("6.0.0-dev.55");
603889
+ var phCmdVersionInfo = await getPhCmdVersionInfo("6.0.0-dev.57");
602123
603890
  var ph = import_cmd_ts17.subcommands({
602124
603891
  name: "ph",
602125
603892
  version: phCmdVersionInfo,