@socketsecurity/lib 5.11.3 → 5.11.4

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.
@@ -2797,35 +2797,34 @@ var require_lib3 = __commonJS({
2797
2797
  }
2798
2798
  });
2799
2799
 
2800
- // node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js
2801
- var require_balanced_match = __commonJS({
2802
- "node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js"(exports2, module2) {
2800
+ // node_modules/.pnpm/balanced-match@4.0.4/node_modules/balanced-match/dist/commonjs/index.js
2801
+ var require_commonjs2 = __commonJS({
2802
+ "node_modules/.pnpm/balanced-match@4.0.4/node_modules/balanced-match/dist/commonjs/index.js"(exports2) {
2803
2803
  "use strict";
2804
- module2.exports = balanced;
2805
- function balanced(a, b, str) {
2806
- if (a instanceof RegExp) a = maybeMatch(a, str);
2807
- if (b instanceof RegExp) b = maybeMatch(b, str);
2808
- var r = range(a, b, str);
2804
+ Object.defineProperty(exports2, "__esModule", { value: true });
2805
+ exports2.range = exports2.balanced = void 0;
2806
+ var balanced = /* @__PURE__ */ __name((a, b, str) => {
2807
+ const ma = a instanceof RegExp ? maybeMatch(a, str) : a;
2808
+ const mb = b instanceof RegExp ? maybeMatch(b, str) : b;
2809
+ const r = ma !== null && mb != null && (0, exports2.range)(ma, mb, str);
2809
2810
  return r && {
2810
2811
  start: r[0],
2811
2812
  end: r[1],
2812
2813
  pre: str.slice(0, r[0]),
2813
- body: str.slice(r[0] + a.length, r[1]),
2814
- post: str.slice(r[1] + b.length)
2814
+ body: str.slice(r[0] + ma.length, r[1]),
2815
+ post: str.slice(r[1] + mb.length)
2815
2816
  };
2816
- }
2817
- __name(balanced, "balanced");
2818
- function maybeMatch(reg, str) {
2819
- var m = str.match(reg);
2817
+ }, "balanced");
2818
+ exports2.balanced = balanced;
2819
+ var maybeMatch = /* @__PURE__ */ __name((reg, str) => {
2820
+ const m = str.match(reg);
2820
2821
  return m ? m[0] : null;
2821
- }
2822
- __name(maybeMatch, "maybeMatch");
2823
- balanced.range = range;
2824
- function range(a, b, str) {
2825
- var begs, beg, left, right, result;
2826
- var ai = str.indexOf(a);
2827
- var bi = str.indexOf(b, ai + 1);
2828
- var i = ai;
2822
+ }, "maybeMatch");
2823
+ var range = /* @__PURE__ */ __name((a, b, str) => {
2824
+ let begs, beg, left, right = void 0, result;
2825
+ let ai = str.indexOf(a);
2826
+ let bi = str.indexOf(b, ai + 1);
2827
+ let i = ai;
2829
2828
  if (ai >= 0 && bi > 0) {
2830
2829
  if (a === b) {
2831
2830
  return [ai, bi];
@@ -2833,14 +2832,16 @@ var require_balanced_match = __commonJS({
2833
2832
  begs = [];
2834
2833
  left = str.length;
2835
2834
  while (i >= 0 && !result) {
2836
- if (i == ai) {
2835
+ if (i === ai) {
2837
2836
  begs.push(i);
2838
2837
  ai = str.indexOf(a, i + 1);
2839
- } else if (begs.length == 1) {
2840
- result = [begs.pop(), bi];
2838
+ } else if (begs.length === 1) {
2839
+ const r = begs.pop();
2840
+ if (r !== void 0)
2841
+ result = [r, bi];
2841
2842
  } else {
2842
2843
  beg = begs.pop();
2843
- if (beg < left) {
2844
+ if (beg !== void 0 && beg < left) {
2844
2845
  left = beg;
2845
2846
  right = bi;
2846
2847
  }
@@ -2848,52 +2849,67 @@ var require_balanced_match = __commonJS({
2848
2849
  }
2849
2850
  i = ai < bi && ai >= 0 ? ai : bi;
2850
2851
  }
2851
- if (begs.length) {
2852
+ if (begs.length && right !== void 0) {
2852
2853
  result = [left, right];
2853
2854
  }
2854
2855
  }
2855
2856
  return result;
2856
- }
2857
- __name(range, "range");
2857
+ }, "range");
2858
+ exports2.range = range;
2858
2859
  }
2859
2860
  });
2860
2861
 
2861
- // node_modules/.pnpm/brace-expansion@2.0.2/node_modules/brace-expansion/index.js
2862
- var require_brace_expansion = __commonJS({
2863
- "node_modules/.pnpm/brace-expansion@2.0.2/node_modules/brace-expansion/index.js"(exports2, module2) {
2864
- var balanced = require_balanced_match();
2865
- module2.exports = expandTop;
2862
+ // node_modules/.pnpm/brace-expansion@5.0.5/node_modules/brace-expansion/dist/commonjs/index.js
2863
+ var require_commonjs3 = __commonJS({
2864
+ "node_modules/.pnpm/brace-expansion@5.0.5/node_modules/brace-expansion/dist/commonjs/index.js"(exports2) {
2865
+ "use strict";
2866
+ Object.defineProperty(exports2, "__esModule", { value: true });
2867
+ exports2.EXPANSION_MAX = void 0;
2868
+ exports2.expand = expand;
2869
+ var balanced_match_1 = require_commonjs2();
2866
2870
  var escSlash = "\0SLASH" + Math.random() + "\0";
2867
2871
  var escOpen = "\0OPEN" + Math.random() + "\0";
2868
2872
  var escClose = "\0CLOSE" + Math.random() + "\0";
2869
2873
  var escComma = "\0COMMA" + Math.random() + "\0";
2870
2874
  var escPeriod = "\0PERIOD" + Math.random() + "\0";
2875
+ var escSlashPattern = new RegExp(escSlash, "g");
2876
+ var escOpenPattern = new RegExp(escOpen, "g");
2877
+ var escClosePattern = new RegExp(escClose, "g");
2878
+ var escCommaPattern = new RegExp(escComma, "g");
2879
+ var escPeriodPattern = new RegExp(escPeriod, "g");
2880
+ var slashPattern = /\\\\/g;
2881
+ var openPattern = /\\{/g;
2882
+ var closePattern = /\\}/g;
2883
+ var commaPattern = /\\,/g;
2884
+ var periodPattern = /\\\./g;
2885
+ exports2.EXPANSION_MAX = 1e5;
2871
2886
  function numeric(str) {
2872
- return parseInt(str, 10) == str ? parseInt(str, 10) : str.charCodeAt(0);
2887
+ return !isNaN(str) ? parseInt(str, 10) : str.charCodeAt(0);
2873
2888
  }
2874
2889
  __name(numeric, "numeric");
2875
2890
  function escapeBraces(str) {
2876
- return str.split("\\\\").join(escSlash).split("\\{").join(escOpen).split("\\}").join(escClose).split("\\,").join(escComma).split("\\.").join(escPeriod);
2891
+ return str.replace(slashPattern, escSlash).replace(openPattern, escOpen).replace(closePattern, escClose).replace(commaPattern, escComma).replace(periodPattern, escPeriod);
2877
2892
  }
2878
2893
  __name(escapeBraces, "escapeBraces");
2879
2894
  function unescapeBraces(str) {
2880
- return str.split(escSlash).join("\\").split(escOpen).join("{").split(escClose).join("}").split(escComma).join(",").split(escPeriod).join(".");
2895
+ return str.replace(escSlashPattern, "\\").replace(escOpenPattern, "{").replace(escClosePattern, "}").replace(escCommaPattern, ",").replace(escPeriodPattern, ".");
2881
2896
  }
2882
2897
  __name(unescapeBraces, "unescapeBraces");
2883
2898
  function parseCommaParts(str) {
2884
- if (!str)
2899
+ if (!str) {
2885
2900
  return [""];
2886
- var parts = [];
2887
- var m = balanced("{", "}", str);
2888
- if (!m)
2901
+ }
2902
+ const parts = [];
2903
+ const m = (0, balanced_match_1.balanced)("{", "}", str);
2904
+ if (!m) {
2889
2905
  return str.split(",");
2890
- var pre = m.pre;
2891
- var body = m.body;
2892
- var post = m.post;
2893
- var p = pre.split(",");
2906
+ }
2907
+ const { pre, body, post } = m;
2908
+ const p = pre.split(",");
2894
2909
  p[p.length - 1] += "{" + body + "}";
2895
- var postParts = parseCommaParts(post);
2910
+ const postParts = parseCommaParts(post);
2896
2911
  if (post.length) {
2912
+ ;
2897
2913
  p[p.length - 1] += postParts.shift();
2898
2914
  p.push.apply(p, postParts);
2899
2915
  }
@@ -2901,15 +2917,17 @@ var require_brace_expansion = __commonJS({
2901
2917
  return parts;
2902
2918
  }
2903
2919
  __name(parseCommaParts, "parseCommaParts");
2904
- function expandTop(str) {
2905
- if (!str)
2920
+ function expand(str, options = {}) {
2921
+ if (!str) {
2906
2922
  return [];
2907
- if (str.substr(0, 2) === "{}") {
2908
- str = "\\{\\}" + str.substr(2);
2909
2923
  }
2910
- return expand(escapeBraces(str), true).map(unescapeBraces);
2924
+ const { max = exports2.EXPANSION_MAX } = options;
2925
+ if (str.slice(0, 2) === "{}") {
2926
+ str = "\\{\\}" + str.slice(2);
2927
+ }
2928
+ return expand_(escapeBraces(str), max, true).map(unescapeBraces);
2911
2929
  }
2912
- __name(expandTop, "expandTop");
2930
+ __name(expand, "expand");
2913
2931
  function embrace(str) {
2914
2932
  return "{" + str + "}";
2915
2933
  }
@@ -2926,73 +2944,74 @@ var require_brace_expansion = __commonJS({
2926
2944
  return i >= y;
2927
2945
  }
2928
2946
  __name(gte, "gte");
2929
- function expand(str, isTop) {
2930
- var expansions = [];
2931
- var m = balanced("{", "}", str);
2932
- if (!m) return [str];
2933
- var pre = m.pre;
2934
- var post = m.post.length ? expand(m.post, false) : [""];
2947
+ function expand_(str, max, isTop) {
2948
+ const expansions = [];
2949
+ const m = (0, balanced_match_1.balanced)("{", "}", str);
2950
+ if (!m)
2951
+ return [str];
2952
+ const pre = m.pre;
2953
+ const post = m.post.length ? expand_(m.post, max, false) : [""];
2935
2954
  if (/\$$/.test(m.pre)) {
2936
- for (var k = 0; k < post.length; k++) {
2937
- var expansion = pre + "{" + m.body + "}" + post[k];
2955
+ for (let k = 0; k < post.length && k < max; k++) {
2956
+ const expansion = pre + "{" + m.body + "}" + post[k];
2938
2957
  expansions.push(expansion);
2939
2958
  }
2940
2959
  } else {
2941
- var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
2942
- var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
2943
- var isSequence = isNumericSequence || isAlphaSequence;
2944
- var isOptions = m.body.indexOf(",") >= 0;
2960
+ const isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
2961
+ const isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
2962
+ const isSequence = isNumericSequence || isAlphaSequence;
2963
+ const isOptions = m.body.indexOf(",") >= 0;
2945
2964
  if (!isSequence && !isOptions) {
2946
2965
  if (m.post.match(/,(?!,).*\}/)) {
2947
2966
  str = m.pre + "{" + m.body + escClose + m.post;
2948
- return expand(str);
2967
+ return expand_(str, max, true);
2949
2968
  }
2950
2969
  return [str];
2951
2970
  }
2952
- var n;
2971
+ let n;
2953
2972
  if (isSequence) {
2954
2973
  n = m.body.split(/\.\./);
2955
2974
  } else {
2956
2975
  n = parseCommaParts(m.body);
2957
- if (n.length === 1) {
2958
- n = expand(n[0], false).map(embrace);
2976
+ if (n.length === 1 && n[0] !== void 0) {
2977
+ n = expand_(n[0], max, false).map(embrace);
2959
2978
  if (n.length === 1) {
2960
- return post.map(function(p) {
2961
- return m.pre + n[0] + p;
2962
- });
2979
+ return post.map((p) => m.pre + n[0] + p);
2963
2980
  }
2964
2981
  }
2965
2982
  }
2966
- var N;
2967
- if (isSequence) {
2968
- var x = numeric(n[0]);
2969
- var y = numeric(n[1]);
2970
- var width = Math.max(n[0].length, n[1].length);
2971
- var incr = n.length == 3 ? Math.abs(numeric(n[2])) : 1;
2972
- var test = lte;
2973
- var reverse = y < x;
2983
+ let N;
2984
+ if (isSequence && n[0] !== void 0 && n[1] !== void 0) {
2985
+ const x = numeric(n[0]);
2986
+ const y = numeric(n[1]);
2987
+ const width = Math.max(n[0].length, n[1].length);
2988
+ let incr = n.length === 3 && n[2] !== void 0 ? Math.max(Math.abs(numeric(n[2])), 1) : 1;
2989
+ let test = lte;
2990
+ const reverse = y < x;
2974
2991
  if (reverse) {
2975
2992
  incr *= -1;
2976
2993
  test = gte;
2977
2994
  }
2978
- var pad = n.some(isPadded);
2995
+ const pad = n.some(isPadded);
2979
2996
  N = [];
2980
- for (var i = x; test(i, y); i += incr) {
2981
- var c;
2997
+ for (let i = x; test(i, y); i += incr) {
2998
+ let c;
2982
2999
  if (isAlphaSequence) {
2983
3000
  c = String.fromCharCode(i);
2984
- if (c === "\\")
3001
+ if (c === "\\") {
2985
3002
  c = "";
3003
+ }
2986
3004
  } else {
2987
3005
  c = String(i);
2988
3006
  if (pad) {
2989
- var need = width - c.length;
3007
+ const need = width - c.length;
2990
3008
  if (need > 0) {
2991
- var z = new Array(need + 1).join("0");
2992
- if (i < 0)
3009
+ const z = new Array(need + 1).join("0");
3010
+ if (i < 0) {
2993
3011
  c = "-" + z + c.slice(1);
2994
- else
3012
+ } else {
2995
3013
  c = z + c;
3014
+ }
2996
3015
  }
2997
3016
  }
2998
3017
  }
@@ -3000,27 +3019,28 @@ var require_brace_expansion = __commonJS({
3000
3019
  }
3001
3020
  } else {
3002
3021
  N = [];
3003
- for (var j = 0; j < n.length; j++) {
3004
- N.push.apply(N, expand(n[j], false));
3022
+ for (let j = 0; j < n.length; j++) {
3023
+ N.push.apply(N, expand_(n[j], max, false));
3005
3024
  }
3006
3025
  }
3007
- for (var j = 0; j < N.length; j++) {
3008
- for (var k = 0; k < post.length; k++) {
3009
- var expansion = pre + N[j] + post[k];
3010
- if (!isTop || isSequence || expansion)
3026
+ for (let j = 0; j < N.length; j++) {
3027
+ for (let k = 0; k < post.length && expansions.length < max; k++) {
3028
+ const expansion = pre + N[j] + post[k];
3029
+ if (!isTop || isSequence || expansion) {
3011
3030
  expansions.push(expansion);
3031
+ }
3012
3032
  }
3013
3033
  }
3014
3034
  }
3015
3035
  return expansions;
3016
3036
  }
3017
- __name(expand, "expand");
3037
+ __name(expand_, "expand_");
3018
3038
  }
3019
3039
  });
3020
3040
 
3021
- // node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
3041
+ // node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
3022
3042
  var require_assert_valid_pattern = __commonJS({
3023
- "node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js"(exports2) {
3043
+ "node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js"(exports2) {
3024
3044
  "use strict";
3025
3045
  Object.defineProperty(exports2, "__esModule", { value: true });
3026
3046
  exports2.assertValidPattern = void 0;
@@ -3037,9 +3057,9 @@ var require_assert_valid_pattern = __commonJS({
3037
3057
  }
3038
3058
  });
3039
3059
 
3040
- // node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/brace-expressions.js
3060
+ // node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/brace-expressions.js
3041
3061
  var require_brace_expressions = __commonJS({
3042
- "node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/brace-expressions.js"(exports2) {
3062
+ "node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/brace-expressions.js"(exports2) {
3043
3063
  "use strict";
3044
3064
  Object.defineProperty(exports2, "__esModule", { value: true });
3045
3065
  exports2.parseClass = void 0;
@@ -3154,9 +3174,9 @@ var require_brace_expressions = __commonJS({
3154
3174
  }
3155
3175
  });
3156
3176
 
3157
- // node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.js
3177
+ // node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/unescape.js
3158
3178
  var require_unescape = __commonJS({
3159
- "node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/unescape.js"(exports2) {
3179
+ "node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/unescape.js"(exports2) {
3160
3180
  "use strict";
3161
3181
  Object.defineProperty(exports2, "__esModule", { value: true });
3162
3182
  exports2.unescape = void 0;
@@ -3167,9 +3187,9 @@ var require_unescape = __commonJS({
3167
3187
  }
3168
3188
  });
3169
3189
 
3170
- // node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/ast.js
3190
+ // node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/ast.js
3171
3191
  var require_ast = __commonJS({
3172
- "node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/ast.js"(exports2) {
3192
+ "node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/ast.js"(exports2) {
3173
3193
  "use strict";
3174
3194
  Object.defineProperty(exports2, "__esModule", { value: true });
3175
3195
  exports2.AST = void 0;
@@ -3612,11 +3632,13 @@ var require_ast = __commonJS({
3612
3632
  let escaping = false;
3613
3633
  let re = "";
3614
3634
  let uflag = false;
3635
+ let inStar = false;
3615
3636
  for (let i = 0; i < glob.length; i++) {
3616
3637
  const c = glob.charAt(i);
3617
3638
  if (escaping) {
3618
3639
  escaping = false;
3619
3640
  re += (reSpecials.has(c) ? "\\" : "") + c;
3641
+ inStar = false;
3620
3642
  continue;
3621
3643
  }
3622
3644
  if (c === "\\") {
@@ -3634,16 +3656,19 @@ var require_ast = __commonJS({
3634
3656
  uflag = uflag || needUflag;
3635
3657
  i += consumed - 1;
3636
3658
  hasMagic = hasMagic || magic;
3659
+ inStar = false;
3637
3660
  continue;
3638
3661
  }
3639
3662
  }
3640
3663
  if (c === "*") {
3641
- if (noEmpty && glob === "*")
3642
- re += starNoEmpty;
3643
- else
3644
- re += star;
3664
+ if (inStar)
3665
+ continue;
3666
+ inStar = true;
3667
+ re += noEmpty && /^[*]+$/.test(glob) ? starNoEmpty : star;
3645
3668
  hasMagic = true;
3646
3669
  continue;
3670
+ } else {
3671
+ inStar = false;
3647
3672
  }
3648
3673
  if (c === "?") {
3649
3674
  re += qmark;
@@ -3659,9 +3684,9 @@ var require_ast = __commonJS({
3659
3684
  }
3660
3685
  });
3661
3686
 
3662
- // node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.js
3687
+ // node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/escape.js
3663
3688
  var require_escape = __commonJS({
3664
- "node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/escape.js"(exports2) {
3689
+ "node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/escape.js"(exports2) {
3665
3690
  "use strict";
3666
3691
  Object.defineProperty(exports2, "__esModule", { value: true });
3667
3692
  exports2.escape = void 0;
@@ -3672,16 +3697,13 @@ var require_escape = __commonJS({
3672
3697
  }
3673
3698
  });
3674
3699
 
3675
- // node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.js
3676
- var require_commonjs2 = __commonJS({
3677
- "node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/commonjs/index.js"(exports2) {
3700
+ // node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/index.js
3701
+ var require_commonjs4 = __commonJS({
3702
+ "node_modules/.pnpm/minimatch@9.0.6/node_modules/minimatch/dist/commonjs/index.js"(exports2) {
3678
3703
  "use strict";
3679
- var __importDefault = exports2 && exports2.__importDefault || function(mod) {
3680
- return mod && mod.__esModule ? mod : { "default": mod };
3681
- };
3682
3704
  Object.defineProperty(exports2, "__esModule", { value: true });
3683
3705
  exports2.unescape = exports2.escape = exports2.AST = exports2.Minimatch = exports2.match = exports2.makeRe = exports2.braceExpand = exports2.defaults = exports2.filter = exports2.GLOBSTAR = exports2.sep = exports2.minimatch = void 0;
3684
- var brace_expansion_1 = __importDefault(require_brace_expansion());
3706
+ var brace_expansion_1 = require_commonjs3();
3685
3707
  var assert_valid_pattern_js_1 = require_assert_valid_pattern();
3686
3708
  var ast_js_1 = require_ast();
3687
3709
  var escape_js_1 = require_escape();
@@ -3810,7 +3832,7 @@ var require_commonjs2 = __commonJS({
3810
3832
  if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
3811
3833
  return [pattern];
3812
3834
  }
3813
- return (0, brace_expansion_1.default)(pattern);
3835
+ return (0, brace_expansion_1.expand)(pattern);
3814
3836
  }, "braceExpand");
3815
3837
  exports2.braceExpand = braceExpand;
3816
3838
  exports2.minimatch.braceExpand = exports2.braceExpand;
@@ -4434,7 +4456,7 @@ var require_commonjs2 = __commonJS({
4434
4456
  });
4435
4457
 
4436
4458
  // node_modules/.pnpm/minipass@7.1.3/node_modules/minipass/dist/commonjs/index.js
4437
- var require_commonjs3 = __commonJS({
4459
+ var require_commonjs5 = __commonJS({
4438
4460
  "node_modules/.pnpm/minipass@7.1.3/node_modules/minipass/dist/commonjs/index.js"(exports2) {
4439
4461
  "use strict";
4440
4462
  var __importDefault = exports2 && exports2.__importDefault || function(mod) {
@@ -5339,7 +5361,7 @@ var require_commonjs3 = __commonJS({
5339
5361
  });
5340
5362
 
5341
5363
  // node_modules/.pnpm/path-scurry@2.0.2/node_modules/path-scurry/dist/commonjs/index.js
5342
- var require_commonjs4 = __commonJS({
5364
+ var require_commonjs6 = __commonJS({
5343
5365
  "node_modules/.pnpm/path-scurry@2.0.2/node_modules/path-scurry/dist/commonjs/index.js"(exports2) {
5344
5366
  "use strict";
5345
5367
  var __createBinding = exports2 && exports2.__createBinding || (Object.create ? (function(o, m, k, k2) {
@@ -5378,7 +5400,7 @@ var require_commonjs4 = __commonJS({
5378
5400
  var actualFS = __importStar(require("node:fs"));
5379
5401
  var realpathSync = fs_1.realpathSync.native;
5380
5402
  var promises_1 = require("node:fs/promises");
5381
- var minipass_1 = require_commonjs3();
5403
+ var minipass_1 = require_commonjs5();
5382
5404
  var defaultFS = {
5383
5405
  lstatSync: fs_1.lstatSync,
5384
5406
  readdir: fs_1.readdir,
@@ -7149,7 +7171,7 @@ var require_pattern = __commonJS({
7149
7171
  "use strict";
7150
7172
  Object.defineProperty(exports2, "__esModule", { value: true });
7151
7173
  exports2.Pattern = void 0;
7152
- var minimatch_1 = require_commonjs2();
7174
+ var minimatch_1 = require_commonjs4();
7153
7175
  var isPatternList = /* @__PURE__ */ __name((pl) => pl.length >= 1, "isPatternList");
7154
7176
  var isGlobList = /* @__PURE__ */ __name((gl) => gl.length >= 1, "isGlobList");
7155
7177
  var Pattern = class _Pattern {
@@ -7326,7 +7348,7 @@ var require_ignore = __commonJS({
7326
7348
  "use strict";
7327
7349
  Object.defineProperty(exports2, "__esModule", { value: true });
7328
7350
  exports2.Ignore = void 0;
7329
- var minimatch_1 = require_commonjs2();
7351
+ var minimatch_1 = require_commonjs4();
7330
7352
  var pattern_js_1 = require_pattern();
7331
7353
  var defaultPlatform = typeof process === "object" && process && typeof process.platform === "string" ? process.platform : "linux";
7332
7354
  var Ignore = class {
@@ -7426,7 +7448,7 @@ var require_processor = __commonJS({
7426
7448
  "use strict";
7427
7449
  Object.defineProperty(exports2, "__esModule", { value: true });
7428
7450
  exports2.Processor = exports2.SubWalks = exports2.MatchRecord = exports2.HasWalkedCache = void 0;
7429
- var minimatch_1 = require_commonjs2();
7451
+ var minimatch_1 = require_commonjs4();
7430
7452
  var HasWalkedCache = class _HasWalkedCache {
7431
7453
  static {
7432
7454
  __name(this, "HasWalkedCache");
@@ -7671,7 +7693,7 @@ var require_walker = __commonJS({
7671
7693
  "use strict";
7672
7694
  Object.defineProperty(exports2, "__esModule", { value: true });
7673
7695
  exports2.GlobStream = exports2.GlobWalker = exports2.GlobUtil = void 0;
7674
- var minipass_1 = require_commonjs3();
7696
+ var minipass_1 = require_commonjs5();
7675
7697
  var ignore_js_1 = require_ignore();
7676
7698
  var processor_js_1 = require_processor();
7677
7699
  var makeIgnore = /* @__PURE__ */ __name((ignore, opts) => typeof ignore === "string" ? new ignore_js_1.Ignore([ignore], opts) : Array.isArray(ignore) ? new ignore_js_1.Ignore(ignore, opts) : ignore, "makeIgnore");
@@ -8020,9 +8042,9 @@ var require_glob = __commonJS({
8020
8042
  "use strict";
8021
8043
  Object.defineProperty(exports2, "__esModule", { value: true });
8022
8044
  exports2.Glob = void 0;
8023
- var minimatch_1 = require_commonjs2();
8045
+ var minimatch_1 = require_commonjs4();
8024
8046
  var node_url_1 = require("node:url");
8025
- var path_scurry_1 = require_commonjs4();
8047
+ var path_scurry_1 = require_commonjs6();
8026
8048
  var pattern_js_1 = require_pattern();
8027
8049
  var walker_js_1 = require_walker();
8028
8050
  var defaultPlatform = typeof process === "object" && process && typeof process.platform === "string" ? process.platform : "linux";
@@ -8236,7 +8258,7 @@ var require_has_magic = __commonJS({
8236
8258
  "use strict";
8237
8259
  Object.defineProperty(exports2, "__esModule", { value: true });
8238
8260
  exports2.hasMagic = void 0;
8239
- var minimatch_1 = require_commonjs2();
8261
+ var minimatch_1 = require_commonjs4();
8240
8262
  var hasMagic = /* @__PURE__ */ __name((pattern, options = {}) => {
8241
8263
  if (!Array.isArray(pattern)) {
8242
8264
  pattern = [pattern];
@@ -8252,7 +8274,7 @@ var require_has_magic = __commonJS({
8252
8274
  });
8253
8275
 
8254
8276
  // node_modules/.pnpm/glob@11.1.0/node_modules/glob/dist/commonjs/index.js
8255
- var require_commonjs5 = __commonJS({
8277
+ var require_commonjs7 = __commonJS({
8256
8278
  "node_modules/.pnpm/glob@11.1.0/node_modules/glob/dist/commonjs/index.js"(exports2) {
8257
8279
  "use strict";
8258
8280
  Object.defineProperty(exports2, "__esModule", { value: true });
@@ -8262,10 +8284,10 @@ var require_commonjs5 = __commonJS({
8262
8284
  exports2.globSync = globSync;
8263
8285
  exports2.globIterateSync = globIterateSync;
8264
8286
  exports2.globIterate = globIterate;
8265
- var minimatch_1 = require_commonjs2();
8287
+ var minimatch_1 = require_commonjs4();
8266
8288
  var glob_js_1 = require_glob();
8267
8289
  var has_magic_js_1 = require_has_magic();
8268
- var minimatch_2 = require_commonjs2();
8290
+ var minimatch_2 = require_commonjs4();
8269
8291
  Object.defineProperty(exports2, "escape", { enumerable: true, get: /* @__PURE__ */ __name(function() {
8270
8292
  return minimatch_2.escape;
8271
8293
  }, "get") });
@@ -14032,7 +14054,7 @@ var require_normalize = __commonJS({
14032
14054
  var _glob;
14033
14055
  function lazyLoadGlob() {
14034
14056
  if (!_glob) {
14035
- _glob = require_commonjs5().glob;
14057
+ _glob = require_commonjs7().glob;
14036
14058
  }
14037
14059
  return _glob;
14038
14060
  }