create-eas-build-function 1.0.52 → 1.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/build/index.js +2 -2
- package/package.json +13 -13
- package/templates/typescript/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -12,7 +12,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that you d
|
|
|
12
12
|
to access the functionality of and directly benefit from the
|
|
13
13
|
functionality of the Licensed Work.
|
|
14
14
|
|
|
15
|
-
Change Date:
|
|
15
|
+
Change Date: 2027-01-01
|
|
16
16
|
|
|
17
17
|
Change License: MIT
|
|
18
18
|
|
package/build/index.js
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
*
|
|
32
32
|
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
33
33
|
* Licensed under the MIT License.
|
|
34
|
-
*/const o=i(3837);const a=i(887);const isObject=t=>t!==null&&typeof t==="object"&&!Array.isArray(t);const transform=t=>r=>t===true?Number(r):String(r);const isValidValue=t=>typeof t==="number"||typeof t==="string"&&t!=="";const isNumber=t=>Number.isInteger(+t);const zeros=t=>{let r=`${t}`;let i=-1;if(r[0]==="-")r=r.slice(1);if(r==="0")return false;while(r[++i]==="0");return i>0};const stringify=(t,r,i)=>{if(typeof t==="string"||typeof r==="string"){return true}return i.stringify===true};const pad=(t,r,i)=>{if(r>0){let i=t[0]==="-"?"-":"";if(i)t=t.slice(1);t=i+t.padStart(i?r-1:r,"0")}if(i===false){return String(t)}return t};const toMaxLen=(t,r)=>{let i=t[0]==="-"?"-":"";if(i){t=t.slice(1);r--}while(t.length<r)t="0"+t;return i?"-"+t:t};const toSequence=(t,r)=>{t.negatives.sort(((t,r)=>t<r?-1:t>r?1:0));t.positives.sort(((t,r)=>t<r?-1:t>r?1:0));let i=r.capture?"":"?:";let o="";let a="";let u;if(t.positives.length){o=t.positives.join("|")}if(t.negatives.length){a=`-(${i}${t.negatives.join("|")})`}if(o&&a){u=`${o}|${a}`}else{u=o||a}if(r.wrap){return`(${i}${u})`}return u};const toRange=(t,r,i,o)=>{if(i){return a(t,r,{wrap:false,...o})}let u=String.fromCharCode(t);if(t===r)return u;let l=String.fromCharCode(r);return`[${u}-${l}]`};const toRegex=(t,r,i)=>{if(Array.isArray(t)){let r=i.wrap===true;let o=i.capture?"":"?:";return r?`(${o}${t.join("|")})`:t.join("|")}return a(t,r,i)};const rangeError=(...t)=>new RangeError("Invalid range arguments: "+o.inspect(...t));const invalidRange=(t,r,i)=>{if(i.strictRanges===true)throw rangeError([t,r]);return[]};const invalidStep=(t,r)=>{if(r.strictRanges===true){throw new TypeError(`Expected step "${t}" to be a number`)}return[]};const fillNumbers=(t,r,i=1,o={})=>{let a=Number(t);let u=Number(r);if(!Number.isInteger(a)||!Number.isInteger(u)){if(o.strictRanges===true)throw rangeError([t,r]);return[]}if(a===0)a=0;if(u===0)u=0;let l=a>u;let h=String(t);let p=String(r);let d=String(i);i=Math.max(Math.abs(i),1);let m=zeros(h)||zeros(p)||zeros(d);let g=m?Math.max(h.length,p.length,d.length):0;let y=m===false&&stringify(t,r,o)===false;let v=o.transform||transform(y);if(o.toRegex&&i===1){return toRange(toMaxLen(t,g),toMaxLen(r,g),true,o)}let A={negatives:[],positives:[]};let push=t=>A[t<0?"negatives":"positives"].push(Math.abs(t));let b=[];let w=0;while(l?a>=u:a<=u){if(o.toRegex===true&&i>1){push(a)}else{b.push(pad(v(a,w),g,y))}a=l?a-i:a+i;w++}if(o.toRegex===true){return i>1?toSequence(A,o):toRegex(b,null,{wrap:false,...o})}return b};const fillLetters=(t,r,i=1,o={})=>{if(!isNumber(t)&&t.length>1||!isNumber(r)&&r.length>1){return invalidRange(t,r,o)}let a=o.transform||(t=>String.fromCharCode(t));let u=`${t}`.charCodeAt(0);let l=`${r}`.charCodeAt(0);let h=u>l;let p=Math.min(u,l);let d=Math.max(u,l);if(o.toRegex&&i===1){return toRange(p,d,false,o)}let m=[];let g=0;while(h?u>=l:u<=l){m.push(a(u,g));u=h?u-i:u+i;g++}if(o.toRegex===true){return toRegex(m,null,{wrap:false,options:o})}return m};const fill=(t,r,i,o={})=>{if(r==null&&isValidValue(t)){return[t]}if(!isValidValue(t)||!isValidValue(r)){return invalidRange(t,r,o)}if(typeof i==="function"){return fill(t,r,1,{transform:i})}if(isObject(i)){return fill(t,r,0,i)}let a={...o};if(a.capture===true)a.wrap=true;i=i||a.step||1;if(!isNumber(i)){if(i!=null&&!isObject(i))return invalidStep(i,a);return fill(t,r,1,i)}if(isNumber(t)&&isNumber(r)){return fillNumbers(t,r,i,a)}return fillLetters(t,r,Math.max(Math.abs(i),1),a)};t.exports=fill},4823:(t,r,i)=>{"use strict";const o=i(1017);const a=i(3995);const u=i(7500);const l=Symbol("findUp.stop");t.exports=async(t,r={})=>{let i=o.resolve(r.cwd||"");const{root:u}=o.parse(i);const h=[].concat(t);const runMatcher=async r=>{if(typeof t!=="function"){return a(h,r)}const i=await t(r.cwd);if(typeof i==="string"){return a([i],r)}return i};while(true){const t=await runMatcher({...r,cwd:i});if(t===l){return}if(t){return o.resolve(i,t)}if(i===u){return}i=o.dirname(i)}};t.exports.sync=(t,r={})=>{let i=o.resolve(r.cwd||"");const{root:u}=o.parse(i);const h=[].concat(t);const runMatcher=r=>{if(typeof t!=="function"){return a.sync(h,r)}const i=t(r.cwd);if(typeof i==="string"){return a.sync([i],r)}return i};while(true){const t=runMatcher({...r,cwd:i});if(t===l){return}if(t){return o.resolve(i,t)}if(i===u){return}i=o.dirname(i)}};t.exports.exists=u;t.exports.sync.exists=u.sync;t.exports.stop=l},7500:(t,r,i)=>{"use strict";const o=i(7147);const{promisify:a}=i(3837);const u=a(o.access);t.exports=async t=>{try{await u(t);return true}catch(t){return false}};t.exports.sync=t=>{try{o.accessSync(t);return true}catch(t){return false}}},6736:(t,r,i)=>{"use strict";const o=i(7147);const a=i(8808);const u=i(1017);t.exports=findWorkspaceRoot;function findWorkspaceRoot(t){if(!t){t=process.cwd()}let r=null;let i=u.normalize(t);do{const o=readPackageJSON(i);const l=extractWorkspaces(o);if(l){const r=u.relative(i,t);if(r===""||a([r],l).length>0){return i}else{return null}}r=i;i=u.dirname(i)}while(i!==r);return null}function extractWorkspaces(t){const r=(t||{}).workspaces;return r&&r.packages||(Array.isArray(r)?r:null)}function readPackageJSON(t){const r=u.join(t,"package.json");if(o.existsSync(r)){return JSON.parse(o.readFileSync(r,"utf8"))}return null}},8808:(t,r,i)=>{"use strict";const o=i(3837);const a=i(538);const u=i(4156);const l=i(6793);const isEmptyString=t=>typeof t==="string"&&(t===""||t==="./");const micromatch=(t,r,i)=>{r=[].concat(r);t=[].concat(t);let o=new Set;let a=new Set;let l=new Set;let h=0;let onResult=t=>{l.add(t.output);if(i&&i.onResult){i.onResult(t)}};for(let l=0;l<r.length;l++){let p=u(String(r[l]),{...i,onResult:onResult},true);let d=p.state.negated||p.state.negatedExtglob;if(d)h++;for(let r of t){let t=p(r,true);let i=d?!t.isMatch:t.isMatch;if(!i)continue;if(d){o.add(t.output)}else{o.delete(t.output);a.add(t.output)}}}let p=h===r.length?[...l]:[...a];let d=p.filter((t=>!o.has(t)));if(i&&d.length===0){if(i.failglob===true){throw new Error(`No matches found for "${r.join(", ")}"`)}if(i.nonull===true||i.nullglob===true){return i.unescape?r.map((t=>t.replace(/\\/g,""))):r}}return d};micromatch.match=micromatch;micromatch.matcher=(t,r)=>u(t,r);micromatch.isMatch=(t,r,i)=>u(r,i)(t);micromatch.any=micromatch.isMatch;micromatch.not=(t,r,i={})=>{r=[].concat(r).map(String);let o=new Set;let a=[];let onResult=t=>{if(i.onResult)i.onResult(t);a.push(t.output)};let u=micromatch(t,r,{...i,onResult:onResult});for(let t of a){if(!u.includes(t)){o.add(t)}}return[...o]};micromatch.contains=(t,r,i)=>{if(typeof t!=="string"){throw new TypeError(`Expected a string: "${o.inspect(t)}"`)}if(Array.isArray(r)){return r.some((r=>micromatch.contains(t,r,i)))}if(typeof r==="string"){if(isEmptyString(t)||isEmptyString(r)){return false}if(t.includes(r)||t.startsWith("./")&&t.slice(2).includes(r)){return true}}return micromatch.isMatch(t,r,{...i,contains:true})};micromatch.matchKeys=(t,r,i)=>{if(!l.isObject(t)){throw new TypeError("Expected the first argument to be an object")}let o=micromatch(Object.keys(t),r,i);let a={};for(let r of o)a[r]=t[r];return a};micromatch.some=(t,r,i)=>{let o=[].concat(t);for(let t of[].concat(r)){let r=u(String(t),i);if(o.some((t=>r(t)))){return true}}return false};micromatch.every=(t,r,i)=>{let o=[].concat(t);for(let t of[].concat(r)){let r=u(String(t),i);if(!o.every((t=>r(t)))){return false}}return true};micromatch.all=(t,r,i)=>{if(typeof t!=="string"){throw new TypeError(`Expected a string: "${o.inspect(t)}"`)}return[].concat(r).every((r=>u(r,i)(t)))};micromatch.capture=(t,r,i)=>{let o=l.isWindows(i);let a=u.makeRe(String(t),{...i,capture:true});let h=a.exec(o?l.toPosixSlashes(r):r);if(h){return h.slice(1).map((t=>t===void 0?"":t))}};micromatch.makeRe=(...t)=>u.makeRe(...t);micromatch.scan=(...t)=>u.scan(...t);micromatch.parse=(t,r)=>{let i=[];for(let o of[].concat(t||[])){for(let t of a(String(o),r)){i.push(u.parse(t,r))}}return i};micromatch.braces=(t,r)=>{if(typeof t!=="string")throw new TypeError("Expected a string");if(r&&r.nobrace===true||!/\{.*\}/.test(t)){return[t]}return a(t,r)};micromatch.braceExpand=(t,r)=>{if(typeof t!=="string")throw new TypeError("Expected a string");return micromatch.braces(t,{...r,expand:true})};t.exports=micromatch},4156:(t,r,i)=>{"use strict";t.exports=i(8771)},1683:(t,r,i)=>{"use strict";const o=i(1017);const a="\\\\/";const u=`[^${a}]`;const l="\\.";const h="\\+";const p="\\?";const d="\\/";const m="(?=.)";const g="[^/]";const y=`(?:${d}|$)`;const v=`(?:^|${d})`;const A=`${l}{1,2}${y}`;const b=`(?!${l})`;const w=`(?!${v}${A})`;const S=`(?!${l}{0,1}${y})`;const _=`(?!${A})`;const C=`[^.${d}]`;const D=`${g}*?`;const x={DOT_LITERAL:l,PLUS_LITERAL:h,QMARK_LITERAL:p,SLASH_LITERAL:d,ONE_CHAR:m,QMARK:g,END_ANCHOR:y,DOTS_SLASH:A,NO_DOT:b,NO_DOTS:w,NO_DOT_SLASH:S,NO_DOTS_SLASH:_,QMARK_NO_DOT:C,STAR:D,START_ANCHOR:v};const R={...x,SLASH_LITERAL:`[${a}]`,QMARK:u,STAR:`${u}*?`,DOTS_SLASH:`${l}{1,2}(?:[${a}]|$)`,NO_DOT:`(?!${l})`,NO_DOTS:`(?!(?:^|[${a}])${l}{1,2}(?:[${a}]|$))`,NO_DOT_SLASH:`(?!${l}{0,1}(?:[${a}]|$))`,NO_DOTS_SLASH:`(?!${l}{1,2}(?:[${a}]|$))`,QMARK_NO_DOT:`[^.${a}]`,START_ANCHOR:`(?:^|[${a}])`,END_ANCHOR:`(?:[${a}]|$)`};const O={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:O,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:o.sep,extglobChars(t){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${t.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(t){return t===true?R:x}}},1589:(t,r,i)=>{"use strict";const o=i(1683);const a=i(6793);const{MAX_LENGTH:u,POSIX_REGEX_SOURCE:l,REGEX_NON_SPECIAL_CHARS:h,REGEX_SPECIAL_CHARS_BACKREF:p,REPLACEMENTS:d}=o;const expandRange=(t,r)=>{if(typeof r.expandRange==="function"){return r.expandRange(...t,r)}t.sort();const i=`[${t.join("-")}]`;try{new RegExp(i)}catch(r){return t.map((t=>a.escapeRegex(t))).join("..")}return i};const syntaxError=(t,r)=>`Missing ${t}: "${r}" - use "\\\\${r}" to match literal characters`;const parse=(t,r)=>{if(typeof t!=="string"){throw new TypeError("Expected a string")}t=d[t]||t;const i={...r};const m=typeof i.maxLength==="number"?Math.min(u,i.maxLength):u;let g=t.length;if(g>m){throw new SyntaxError(`Input length: ${g}, exceeds maximum allowed length: ${m}`)}const y={type:"bos",value:"",output:i.prepend||""};const v=[y];const A=i.capture?"":"?:";const b=a.isWindows(r);const w=o.globChars(b);const S=o.extglobChars(w);const{DOT_LITERAL:_,PLUS_LITERAL:C,SLASH_LITERAL:D,ONE_CHAR:x,DOTS_SLASH:R,NO_DOT:O,NO_DOT_SLASH:k,NO_DOTS_SLASH:T,QMARK:P,QMARK_NO_DOT:B,STAR:M,START_ANCHOR:L}=w;const globstar=t=>`(${A}(?:(?!${L}${t.dot?R:_}).)*?)`;const I=i.dot?"":O;const N=i.dot?P:B;let j=i.bash===true?globstar(i):M;if(i.capture){j=`(${j})`}if(typeof i.noext==="boolean"){i.noextglob=i.noext}const $={input:t,index:-1,start:0,dot:i.dot===true,consumed:"",output:"",prefix:"",backtrack:false,negated:false,brackets:0,braces:0,parens:0,quotes:0,globstar:false,tokens:v};t=a.removePrefix(t,$);g=t.length;const H=[];const W=[];const U=[];let G=y;let Y;const eos=()=>$.index===g-1;const V=$.peek=(r=1)=>t[$.index+r];const q=$.advance=()=>t[++$.index];const remaining=()=>t.slice($.index+1);const consume=(t="",r=0)=>{$.consumed+=t;$.index+=r};const append=t=>{$.output+=t.output!=null?t.output:t.value;consume(t.value)};const negate=()=>{let t=1;while(V()==="!"&&(V(2)!=="("||V(3)==="?")){q();$.start++;t++}if(t%2===0){return false}$.negated=true;$.start++;return true};const increment=t=>{$[t]++;U.push(t)};const decrement=t=>{$[t]--;U.pop()};const push=t=>{if(G.type==="globstar"){const r=$.braces>0&&(t.type==="comma"||t.type==="brace");const i=t.extglob===true||H.length&&(t.type==="pipe"||t.type==="paren");if(t.type!=="slash"&&t.type!=="paren"&&!r&&!i){$.output=$.output.slice(0,-G.output.length);G.type="star";G.value="*";G.output=j;$.output+=G.output}}if(H.length&&t.type!=="paren"&&!S[t.value]){H[H.length-1].inner+=t.value}if(t.value||t.output)append(t);if(G&&G.type==="text"&&t.type==="text"){G.value+=t.value;G.output=(G.output||"")+t.value;return}t.prev=G;v.push(t);G=t};const extglobOpen=(t,r)=>{const o={...S[r],conditions:1,inner:""};o.prev=G;o.parens=$.parens;o.output=$.output;const a=(i.capture?"(":"")+o.open;increment("parens");push({type:t,value:r,output:$.output?"":x});push({type:"paren",extglob:true,value:q(),output:a});H.push(o)};const extglobClose=t=>{let r=t.close+(i.capture?")":"");if(t.type==="negate"){let o=j;if(t.inner&&t.inner.length>1&&t.inner.includes("/")){o=globstar(i)}if(o!==j||eos()||/^\)+$/.test(remaining())){r=t.close=`)$))${o}`}if(t.prev.type==="bos"&&eos()){$.negatedExtglob=true}}push({type:"paren",extglob:true,value:Y,output:r});decrement("parens")};if(i.fastpaths!==false&&!/(^[*!]|[/()[\]{}"])/.test(t)){let o=false;let u=t.replace(p,((t,r,i,a,u,l)=>{if(a==="\\"){o=true;return t}if(a==="?"){if(r){return r+a+(u?P.repeat(u.length):"")}if(l===0){return N+(u?P.repeat(u.length):"")}return P.repeat(i.length)}if(a==="."){return _.repeat(i.length)}if(a==="*"){if(r){return r+a+(u?j:"")}return j}return r?t:`\\${t}`}));if(o===true){if(i.unescape===true){u=u.replace(/\\/g,"")}else{u=u.replace(/\\+/g,(t=>t.length%2===0?"\\\\":t?"\\":""))}}if(u===t&&i.contains===true){$.output=t;return $}$.output=a.wrapOutput(u,$,r);return $}while(!eos()){Y=q();if(Y==="\0"){continue}if(Y==="\\"){const t=V();if(t==="/"&&i.bash!==true){continue}if(t==="."||t===";"){continue}if(!t){Y+="\\";push({type:"text",value:Y});continue}const r=/^\\+/.exec(remaining());let o=0;if(r&&r[0].length>2){o=r[0].length;$.index+=o;if(o%2!==0){Y+="\\"}}if(i.unescape===true){Y=q()||""}else{Y+=q()||""}if($.brackets===0){push({type:"text",value:Y});continue}}if($.brackets>0&&(Y!=="]"||G.value==="["||G.value==="[^")){if(i.posix!==false&&Y===":"){const t=G.value.slice(1);if(t.includes("[")){G.posix=true;if(t.includes(":")){const t=G.value.lastIndexOf("[");const r=G.value.slice(0,t);const i=G.value.slice(t+2);const o=l[i];if(o){G.value=r+o;$.backtrack=true;q();if(!y.output&&v.indexOf(G)===1){y.output=x}continue}}}}if(Y==="["&&V()!==":"||Y==="-"&&V()==="]"){Y=`\\${Y}`}if(Y==="]"&&(G.value==="["||G.value==="[^")){Y=`\\${Y}`}if(i.posix===true&&Y==="!"&&G.value==="["){Y="^"}G.value+=Y;append({value:Y});continue}if($.quotes===1&&Y!=='"'){Y=a.escapeRegex(Y);G.value+=Y;append({value:Y});continue}if(Y==='"'){$.quotes=$.quotes===1?0:1;if(i.keepQuotes===true){push({type:"text",value:Y})}continue}if(Y==="("){increment("parens");push({type:"paren",value:Y});continue}if(Y===")"){if($.parens===0&&i.strictBrackets===true){throw new SyntaxError(syntaxError("opening","("))}const t=H[H.length-1];if(t&&$.parens===t.parens+1){extglobClose(H.pop());continue}push({type:"paren",value:Y,output:$.parens?")":"\\)"});decrement("parens");continue}if(Y==="["){if(i.nobracket===true||!remaining().includes("]")){if(i.nobracket!==true&&i.strictBrackets===true){throw new SyntaxError(syntaxError("closing","]"))}Y=`\\${Y}`}else{increment("brackets")}push({type:"bracket",value:Y});continue}if(Y==="]"){if(i.nobracket===true||G&&G.type==="bracket"&&G.value.length===1){push({type:"text",value:Y,output:`\\${Y}`});continue}if($.brackets===0){if(i.strictBrackets===true){throw new SyntaxError(syntaxError("opening","["))}push({type:"text",value:Y,output:`\\${Y}`});continue}decrement("brackets");const t=G.value.slice(1);if(G.posix!==true&&t[0]==="^"&&!t.includes("/")){Y=`/${Y}`}G.value+=Y;append({value:Y});if(i.literalBrackets===false||a.hasRegexChars(t)){continue}const r=a.escapeRegex(G.value);$.output=$.output.slice(0,-G.value.length);if(i.literalBrackets===true){$.output+=r;G.value=r;continue}G.value=`(${A}${r}|${G.value})`;$.output+=G.value;continue}if(Y==="{"&&i.nobrace!==true){increment("braces");const t={type:"brace",value:Y,output:"(",outputIndex:$.output.length,tokensIndex:$.tokens.length};W.push(t);push(t);continue}if(Y==="}"){const t=W[W.length-1];if(i.nobrace===true||!t){push({type:"text",value:Y,output:Y});continue}let r=")";if(t.dots===true){const t=v.slice();const o=[];for(let r=t.length-1;r>=0;r--){v.pop();if(t[r].type==="brace"){break}if(t[r].type!=="dots"){o.unshift(t[r].value)}}r=expandRange(o,i);$.backtrack=true}if(t.comma!==true&&t.dots!==true){const i=$.output.slice(0,t.outputIndex);const o=$.tokens.slice(t.tokensIndex);t.value=t.output="\\{";Y=r="\\}";$.output=i;for(const t of o){$.output+=t.output||t.value}}push({type:"brace",value:Y,output:r});decrement("braces");W.pop();continue}if(Y==="|"){if(H.length>0){H[H.length-1].conditions++}push({type:"text",value:Y});continue}if(Y===","){let t=Y;const r=W[W.length-1];if(r&&U[U.length-1]==="braces"){r.comma=true;t="|"}push({type:"comma",value:Y,output:t});continue}if(Y==="/"){if(G.type==="dot"&&$.index===$.start+1){$.start=$.index+1;$.consumed="";$.output="";v.pop();G=y;continue}push({type:"slash",value:Y,output:D});continue}if(Y==="."){if($.braces>0&&G.type==="dot"){if(G.value===".")G.output=_;const t=W[W.length-1];G.type="dots";G.output+=Y;G.value+=Y;t.dots=true;continue}if($.braces+$.parens===0&&G.type!=="bos"&&G.type!=="slash"){push({type:"text",value:Y,output:_});continue}push({type:"dot",value:Y,output:_});continue}if(Y==="?"){const t=G&&G.value==="(";if(!t&&i.noextglob!==true&&V()==="("&&V(2)!=="?"){extglobOpen("qmark",Y);continue}if(G&&G.type==="paren"){const t=V();let r=Y;if(t==="<"&&!a.supportsLookbehinds()){throw new Error("Node.js v10 or higher is required for regex lookbehinds")}if(G.value==="("&&!/[!=<:]/.test(t)||t==="<"&&!/<([!=]|\w+>)/.test(remaining())){r=`\\${Y}`}push({type:"text",value:Y,output:r});continue}if(i.dot!==true&&(G.type==="slash"||G.type==="bos")){push({type:"qmark",value:Y,output:B});continue}push({type:"qmark",value:Y,output:P});continue}if(Y==="!"){if(i.noextglob!==true&&V()==="("){if(V(2)!=="?"||!/[!=<:]/.test(V(3))){extglobOpen("negate",Y);continue}}if(i.nonegate!==true&&$.index===0){negate();continue}}if(Y==="+"){if(i.noextglob!==true&&V()==="("&&V(2)!=="?"){extglobOpen("plus",Y);continue}if(G&&G.value==="("||i.regex===false){push({type:"plus",value:Y,output:C});continue}if(G&&(G.type==="bracket"||G.type==="paren"||G.type==="brace")||$.parens>0){push({type:"plus",value:Y});continue}push({type:"plus",value:C});continue}if(Y==="@"){if(i.noextglob!==true&&V()==="("&&V(2)!=="?"){push({type:"at",extglob:true,value:Y,output:""});continue}push({type:"text",value:Y});continue}if(Y!=="*"){if(Y==="$"||Y==="^"){Y=`\\${Y}`}const t=h.exec(remaining());if(t){Y+=t[0];$.index+=t[0].length}push({type:"text",value:Y});continue}if(G&&(G.type==="globstar"||G.star===true)){G.type="star";G.star=true;G.value+=Y;G.output=j;$.backtrack=true;$.globstar=true;consume(Y);continue}let r=remaining();if(i.noextglob!==true&&/^\([^?]/.test(r)){extglobOpen("star",Y);continue}if(G.type==="star"){if(i.noglobstar===true){consume(Y);continue}const o=G.prev;const a=o.prev;const u=o.type==="slash"||o.type==="bos";const l=a&&(a.type==="star"||a.type==="globstar");if(i.bash===true&&(!u||r[0]&&r[0]!=="/")){push({type:"star",value:Y,output:""});continue}const h=$.braces>0&&(o.type==="comma"||o.type==="brace");const p=H.length&&(o.type==="pipe"||o.type==="paren");if(!u&&o.type!=="paren"&&!h&&!p){push({type:"star",value:Y,output:""});continue}while(r.slice(0,3)==="/**"){const i=t[$.index+4];if(i&&i!=="/"){break}r=r.slice(3);consume("/**",3)}if(o.type==="bos"&&eos()){G.type="globstar";G.value+=Y;G.output=globstar(i);$.output=G.output;$.globstar=true;consume(Y);continue}if(o.type==="slash"&&o.prev.type!=="bos"&&!l&&eos()){$.output=$.output.slice(0,-(o.output+G.output).length);o.output=`(?:${o.output}`;G.type="globstar";G.output=globstar(i)+(i.strictSlashes?")":"|$)");G.value+=Y;$.globstar=true;$.output+=o.output+G.output;consume(Y);continue}if(o.type==="slash"&&o.prev.type!=="bos"&&r[0]==="/"){const t=r[1]!==void 0?"|$":"";$.output=$.output.slice(0,-(o.output+G.output).length);o.output=`(?:${o.output}`;G.type="globstar";G.output=`${globstar(i)}${D}|${D}${t})`;G.value+=Y;$.output+=o.output+G.output;$.globstar=true;consume(Y+q());push({type:"slash",value:"/",output:""});continue}if(o.type==="bos"&&r[0]==="/"){G.type="globstar";G.value+=Y;G.output=`(?:^|${D}|${globstar(i)}${D})`;$.output=G.output;$.globstar=true;consume(Y+q());push({type:"slash",value:"/",output:""});continue}$.output=$.output.slice(0,-G.output.length);G.type="globstar";G.output=globstar(i);G.value+=Y;$.output+=G.output;$.globstar=true;consume(Y);continue}const o={type:"star",value:Y,output:j};if(i.bash===true){o.output=".*?";if(G.type==="bos"||G.type==="slash"){o.output=I+o.output}push(o);continue}if(G&&(G.type==="bracket"||G.type==="paren")&&i.regex===true){o.output=Y;push(o);continue}if($.index===$.start||G.type==="slash"||G.type==="dot"){if(G.type==="dot"){$.output+=k;G.output+=k}else if(i.dot===true){$.output+=T;G.output+=T}else{$.output+=I;G.output+=I}if(V()!=="*"){$.output+=x;G.output+=x}}push(o)}while($.brackets>0){if(i.strictBrackets===true)throw new SyntaxError(syntaxError("closing","]"));$.output=a.escapeLast($.output,"[");decrement("brackets")}while($.parens>0){if(i.strictBrackets===true)throw new SyntaxError(syntaxError("closing",")"));$.output=a.escapeLast($.output,"(");decrement("parens")}while($.braces>0){if(i.strictBrackets===true)throw new SyntaxError(syntaxError("closing","}"));$.output=a.escapeLast($.output,"{");decrement("braces")}if(i.strictSlashes!==true&&(G.type==="star"||G.type==="bracket")){push({type:"maybe_slash",value:"",output:`${D}?`})}if($.backtrack===true){$.output="";for(const t of $.tokens){$.output+=t.output!=null?t.output:t.value;if(t.suffix){$.output+=t.suffix}}}return $};parse.fastpaths=(t,r)=>{const i={...r};const l=typeof i.maxLength==="number"?Math.min(u,i.maxLength):u;const h=t.length;if(h>l){throw new SyntaxError(`Input length: ${h}, exceeds maximum allowed length: ${l}`)}t=d[t]||t;const p=a.isWindows(r);const{DOT_LITERAL:m,SLASH_LITERAL:g,ONE_CHAR:y,DOTS_SLASH:v,NO_DOT:A,NO_DOTS:b,NO_DOTS_SLASH:w,STAR:S,START_ANCHOR:_}=o.globChars(p);const C=i.dot?b:A;const D=i.dot?w:A;const x=i.capture?"":"?:";const R={negated:false,prefix:""};let O=i.bash===true?".*?":S;if(i.capture){O=`(${O})`}const globstar=t=>{if(t.noglobstar===true)return O;return`(${x}(?:(?!${_}${t.dot?v:m}).)*?)`};const create=t=>{switch(t){case"*":return`${C}${y}${O}`;case".*":return`${m}${y}${O}`;case"*.*":return`${C}${O}${m}${y}${O}`;case"*/*":return`${C}${O}${g}${y}${D}${O}`;case"**":return C+globstar(i);case"**/*":return`(?:${C}${globstar(i)}${g})?${D}${y}${O}`;case"**/*.*":return`(?:${C}${globstar(i)}${g})?${D}${O}${m}${y}${O}`;case"**/.*":return`(?:${C}${globstar(i)}${g})?${m}${y}${O}`;default:{const r=/^(.*?)\.(\w+)$/.exec(t);if(!r)return;const i=create(r[1]);if(!i)return;return i+m+r[2]}}};const k=a.removePrefix(t,R);let T=create(k);if(T&&i.strictSlashes!==true){T+=`${g}?`}return T};t.exports=parse},8771:(t,r,i)=>{"use strict";const o=i(1017);const a=i(5809);const u=i(1589);const l=i(6793);const h=i(1683);const isObject=t=>t&&typeof t==="object"&&!Array.isArray(t);const picomatch=(t,r,i=false)=>{if(Array.isArray(t)){const o=t.map((t=>picomatch(t,r,i)));const arrayMatcher=t=>{for(const r of o){const i=r(t);if(i)return i}return false};return arrayMatcher}const o=isObject(t)&&t.tokens&&t.input;if(t===""||typeof t!=="string"&&!o){throw new TypeError("Expected pattern to be a non-empty string")}const a=r||{};const u=l.isWindows(r);const h=o?picomatch.compileRe(t,r):picomatch.makeRe(t,r,false,true);const p=h.state;delete h.state;let isIgnored=()=>false;if(a.ignore){const t={...r,ignore:null,onMatch:null,onResult:null};isIgnored=picomatch(a.ignore,t,i)}const matcher=(i,o=false)=>{const{isMatch:l,match:d,output:m}=picomatch.test(i,h,r,{glob:t,posix:u});const g={glob:t,state:p,regex:h,posix:u,input:i,output:m,match:d,isMatch:l};if(typeof a.onResult==="function"){a.onResult(g)}if(l===false){g.isMatch=false;return o?g:false}if(isIgnored(i)){if(typeof a.onIgnore==="function"){a.onIgnore(g)}g.isMatch=false;return o?g:false}if(typeof a.onMatch==="function"){a.onMatch(g)}return o?g:true};if(i){matcher.state=p}return matcher};picomatch.test=(t,r,i,{glob:o,posix:a}={})=>{if(typeof t!=="string"){throw new TypeError("Expected input to be a string")}if(t===""){return{isMatch:false,output:""}}const u=i||{};const h=u.format||(a?l.toPosixSlashes:null);let p=t===o;let d=p&&h?h(t):t;if(p===false){d=h?h(t):t;p=d===o}if(p===false||u.capture===true){if(u.matchBase===true||u.basename===true){p=picomatch.matchBase(t,r,i,a)}else{p=r.exec(d)}}return{isMatch:Boolean(p),match:p,output:d}};picomatch.matchBase=(t,r,i,a=l.isWindows(i))=>{const u=r instanceof RegExp?r:picomatch.makeRe(r,i);return u.test(o.basename(t))};picomatch.isMatch=(t,r,i)=>picomatch(r,i)(t);picomatch.parse=(t,r)=>{if(Array.isArray(t))return t.map((t=>picomatch.parse(t,r)));return u(t,{...r,fastpaths:false})};picomatch.scan=(t,r)=>a(t,r);picomatch.compileRe=(t,r,i=false,o=false)=>{if(i===true){return t.output}const a=r||{};const u=a.contains?"":"^";const l=a.contains?"":"$";let h=`${u}(?:${t.output})${l}`;if(t&&t.negated===true){h=`^(?!${h}).*$`}const p=picomatch.toRegex(h,r);if(o===true){p.state=t}return p};picomatch.makeRe=(t,r,i=false,o=false)=>{if(!t||typeof t!=="string"){throw new TypeError("Expected a non-empty string")}const a=r||{};let l={negated:false,fastpaths:true};let h="";let p;if(t.startsWith("./")){t=t.slice(2);h=l.prefix="./"}if(a.fastpaths!==false&&(t[0]==="."||t[0]==="*")){p=u.fastpaths(t,r)}if(p===undefined){l=u(t,r);l.prefix=h+(l.prefix||"")}else{l.output=p}return picomatch.compileRe(l,r,i,o)};picomatch.toRegex=(t,r)=>{try{const i=r||{};return new RegExp(t,i.flags||(i.nocase?"i":""))}catch(t){if(r&&r.debug===true)throw t;return/$^/}};picomatch.constants=h;t.exports=picomatch},5809:(t,r,i)=>{"use strict";const o=i(6793);const{CHAR_ASTERISK:a,CHAR_AT:u,CHAR_BACKWARD_SLASH:l,CHAR_COMMA:h,CHAR_DOT:p,CHAR_EXCLAMATION_MARK:d,CHAR_FORWARD_SLASH:m,CHAR_LEFT_CURLY_BRACE:g,CHAR_LEFT_PARENTHESES:y,CHAR_LEFT_SQUARE_BRACKET:v,CHAR_PLUS:A,CHAR_QUESTION_MARK:b,CHAR_RIGHT_CURLY_BRACE:w,CHAR_RIGHT_PARENTHESES:S,CHAR_RIGHT_SQUARE_BRACKET:_}=i(1683);const isPathSeparator=t=>t===m||t===l;const depth=t=>{if(t.isPrefix!==true){t.depth=t.isGlobstar?Infinity:1}};const scan=(t,r)=>{const i=r||{};const C=t.length-1;const D=i.parts===true||i.scanToEnd===true;const x=[];const R=[];const O=[];let k=t;let T=-1;let P=0;let B=0;let M=false;let L=false;let I=false;let N=false;let j=false;let $=false;let H=false;let W=false;let U=false;let G=0;let Y;let V;let q={value:"",depth:0,isGlob:false};const eos=()=>T>=C;const peek=()=>k.charCodeAt(T+1);const advance=()=>{Y=V;return k.charCodeAt(++T)};while(T<C){V=advance();let t;if(V===l){H=q.backslashes=true;V=advance();if(V===g){$=true}continue}if($===true||V===g){G++;while(eos()!==true&&(V=advance())){if(V===l){H=q.backslashes=true;advance();continue}if(V===g){G++;continue}if($!==true&&V===p&&(V=advance())===p){M=q.isBrace=true;I=q.isGlob=true;U=true;if(D===true){continue}break}if($!==true&&V===h){M=q.isBrace=true;I=q.isGlob=true;U=true;if(D===true){continue}break}if(V===w){G--;if(G===0){$=false;M=q.isBrace=true;U=true;break}}}if(D===true){continue}break}if(V===m){x.push(T);R.push(q);q={value:"",depth:0,isGlob:false};if(U===true)continue;if(Y===p&&T===P+1){P+=2;continue}B=T+1;continue}if(i.noext!==true){const t=V===A||V===u||V===a||V===b||V===d;if(t===true&&peek()===y){I=q.isGlob=true;N=q.isExtglob=true;U=true;if(D===true){while(eos()!==true&&(V=advance())){if(V===l){H=q.backslashes=true;V=advance();continue}if(V===S){I=q.isGlob=true;U=true;break}}continue}break}}if(V===a){if(Y===a)j=q.isGlobstar=true;I=q.isGlob=true;U=true;if(D===true){continue}break}if(V===b){I=q.isGlob=true;U=true;if(D===true){continue}break}if(V===v){while(eos()!==true&&(t=advance())){if(t===l){H=q.backslashes=true;advance();continue}if(t===_){L=q.isBracket=true;I=q.isGlob=true;U=true;if(D===true){continue}break}}}if(i.nonegate!==true&&V===d&&T===P){W=q.negated=true;P++;continue}if(i.noparen!==true&&V===y){I=q.isGlob=true;if(D===true){while(eos()!==true&&(V=advance())){if(V===y){H=q.backslashes=true;V=advance();continue}if(V===S){U=true;break}}continue}break}if(I===true){U=true;if(D===true){continue}break}}if(i.noext===true){N=false;I=false}let Q=k;let K="";let J="";if(P>0){K=k.slice(0,P);k=k.slice(P);B-=P}if(Q&&I===true&&B>0){Q=k.slice(0,B);J=k.slice(B)}else if(I===true){Q="";J=k}else{Q=k}if(Q&&Q!==""&&Q!=="/"&&Q!==k){if(isPathSeparator(Q.charCodeAt(Q.length-1))){Q=Q.slice(0,-1)}}if(i.unescape===true){if(J)J=o.removeBackslashes(J);if(Q&&H===true){Q=o.removeBackslashes(Q)}}const z={prefix:K,input:t,start:P,base:Q,glob:J,isBrace:M,isBracket:L,isGlob:I,isExtglob:N,isGlobstar:j,negated:W};if(i.tokens===true){z.maxDepth=0;if(!isPathSeparator(V)){R.push(q)}z.tokens=R}if(i.parts===true||i.tokens===true){let r;for(let o=0;o<x.length;o++){const a=r?r+1:P;const u=x[o];const l=t.slice(a,u);if(i.tokens){if(o===0&&P!==0){R[o].isPrefix=true;R[o].value=K}else{R[o].value=l}depth(R[o]);z.maxDepth+=R[o].depth}if(o!==0||l!==""){O.push(l)}r=u}if(r&&r+1<t.length){const o=t.slice(r+1);O.push(o);if(i.tokens){R[R.length-1].value=o;depth(R[R.length-1]);z.maxDepth+=R[R.length-1].depth}}z.slashes=x;z.parts=O}return z};t.exports=scan},6793:(t,r,i)=>{"use strict";const o=i(1017);const a=process.platform==="win32";const{REGEX_BACKSLASH:u,REGEX_REMOVE_BACKSLASH:l,REGEX_SPECIAL_CHARS:h,REGEX_SPECIAL_CHARS_GLOBAL:p}=i(1683);r.isObject=t=>t!==null&&typeof t==="object"&&!Array.isArray(t);r.hasRegexChars=t=>h.test(t);r.isRegexChar=t=>t.length===1&&r.hasRegexChars(t);r.escapeRegex=t=>t.replace(p,"\\$1");r.toPosixSlashes=t=>t.replace(u,"/");r.removeBackslashes=t=>t.replace(l,(t=>t==="\\"?"":t));r.supportsLookbehinds=()=>{const t=process.version.slice(1).split(".").map(Number);if(t.length===3&&t[0]>=9||t[0]===8&&t[1]>=10){return true}return false};r.isWindows=t=>{if(t&&typeof t.windows==="boolean"){return t.windows}return a===true||o.sep==="\\"};r.escapeLast=(t,i,o)=>{const a=t.lastIndexOf(i,o);if(a===-1)return t;if(t[a-1]==="\\")return r.escapeLast(t,i,a-1);return`${t.slice(0,a)}\\${t.slice(a)}`};r.removePrefix=(t,r={})=>{let i=t;if(i.startsWith("./")){i=i.slice(2);r.prefix="./"}return i};r.wrapOutput=(t,r={},i={})=>{const o=i.contains?"":"^";const a=i.contains?"":"$";let u=`${o}(?:${t})${a}`;if(r.negated===true){u=`(?:^(?!${u}).*$)`}return u}},3279:(t,r,i)=>{"use strict";const o=i(1077);const a=i(1017);const u=i(5828).mkdirsSync;const l=i(1948).utimesMillisSync;const h=i(1573);function copySync(t,r,i){if(typeof i==="function"){i={filter:i}}i=i||{};i.clobber="clobber"in i?!!i.clobber:true;i.overwrite="overwrite"in i?!!i.overwrite:i.clobber;if(i.preserveTimestamps&&process.arch==="ia32"){process.emitWarning("Using the preserveTimestamps option in 32-bit node is not recommended;\n\n"+"\tsee https://github.com/jprichardson/node-fs-extra/issues/269","Warning","fs-extra-WARN0002")}const{srcStat:l,destStat:p}=h.checkPathsSync(t,r,"copy",i);h.checkParentPathsSync(t,l,r,"copy");if(i.filter&&!i.filter(t,r))return;const d=a.dirname(r);if(!o.existsSync(d))u(d);return getStats(p,t,r,i)}function getStats(t,r,i,a){const u=a.dereference?o.statSync:o.lstatSync;const l=u(r);if(l.isDirectory())return onDir(l,t,r,i,a);else if(l.isFile()||l.isCharacterDevice()||l.isBlockDevice())return onFile(l,t,r,i,a);else if(l.isSymbolicLink())return onLink(t,r,i,a);else if(l.isSocket())throw new Error(`Cannot copy a socket file: ${r}`);else if(l.isFIFO())throw new Error(`Cannot copy a FIFO pipe: ${r}`);throw new Error(`Unknown file: ${r}`)}function onFile(t,r,i,o,a){if(!r)return copyFile(t,i,o,a);return mayCopyFile(t,i,o,a)}function mayCopyFile(t,r,i,a){if(a.overwrite){o.unlinkSync(i);return copyFile(t,r,i,a)}else if(a.errorOnExist){throw new Error(`'${i}' already exists`)}}function copyFile(t,r,i,a){o.copyFileSync(r,i);if(a.preserveTimestamps)handleTimestamps(t.mode,r,i);return setDestMode(i,t.mode)}function handleTimestamps(t,r,i){if(fileIsNotWritable(t))makeFileWritable(i,t);return setDestTimestamps(r,i)}function fileIsNotWritable(t){return(t&128)===0}function makeFileWritable(t,r){return setDestMode(t,r|128)}function setDestMode(t,r){return o.chmodSync(t,r)}function setDestTimestamps(t,r){const i=o.statSync(t);return l(r,i.atime,i.mtime)}function onDir(t,r,i,o,a){if(!r)return mkDirAndCopy(t.mode,i,o,a);return copyDir(i,o,a)}function mkDirAndCopy(t,r,i,a){o.mkdirSync(i);copyDir(r,i,a);return setDestMode(i,t)}function copyDir(t,r,i){o.readdirSync(t).forEach((o=>copyDirItem(o,t,r,i)))}function copyDirItem(t,r,i,o){const u=a.join(r,t);const l=a.join(i,t);if(o.filter&&!o.filter(u,l))return;const{destStat:p}=h.checkPathsSync(u,l,"copy",o);return getStats(p,u,l,o)}function onLink(t,r,i,u){let l=o.readlinkSync(r);if(u.dereference){l=a.resolve(process.cwd(),l)}if(!t){return o.symlinkSync(l,i)}else{let t;try{t=o.readlinkSync(i)}catch(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return o.symlinkSync(l,i);throw t}if(u.dereference){t=a.resolve(process.cwd(),t)}if(h.isSrcSubdir(l,t)){throw new Error(`Cannot copy '${l}' to a subdirectory of itself, '${t}'.`)}if(h.isSrcSubdir(t,l)){throw new Error(`Cannot overwrite '${t}' with '${l}'.`)}return copyLink(l,i)}}function copyLink(t,r){o.unlinkSync(r);return o.symlinkSync(t,r)}t.exports=copySync},3638:(t,r,i)=>{"use strict";const o=i(1077);const a=i(1017);const u=i(5828).mkdirs;const l=i(5561).pathExists;const h=i(1948).utimesMillis;const p=i(1573);function copy(t,r,i,o){if(typeof i==="function"&&!o){o=i;i={}}else if(typeof i==="function"){i={filter:i}}o=o||function(){};i=i||{};i.clobber="clobber"in i?!!i.clobber:true;i.overwrite="overwrite"in i?!!i.overwrite:i.clobber;if(i.preserveTimestamps&&process.arch==="ia32"){process.emitWarning("Using the preserveTimestamps option in 32-bit node is not recommended;\n\n"+"\tsee https://github.com/jprichardson/node-fs-extra/issues/269","Warning","fs-extra-WARN0001")}p.checkPaths(t,r,"copy",i,((a,u)=>{if(a)return o(a);const{srcStat:l,destStat:h}=u;p.checkParentPaths(t,l,r,"copy",(a=>{if(a)return o(a);runFilter(t,r,i,((a,u)=>{if(a)return o(a);if(!u)return o();checkParentDir(h,t,r,i,o)}))}))}))}function checkParentDir(t,r,i,o,h){const p=a.dirname(i);l(p,((a,l)=>{if(a)return h(a);if(l)return getStats(t,r,i,o,h);u(p,(a=>{if(a)return h(a);return getStats(t,r,i,o,h)}))}))}function runFilter(t,r,i,o){if(!i.filter)return o(null,true);Promise.resolve(i.filter(t,r)).then((t=>o(null,t)),(t=>o(t)))}function getStats(t,r,i,a,u){const l=a.dereference?o.stat:o.lstat;l(r,((o,l)=>{if(o)return u(o);if(l.isDirectory())return onDir(l,t,r,i,a,u);else if(l.isFile()||l.isCharacterDevice()||l.isBlockDevice())return onFile(l,t,r,i,a,u);else if(l.isSymbolicLink())return onLink(t,r,i,a,u);else if(l.isSocket())return u(new Error(`Cannot copy a socket file: ${r}`));else if(l.isFIFO())return u(new Error(`Cannot copy a FIFO pipe: ${r}`));return u(new Error(`Unknown file: ${r}`))}))}function onFile(t,r,i,o,a,u){if(!r)return copyFile(t,i,o,a,u);return mayCopyFile(t,i,o,a,u)}function mayCopyFile(t,r,i,a,u){if(a.overwrite){o.unlink(i,(o=>{if(o)return u(o);return copyFile(t,r,i,a,u)}))}else if(a.errorOnExist){return u(new Error(`'${i}' already exists`))}else return u()}function copyFile(t,r,i,a,u){o.copyFile(r,i,(o=>{if(o)return u(o);if(a.preserveTimestamps)return handleTimestampsAndMode(t.mode,r,i,u);return setDestMode(i,t.mode,u)}))}function handleTimestampsAndMode(t,r,i,o){if(fileIsNotWritable(t)){return makeFileWritable(i,t,(a=>{if(a)return o(a);return setDestTimestampsAndMode(t,r,i,o)}))}return setDestTimestampsAndMode(t,r,i,o)}function fileIsNotWritable(t){return(t&128)===0}function makeFileWritable(t,r,i){return setDestMode(t,r|128,i)}function setDestTimestampsAndMode(t,r,i,o){setDestTimestamps(r,i,(r=>{if(r)return o(r);return setDestMode(i,t,o)}))}function setDestMode(t,r,i){return o.chmod(t,r,i)}function setDestTimestamps(t,r,i){o.stat(t,((t,o)=>{if(t)return i(t);return h(r,o.atime,o.mtime,i)}))}function onDir(t,r,i,o,a,u){if(!r)return mkDirAndCopy(t.mode,i,o,a,u);return copyDir(i,o,a,u)}function mkDirAndCopy(t,r,i,a,u){o.mkdir(i,(o=>{if(o)return u(o);copyDir(r,i,a,(r=>{if(r)return u(r);return setDestMode(i,t,u)}))}))}function copyDir(t,r,i,a){o.readdir(t,((o,u)=>{if(o)return a(o);return copyDirItems(u,t,r,i,a)}))}function copyDirItems(t,r,i,o,a){const u=t.pop();if(!u)return a();return copyDirItem(t,u,r,i,o,a)}function copyDirItem(t,r,i,o,u,l){const h=a.join(i,r);const d=a.join(o,r);runFilter(h,d,u,((r,a)=>{if(r)return l(r);if(!a)return copyDirItems(t,i,o,u,l);p.checkPaths(h,d,"copy",u,((r,a)=>{if(r)return l(r);const{destStat:p}=a;getStats(p,h,d,u,(r=>{if(r)return l(r);return copyDirItems(t,i,o,u,l)}))}))}))}function onLink(t,r,i,u,l){o.readlink(r,((r,h)=>{if(r)return l(r);if(u.dereference){h=a.resolve(process.cwd(),h)}if(!t){return o.symlink(h,i,l)}else{o.readlink(i,((t,r)=>{if(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return o.symlink(h,i,l);return l(t)}if(u.dereference){r=a.resolve(process.cwd(),r)}if(p.isSrcSubdir(h,r)){return l(new Error(`Cannot copy '${h}' to a subdirectory of itself, '${r}'.`))}if(p.isSrcSubdir(r,h)){return l(new Error(`Cannot overwrite '${r}' with '${h}'.`))}return copyLink(h,i,l)}))}}))}function copyLink(t,r,i){o.unlink(r,(a=>{if(a)return i(a);return o.symlink(t,r,i)}))}t.exports=copy},8087:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;t.exports={copy:o(i(3638)),copySync:i(3279)}},4393:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(2469);const u=i(1017);const l=i(5828);const h=i(7442);const p=o((async function emptyDir(t){let r;try{r=await a.readdir(t)}catch{return l.mkdirs(t)}return Promise.all(r.map((r=>h.remove(u.join(t,r)))))}));function emptyDirSync(t){let r;try{r=a.readdirSync(t)}catch{return l.mkdirsSync(t)}r.forEach((r=>{r=u.join(t,r);h.removeSync(r)}))}t.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:p,emptydir:p}},4998:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;const a=i(1017);const u=i(1077);const l=i(5828);function createFile(t,r){function makeFile(){u.writeFile(t,"",(t=>{if(t)return r(t);r()}))}u.stat(t,((i,o)=>{if(!i&&o.isFile())return r();const h=a.dirname(t);u.stat(h,((t,i)=>{if(t){if(t.code==="ENOENT"){return l.mkdirs(h,(t=>{if(t)return r(t);makeFile()}))}return r(t)}if(i.isDirectory())makeFile();else{u.readdir(h,(t=>{if(t)return r(t)}))}}))}))}function createFileSync(t){let r;try{r=u.statSync(t)}catch{}if(r&&r.isFile())return;const i=a.dirname(t);try{if(!u.statSync(i).isDirectory()){u.readdirSync(i)}}catch(t){if(t&&t.code==="ENOENT")l.mkdirsSync(i);else throw t}u.writeFileSync(t,"")}t.exports={createFile:o(createFile),createFileSync:createFileSync}},367:(t,r,i)=>{"use strict";const{createFile:o,createFileSync:a}=i(4998);const{createLink:u,createLinkSync:l}=i(3478);const{createSymlink:h,createSymlinkSync:p}=i(5285);t.exports={createFile:o,createFileSync:a,ensureFile:o,ensureFileSync:a,createLink:u,createLinkSync:l,ensureLink:u,ensureLinkSync:l,createSymlink:h,createSymlinkSync:p,ensureSymlink:h,ensureSymlinkSync:p}},3478:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;const a=i(1017);const u=i(1077);const l=i(5828);const h=i(5561).pathExists;const{areIdentical:p}=i(1573);function createLink(t,r,i){function makeLink(t,r){u.link(t,r,(t=>{if(t)return i(t);i(null)}))}u.lstat(r,((o,d)=>{u.lstat(t,((o,u)=>{if(o){o.message=o.message.replace("lstat","ensureLink");return i(o)}if(d&&p(u,d))return i(null);const m=a.dirname(r);h(m,((o,a)=>{if(o)return i(o);if(a)return makeLink(t,r);l.mkdirs(m,(o=>{if(o)return i(o);makeLink(t,r)}))}))}))}))}function createLinkSync(t,r){let i;try{i=u.lstatSync(r)}catch{}try{const r=u.lstatSync(t);if(i&&p(r,i))return}catch(t){t.message=t.message.replace("lstat","ensureLink");throw t}const o=a.dirname(r);const h=u.existsSync(o);if(h)return u.linkSync(t,r);l.mkdirsSync(o);return u.linkSync(t,r)}t.exports={createLink:o(createLink),createLinkSync:createLinkSync}},4728:(t,r,i)=>{"use strict";const o=i(1017);const a=i(1077);const u=i(5561).pathExists;function symlinkPaths(t,r,i){if(o.isAbsolute(t)){return a.lstat(t,(r=>{if(r){r.message=r.message.replace("lstat","ensureSymlink");return i(r)}return i(null,{toCwd:t,toDst:t})}))}else{const l=o.dirname(r);const h=o.join(l,t);return u(h,((r,u)=>{if(r)return i(r);if(u){return i(null,{toCwd:h,toDst:t})}else{return a.lstat(t,(r=>{if(r){r.message=r.message.replace("lstat","ensureSymlink");return i(r)}return i(null,{toCwd:t,toDst:o.relative(l,t)})}))}}))}}function symlinkPathsSync(t,r){let i;if(o.isAbsolute(t)){i=a.existsSync(t);if(!i)throw new Error("absolute srcpath does not exist");return{toCwd:t,toDst:t}}else{const u=o.dirname(r);const l=o.join(u,t);i=a.existsSync(l);if(i){return{toCwd:l,toDst:t}}else{i=a.existsSync(t);if(!i)throw new Error("relative srcpath does not exist");return{toCwd:t,toDst:o.relative(u,t)}}}}t.exports={symlinkPaths:symlinkPaths,symlinkPathsSync:symlinkPathsSync}},3025:(t,r,i)=>{"use strict";const o=i(1077);function symlinkType(t,r,i){i=typeof r==="function"?r:i;r=typeof r==="function"?false:r;if(r)return i(null,r);o.lstat(t,((t,o)=>{if(t)return i(null,"file");r=o&&o.isDirectory()?"dir":"file";i(null,r)}))}function symlinkTypeSync(t,r){let i;if(r)return r;try{i=o.lstatSync(t)}catch{return"file"}return i&&i.isDirectory()?"dir":"file"}t.exports={symlinkType:symlinkType,symlinkTypeSync:symlinkTypeSync}},5285:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;const a=i(1017);const u=i(2469);const l=i(5828);const h=l.mkdirs;const p=l.mkdirsSync;const d=i(4728);const m=d.symlinkPaths;const g=d.symlinkPathsSync;const y=i(3025);const v=y.symlinkType;const A=y.symlinkTypeSync;const b=i(5561).pathExists;const{areIdentical:w}=i(1573);function createSymlink(t,r,i,o){o=typeof i==="function"?i:o;i=typeof i==="function"?false:i;u.lstat(r,((a,l)=>{if(!a&&l.isSymbolicLink()){Promise.all([u.stat(t),u.stat(r)]).then((([a,u])=>{if(w(a,u))return o(null);_createSymlink(t,r,i,o)}))}else _createSymlink(t,r,i,o)}))}function _createSymlink(t,r,i,o){m(t,r,((l,p)=>{if(l)return o(l);t=p.toDst;v(p.toCwd,i,((i,l)=>{if(i)return o(i);const p=a.dirname(r);b(p,((i,a)=>{if(i)return o(i);if(a)return u.symlink(t,r,l,o);h(p,(i=>{if(i)return o(i);u.symlink(t,r,l,o)}))}))}))}))}function createSymlinkSync(t,r,i){let o;try{o=u.lstatSync(r)}catch{}if(o&&o.isSymbolicLink()){const i=u.statSync(t);const o=u.statSync(r);if(w(i,o))return}const l=g(t,r);t=l.toDst;i=A(l.toCwd,i);const h=a.dirname(r);const d=u.existsSync(h);if(d)return u.symlinkSync(t,r,i);p(h);return u.symlinkSync(t,r,i)}t.exports={createSymlink:o(createSymlink),createSymlinkSync:createSymlinkSync}},2469:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;const a=i(1077);const u=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchmod","lchown","link","lstat","mkdir","mkdtemp","open","opendir","readdir","readFile","readlink","realpath","rename","rm","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter((t=>typeof a[t]==="function"));Object.assign(r,a);u.forEach((t=>{r[t]=o(a[t])}));r.exists=function(t,r){if(typeof r==="function"){return a.exists(t,r)}return new Promise((r=>a.exists(t,r)))};r.read=function(t,r,i,o,u,l){if(typeof l==="function"){return a.read(t,r,i,o,u,l)}return new Promise(((l,h)=>{a.read(t,r,i,o,u,((t,r,i)=>{if(t)return h(t);l({bytesRead:r,buffer:i})}))}))};r.write=function(t,r,...i){if(typeof i[i.length-1]==="function"){return a.write(t,r,...i)}return new Promise(((o,u)=>{a.write(t,r,...i,((t,r,i)=>{if(t)return u(t);o({bytesWritten:r,buffer:i})}))}))};r.readv=function(t,r,...i){if(typeof i[i.length-1]==="function"){return a.readv(t,r,...i)}return new Promise(((o,u)=>{a.readv(t,r,...i,((t,r,i)=>{if(t)return u(t);o({bytesRead:r,buffers:i})}))}))};r.writev=function(t,r,...i){if(typeof i[i.length-1]==="function"){return a.writev(t,r,...i)}return new Promise(((o,u)=>{a.writev(t,r,...i,((t,r,i)=>{if(t)return u(t);o({bytesWritten:r,buffers:i})}))}))};if(typeof a.realpath.native==="function"){r.realpath.native=o(a.realpath.native)}else{process.emitWarning("fs.realpath.native is not a function. Is fs being monkey-patched?","Warning","fs-extra-WARN0003")}},1621:(t,r,i)=>{"use strict";t.exports={...i(2469),...i(8087),...i(4393),...i(367),...i(4659),...i(5828),...i(3309),...i(2199),...i(5561),...i(7442)}},4659:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(1536);a.outputJson=o(i(5122));a.outputJsonSync=i(2799);a.outputJSON=a.outputJson;a.outputJSONSync=a.outputJsonSync;a.writeJSON=a.writeJson;a.writeJSONSync=a.writeJsonSync;a.readJSON=a.readJson;a.readJSONSync=a.readJsonSync;t.exports=a},1536:(t,r,i)=>{"use strict";const o=i(1215);t.exports={readJson:o.readFile,readJsonSync:o.readFileSync,writeJson:o.writeFile,writeJsonSync:o.writeFileSync}},2799:(t,r,i)=>{"use strict";const{stringify:o}=i(4978);const{outputFileSync:a}=i(2199);function outputJsonSync(t,r,i){const u=o(r,i);a(t,u,i)}t.exports=outputJsonSync},5122:(t,r,i)=>{"use strict";const{stringify:o}=i(4978);const{outputFile:a}=i(2199);async function outputJson(t,r,i={}){const u=o(r,i);await a(t,u,i)}t.exports=outputJson},5828:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const{makeDir:a,makeDirSync:u}=i(7210);const l=o(a);t.exports={mkdirs:l,mkdirsSync:u,mkdirp:l,mkdirpSync:u,ensureDir:l,ensureDirSync:u}},7210:(t,r,i)=>{"use strict";const o=i(2469);const{checkPath:a}=i(7123);const getMode=t=>{const r={mode:511};if(typeof t==="number")return t;return{...r,...t}.mode};t.exports.makeDir=async(t,r)=>{a(t);return o.mkdir(t,{mode:getMode(r),recursive:true})};t.exports.makeDirSync=(t,r)=>{a(t);return o.mkdirSync(t,{mode:getMode(r),recursive:true})}},7123:(t,r,i)=>{"use strict";const o=i(1017);t.exports.checkPath=function checkPath(t){if(process.platform==="win32"){const r=/[<>:"|?*]/.test(t.replace(o.parse(t).root,""));if(r){const r=new Error(`Path contains invalid characters: ${t}`);r.code="EINVAL";throw r}}}},3309:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;t.exports={move:o(i(8324)),moveSync:i(3517)}},3517:(t,r,i)=>{"use strict";const o=i(1077);const a=i(1017);const u=i(8087).copySync;const l=i(7442).removeSync;const h=i(5828).mkdirpSync;const p=i(1573);function moveSync(t,r,i){i=i||{};const o=i.overwrite||i.clobber||false;const{srcStat:u,isChangingCase:l=false}=p.checkPathsSync(t,r,"move",i);p.checkParentPathsSync(t,u,r,"move");if(!isParentRoot(r))h(a.dirname(r));return doRename(t,r,o,l)}function isParentRoot(t){const r=a.dirname(t);const i=a.parse(r);return i.root===r}function doRename(t,r,i,a){if(a)return rename(t,r,i);if(i){l(r);return rename(t,r,i)}if(o.existsSync(r))throw new Error("dest already exists.");return rename(t,r,i)}function rename(t,r,i){try{o.renameSync(t,r)}catch(o){if(o.code!=="EXDEV")throw o;return moveAcrossDevice(t,r,i)}}function moveAcrossDevice(t,r,i){const o={overwrite:i,errorOnExist:true,preserveTimestamps:true};u(t,r,o);return l(t)}t.exports=moveSync},8324:(t,r,i)=>{"use strict";const o=i(1077);const a=i(1017);const u=i(8087).copy;const l=i(7442).remove;const h=i(5828).mkdirp;const p=i(5561).pathExists;const d=i(1573);function move(t,r,i,o){if(typeof i==="function"){o=i;i={}}i=i||{};const u=i.overwrite||i.clobber||false;d.checkPaths(t,r,"move",i,((i,l)=>{if(i)return o(i);const{srcStat:p,isChangingCase:m=false}=l;d.checkParentPaths(t,p,r,"move",(i=>{if(i)return o(i);if(isParentRoot(r))return doRename(t,r,u,m,o);h(a.dirname(r),(i=>{if(i)return o(i);return doRename(t,r,u,m,o)}))}))}))}function isParentRoot(t){const r=a.dirname(t);const i=a.parse(r);return i.root===r}function doRename(t,r,i,o,a){if(o)return rename(t,r,i,a);if(i){return l(r,(o=>{if(o)return a(o);return rename(t,r,i,a)}))}p(r,((o,u)=>{if(o)return a(o);if(u)return a(new Error("dest already exists."));return rename(t,r,i,a)}))}function rename(t,r,i,a){o.rename(t,r,(o=>{if(!o)return a();if(o.code!=="EXDEV")return a(o);return moveAcrossDevice(t,r,i,a)}))}function moveAcrossDevice(t,r,i,o){const a={overwrite:i,errorOnExist:true,preserveTimestamps:true};u(t,r,a,(r=>{if(r)return o(r);return l(t,o)}))}t.exports=move},2199:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;const a=i(1077);const u=i(1017);const l=i(5828);const h=i(5561).pathExists;function outputFile(t,r,i,o){if(typeof i==="function"){o=i;i="utf8"}const p=u.dirname(t);h(p,((u,h)=>{if(u)return o(u);if(h)return a.writeFile(t,r,i,o);l.mkdirs(p,(u=>{if(u)return o(u);a.writeFile(t,r,i,o)}))}))}function outputFileSync(t,...r){const i=u.dirname(t);if(a.existsSync(i)){return a.writeFileSync(t,...r)}l.mkdirsSync(i);a.writeFileSync(t,...r)}t.exports={outputFile:o(outputFile),outputFileSync:outputFileSync}},5561:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(2469);function pathExists(t){return a.access(t).then((()=>true)).catch((()=>false))}t.exports={pathExists:o(pathExists),pathExistsSync:a.existsSync}},7442:(t,r,i)=>{"use strict";const o=i(1077);const a=i(2703).fromCallback;function remove(t,r){o.rm(t,{recursive:true,force:true},r)}function removeSync(t){o.rmSync(t,{recursive:true,force:true})}t.exports={remove:a(remove),removeSync:removeSync}},1573:(t,r,i)=>{"use strict";const o=i(2469);const a=i(1017);const u=i(3837);function getStats(t,r,i){const a=i.dereference?t=>o.stat(t,{bigint:true}):t=>o.lstat(t,{bigint:true});return Promise.all([a(t),a(r).catch((t=>{if(t.code==="ENOENT")return null;throw t}))]).then((([t,r])=>({srcStat:t,destStat:r})))}function getStatsSync(t,r,i){let a;const u=i.dereference?t=>o.statSync(t,{bigint:true}):t=>o.lstatSync(t,{bigint:true});const l=u(t);try{a=u(r)}catch(t){if(t.code==="ENOENT")return{srcStat:l,destStat:null};throw t}return{srcStat:l,destStat:a}}function checkPaths(t,r,i,o,l){u.callbackify(getStats)(t,r,o,((o,u)=>{if(o)return l(o);const{srcStat:h,destStat:p}=u;if(p){if(areIdentical(h,p)){const o=a.basename(t);const u=a.basename(r);if(i==="move"&&o!==u&&o.toLowerCase()===u.toLowerCase()){return l(null,{srcStat:h,destStat:p,isChangingCase:true})}return l(new Error("Source and destination must not be the same."))}if(h.isDirectory()&&!p.isDirectory()){return l(new Error(`Cannot overwrite non-directory '${r}' with directory '${t}'.`))}if(!h.isDirectory()&&p.isDirectory()){return l(new Error(`Cannot overwrite directory '${r}' with non-directory '${t}'.`))}}if(h.isDirectory()&&isSrcSubdir(t,r)){return l(new Error(errMsg(t,r,i)))}return l(null,{srcStat:h,destStat:p})}))}function checkPathsSync(t,r,i,o){const{srcStat:u,destStat:l}=getStatsSync(t,r,o);if(l){if(areIdentical(u,l)){const o=a.basename(t);const h=a.basename(r);if(i==="move"&&o!==h&&o.toLowerCase()===h.toLowerCase()){return{srcStat:u,destStat:l,isChangingCase:true}}throw new Error("Source and destination must not be the same.")}if(u.isDirectory()&&!l.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${t}'.`)}if(!u.isDirectory()&&l.isDirectory()){throw new Error(`Cannot overwrite directory '${r}' with non-directory '${t}'.`)}}if(u.isDirectory()&&isSrcSubdir(t,r)){throw new Error(errMsg(t,r,i))}return{srcStat:u,destStat:l}}function checkParentPaths(t,r,i,u,l){const h=a.resolve(a.dirname(t));const p=a.resolve(a.dirname(i));if(p===h||p===a.parse(p).root)return l();o.stat(p,{bigint:true},((o,a)=>{if(o){if(o.code==="ENOENT")return l();return l(o)}if(areIdentical(r,a)){return l(new Error(errMsg(t,i,u)))}return checkParentPaths(t,r,p,u,l)}))}function checkParentPathsSync(t,r,i,u){const l=a.resolve(a.dirname(t));const h=a.resolve(a.dirname(i));if(h===l||h===a.parse(h).root)return;let p;try{p=o.statSync(h,{bigint:true})}catch(t){if(t.code==="ENOENT")return;throw t}if(areIdentical(r,p)){throw new Error(errMsg(t,i,u))}return checkParentPathsSync(t,r,h,u)}function areIdentical(t,r){return r.ino&&r.dev&&r.ino===t.ino&&r.dev===t.dev}function isSrcSubdir(t,r){const i=a.resolve(t).split(a.sep).filter((t=>t));const o=a.resolve(r).split(a.sep).filter((t=>t));return i.reduce(((t,r,i)=>t&&o[i]===r),true)}function errMsg(t,r,i){return`Cannot ${i} '${t}' to a subdirectory of itself, '${r}'.`}t.exports={checkPaths:checkPaths,checkPathsSync:checkPathsSync,checkParentPaths:checkParentPaths,checkParentPathsSync:checkParentPathsSync,isSrcSubdir:isSrcSubdir,areIdentical:areIdentical}},1948:(t,r,i)=>{"use strict";const o=i(1077);function utimesMillis(t,r,i,a){o.open(t,"r+",((t,u)=>{if(t)return a(t);o.futimes(u,r,i,(t=>{o.close(u,(r=>{if(a)a(t||r)}))}))}))}function utimesMillisSync(t,r,i){const a=o.openSync(t,"r+");o.futimesSync(a,r,i);return o.closeSync(a)}t.exports={utimesMillis:utimesMillis,utimesMillisSync:utimesMillisSync}},3991:t=>{"use strict";t.exports=clone;var r=Object.getPrototypeOf||function(t){return t.__proto__};function clone(t){if(t===null||typeof t!=="object")return t;if(t instanceof Object)var i={__proto__:r(t)};else var i=Object.create(null);Object.getOwnPropertyNames(t).forEach((function(r){Object.defineProperty(i,r,Object.getOwnPropertyDescriptor(t,r))}));return i}},1077:(t,r,i)=>{var o=i(7147);var a=i(6178);var u=i(8711);var l=i(3991);var h=i(3837);var p;var d;if(typeof Symbol==="function"&&typeof Symbol.for==="function"){p=Symbol.for("graceful-fs.queue");d=Symbol.for("graceful-fs.previous")}else{p="___graceful-fs.queue";d="___graceful-fs.previous"}function noop(){}function publishQueue(t,r){Object.defineProperty(t,p,{get:function(){return r}})}var m=noop;if(h.debuglog)m=h.debuglog("gfs4");else if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||""))m=function(){var t=h.format.apply(h,arguments);t="GFS4: "+t.split(/\n/).join("\nGFS4: ");console.error(t)};if(!o[p]){var g=global[p]||[];publishQueue(o,g);o.close=function(t){function close(r,i){return t.call(o,r,(function(t){if(!t){retry()}if(typeof i==="function")i.apply(this,arguments)}))}Object.defineProperty(close,d,{value:t});return close}(o.close);o.closeSync=function(t){function closeSync(r){t.apply(o,arguments);retry()}Object.defineProperty(closeSync,d,{value:t});return closeSync}(o.closeSync);if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")){process.on("exit",(function(){m(o[p]);i(9491).equal(o[p].length,0)}))}}if(!global[p]){publishQueue(global,o[p])}t.exports=patch(l(o));if(process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!o.__patched){t.exports=patch(o);o.__patched=true}function patch(t){a(t);t.gracefulify=patch;t.createReadStream=createReadStream;t.createWriteStream=createWriteStream;var r=t.readFile;t.readFile=readFile;function readFile(t,i,o){if(typeof i==="function")o=i,i=null;return go$readFile(t,i,o);function go$readFile(t,i,o){return r(t,i,(function(r){if(r&&(r.code==="EMFILE"||r.code==="ENFILE"))enqueue([go$readFile,[t,i,o]]);else{if(typeof o==="function")o.apply(this,arguments);retry()}}))}}var i=t.writeFile;t.writeFile=writeFile;function writeFile(t,r,o,a){if(typeof o==="function")a=o,o=null;return go$writeFile(t,r,o,a);function go$writeFile(t,r,o,a){return i(t,r,o,(function(i){if(i&&(i.code==="EMFILE"||i.code==="ENFILE"))enqueue([go$writeFile,[t,r,o,a]]);else{if(typeof a==="function")a.apply(this,arguments);retry()}}))}}var o=t.appendFile;if(o)t.appendFile=appendFile;function appendFile(t,r,i,a){if(typeof i==="function")a=i,i=null;return go$appendFile(t,r,i,a);function go$appendFile(t,r,i,a){return o(t,r,i,(function(o){if(o&&(o.code==="EMFILE"||o.code==="ENFILE"))enqueue([go$appendFile,[t,r,i,a]]);else{if(typeof a==="function")a.apply(this,arguments);retry()}}))}}var l=t.copyFile;if(l)t.copyFile=copyFile;function copyFile(t,r,i,o){if(typeof i==="function"){o=i;i=0}return l(t,r,i,(function(a){if(a&&(a.code==="EMFILE"||a.code==="ENFILE"))enqueue([l,[t,r,i,o]]);else{if(typeof o==="function")o.apply(this,arguments);retry()}}))}var h=t.readdir;t.readdir=readdir;function readdir(t,r,i){var o=[t];if(typeof r!=="function"){o.push(r)}else{i=r}o.push(go$readdir$cb);return go$readdir(o);function go$readdir$cb(t,r){if(r&&r.sort)r.sort();if(t&&(t.code==="EMFILE"||t.code==="ENFILE"))enqueue([go$readdir,[o]]);else{if(typeof i==="function")i.apply(this,arguments);retry()}}}function go$readdir(r){return h.apply(t,r)}if(process.version.substr(0,4)==="v0.8"){var p=u(t);ReadStream=p.ReadStream;WriteStream=p.WriteStream}var d=t.ReadStream;if(d){ReadStream.prototype=Object.create(d.prototype);ReadStream.prototype.open=ReadStream$open}var m=t.WriteStream;if(m){WriteStream.prototype=Object.create(m.prototype);WriteStream.prototype.open=WriteStream$open}Object.defineProperty(t,"ReadStream",{get:function(){return ReadStream},set:function(t){ReadStream=t},enumerable:true,configurable:true});Object.defineProperty(t,"WriteStream",{get:function(){return WriteStream},set:function(t){WriteStream=t},enumerable:true,configurable:true});var g=ReadStream;Object.defineProperty(t,"FileReadStream",{get:function(){return g},set:function(t){g=t},enumerable:true,configurable:true});var y=WriteStream;Object.defineProperty(t,"FileWriteStream",{get:function(){return y},set:function(t){y=t},enumerable:true,configurable:true});function ReadStream(t,r){if(this instanceof ReadStream)return d.apply(this,arguments),this;else return ReadStream.apply(Object.create(ReadStream.prototype),arguments)}function ReadStream$open(){var t=this;open(t.path,t.flags,t.mode,(function(r,i){if(r){if(t.autoClose)t.destroy();t.emit("error",r)}else{t.fd=i;t.emit("open",i);t.read()}}))}function WriteStream(t,r){if(this instanceof WriteStream)return m.apply(this,arguments),this;else return WriteStream.apply(Object.create(WriteStream.prototype),arguments)}function WriteStream$open(){var t=this;open(t.path,t.flags,t.mode,(function(r,i){if(r){t.destroy();t.emit("error",r)}else{t.fd=i;t.emit("open",i)}}))}function createReadStream(r,i){return new t.ReadStream(r,i)}function createWriteStream(r,i){return new t.WriteStream(r,i)}var v=t.open;t.open=open;function open(t,r,i,o){if(typeof i==="function")o=i,i=null;return go$open(t,r,i,o);function go$open(t,r,i,o){return v(t,r,i,(function(a,u){if(a&&(a.code==="EMFILE"||a.code==="ENFILE"))enqueue([go$open,[t,r,i,o]]);else{if(typeof o==="function")o.apply(this,arguments);retry()}}))}}return t}function enqueue(t){m("ENQUEUE",t[0].name,t[1]);o[p].push(t)}function retry(){var t=o[p].shift();if(t){m("RETRY",t[0].name,t[1]);t[0].apply(null,t[1])}}},8711:(t,r,i)=>{var o=i(2781).Stream;t.exports=legacy;function legacy(t){return{ReadStream:ReadStream,WriteStream:WriteStream};function ReadStream(r,i){if(!(this instanceof ReadStream))return new ReadStream(r,i);o.call(this);var a=this;this.path=r;this.fd=null;this.readable=true;this.paused=false;this.flags="r";this.mode=438;this.bufferSize=64*1024;i=i||{};var u=Object.keys(i);for(var l=0,h=u.length;l<h;l++){var p=u[l];this[p]=i[p]}if(this.encoding)this.setEncoding(this.encoding);if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.end===undefined){this.end=Infinity}else if("number"!==typeof this.end){throw TypeError("end must be a Number")}if(this.start>this.end){throw new Error("start must be <= end")}this.pos=this.start}if(this.fd!==null){process.nextTick((function(){a._read()}));return}t.open(this.path,this.flags,this.mode,(function(t,r){if(t){a.emit("error",t);a.readable=false;return}a.fd=r;a.emit("open",r);a._read()}))}function WriteStream(r,i){if(!(this instanceof WriteStream))return new WriteStream(r,i);o.call(this);this.path=r;this.fd=null;this.writable=true;this.flags="w";this.encoding="binary";this.mode=438;this.bytesWritten=0;i=i||{};var a=Object.keys(i);for(var u=0,l=a.length;u<l;u++){var h=a[u];this[h]=i[h]}if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.start<0){throw new Error("start must be >= zero")}this.pos=this.start}this.busy=false;this._queue=[];if(this.fd===null){this._open=t.open;this._queue.push([this._open,this.path,this.flags,this.mode,undefined]);this.flush()}}}},6178:(t,r,i)=>{var o=i(2057);var a=process.cwd;var u=null;var l=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){if(!u)u=a.call(process);return u};try{process.cwd()}catch(t){}if(typeof process.chdir==="function"){var h=process.chdir;process.chdir=function(t){u=null;h.call(process,t)};if(Object.setPrototypeOf)Object.setPrototypeOf(process.chdir,h)}t.exports=patch;function patch(t){if(o.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)){patchLchmod(t)}if(!t.lutimes){patchLutimes(t)}t.chown=chownFix(t.chown);t.fchown=chownFix(t.fchown);t.lchown=chownFix(t.lchown);t.chmod=chmodFix(t.chmod);t.fchmod=chmodFix(t.fchmod);t.lchmod=chmodFix(t.lchmod);t.chownSync=chownFixSync(t.chownSync);t.fchownSync=chownFixSync(t.fchownSync);t.lchownSync=chownFixSync(t.lchownSync);t.chmodSync=chmodFixSync(t.chmodSync);t.fchmodSync=chmodFixSync(t.fchmodSync);t.lchmodSync=chmodFixSync(t.lchmodSync);t.stat=statFix(t.stat);t.fstat=statFix(t.fstat);t.lstat=statFix(t.lstat);t.statSync=statFixSync(t.statSync);t.fstatSync=statFixSync(t.fstatSync);t.lstatSync=statFixSync(t.lstatSync);if(!t.lchmod){t.lchmod=function(t,r,i){if(i)process.nextTick(i)};t.lchmodSync=function(){}}if(!t.lchown){t.lchown=function(t,r,i,o){if(o)process.nextTick(o)};t.lchownSync=function(){}}if(l==="win32"){t.rename=function(r){return function(i,o,a){var u=Date.now();var l=0;r(i,o,(function CB(h){if(h&&(h.code==="EACCES"||h.code==="EPERM")&&Date.now()-u<6e4){setTimeout((function(){t.stat(o,(function(t,u){if(t&&t.code==="ENOENT")r(i,o,CB);else a(h)}))}),l);if(l<100)l+=10;return}if(a)a(h)}))}}(t.rename)}t.read=function(r){function read(i,o,a,u,l,h){var p;if(h&&typeof h==="function"){var d=0;p=function(m,g,y){if(m&&m.code==="EAGAIN"&&d<10){d++;return r.call(t,i,o,a,u,l,p)}h.apply(this,arguments)}}return r.call(t,i,o,a,u,l,p)}if(Object.setPrototypeOf)Object.setPrototypeOf(read,r);return read}(t.read);t.readSync=function(r){return function(i,o,a,u,l){var h=0;while(true){try{return r.call(t,i,o,a,u,l)}catch(t){if(t.code==="EAGAIN"&&h<10){h++;continue}throw t}}}}(t.readSync);function patchLchmod(t){t.lchmod=function(r,i,a){t.open(r,o.O_WRONLY|o.O_SYMLINK,i,(function(r,o){if(r){if(a)a(r);return}t.fchmod(o,i,(function(r){t.close(o,(function(t){if(a)a(r||t)}))}))}))};t.lchmodSync=function(r,i){var a=t.openSync(r,o.O_WRONLY|o.O_SYMLINK,i);var u=true;var l;try{l=t.fchmodSync(a,i);u=false}finally{if(u){try{t.closeSync(a)}catch(t){}}else{t.closeSync(a)}}return l}}function patchLutimes(t){if(o.hasOwnProperty("O_SYMLINK")){t.lutimes=function(r,i,a,u){t.open(r,o.O_SYMLINK,(function(r,o){if(r){if(u)u(r);return}t.futimes(o,i,a,(function(r){t.close(o,(function(t){if(u)u(r||t)}))}))}))};t.lutimesSync=function(r,i,a){var u=t.openSync(r,o.O_SYMLINK);var l;var h=true;try{l=t.futimesSync(u,i,a);h=false}finally{if(h){try{t.closeSync(u)}catch(t){}}else{t.closeSync(u)}}return l}}else{t.lutimes=function(t,r,i,o){if(o)process.nextTick(o)};t.lutimesSync=function(){}}}function chmodFix(r){if(!r)return r;return function(i,o,a){return r.call(t,i,o,(function(t){if(chownErOk(t))t=null;if(a)a.apply(this,arguments)}))}}function chmodFixSync(r){if(!r)return r;return function(i,o){try{return r.call(t,i,o)}catch(t){if(!chownErOk(t))throw t}}}function chownFix(r){if(!r)return r;return function(i,o,a,u){return r.call(t,i,o,a,(function(t){if(chownErOk(t))t=null;if(u)u.apply(this,arguments)}))}}function chownFixSync(r){if(!r)return r;return function(i,o,a){try{return r.call(t,i,o,a)}catch(t){if(!chownErOk(t))throw t}}}function statFix(r){if(!r)return r;return function(i,o,a){if(typeof o==="function"){a=o;o=null}function callback(t,r){if(r){if(r.uid<0)r.uid+=4294967296;if(r.gid<0)r.gid+=4294967296}if(a)a.apply(this,arguments)}return o?r.call(t,i,o,callback):r.call(t,i,callback)}}function statFixSync(r){if(!r)return r;return function(i,o){var a=o?r.call(t,i,o):r.call(t,i);if(a.uid<0)a.uid+=4294967296;if(a.gid<0)a.gid+=4294967296;return a}}function chownErOk(t){if(!t)return true;if(t.code==="ENOSYS")return true;var r=!process.getuid||process.getuid()!==0;if(r){if(t.code==="EINVAL"||t.code==="EPERM")return true}return false}}},6738:t=>{"use strict";t.exports=(t,r=process.argv)=>{const i=t.startsWith("-")?"":t.length===1?"-":"--";const o=r.indexOf(i+t);const a=r.indexOf("--");return o!==-1&&(a===-1||o<a)}},426:t=>{"use strict";var r=t.exports={github:{protocols:["git","http","git+ssh","git+https","ssh","https"],domain:"github.com",treepath:"tree",filetemplate:"https://{auth@}raw.githubusercontent.com/{user}/{project}/{committish}/{path}",bugstemplate:"https://{domain}/{user}/{project}/issues",gittemplate:"git://{auth@}{domain}/{user}/{project}.git{#committish}",tarballtemplate:"https://codeload.{domain}/{user}/{project}/tar.gz/{committish}"},bitbucket:{protocols:["git+ssh","git+https","ssh","https"],domain:"bitbucket.org",treepath:"src",tarballtemplate:"https://{domain}/{user}/{project}/get/{committish}.tar.gz"},gitlab:{protocols:["git+ssh","git+https","ssh","https"],domain:"gitlab.com",treepath:"tree",bugstemplate:"https://{domain}/{user}/{project}/issues",httpstemplate:"git+https://{auth@}{domain}/{user}/{projectPath}.git{#committish}",tarballtemplate:"https://{domain}/{user}/{project}/repository/archive.tar.gz?ref={committish}",pathmatch:/^\/([^/]+)\/((?!.*(\/-\/|\/repository(\/[^/]+)?\/archive\.tar\.gz)).*?)(?:\.git|\/)?$/},gist:{protocols:["git","git+ssh","git+https","ssh","https"],domain:"gist.github.com",pathmatch:/^[/](?:([^/]+)[/])?([a-z0-9]{7,})(?:[.]git)?$/,filetemplate:"https://gist.githubusercontent.com/{user}/{project}/raw{/committish}/{path}",bugstemplate:"https://{domain}/{project}",gittemplate:"git://{domain}/{project}.git{#committish}",sshtemplate:"git@{domain}:/{project}.git{#committish}",sshurltemplate:"git+ssh://git@{domain}/{project}.git{#committish}",browsetemplate:"https://{domain}/{project}{/committish}",browsefiletemplate:"https://{domain}/{project}{/committish}{#path}",docstemplate:"https://{domain}/{project}{/committish}",httpstemplate:"git+https://{domain}/{project}.git{#committish}",shortcuttemplate:"{type}:{project}{#committish}",pathtemplate:"{project}{#committish}",tarballtemplate:"https://codeload.github.com/gist/{project}/tar.gz/{committish}",hashformat:function(t){return"file-"+formatHashFragment(t)}}};var i={sshtemplate:"git@{domain}:{user}/{project}.git{#committish}",sshurltemplate:"git+ssh://git@{domain}/{user}/{project}.git{#committish}",browsetemplate:"https://{domain}/{user}/{project}{/tree/committish}",browsefiletemplate:"https://{domain}/{user}/{project}/{treepath}/{committish}/{path}{#fragment}",docstemplate:"https://{domain}/{user}/{project}{/tree/committish}#readme",httpstemplate:"git+https://{auth@}{domain}/{user}/{project}.git{#committish}",filetemplate:"https://{domain}/{user}/{project}/raw/{committish}/{path}",shortcuttemplate:"{type}:{user}/{project}{#committish}",pathtemplate:"{user}/{project}{#committish}",pathmatch:/^[/]([^/]+)[/]([^/]+?)(?:[.]git|[/])?$/,hashformat:formatHashFragment};Object.keys(r).forEach((function(t){Object.keys(i).forEach((function(o){if(r[t][o])return;r[t][o]=i[o]}));r[t].protocols_re=RegExp("^("+r[t].protocols.map((function(t){return t.replace(/([\\+*{}()[\]$^|])/g,"\\$1")})).join("|")+"):$")}));function formatHashFragment(t){return t.toLowerCase().replace(/^\W+|\/|\W+$/g,"").replace(/\W+/g,"-")}},8982:(t,r,i)=>{"use strict";var o=i(426);var a=Object.assign||function _extend(t,r){if(r===null||typeof r!=="object")return t;const i=Object.keys(r);let o=i.length;while(o--){t[i[o]]=r[i[o]]}return t};t.exports=GitHost;function GitHost(t,r,i,a,u,l,h){var p=this;p.type=t;Object.keys(o[t]).forEach((function(r){p[r]=o[t][r]}));p.user=r;p.auth=i;p.project=a;p.committish=u;p.default=l;p.opts=h||{}}GitHost.prototype.hash=function(){return this.committish?"#"+this.committish:""};GitHost.prototype._fill=function(t,r){if(!t)return;var i=a({},r);i.path=i.path?i.path.replace(/^[/]+/g,""):"";r=a(a({},this.opts),r);var o=this;Object.keys(this).forEach((function(t){if(o[t]!=null&&i[t]==null)i[t]=o[t]}));var u=i.auth;var l=i.committish;var h=i.fragment;var p=i.path;var d=i.project;Object.keys(i).forEach((function(t){var r=i[t];if((t==="path"||t==="project")&&typeof r==="string"){i[t]=r.split("/").map((function(t){return encodeURIComponent(t)})).join("/")}else if(t!=="domain"){i[t]=encodeURIComponent(r)}}));i["auth@"]=u?u+"@":"";i["#fragment"]=h?"#"+this.hashformat(h):"";i.fragment=i.fragment?i.fragment:"";i["#path"]=p?"#"+this.hashformat(p):"";i["/path"]=i.path?"/"+i.path:"";i.projectPath=d.split("/").map(encodeURIComponent).join("/");if(r.noCommittish){i["#committish"]="";i["/tree/committish"]="";i["/committish"]="";i.committish=""}else{i["#committish"]=l?"#"+l:"";i["/tree/committish"]=i.committish?"/"+i.treepath+"/"+i.committish:"";i["/committish"]=i.committish?"/"+i.committish:"";i.committish=i.committish||"master"}var m=t;Object.keys(i).forEach((function(t){m=m.replace(new RegExp("[{]"+t+"[}]","g"),i[t])}));if(r.noGitPlus){return m.replace(/^git[+]/,"")}else{return m}};GitHost.prototype.ssh=function(t){return this._fill(this.sshtemplate,t)};GitHost.prototype.sshurl=function(t){return this._fill(this.sshurltemplate,t)};GitHost.prototype.browse=function(t,r,i){if(typeof t==="string"){if(typeof r!=="string"){i=r;r=null}return this._fill(this.browsefiletemplate,a({fragment:r,path:t},i))}else{return this._fill(this.browsetemplate,t)}};GitHost.prototype.docs=function(t){return this._fill(this.docstemplate,t)};GitHost.prototype.bugs=function(t){return this._fill(this.bugstemplate,t)};GitHost.prototype.https=function(t){return this._fill(this.httpstemplate,t)};GitHost.prototype.git=function(t){return this._fill(this.gittemplate,t)};GitHost.prototype.shortcut=function(t){return this._fill(this.shortcuttemplate,t)};GitHost.prototype.path=function(t){return this._fill(this.pathtemplate,t)};GitHost.prototype.tarball=function(t){var r=a({},t,{noCommittish:false});return this._fill(this.tarballtemplate,r)};GitHost.prototype.file=function(t,r){return this._fill(this.filetemplate,a({path:t},r))};GitHost.prototype.getDefaultRepresentation=function(){return this.default};GitHost.prototype.toString=function(t){if(this.default&&typeof this[this.default]==="function")return this[this.default](t);return this.sshurl(t)}},7562:(t,r,i)=>{"use strict";var o=i(7310);var a=i(426);var u=t.exports=i(8982);var l=i(4559);var h=new l({max:1e3});var p={"git+ssh:":"sshurl","git+https:":"https","ssh:":"sshurl","git:":"git"};function protocolToRepresentation(t){return p[t]||t.slice(0,-1)}var d={"git:":true,"https:":true,"git+https:":true,"http:":true,"git+http:":true};t.exports.fromUrl=function(t,r){if(typeof t!=="string")return;var i=t+JSON.stringify(r||{});if(!h.has(i)){h.set(i,fromUrl(t,r))}return h.get(i)};function fromUrl(t,r){if(t==null||t==="")return;var i=fixupUnqualifiedGist(isGitHubShorthand(t)?"github:"+t:t);var o=parseGitUrl(i);var l=i.match(/^([^:]+):(?:[^@]+@)?(?:([^/]*)\/)?([^#]+)/);var h=Object.keys(a).map((function(t){try{var i=a[t];var h=null;if(o.auth&&d[o.protocol]){h=o.auth}var p=o.hash?decodeURIComponent(o.hash.substr(1)):null;var m=null;var g=null;var y=null;if(l&&l[1]===t){m=l[2]&&decodeURIComponent(l[2]);g=decodeURIComponent(l[3].replace(/\.git$/,""));y="shortcut"}else{if(o.host&&o.host!==i.domain&&o.host.replace(/^www[.]/,"")!==i.domain)return;if(!i.protocols_re.test(o.protocol))return;if(!o.path)return;var v=i.pathmatch;var A=o.path.match(v);if(!A)return;if(A[1]!==null&&A[1]!==undefined){m=decodeURIComponent(A[1].replace(/^:/,""))}g=decodeURIComponent(A[2]);y=protocolToRepresentation(o.protocol)}return new u(t,m,h,g,p,y,r)}catch(t){if(t instanceof URIError){}else throw t}})).filter((function(t){return t}));if(h.length!==1)return;return h[0]}function isGitHubShorthand(t){return/^[^:@%/\s.-][^:@%/\s]*[/][^:@\s/%]+(?:#.*)?$/.test(t)}function fixupUnqualifiedGist(t){var r=o.parse(t);if(r.protocol==="gist:"&&r.host&&!r.path){return r.protocol+"/"+r.host}else{return t}}function parseGitUrl(t){var r=t.match(/^([^@]+)@([^:/]+):[/]?((?:[^/]+[/])?[^/]+?)(?:[.]git)?(#.*)?$/);if(!r){var i=o.parse(t);if(i.auth){const r=t.match(/[^@]+@[^:/]+/);if(r){var a=new o.URL(r[0]);i.auth=a.username||"";if(a.password)i.auth+=":"+a.password}}return i}return{protocol:"git+ssh:",slashes:true,auth:r[1],host:r[2],port:null,hostname:r[2],hash:r[4],search:null,query:null,pathname:"/"+r[3],path:"/"+r[3],href:"git+ssh://"+r[1]+"@"+r[2]+"/"+r[3]+(r[4]||"")}}},5091:t=>{
|
|
34
|
+
*/const o=i(3837);const a=i(887);const isObject=t=>t!==null&&typeof t==="object"&&!Array.isArray(t);const transform=t=>r=>t===true?Number(r):String(r);const isValidValue=t=>typeof t==="number"||typeof t==="string"&&t!=="";const isNumber=t=>Number.isInteger(+t);const zeros=t=>{let r=`${t}`;let i=-1;if(r[0]==="-")r=r.slice(1);if(r==="0")return false;while(r[++i]==="0");return i>0};const stringify=(t,r,i)=>{if(typeof t==="string"||typeof r==="string"){return true}return i.stringify===true};const pad=(t,r,i)=>{if(r>0){let i=t[0]==="-"?"-":"";if(i)t=t.slice(1);t=i+t.padStart(i?r-1:r,"0")}if(i===false){return String(t)}return t};const toMaxLen=(t,r)=>{let i=t[0]==="-"?"-":"";if(i){t=t.slice(1);r--}while(t.length<r)t="0"+t;return i?"-"+t:t};const toSequence=(t,r)=>{t.negatives.sort(((t,r)=>t<r?-1:t>r?1:0));t.positives.sort(((t,r)=>t<r?-1:t>r?1:0));let i=r.capture?"":"?:";let o="";let a="";let u;if(t.positives.length){o=t.positives.join("|")}if(t.negatives.length){a=`-(${i}${t.negatives.join("|")})`}if(o&&a){u=`${o}|${a}`}else{u=o||a}if(r.wrap){return`(${i}${u})`}return u};const toRange=(t,r,i,o)=>{if(i){return a(t,r,{wrap:false,...o})}let u=String.fromCharCode(t);if(t===r)return u;let l=String.fromCharCode(r);return`[${u}-${l}]`};const toRegex=(t,r,i)=>{if(Array.isArray(t)){let r=i.wrap===true;let o=i.capture?"":"?:";return r?`(${o}${t.join("|")})`:t.join("|")}return a(t,r,i)};const rangeError=(...t)=>new RangeError("Invalid range arguments: "+o.inspect(...t));const invalidRange=(t,r,i)=>{if(i.strictRanges===true)throw rangeError([t,r]);return[]};const invalidStep=(t,r)=>{if(r.strictRanges===true){throw new TypeError(`Expected step "${t}" to be a number`)}return[]};const fillNumbers=(t,r,i=1,o={})=>{let a=Number(t);let u=Number(r);if(!Number.isInteger(a)||!Number.isInteger(u)){if(o.strictRanges===true)throw rangeError([t,r]);return[]}if(a===0)a=0;if(u===0)u=0;let l=a>u;let h=String(t);let p=String(r);let d=String(i);i=Math.max(Math.abs(i),1);let m=zeros(h)||zeros(p)||zeros(d);let g=m?Math.max(h.length,p.length,d.length):0;let y=m===false&&stringify(t,r,o)===false;let v=o.transform||transform(y);if(o.toRegex&&i===1){return toRange(toMaxLen(t,g),toMaxLen(r,g),true,o)}let A={negatives:[],positives:[]};let push=t=>A[t<0?"negatives":"positives"].push(Math.abs(t));let b=[];let w=0;while(l?a>=u:a<=u){if(o.toRegex===true&&i>1){push(a)}else{b.push(pad(v(a,w),g,y))}a=l?a-i:a+i;w++}if(o.toRegex===true){return i>1?toSequence(A,o):toRegex(b,null,{wrap:false,...o})}return b};const fillLetters=(t,r,i=1,o={})=>{if(!isNumber(t)&&t.length>1||!isNumber(r)&&r.length>1){return invalidRange(t,r,o)}let a=o.transform||(t=>String.fromCharCode(t));let u=`${t}`.charCodeAt(0);let l=`${r}`.charCodeAt(0);let h=u>l;let p=Math.min(u,l);let d=Math.max(u,l);if(o.toRegex&&i===1){return toRange(p,d,false,o)}let m=[];let g=0;while(h?u>=l:u<=l){m.push(a(u,g));u=h?u-i:u+i;g++}if(o.toRegex===true){return toRegex(m,null,{wrap:false,options:o})}return m};const fill=(t,r,i,o={})=>{if(r==null&&isValidValue(t)){return[t]}if(!isValidValue(t)||!isValidValue(r)){return invalidRange(t,r,o)}if(typeof i==="function"){return fill(t,r,1,{transform:i})}if(isObject(i)){return fill(t,r,0,i)}let a={...o};if(a.capture===true)a.wrap=true;i=i||a.step||1;if(!isNumber(i)){if(i!=null&&!isObject(i))return invalidStep(i,a);return fill(t,r,1,i)}if(isNumber(t)&&isNumber(r)){return fillNumbers(t,r,i,a)}return fillLetters(t,r,Math.max(Math.abs(i),1),a)};t.exports=fill},4823:(t,r,i)=>{"use strict";const o=i(1017);const a=i(3995);const u=i(7500);const l=Symbol("findUp.stop");t.exports=async(t,r={})=>{let i=o.resolve(r.cwd||"");const{root:u}=o.parse(i);const h=[].concat(t);const runMatcher=async r=>{if(typeof t!=="function"){return a(h,r)}const i=await t(r.cwd);if(typeof i==="string"){return a([i],r)}return i};while(true){const t=await runMatcher({...r,cwd:i});if(t===l){return}if(t){return o.resolve(i,t)}if(i===u){return}i=o.dirname(i)}};t.exports.sync=(t,r={})=>{let i=o.resolve(r.cwd||"");const{root:u}=o.parse(i);const h=[].concat(t);const runMatcher=r=>{if(typeof t!=="function"){return a.sync(h,r)}const i=t(r.cwd);if(typeof i==="string"){return a.sync([i],r)}return i};while(true){const t=runMatcher({...r,cwd:i});if(t===l){return}if(t){return o.resolve(i,t)}if(i===u){return}i=o.dirname(i)}};t.exports.exists=u;t.exports.sync.exists=u.sync;t.exports.stop=l},7500:(t,r,i)=>{"use strict";const o=i(7147);const{promisify:a}=i(3837);const u=a(o.access);t.exports=async t=>{try{await u(t);return true}catch(t){return false}};t.exports.sync=t=>{try{o.accessSync(t);return true}catch(t){return false}}},6736:(t,r,i)=>{"use strict";const o=i(7147);const a=i(8808);const u=i(1017);t.exports=findWorkspaceRoot;function findWorkspaceRoot(t){if(!t){t=process.cwd()}let r=null;let i=u.normalize(t);do{const o=readPackageJSON(i);const l=extractWorkspaces(o);if(l){const r=u.relative(i,t);if(r===""||a([r],l).length>0){return i}else{return null}}r=i;i=u.dirname(i)}while(i!==r);return null}function extractWorkspaces(t){const r=(t||{}).workspaces;return r&&r.packages||(Array.isArray(r)?r:null)}function readPackageJSON(t){const r=u.join(t,"package.json");if(o.existsSync(r)){return JSON.parse(o.readFileSync(r,"utf8"))}return null}},8808:(t,r,i)=>{"use strict";const o=i(3837);const a=i(538);const u=i(4156);const l=i(6793);const isEmptyString=t=>typeof t==="string"&&(t===""||t==="./");const micromatch=(t,r,i)=>{r=[].concat(r);t=[].concat(t);let o=new Set;let a=new Set;let l=new Set;let h=0;let onResult=t=>{l.add(t.output);if(i&&i.onResult){i.onResult(t)}};for(let l=0;l<r.length;l++){let p=u(String(r[l]),{...i,onResult:onResult},true);let d=p.state.negated||p.state.negatedExtglob;if(d)h++;for(let r of t){let t=p(r,true);let i=d?!t.isMatch:t.isMatch;if(!i)continue;if(d){o.add(t.output)}else{o.delete(t.output);a.add(t.output)}}}let p=h===r.length?[...l]:[...a];let d=p.filter((t=>!o.has(t)));if(i&&d.length===0){if(i.failglob===true){throw new Error(`No matches found for "${r.join(", ")}"`)}if(i.nonull===true||i.nullglob===true){return i.unescape?r.map((t=>t.replace(/\\/g,""))):r}}return d};micromatch.match=micromatch;micromatch.matcher=(t,r)=>u(t,r);micromatch.isMatch=(t,r,i)=>u(r,i)(t);micromatch.any=micromatch.isMatch;micromatch.not=(t,r,i={})=>{r=[].concat(r).map(String);let o=new Set;let a=[];let onResult=t=>{if(i.onResult)i.onResult(t);a.push(t.output)};let u=micromatch(t,r,{...i,onResult:onResult});for(let t of a){if(!u.includes(t)){o.add(t)}}return[...o]};micromatch.contains=(t,r,i)=>{if(typeof t!=="string"){throw new TypeError(`Expected a string: "${o.inspect(t)}"`)}if(Array.isArray(r)){return r.some((r=>micromatch.contains(t,r,i)))}if(typeof r==="string"){if(isEmptyString(t)||isEmptyString(r)){return false}if(t.includes(r)||t.startsWith("./")&&t.slice(2).includes(r)){return true}}return micromatch.isMatch(t,r,{...i,contains:true})};micromatch.matchKeys=(t,r,i)=>{if(!l.isObject(t)){throw new TypeError("Expected the first argument to be an object")}let o=micromatch(Object.keys(t),r,i);let a={};for(let r of o)a[r]=t[r];return a};micromatch.some=(t,r,i)=>{let o=[].concat(t);for(let t of[].concat(r)){let r=u(String(t),i);if(o.some((t=>r(t)))){return true}}return false};micromatch.every=(t,r,i)=>{let o=[].concat(t);for(let t of[].concat(r)){let r=u(String(t),i);if(!o.every((t=>r(t)))){return false}}return true};micromatch.all=(t,r,i)=>{if(typeof t!=="string"){throw new TypeError(`Expected a string: "${o.inspect(t)}"`)}return[].concat(r).every((r=>u(r,i)(t)))};micromatch.capture=(t,r,i)=>{let o=l.isWindows(i);let a=u.makeRe(String(t),{...i,capture:true});let h=a.exec(o?l.toPosixSlashes(r):r);if(h){return h.slice(1).map((t=>t===void 0?"":t))}};micromatch.makeRe=(...t)=>u.makeRe(...t);micromatch.scan=(...t)=>u.scan(...t);micromatch.parse=(t,r)=>{let i=[];for(let o of[].concat(t||[])){for(let t of a(String(o),r)){i.push(u.parse(t,r))}}return i};micromatch.braces=(t,r)=>{if(typeof t!=="string")throw new TypeError("Expected a string");if(r&&r.nobrace===true||!/\{.*\}/.test(t)){return[t]}return a(t,r)};micromatch.braceExpand=(t,r)=>{if(typeof t!=="string")throw new TypeError("Expected a string");return micromatch.braces(t,{...r,expand:true})};t.exports=micromatch},4156:(t,r,i)=>{"use strict";t.exports=i(8771)},1683:(t,r,i)=>{"use strict";const o=i(1017);const a="\\\\/";const u=`[^${a}]`;const l="\\.";const h="\\+";const p="\\?";const d="\\/";const m="(?=.)";const g="[^/]";const y=`(?:${d}|$)`;const v=`(?:^|${d})`;const A=`${l}{1,2}${y}`;const b=`(?!${l})`;const w=`(?!${v}${A})`;const S=`(?!${l}{0,1}${y})`;const _=`(?!${A})`;const C=`[^.${d}]`;const D=`${g}*?`;const x={DOT_LITERAL:l,PLUS_LITERAL:h,QMARK_LITERAL:p,SLASH_LITERAL:d,ONE_CHAR:m,QMARK:g,END_ANCHOR:y,DOTS_SLASH:A,NO_DOT:b,NO_DOTS:w,NO_DOT_SLASH:S,NO_DOTS_SLASH:_,QMARK_NO_DOT:C,STAR:D,START_ANCHOR:v};const R={...x,SLASH_LITERAL:`[${a}]`,QMARK:u,STAR:`${u}*?`,DOTS_SLASH:`${l}{1,2}(?:[${a}]|$)`,NO_DOT:`(?!${l})`,NO_DOTS:`(?!(?:^|[${a}])${l}{1,2}(?:[${a}]|$))`,NO_DOT_SLASH:`(?!${l}{0,1}(?:[${a}]|$))`,NO_DOTS_SLASH:`(?!${l}{1,2}(?:[${a}]|$))`,QMARK_NO_DOT:`[^.${a}]`,START_ANCHOR:`(?:^|[${a}])`,END_ANCHOR:`(?:[${a}]|$)`};const O={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:O,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:o.sep,extglobChars(t){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${t.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(t){return t===true?R:x}}},1589:(t,r,i)=>{"use strict";const o=i(1683);const a=i(6793);const{MAX_LENGTH:u,POSIX_REGEX_SOURCE:l,REGEX_NON_SPECIAL_CHARS:h,REGEX_SPECIAL_CHARS_BACKREF:p,REPLACEMENTS:d}=o;const expandRange=(t,r)=>{if(typeof r.expandRange==="function"){return r.expandRange(...t,r)}t.sort();const i=`[${t.join("-")}]`;try{new RegExp(i)}catch(r){return t.map((t=>a.escapeRegex(t))).join("..")}return i};const syntaxError=(t,r)=>`Missing ${t}: "${r}" - use "\\\\${r}" to match literal characters`;const parse=(t,r)=>{if(typeof t!=="string"){throw new TypeError("Expected a string")}t=d[t]||t;const i={...r};const m=typeof i.maxLength==="number"?Math.min(u,i.maxLength):u;let g=t.length;if(g>m){throw new SyntaxError(`Input length: ${g}, exceeds maximum allowed length: ${m}`)}const y={type:"bos",value:"",output:i.prepend||""};const v=[y];const A=i.capture?"":"?:";const b=a.isWindows(r);const w=o.globChars(b);const S=o.extglobChars(w);const{DOT_LITERAL:_,PLUS_LITERAL:C,SLASH_LITERAL:D,ONE_CHAR:x,DOTS_SLASH:R,NO_DOT:O,NO_DOT_SLASH:k,NO_DOTS_SLASH:T,QMARK:P,QMARK_NO_DOT:B,STAR:M,START_ANCHOR:L}=w;const globstar=t=>`(${A}(?:(?!${L}${t.dot?R:_}).)*?)`;const I=i.dot?"":O;const N=i.dot?P:B;let j=i.bash===true?globstar(i):M;if(i.capture){j=`(${j})`}if(typeof i.noext==="boolean"){i.noextglob=i.noext}const $={input:t,index:-1,start:0,dot:i.dot===true,consumed:"",output:"",prefix:"",backtrack:false,negated:false,brackets:0,braces:0,parens:0,quotes:0,globstar:false,tokens:v};t=a.removePrefix(t,$);g=t.length;const H=[];const W=[];const U=[];let G=y;let Y;const eos=()=>$.index===g-1;const V=$.peek=(r=1)=>t[$.index+r];const q=$.advance=()=>t[++$.index];const remaining=()=>t.slice($.index+1);const consume=(t="",r=0)=>{$.consumed+=t;$.index+=r};const append=t=>{$.output+=t.output!=null?t.output:t.value;consume(t.value)};const negate=()=>{let t=1;while(V()==="!"&&(V(2)!=="("||V(3)==="?")){q();$.start++;t++}if(t%2===0){return false}$.negated=true;$.start++;return true};const increment=t=>{$[t]++;U.push(t)};const decrement=t=>{$[t]--;U.pop()};const push=t=>{if(G.type==="globstar"){const r=$.braces>0&&(t.type==="comma"||t.type==="brace");const i=t.extglob===true||H.length&&(t.type==="pipe"||t.type==="paren");if(t.type!=="slash"&&t.type!=="paren"&&!r&&!i){$.output=$.output.slice(0,-G.output.length);G.type="star";G.value="*";G.output=j;$.output+=G.output}}if(H.length&&t.type!=="paren"&&!S[t.value]){H[H.length-1].inner+=t.value}if(t.value||t.output)append(t);if(G&&G.type==="text"&&t.type==="text"){G.value+=t.value;G.output=(G.output||"")+t.value;return}t.prev=G;v.push(t);G=t};const extglobOpen=(t,r)=>{const o={...S[r],conditions:1,inner:""};o.prev=G;o.parens=$.parens;o.output=$.output;const a=(i.capture?"(":"")+o.open;increment("parens");push({type:t,value:r,output:$.output?"":x});push({type:"paren",extglob:true,value:q(),output:a});H.push(o)};const extglobClose=t=>{let r=t.close+(i.capture?")":"");if(t.type==="negate"){let o=j;if(t.inner&&t.inner.length>1&&t.inner.includes("/")){o=globstar(i)}if(o!==j||eos()||/^\)+$/.test(remaining())){r=t.close=`)$))${o}`}if(t.prev.type==="bos"&&eos()){$.negatedExtglob=true}}push({type:"paren",extglob:true,value:Y,output:r});decrement("parens")};if(i.fastpaths!==false&&!/(^[*!]|[/()[\]{}"])/.test(t)){let o=false;let u=t.replace(p,((t,r,i,a,u,l)=>{if(a==="\\"){o=true;return t}if(a==="?"){if(r){return r+a+(u?P.repeat(u.length):"")}if(l===0){return N+(u?P.repeat(u.length):"")}return P.repeat(i.length)}if(a==="."){return _.repeat(i.length)}if(a==="*"){if(r){return r+a+(u?j:"")}return j}return r?t:`\\${t}`}));if(o===true){if(i.unescape===true){u=u.replace(/\\/g,"")}else{u=u.replace(/\\+/g,(t=>t.length%2===0?"\\\\":t?"\\":""))}}if(u===t&&i.contains===true){$.output=t;return $}$.output=a.wrapOutput(u,$,r);return $}while(!eos()){Y=q();if(Y==="\0"){continue}if(Y==="\\"){const t=V();if(t==="/"&&i.bash!==true){continue}if(t==="."||t===";"){continue}if(!t){Y+="\\";push({type:"text",value:Y});continue}const r=/^\\+/.exec(remaining());let o=0;if(r&&r[0].length>2){o=r[0].length;$.index+=o;if(o%2!==0){Y+="\\"}}if(i.unescape===true){Y=q()||""}else{Y+=q()||""}if($.brackets===0){push({type:"text",value:Y});continue}}if($.brackets>0&&(Y!=="]"||G.value==="["||G.value==="[^")){if(i.posix!==false&&Y===":"){const t=G.value.slice(1);if(t.includes("[")){G.posix=true;if(t.includes(":")){const t=G.value.lastIndexOf("[");const r=G.value.slice(0,t);const i=G.value.slice(t+2);const o=l[i];if(o){G.value=r+o;$.backtrack=true;q();if(!y.output&&v.indexOf(G)===1){y.output=x}continue}}}}if(Y==="["&&V()!==":"||Y==="-"&&V()==="]"){Y=`\\${Y}`}if(Y==="]"&&(G.value==="["||G.value==="[^")){Y=`\\${Y}`}if(i.posix===true&&Y==="!"&&G.value==="["){Y="^"}G.value+=Y;append({value:Y});continue}if($.quotes===1&&Y!=='"'){Y=a.escapeRegex(Y);G.value+=Y;append({value:Y});continue}if(Y==='"'){$.quotes=$.quotes===1?0:1;if(i.keepQuotes===true){push({type:"text",value:Y})}continue}if(Y==="("){increment("parens");push({type:"paren",value:Y});continue}if(Y===")"){if($.parens===0&&i.strictBrackets===true){throw new SyntaxError(syntaxError("opening","("))}const t=H[H.length-1];if(t&&$.parens===t.parens+1){extglobClose(H.pop());continue}push({type:"paren",value:Y,output:$.parens?")":"\\)"});decrement("parens");continue}if(Y==="["){if(i.nobracket===true||!remaining().includes("]")){if(i.nobracket!==true&&i.strictBrackets===true){throw new SyntaxError(syntaxError("closing","]"))}Y=`\\${Y}`}else{increment("brackets")}push({type:"bracket",value:Y});continue}if(Y==="]"){if(i.nobracket===true||G&&G.type==="bracket"&&G.value.length===1){push({type:"text",value:Y,output:`\\${Y}`});continue}if($.brackets===0){if(i.strictBrackets===true){throw new SyntaxError(syntaxError("opening","["))}push({type:"text",value:Y,output:`\\${Y}`});continue}decrement("brackets");const t=G.value.slice(1);if(G.posix!==true&&t[0]==="^"&&!t.includes("/")){Y=`/${Y}`}G.value+=Y;append({value:Y});if(i.literalBrackets===false||a.hasRegexChars(t)){continue}const r=a.escapeRegex(G.value);$.output=$.output.slice(0,-G.value.length);if(i.literalBrackets===true){$.output+=r;G.value=r;continue}G.value=`(${A}${r}|${G.value})`;$.output+=G.value;continue}if(Y==="{"&&i.nobrace!==true){increment("braces");const t={type:"brace",value:Y,output:"(",outputIndex:$.output.length,tokensIndex:$.tokens.length};W.push(t);push(t);continue}if(Y==="}"){const t=W[W.length-1];if(i.nobrace===true||!t){push({type:"text",value:Y,output:Y});continue}let r=")";if(t.dots===true){const t=v.slice();const o=[];for(let r=t.length-1;r>=0;r--){v.pop();if(t[r].type==="brace"){break}if(t[r].type!=="dots"){o.unshift(t[r].value)}}r=expandRange(o,i);$.backtrack=true}if(t.comma!==true&&t.dots!==true){const i=$.output.slice(0,t.outputIndex);const o=$.tokens.slice(t.tokensIndex);t.value=t.output="\\{";Y=r="\\}";$.output=i;for(const t of o){$.output+=t.output||t.value}}push({type:"brace",value:Y,output:r});decrement("braces");W.pop();continue}if(Y==="|"){if(H.length>0){H[H.length-1].conditions++}push({type:"text",value:Y});continue}if(Y===","){let t=Y;const r=W[W.length-1];if(r&&U[U.length-1]==="braces"){r.comma=true;t="|"}push({type:"comma",value:Y,output:t});continue}if(Y==="/"){if(G.type==="dot"&&$.index===$.start+1){$.start=$.index+1;$.consumed="";$.output="";v.pop();G=y;continue}push({type:"slash",value:Y,output:D});continue}if(Y==="."){if($.braces>0&&G.type==="dot"){if(G.value===".")G.output=_;const t=W[W.length-1];G.type="dots";G.output+=Y;G.value+=Y;t.dots=true;continue}if($.braces+$.parens===0&&G.type!=="bos"&&G.type!=="slash"){push({type:"text",value:Y,output:_});continue}push({type:"dot",value:Y,output:_});continue}if(Y==="?"){const t=G&&G.value==="(";if(!t&&i.noextglob!==true&&V()==="("&&V(2)!=="?"){extglobOpen("qmark",Y);continue}if(G&&G.type==="paren"){const t=V();let r=Y;if(t==="<"&&!a.supportsLookbehinds()){throw new Error("Node.js v10 or higher is required for regex lookbehinds")}if(G.value==="("&&!/[!=<:]/.test(t)||t==="<"&&!/<([!=]|\w+>)/.test(remaining())){r=`\\${Y}`}push({type:"text",value:Y,output:r});continue}if(i.dot!==true&&(G.type==="slash"||G.type==="bos")){push({type:"qmark",value:Y,output:B});continue}push({type:"qmark",value:Y,output:P});continue}if(Y==="!"){if(i.noextglob!==true&&V()==="("){if(V(2)!=="?"||!/[!=<:]/.test(V(3))){extglobOpen("negate",Y);continue}}if(i.nonegate!==true&&$.index===0){negate();continue}}if(Y==="+"){if(i.noextglob!==true&&V()==="("&&V(2)!=="?"){extglobOpen("plus",Y);continue}if(G&&G.value==="("||i.regex===false){push({type:"plus",value:Y,output:C});continue}if(G&&(G.type==="bracket"||G.type==="paren"||G.type==="brace")||$.parens>0){push({type:"plus",value:Y});continue}push({type:"plus",value:C});continue}if(Y==="@"){if(i.noextglob!==true&&V()==="("&&V(2)!=="?"){push({type:"at",extglob:true,value:Y,output:""});continue}push({type:"text",value:Y});continue}if(Y!=="*"){if(Y==="$"||Y==="^"){Y=`\\${Y}`}const t=h.exec(remaining());if(t){Y+=t[0];$.index+=t[0].length}push({type:"text",value:Y});continue}if(G&&(G.type==="globstar"||G.star===true)){G.type="star";G.star=true;G.value+=Y;G.output=j;$.backtrack=true;$.globstar=true;consume(Y);continue}let r=remaining();if(i.noextglob!==true&&/^\([^?]/.test(r)){extglobOpen("star",Y);continue}if(G.type==="star"){if(i.noglobstar===true){consume(Y);continue}const o=G.prev;const a=o.prev;const u=o.type==="slash"||o.type==="bos";const l=a&&(a.type==="star"||a.type==="globstar");if(i.bash===true&&(!u||r[0]&&r[0]!=="/")){push({type:"star",value:Y,output:""});continue}const h=$.braces>0&&(o.type==="comma"||o.type==="brace");const p=H.length&&(o.type==="pipe"||o.type==="paren");if(!u&&o.type!=="paren"&&!h&&!p){push({type:"star",value:Y,output:""});continue}while(r.slice(0,3)==="/**"){const i=t[$.index+4];if(i&&i!=="/"){break}r=r.slice(3);consume("/**",3)}if(o.type==="bos"&&eos()){G.type="globstar";G.value+=Y;G.output=globstar(i);$.output=G.output;$.globstar=true;consume(Y);continue}if(o.type==="slash"&&o.prev.type!=="bos"&&!l&&eos()){$.output=$.output.slice(0,-(o.output+G.output).length);o.output=`(?:${o.output}`;G.type="globstar";G.output=globstar(i)+(i.strictSlashes?")":"|$)");G.value+=Y;$.globstar=true;$.output+=o.output+G.output;consume(Y);continue}if(o.type==="slash"&&o.prev.type!=="bos"&&r[0]==="/"){const t=r[1]!==void 0?"|$":"";$.output=$.output.slice(0,-(o.output+G.output).length);o.output=`(?:${o.output}`;G.type="globstar";G.output=`${globstar(i)}${D}|${D}${t})`;G.value+=Y;$.output+=o.output+G.output;$.globstar=true;consume(Y+q());push({type:"slash",value:"/",output:""});continue}if(o.type==="bos"&&r[0]==="/"){G.type="globstar";G.value+=Y;G.output=`(?:^|${D}|${globstar(i)}${D})`;$.output=G.output;$.globstar=true;consume(Y+q());push({type:"slash",value:"/",output:""});continue}$.output=$.output.slice(0,-G.output.length);G.type="globstar";G.output=globstar(i);G.value+=Y;$.output+=G.output;$.globstar=true;consume(Y);continue}const o={type:"star",value:Y,output:j};if(i.bash===true){o.output=".*?";if(G.type==="bos"||G.type==="slash"){o.output=I+o.output}push(o);continue}if(G&&(G.type==="bracket"||G.type==="paren")&&i.regex===true){o.output=Y;push(o);continue}if($.index===$.start||G.type==="slash"||G.type==="dot"){if(G.type==="dot"){$.output+=k;G.output+=k}else if(i.dot===true){$.output+=T;G.output+=T}else{$.output+=I;G.output+=I}if(V()!=="*"){$.output+=x;G.output+=x}}push(o)}while($.brackets>0){if(i.strictBrackets===true)throw new SyntaxError(syntaxError("closing","]"));$.output=a.escapeLast($.output,"[");decrement("brackets")}while($.parens>0){if(i.strictBrackets===true)throw new SyntaxError(syntaxError("closing",")"));$.output=a.escapeLast($.output,"(");decrement("parens")}while($.braces>0){if(i.strictBrackets===true)throw new SyntaxError(syntaxError("closing","}"));$.output=a.escapeLast($.output,"{");decrement("braces")}if(i.strictSlashes!==true&&(G.type==="star"||G.type==="bracket")){push({type:"maybe_slash",value:"",output:`${D}?`})}if($.backtrack===true){$.output="";for(const t of $.tokens){$.output+=t.output!=null?t.output:t.value;if(t.suffix){$.output+=t.suffix}}}return $};parse.fastpaths=(t,r)=>{const i={...r};const l=typeof i.maxLength==="number"?Math.min(u,i.maxLength):u;const h=t.length;if(h>l){throw new SyntaxError(`Input length: ${h}, exceeds maximum allowed length: ${l}`)}t=d[t]||t;const p=a.isWindows(r);const{DOT_LITERAL:m,SLASH_LITERAL:g,ONE_CHAR:y,DOTS_SLASH:v,NO_DOT:A,NO_DOTS:b,NO_DOTS_SLASH:w,STAR:S,START_ANCHOR:_}=o.globChars(p);const C=i.dot?b:A;const D=i.dot?w:A;const x=i.capture?"":"?:";const R={negated:false,prefix:""};let O=i.bash===true?".*?":S;if(i.capture){O=`(${O})`}const globstar=t=>{if(t.noglobstar===true)return O;return`(${x}(?:(?!${_}${t.dot?v:m}).)*?)`};const create=t=>{switch(t){case"*":return`${C}${y}${O}`;case".*":return`${m}${y}${O}`;case"*.*":return`${C}${O}${m}${y}${O}`;case"*/*":return`${C}${O}${g}${y}${D}${O}`;case"**":return C+globstar(i);case"**/*":return`(?:${C}${globstar(i)}${g})?${D}${y}${O}`;case"**/*.*":return`(?:${C}${globstar(i)}${g})?${D}${O}${m}${y}${O}`;case"**/.*":return`(?:${C}${globstar(i)}${g})?${m}${y}${O}`;default:{const r=/^(.*?)\.(\w+)$/.exec(t);if(!r)return;const i=create(r[1]);if(!i)return;return i+m+r[2]}}};const k=a.removePrefix(t,R);let T=create(k);if(T&&i.strictSlashes!==true){T+=`${g}?`}return T};t.exports=parse},8771:(t,r,i)=>{"use strict";const o=i(1017);const a=i(5809);const u=i(1589);const l=i(6793);const h=i(1683);const isObject=t=>t&&typeof t==="object"&&!Array.isArray(t);const picomatch=(t,r,i=false)=>{if(Array.isArray(t)){const o=t.map((t=>picomatch(t,r,i)));const arrayMatcher=t=>{for(const r of o){const i=r(t);if(i)return i}return false};return arrayMatcher}const o=isObject(t)&&t.tokens&&t.input;if(t===""||typeof t!=="string"&&!o){throw new TypeError("Expected pattern to be a non-empty string")}const a=r||{};const u=l.isWindows(r);const h=o?picomatch.compileRe(t,r):picomatch.makeRe(t,r,false,true);const p=h.state;delete h.state;let isIgnored=()=>false;if(a.ignore){const t={...r,ignore:null,onMatch:null,onResult:null};isIgnored=picomatch(a.ignore,t,i)}const matcher=(i,o=false)=>{const{isMatch:l,match:d,output:m}=picomatch.test(i,h,r,{glob:t,posix:u});const g={glob:t,state:p,regex:h,posix:u,input:i,output:m,match:d,isMatch:l};if(typeof a.onResult==="function"){a.onResult(g)}if(l===false){g.isMatch=false;return o?g:false}if(isIgnored(i)){if(typeof a.onIgnore==="function"){a.onIgnore(g)}g.isMatch=false;return o?g:false}if(typeof a.onMatch==="function"){a.onMatch(g)}return o?g:true};if(i){matcher.state=p}return matcher};picomatch.test=(t,r,i,{glob:o,posix:a}={})=>{if(typeof t!=="string"){throw new TypeError("Expected input to be a string")}if(t===""){return{isMatch:false,output:""}}const u=i||{};const h=u.format||(a?l.toPosixSlashes:null);let p=t===o;let d=p&&h?h(t):t;if(p===false){d=h?h(t):t;p=d===o}if(p===false||u.capture===true){if(u.matchBase===true||u.basename===true){p=picomatch.matchBase(t,r,i,a)}else{p=r.exec(d)}}return{isMatch:Boolean(p),match:p,output:d}};picomatch.matchBase=(t,r,i,a=l.isWindows(i))=>{const u=r instanceof RegExp?r:picomatch.makeRe(r,i);return u.test(o.basename(t))};picomatch.isMatch=(t,r,i)=>picomatch(r,i)(t);picomatch.parse=(t,r)=>{if(Array.isArray(t))return t.map((t=>picomatch.parse(t,r)));return u(t,{...r,fastpaths:false})};picomatch.scan=(t,r)=>a(t,r);picomatch.compileRe=(t,r,i=false,o=false)=>{if(i===true){return t.output}const a=r||{};const u=a.contains?"":"^";const l=a.contains?"":"$";let h=`${u}(?:${t.output})${l}`;if(t&&t.negated===true){h=`^(?!${h}).*$`}const p=picomatch.toRegex(h,r);if(o===true){p.state=t}return p};picomatch.makeRe=(t,r,i=false,o=false)=>{if(!t||typeof t!=="string"){throw new TypeError("Expected a non-empty string")}const a=r||{};let l={negated:false,fastpaths:true};let h="";let p;if(t.startsWith("./")){t=t.slice(2);h=l.prefix="./"}if(a.fastpaths!==false&&(t[0]==="."||t[0]==="*")){p=u.fastpaths(t,r)}if(p===undefined){l=u(t,r);l.prefix=h+(l.prefix||"")}else{l.output=p}return picomatch.compileRe(l,r,i,o)};picomatch.toRegex=(t,r)=>{try{const i=r||{};return new RegExp(t,i.flags||(i.nocase?"i":""))}catch(t){if(r&&r.debug===true)throw t;return/$^/}};picomatch.constants=h;t.exports=picomatch},5809:(t,r,i)=>{"use strict";const o=i(6793);const{CHAR_ASTERISK:a,CHAR_AT:u,CHAR_BACKWARD_SLASH:l,CHAR_COMMA:h,CHAR_DOT:p,CHAR_EXCLAMATION_MARK:d,CHAR_FORWARD_SLASH:m,CHAR_LEFT_CURLY_BRACE:g,CHAR_LEFT_PARENTHESES:y,CHAR_LEFT_SQUARE_BRACKET:v,CHAR_PLUS:A,CHAR_QUESTION_MARK:b,CHAR_RIGHT_CURLY_BRACE:w,CHAR_RIGHT_PARENTHESES:S,CHAR_RIGHT_SQUARE_BRACKET:_}=i(1683);const isPathSeparator=t=>t===m||t===l;const depth=t=>{if(t.isPrefix!==true){t.depth=t.isGlobstar?Infinity:1}};const scan=(t,r)=>{const i=r||{};const C=t.length-1;const D=i.parts===true||i.scanToEnd===true;const x=[];const R=[];const O=[];let k=t;let T=-1;let P=0;let B=0;let M=false;let L=false;let I=false;let N=false;let j=false;let $=false;let H=false;let W=false;let U=false;let G=0;let Y;let V;let q={value:"",depth:0,isGlob:false};const eos=()=>T>=C;const peek=()=>k.charCodeAt(T+1);const advance=()=>{Y=V;return k.charCodeAt(++T)};while(T<C){V=advance();let t;if(V===l){H=q.backslashes=true;V=advance();if(V===g){$=true}continue}if($===true||V===g){G++;while(eos()!==true&&(V=advance())){if(V===l){H=q.backslashes=true;advance();continue}if(V===g){G++;continue}if($!==true&&V===p&&(V=advance())===p){M=q.isBrace=true;I=q.isGlob=true;U=true;if(D===true){continue}break}if($!==true&&V===h){M=q.isBrace=true;I=q.isGlob=true;U=true;if(D===true){continue}break}if(V===w){G--;if(G===0){$=false;M=q.isBrace=true;U=true;break}}}if(D===true){continue}break}if(V===m){x.push(T);R.push(q);q={value:"",depth:0,isGlob:false};if(U===true)continue;if(Y===p&&T===P+1){P+=2;continue}B=T+1;continue}if(i.noext!==true){const t=V===A||V===u||V===a||V===b||V===d;if(t===true&&peek()===y){I=q.isGlob=true;N=q.isExtglob=true;U=true;if(D===true){while(eos()!==true&&(V=advance())){if(V===l){H=q.backslashes=true;V=advance();continue}if(V===S){I=q.isGlob=true;U=true;break}}continue}break}}if(V===a){if(Y===a)j=q.isGlobstar=true;I=q.isGlob=true;U=true;if(D===true){continue}break}if(V===b){I=q.isGlob=true;U=true;if(D===true){continue}break}if(V===v){while(eos()!==true&&(t=advance())){if(t===l){H=q.backslashes=true;advance();continue}if(t===_){L=q.isBracket=true;I=q.isGlob=true;U=true;if(D===true){continue}break}}}if(i.nonegate!==true&&V===d&&T===P){W=q.negated=true;P++;continue}if(i.noparen!==true&&V===y){I=q.isGlob=true;if(D===true){while(eos()!==true&&(V=advance())){if(V===y){H=q.backslashes=true;V=advance();continue}if(V===S){U=true;break}}continue}break}if(I===true){U=true;if(D===true){continue}break}}if(i.noext===true){N=false;I=false}let Q=k;let K="";let J="";if(P>0){K=k.slice(0,P);k=k.slice(P);B-=P}if(Q&&I===true&&B>0){Q=k.slice(0,B);J=k.slice(B)}else if(I===true){Q="";J=k}else{Q=k}if(Q&&Q!==""&&Q!=="/"&&Q!==k){if(isPathSeparator(Q.charCodeAt(Q.length-1))){Q=Q.slice(0,-1)}}if(i.unescape===true){if(J)J=o.removeBackslashes(J);if(Q&&H===true){Q=o.removeBackslashes(Q)}}const z={prefix:K,input:t,start:P,base:Q,glob:J,isBrace:M,isBracket:L,isGlob:I,isExtglob:N,isGlobstar:j,negated:W};if(i.tokens===true){z.maxDepth=0;if(!isPathSeparator(V)){R.push(q)}z.tokens=R}if(i.parts===true||i.tokens===true){let r;for(let o=0;o<x.length;o++){const a=r?r+1:P;const u=x[o];const l=t.slice(a,u);if(i.tokens){if(o===0&&P!==0){R[o].isPrefix=true;R[o].value=K}else{R[o].value=l}depth(R[o]);z.maxDepth+=R[o].depth}if(o!==0||l!==""){O.push(l)}r=u}if(r&&r+1<t.length){const o=t.slice(r+1);O.push(o);if(i.tokens){R[R.length-1].value=o;depth(R[R.length-1]);z.maxDepth+=R[R.length-1].depth}}z.slashes=x;z.parts=O}return z};t.exports=scan},6793:(t,r,i)=>{"use strict";const o=i(1017);const a=process.platform==="win32";const{REGEX_BACKSLASH:u,REGEX_REMOVE_BACKSLASH:l,REGEX_SPECIAL_CHARS:h,REGEX_SPECIAL_CHARS_GLOBAL:p}=i(1683);r.isObject=t=>t!==null&&typeof t==="object"&&!Array.isArray(t);r.hasRegexChars=t=>h.test(t);r.isRegexChar=t=>t.length===1&&r.hasRegexChars(t);r.escapeRegex=t=>t.replace(p,"\\$1");r.toPosixSlashes=t=>t.replace(u,"/");r.removeBackslashes=t=>t.replace(l,(t=>t==="\\"?"":t));r.supportsLookbehinds=()=>{const t=process.version.slice(1).split(".").map(Number);if(t.length===3&&t[0]>=9||t[0]===8&&t[1]>=10){return true}return false};r.isWindows=t=>{if(t&&typeof t.windows==="boolean"){return t.windows}return a===true||o.sep==="\\"};r.escapeLast=(t,i,o)=>{const a=t.lastIndexOf(i,o);if(a===-1)return t;if(t[a-1]==="\\")return r.escapeLast(t,i,a-1);return`${t.slice(0,a)}\\${t.slice(a)}`};r.removePrefix=(t,r={})=>{let i=t;if(i.startsWith("./")){i=i.slice(2);r.prefix="./"}return i};r.wrapOutput=(t,r={},i={})=>{const o=i.contains?"":"^";const a=i.contains?"":"$";let u=`${o}(?:${t})${a}`;if(r.negated===true){u=`(?:^(?!${u}).*$)`}return u}},3279:(t,r,i)=>{"use strict";const o=i(1077);const a=i(1017);const u=i(5828).mkdirsSync;const l=i(1948).utimesMillisSync;const h=i(1573);function copySync(t,r,i){if(typeof i==="function"){i={filter:i}}i=i||{};i.clobber="clobber"in i?!!i.clobber:true;i.overwrite="overwrite"in i?!!i.overwrite:i.clobber;if(i.preserveTimestamps&&process.arch==="ia32"){process.emitWarning("Using the preserveTimestamps option in 32-bit node is not recommended;\n\n"+"\tsee https://github.com/jprichardson/node-fs-extra/issues/269","Warning","fs-extra-WARN0002")}const{srcStat:l,destStat:p}=h.checkPathsSync(t,r,"copy",i);h.checkParentPathsSync(t,l,r,"copy");if(i.filter&&!i.filter(t,r))return;const d=a.dirname(r);if(!o.existsSync(d))u(d);return getStats(p,t,r,i)}function getStats(t,r,i,a){const u=a.dereference?o.statSync:o.lstatSync;const l=u(r);if(l.isDirectory())return onDir(l,t,r,i,a);else if(l.isFile()||l.isCharacterDevice()||l.isBlockDevice())return onFile(l,t,r,i,a);else if(l.isSymbolicLink())return onLink(t,r,i,a);else if(l.isSocket())throw new Error(`Cannot copy a socket file: ${r}`);else if(l.isFIFO())throw new Error(`Cannot copy a FIFO pipe: ${r}`);throw new Error(`Unknown file: ${r}`)}function onFile(t,r,i,o,a){if(!r)return copyFile(t,i,o,a);return mayCopyFile(t,i,o,a)}function mayCopyFile(t,r,i,a){if(a.overwrite){o.unlinkSync(i);return copyFile(t,r,i,a)}else if(a.errorOnExist){throw new Error(`'${i}' already exists`)}}function copyFile(t,r,i,a){o.copyFileSync(r,i);if(a.preserveTimestamps)handleTimestamps(t.mode,r,i);return setDestMode(i,t.mode)}function handleTimestamps(t,r,i){if(fileIsNotWritable(t))makeFileWritable(i,t);return setDestTimestamps(r,i)}function fileIsNotWritable(t){return(t&128)===0}function makeFileWritable(t,r){return setDestMode(t,r|128)}function setDestMode(t,r){return o.chmodSync(t,r)}function setDestTimestamps(t,r){const i=o.statSync(t);return l(r,i.atime,i.mtime)}function onDir(t,r,i,o,a){if(!r)return mkDirAndCopy(t.mode,i,o,a);return copyDir(i,o,a)}function mkDirAndCopy(t,r,i,a){o.mkdirSync(i);copyDir(r,i,a);return setDestMode(i,t)}function copyDir(t,r,i){o.readdirSync(t).forEach((o=>copyDirItem(o,t,r,i)))}function copyDirItem(t,r,i,o){const u=a.join(r,t);const l=a.join(i,t);if(o.filter&&!o.filter(u,l))return;const{destStat:p}=h.checkPathsSync(u,l,"copy",o);return getStats(p,u,l,o)}function onLink(t,r,i,u){let l=o.readlinkSync(r);if(u.dereference){l=a.resolve(process.cwd(),l)}if(!t){return o.symlinkSync(l,i)}else{let t;try{t=o.readlinkSync(i)}catch(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return o.symlinkSync(l,i);throw t}if(u.dereference){t=a.resolve(process.cwd(),t)}if(h.isSrcSubdir(l,t)){throw new Error(`Cannot copy '${l}' to a subdirectory of itself, '${t}'.`)}if(h.isSrcSubdir(t,l)){throw new Error(`Cannot overwrite '${t}' with '${l}'.`)}return copyLink(l,i)}}function copyLink(t,r){o.unlinkSync(r);return o.symlinkSync(t,r)}t.exports=copySync},3638:(t,r,i)=>{"use strict";const o=i(2469);const a=i(1017);const{mkdirs:u}=i(5828);const{pathExists:l}=i(5561);const{utimesMillis:h}=i(1948);const p=i(1573);async function copy(t,r,i={}){if(typeof i==="function"){i={filter:i}}i.clobber="clobber"in i?!!i.clobber:true;i.overwrite="overwrite"in i?!!i.overwrite:i.clobber;if(i.preserveTimestamps&&process.arch==="ia32"){process.emitWarning("Using the preserveTimestamps option in 32-bit node is not recommended;\n\n"+"\tsee https://github.com/jprichardson/node-fs-extra/issues/269","Warning","fs-extra-WARN0001")}const{srcStat:o,destStat:h}=await p.checkPaths(t,r,"copy",i);await p.checkParentPaths(t,o,r,"copy");const d=await runFilter(t,r,i);if(!d)return;const m=a.dirname(r);const g=await l(m);if(!g){await u(m)}await getStatsAndPerformCopy(h,t,r,i)}async function runFilter(t,r,i){if(!i.filter)return true;return i.filter(t,r)}async function getStatsAndPerformCopy(t,r,i,a){const u=a.dereference?o.stat:o.lstat;const l=await u(r);if(l.isDirectory())return onDir(l,t,r,i,a);if(l.isFile()||l.isCharacterDevice()||l.isBlockDevice())return onFile(l,t,r,i,a);if(l.isSymbolicLink())return onLink(t,r,i,a);if(l.isSocket())throw new Error(`Cannot copy a socket file: ${r}`);if(l.isFIFO())throw new Error(`Cannot copy a FIFO pipe: ${r}`);throw new Error(`Unknown file: ${r}`)}async function onFile(t,r,i,a,u){if(!r)return copyFile(t,i,a,u);if(u.overwrite){await o.unlink(a);return copyFile(t,i,a,u)}if(u.errorOnExist){throw new Error(`'${a}' already exists`)}}async function copyFile(t,r,i,a){await o.copyFile(r,i);if(a.preserveTimestamps){if(fileIsNotWritable(t.mode)){await makeFileWritable(i,t.mode)}const a=await o.stat(r);await h(i,a.atime,a.mtime)}return o.chmod(i,t.mode)}function fileIsNotWritable(t){return(t&128)===0}function makeFileWritable(t,r){return o.chmod(t,r|128)}async function onDir(t,r,i,u,l){if(!r){await o.mkdir(u)}const h=await o.readdir(i);await Promise.all(h.map((async t=>{const r=a.join(i,t);const o=a.join(u,t);const h=await runFilter(r,o,l);if(!h)return;const{destStat:d}=await p.checkPaths(r,o,"copy",l);return getStatsAndPerformCopy(d,r,o,l)})));if(!r){await o.chmod(u,t.mode)}}async function onLink(t,r,i,u){let l=await o.readlink(r);if(u.dereference){l=a.resolve(process.cwd(),l)}if(!t){return o.symlink(l,i)}let h=null;try{h=await o.readlink(i)}catch(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return o.symlink(l,i);throw t}if(u.dereference){h=a.resolve(process.cwd(),h)}if(p.isSrcSubdir(l,h)){throw new Error(`Cannot copy '${l}' to a subdirectory of itself, '${h}'.`)}if(p.isSrcSubdir(h,l)){throw new Error(`Cannot overwrite '${h}' with '${l}'.`)}await o.unlink(i);return o.symlink(l,i)}t.exports=copy},8087:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;t.exports={copy:o(i(3638)),copySync:i(3279)}},4393:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(2469);const u=i(1017);const l=i(5828);const h=i(7442);const p=o((async function emptyDir(t){let r;try{r=await a.readdir(t)}catch{return l.mkdirs(t)}return Promise.all(r.map((r=>h.remove(u.join(t,r)))))}));function emptyDirSync(t){let r;try{r=a.readdirSync(t)}catch{return l.mkdirsSync(t)}r.forEach((r=>{r=u.join(t,r);h.removeSync(r)}))}t.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:p,emptydir:p}},4998:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(1017);const u=i(2469);const l=i(5828);async function createFile(t){let r;try{r=await u.stat(t)}catch{}if(r&&r.isFile())return;const i=a.dirname(t);let o=null;try{o=await u.stat(i)}catch(r){if(r.code==="ENOENT"){await l.mkdirs(i);await u.writeFile(t,"");return}else{throw r}}if(o.isDirectory()){await u.writeFile(t,"")}else{await u.readdir(i)}}function createFileSync(t){let r;try{r=u.statSync(t)}catch{}if(r&&r.isFile())return;const i=a.dirname(t);try{if(!u.statSync(i).isDirectory()){u.readdirSync(i)}}catch(t){if(t&&t.code==="ENOENT")l.mkdirsSync(i);else throw t}u.writeFileSync(t,"")}t.exports={createFile:o(createFile),createFileSync:createFileSync}},367:(t,r,i)=>{"use strict";const{createFile:o,createFileSync:a}=i(4998);const{createLink:u,createLinkSync:l}=i(3478);const{createSymlink:h,createSymlinkSync:p}=i(5285);t.exports={createFile:o,createFileSync:a,ensureFile:o,ensureFileSync:a,createLink:u,createLinkSync:l,ensureLink:u,ensureLinkSync:l,createSymlink:h,createSymlinkSync:p,ensureSymlink:h,ensureSymlinkSync:p}},3478:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(1017);const u=i(2469);const l=i(5828);const{pathExists:h}=i(5561);const{areIdentical:p}=i(1573);async function createLink(t,r){let i;try{i=await u.lstat(r)}catch{}let o;try{o=await u.lstat(t)}catch(t){t.message=t.message.replace("lstat","ensureLink");throw t}if(i&&p(o,i))return;const d=a.dirname(r);const m=await h(d);if(!m){await l.mkdirs(d)}await u.link(t,r)}function createLinkSync(t,r){let i;try{i=u.lstatSync(r)}catch{}try{const r=u.lstatSync(t);if(i&&p(r,i))return}catch(t){t.message=t.message.replace("lstat","ensureLink");throw t}const o=a.dirname(r);const h=u.existsSync(o);if(h)return u.linkSync(t,r);l.mkdirsSync(o);return u.linkSync(t,r)}t.exports={createLink:o(createLink),createLinkSync:createLinkSync}},4728:(t,r,i)=>{"use strict";const o=i(1017);const a=i(2469);const{pathExists:u}=i(5561);const l=i(2703).fromPromise;async function symlinkPaths(t,r){if(o.isAbsolute(t)){try{await a.lstat(t)}catch(t){t.message=t.message.replace("lstat","ensureSymlink");throw t}return{toCwd:t,toDst:t}}const i=o.dirname(r);const l=o.join(i,t);const h=await u(l);if(h){return{toCwd:l,toDst:t}}try{await a.lstat(t)}catch(t){t.message=t.message.replace("lstat","ensureSymlink");throw t}return{toCwd:t,toDst:o.relative(i,t)}}function symlinkPathsSync(t,r){if(o.isAbsolute(t)){const r=a.existsSync(t);if(!r)throw new Error("absolute srcpath does not exist");return{toCwd:t,toDst:t}}const i=o.dirname(r);const u=o.join(i,t);const l=a.existsSync(u);if(l){return{toCwd:u,toDst:t}}const h=a.existsSync(t);if(!h)throw new Error("relative srcpath does not exist");return{toCwd:t,toDst:o.relative(i,t)}}t.exports={symlinkPaths:l(symlinkPaths),symlinkPathsSync:symlinkPathsSync}},3025:(t,r,i)=>{"use strict";const o=i(2469);const a=i(2703).fromPromise;async function symlinkType(t,r){if(r)return r;let i;try{i=await o.lstat(t)}catch{return"file"}return i&&i.isDirectory()?"dir":"file"}function symlinkTypeSync(t,r){if(r)return r;let i;try{i=o.lstatSync(t)}catch{return"file"}return i&&i.isDirectory()?"dir":"file"}t.exports={symlinkType:a(symlinkType),symlinkTypeSync:symlinkTypeSync}},5285:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(1017);const u=i(2469);const{mkdirs:l,mkdirsSync:h}=i(5828);const{symlinkPaths:p,symlinkPathsSync:d}=i(4728);const{symlinkType:m,symlinkTypeSync:g}=i(3025);const{pathExists:y}=i(5561);const{areIdentical:v}=i(1573);async function createSymlink(t,r,i){let o;try{o=await u.lstat(r)}catch{}if(o&&o.isSymbolicLink()){const[i,o]=await Promise.all([u.stat(t),u.stat(r)]);if(v(i,o))return}const h=await p(t,r);t=h.toDst;const d=await m(h.toCwd,i);const g=a.dirname(r);if(!await y(g)){await l(g)}return u.symlink(t,r,d)}function createSymlinkSync(t,r,i){let o;try{o=u.lstatSync(r)}catch{}if(o&&o.isSymbolicLink()){const i=u.statSync(t);const o=u.statSync(r);if(v(i,o))return}const l=d(t,r);t=l.toDst;i=g(l.toCwd,i);const p=a.dirname(r);const m=u.existsSync(p);if(m)return u.symlinkSync(t,r,i);h(p);return u.symlinkSync(t,r,i)}t.exports={createSymlink:o(createSymlink),createSymlinkSync:createSymlinkSync}},2469:(t,r,i)=>{"use strict";const o=i(2703).fromCallback;const a=i(1077);const u=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchmod","lchown","link","lstat","mkdir","mkdtemp","open","opendir","readdir","readFile","readlink","realpath","rename","rm","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter((t=>typeof a[t]==="function"));Object.assign(r,a);u.forEach((t=>{r[t]=o(a[t])}));r.exists=function(t,r){if(typeof r==="function"){return a.exists(t,r)}return new Promise((r=>a.exists(t,r)))};r.read=function(t,r,i,o,u,l){if(typeof l==="function"){return a.read(t,r,i,o,u,l)}return new Promise(((l,h)=>{a.read(t,r,i,o,u,((t,r,i)=>{if(t)return h(t);l({bytesRead:r,buffer:i})}))}))};r.write=function(t,r,...i){if(typeof i[i.length-1]==="function"){return a.write(t,r,...i)}return new Promise(((o,u)=>{a.write(t,r,...i,((t,r,i)=>{if(t)return u(t);o({bytesWritten:r,buffer:i})}))}))};r.readv=function(t,r,...i){if(typeof i[i.length-1]==="function"){return a.readv(t,r,...i)}return new Promise(((o,u)=>{a.readv(t,r,...i,((t,r,i)=>{if(t)return u(t);o({bytesRead:r,buffers:i})}))}))};r.writev=function(t,r,...i){if(typeof i[i.length-1]==="function"){return a.writev(t,r,...i)}return new Promise(((o,u)=>{a.writev(t,r,...i,((t,r,i)=>{if(t)return u(t);o({bytesWritten:r,buffers:i})}))}))};if(typeof a.realpath.native==="function"){r.realpath.native=o(a.realpath.native)}else{process.emitWarning("fs.realpath.native is not a function. Is fs being monkey-patched?","Warning","fs-extra-WARN0003")}},1621:(t,r,i)=>{"use strict";t.exports={...i(2469),...i(8087),...i(4393),...i(367),...i(4659),...i(5828),...i(3309),...i(2199),...i(5561),...i(7442)}},4659:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(1536);a.outputJson=o(i(5122));a.outputJsonSync=i(2799);a.outputJSON=a.outputJson;a.outputJSONSync=a.outputJsonSync;a.writeJSON=a.writeJson;a.writeJSONSync=a.writeJsonSync;a.readJSON=a.readJson;a.readJSONSync=a.readJsonSync;t.exports=a},1536:(t,r,i)=>{"use strict";const o=i(1215);t.exports={readJson:o.readFile,readJsonSync:o.readFileSync,writeJson:o.writeFile,writeJsonSync:o.writeFileSync}},2799:(t,r,i)=>{"use strict";const{stringify:o}=i(4978);const{outputFileSync:a}=i(2199);function outputJsonSync(t,r,i){const u=o(r,i);a(t,u,i)}t.exports=outputJsonSync},5122:(t,r,i)=>{"use strict";const{stringify:o}=i(4978);const{outputFile:a}=i(2199);async function outputJson(t,r,i={}){const u=o(r,i);await a(t,u,i)}t.exports=outputJson},5828:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const{makeDir:a,makeDirSync:u}=i(7210);const l=o(a);t.exports={mkdirs:l,mkdirsSync:u,mkdirp:l,mkdirpSync:u,ensureDir:l,ensureDirSync:u}},7210:(t,r,i)=>{"use strict";const o=i(2469);const{checkPath:a}=i(7123);const getMode=t=>{const r={mode:511};if(typeof t==="number")return t;return{...r,...t}.mode};t.exports.makeDir=async(t,r)=>{a(t);return o.mkdir(t,{mode:getMode(r),recursive:true})};t.exports.makeDirSync=(t,r)=>{a(t);return o.mkdirSync(t,{mode:getMode(r),recursive:true})}},7123:(t,r,i)=>{"use strict";const o=i(1017);t.exports.checkPath=function checkPath(t){if(process.platform==="win32"){const r=/[<>:"|?*]/.test(t.replace(o.parse(t).root,""));if(r){const r=new Error(`Path contains invalid characters: ${t}`);r.code="EINVAL";throw r}}}},3309:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;t.exports={move:o(i(8324)),moveSync:i(3517)}},3517:(t,r,i)=>{"use strict";const o=i(1077);const a=i(1017);const u=i(8087).copySync;const l=i(7442).removeSync;const h=i(5828).mkdirpSync;const p=i(1573);function moveSync(t,r,i){i=i||{};const o=i.overwrite||i.clobber||false;const{srcStat:u,isChangingCase:l=false}=p.checkPathsSync(t,r,"move",i);p.checkParentPathsSync(t,u,r,"move");if(!isParentRoot(r))h(a.dirname(r));return doRename(t,r,o,l)}function isParentRoot(t){const r=a.dirname(t);const i=a.parse(r);return i.root===r}function doRename(t,r,i,a){if(a)return rename(t,r,i);if(i){l(r);return rename(t,r,i)}if(o.existsSync(r))throw new Error("dest already exists.");return rename(t,r,i)}function rename(t,r,i){try{o.renameSync(t,r)}catch(o){if(o.code!=="EXDEV")throw o;return moveAcrossDevice(t,r,i)}}function moveAcrossDevice(t,r,i){const o={overwrite:i,errorOnExist:true,preserveTimestamps:true};u(t,r,o);return l(t)}t.exports=moveSync},8324:(t,r,i)=>{"use strict";const o=i(2469);const a=i(1017);const{copy:u}=i(8087);const{remove:l}=i(7442);const{mkdirp:h}=i(5828);const{pathExists:p}=i(5561);const d=i(1573);async function move(t,r,i={}){const o=i.overwrite||i.clobber||false;const{srcStat:u,isChangingCase:l=false}=await d.checkPaths(t,r,"move",i);await d.checkParentPaths(t,u,r,"move");const p=a.dirname(r);const m=a.parse(p);if(m.root!==p){await h(p)}return doRename(t,r,o,l)}async function doRename(t,r,i,a){if(!a){if(i){await l(r)}else if(await p(r)){throw new Error("dest already exists.")}}try{await o.rename(t,r)}catch(o){if(o.code!=="EXDEV"){throw o}await moveAcrossDevice(t,r,i)}}async function moveAcrossDevice(t,r,i){const o={overwrite:i,errorOnExist:true,preserveTimestamps:true};await u(t,r,o);return l(t)}t.exports=move},2199:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(2469);const u=i(1017);const l=i(5828);const h=i(5561).pathExists;async function outputFile(t,r,i="utf-8"){const o=u.dirname(t);if(!await h(o)){await l.mkdirs(o)}return a.writeFile(t,r,i)}function outputFileSync(t,...r){const i=u.dirname(t);if(!a.existsSync(i)){l.mkdirsSync(i)}a.writeFileSync(t,...r)}t.exports={outputFile:o(outputFile),outputFileSync:outputFileSync}},5561:(t,r,i)=>{"use strict";const o=i(2703).fromPromise;const a=i(2469);function pathExists(t){return a.access(t).then((()=>true)).catch((()=>false))}t.exports={pathExists:o(pathExists),pathExistsSync:a.existsSync}},7442:(t,r,i)=>{"use strict";const o=i(1077);const a=i(2703).fromCallback;function remove(t,r){o.rm(t,{recursive:true,force:true},r)}function removeSync(t){o.rmSync(t,{recursive:true,force:true})}t.exports={remove:a(remove),removeSync:removeSync}},1573:(t,r,i)=>{"use strict";const o=i(2469);const a=i(1017);const u=i(2703).fromPromise;function getStats(t,r,i){const a=i.dereference?t=>o.stat(t,{bigint:true}):t=>o.lstat(t,{bigint:true});return Promise.all([a(t),a(r).catch((t=>{if(t.code==="ENOENT")return null;throw t}))]).then((([t,r])=>({srcStat:t,destStat:r})))}function getStatsSync(t,r,i){let a;const u=i.dereference?t=>o.statSync(t,{bigint:true}):t=>o.lstatSync(t,{bigint:true});const l=u(t);try{a=u(r)}catch(t){if(t.code==="ENOENT")return{srcStat:l,destStat:null};throw t}return{srcStat:l,destStat:a}}async function checkPaths(t,r,i,o){const{srcStat:u,destStat:l}=await getStats(t,r,o);if(l){if(areIdentical(u,l)){const o=a.basename(t);const h=a.basename(r);if(i==="move"&&o!==h&&o.toLowerCase()===h.toLowerCase()){return{srcStat:u,destStat:l,isChangingCase:true}}throw new Error("Source and destination must not be the same.")}if(u.isDirectory()&&!l.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${t}'.`)}if(!u.isDirectory()&&l.isDirectory()){throw new Error(`Cannot overwrite directory '${r}' with non-directory '${t}'.`)}}if(u.isDirectory()&&isSrcSubdir(t,r)){throw new Error(errMsg(t,r,i))}return{srcStat:u,destStat:l}}function checkPathsSync(t,r,i,o){const{srcStat:u,destStat:l}=getStatsSync(t,r,o);if(l){if(areIdentical(u,l)){const o=a.basename(t);const h=a.basename(r);if(i==="move"&&o!==h&&o.toLowerCase()===h.toLowerCase()){return{srcStat:u,destStat:l,isChangingCase:true}}throw new Error("Source and destination must not be the same.")}if(u.isDirectory()&&!l.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${t}'.`)}if(!u.isDirectory()&&l.isDirectory()){throw new Error(`Cannot overwrite directory '${r}' with non-directory '${t}'.`)}}if(u.isDirectory()&&isSrcSubdir(t,r)){throw new Error(errMsg(t,r,i))}return{srcStat:u,destStat:l}}async function checkParentPaths(t,r,i,u){const l=a.resolve(a.dirname(t));const h=a.resolve(a.dirname(i));if(h===l||h===a.parse(h).root)return;let p;try{p=await o.stat(h,{bigint:true})}catch(t){if(t.code==="ENOENT")return;throw t}if(areIdentical(r,p)){throw new Error(errMsg(t,i,u))}return checkParentPaths(t,r,h,u)}function checkParentPathsSync(t,r,i,u){const l=a.resolve(a.dirname(t));const h=a.resolve(a.dirname(i));if(h===l||h===a.parse(h).root)return;let p;try{p=o.statSync(h,{bigint:true})}catch(t){if(t.code==="ENOENT")return;throw t}if(areIdentical(r,p)){throw new Error(errMsg(t,i,u))}return checkParentPathsSync(t,r,h,u)}function areIdentical(t,r){return r.ino&&r.dev&&r.ino===t.ino&&r.dev===t.dev}function isSrcSubdir(t,r){const i=a.resolve(t).split(a.sep).filter((t=>t));const o=a.resolve(r).split(a.sep).filter((t=>t));return i.every(((t,r)=>o[r]===t))}function errMsg(t,r,i){return`Cannot ${i} '${t}' to a subdirectory of itself, '${r}'.`}t.exports={checkPaths:u(checkPaths),checkPathsSync:checkPathsSync,checkParentPaths:u(checkParentPaths),checkParentPathsSync:checkParentPathsSync,isSrcSubdir:isSrcSubdir,areIdentical:areIdentical}},1948:(t,r,i)=>{"use strict";const o=i(2469);const a=i(2703).fromPromise;async function utimesMillis(t,r,i){const a=await o.open(t,"r+");let u=null;try{await o.futimes(a,r,i)}finally{try{await o.close(a)}catch(t){u=t}}if(u){throw u}}function utimesMillisSync(t,r,i){const a=o.openSync(t,"r+");o.futimesSync(a,r,i);return o.closeSync(a)}t.exports={utimesMillis:a(utimesMillis),utimesMillisSync:utimesMillisSync}},3991:t=>{"use strict";t.exports=clone;var r=Object.getPrototypeOf||function(t){return t.__proto__};function clone(t){if(t===null||typeof t!=="object")return t;if(t instanceof Object)var i={__proto__:r(t)};else var i=Object.create(null);Object.getOwnPropertyNames(t).forEach((function(r){Object.defineProperty(i,r,Object.getOwnPropertyDescriptor(t,r))}));return i}},1077:(t,r,i)=>{var o=i(7147);var a=i(6178);var u=i(8711);var l=i(3991);var h=i(3837);var p;var d;if(typeof Symbol==="function"&&typeof Symbol.for==="function"){p=Symbol.for("graceful-fs.queue");d=Symbol.for("graceful-fs.previous")}else{p="___graceful-fs.queue";d="___graceful-fs.previous"}function noop(){}function publishQueue(t,r){Object.defineProperty(t,p,{get:function(){return r}})}var m=noop;if(h.debuglog)m=h.debuglog("gfs4");else if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||""))m=function(){var t=h.format.apply(h,arguments);t="GFS4: "+t.split(/\n/).join("\nGFS4: ");console.error(t)};if(!o[p]){var g=global[p]||[];publishQueue(o,g);o.close=function(t){function close(r,i){return t.call(o,r,(function(t){if(!t){retry()}if(typeof i==="function")i.apply(this,arguments)}))}Object.defineProperty(close,d,{value:t});return close}(o.close);o.closeSync=function(t){function closeSync(r){t.apply(o,arguments);retry()}Object.defineProperty(closeSync,d,{value:t});return closeSync}(o.closeSync);if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")){process.on("exit",(function(){m(o[p]);i(9491).equal(o[p].length,0)}))}}if(!global[p]){publishQueue(global,o[p])}t.exports=patch(l(o));if(process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!o.__patched){t.exports=patch(o);o.__patched=true}function patch(t){a(t);t.gracefulify=patch;t.createReadStream=createReadStream;t.createWriteStream=createWriteStream;var r=t.readFile;t.readFile=readFile;function readFile(t,i,o){if(typeof i==="function")o=i,i=null;return go$readFile(t,i,o);function go$readFile(t,i,o){return r(t,i,(function(r){if(r&&(r.code==="EMFILE"||r.code==="ENFILE"))enqueue([go$readFile,[t,i,o]]);else{if(typeof o==="function")o.apply(this,arguments);retry()}}))}}var i=t.writeFile;t.writeFile=writeFile;function writeFile(t,r,o,a){if(typeof o==="function")a=o,o=null;return go$writeFile(t,r,o,a);function go$writeFile(t,r,o,a){return i(t,r,o,(function(i){if(i&&(i.code==="EMFILE"||i.code==="ENFILE"))enqueue([go$writeFile,[t,r,o,a]]);else{if(typeof a==="function")a.apply(this,arguments);retry()}}))}}var o=t.appendFile;if(o)t.appendFile=appendFile;function appendFile(t,r,i,a){if(typeof i==="function")a=i,i=null;return go$appendFile(t,r,i,a);function go$appendFile(t,r,i,a){return o(t,r,i,(function(o){if(o&&(o.code==="EMFILE"||o.code==="ENFILE"))enqueue([go$appendFile,[t,r,i,a]]);else{if(typeof a==="function")a.apply(this,arguments);retry()}}))}}var l=t.copyFile;if(l)t.copyFile=copyFile;function copyFile(t,r,i,o){if(typeof i==="function"){o=i;i=0}return l(t,r,i,(function(a){if(a&&(a.code==="EMFILE"||a.code==="ENFILE"))enqueue([l,[t,r,i,o]]);else{if(typeof o==="function")o.apply(this,arguments);retry()}}))}var h=t.readdir;t.readdir=readdir;function readdir(t,r,i){var o=[t];if(typeof r!=="function"){o.push(r)}else{i=r}o.push(go$readdir$cb);return go$readdir(o);function go$readdir$cb(t,r){if(r&&r.sort)r.sort();if(t&&(t.code==="EMFILE"||t.code==="ENFILE"))enqueue([go$readdir,[o]]);else{if(typeof i==="function")i.apply(this,arguments);retry()}}}function go$readdir(r){return h.apply(t,r)}if(process.version.substr(0,4)==="v0.8"){var p=u(t);ReadStream=p.ReadStream;WriteStream=p.WriteStream}var d=t.ReadStream;if(d){ReadStream.prototype=Object.create(d.prototype);ReadStream.prototype.open=ReadStream$open}var m=t.WriteStream;if(m){WriteStream.prototype=Object.create(m.prototype);WriteStream.prototype.open=WriteStream$open}Object.defineProperty(t,"ReadStream",{get:function(){return ReadStream},set:function(t){ReadStream=t},enumerable:true,configurable:true});Object.defineProperty(t,"WriteStream",{get:function(){return WriteStream},set:function(t){WriteStream=t},enumerable:true,configurable:true});var g=ReadStream;Object.defineProperty(t,"FileReadStream",{get:function(){return g},set:function(t){g=t},enumerable:true,configurable:true});var y=WriteStream;Object.defineProperty(t,"FileWriteStream",{get:function(){return y},set:function(t){y=t},enumerable:true,configurable:true});function ReadStream(t,r){if(this instanceof ReadStream)return d.apply(this,arguments),this;else return ReadStream.apply(Object.create(ReadStream.prototype),arguments)}function ReadStream$open(){var t=this;open(t.path,t.flags,t.mode,(function(r,i){if(r){if(t.autoClose)t.destroy();t.emit("error",r)}else{t.fd=i;t.emit("open",i);t.read()}}))}function WriteStream(t,r){if(this instanceof WriteStream)return m.apply(this,arguments),this;else return WriteStream.apply(Object.create(WriteStream.prototype),arguments)}function WriteStream$open(){var t=this;open(t.path,t.flags,t.mode,(function(r,i){if(r){t.destroy();t.emit("error",r)}else{t.fd=i;t.emit("open",i)}}))}function createReadStream(r,i){return new t.ReadStream(r,i)}function createWriteStream(r,i){return new t.WriteStream(r,i)}var v=t.open;t.open=open;function open(t,r,i,o){if(typeof i==="function")o=i,i=null;return go$open(t,r,i,o);function go$open(t,r,i,o){return v(t,r,i,(function(a,u){if(a&&(a.code==="EMFILE"||a.code==="ENFILE"))enqueue([go$open,[t,r,i,o]]);else{if(typeof o==="function")o.apply(this,arguments);retry()}}))}}return t}function enqueue(t){m("ENQUEUE",t[0].name,t[1]);o[p].push(t)}function retry(){var t=o[p].shift();if(t){m("RETRY",t[0].name,t[1]);t[0].apply(null,t[1])}}},8711:(t,r,i)=>{var o=i(2781).Stream;t.exports=legacy;function legacy(t){return{ReadStream:ReadStream,WriteStream:WriteStream};function ReadStream(r,i){if(!(this instanceof ReadStream))return new ReadStream(r,i);o.call(this);var a=this;this.path=r;this.fd=null;this.readable=true;this.paused=false;this.flags="r";this.mode=438;this.bufferSize=64*1024;i=i||{};var u=Object.keys(i);for(var l=0,h=u.length;l<h;l++){var p=u[l];this[p]=i[p]}if(this.encoding)this.setEncoding(this.encoding);if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.end===undefined){this.end=Infinity}else if("number"!==typeof this.end){throw TypeError("end must be a Number")}if(this.start>this.end){throw new Error("start must be <= end")}this.pos=this.start}if(this.fd!==null){process.nextTick((function(){a._read()}));return}t.open(this.path,this.flags,this.mode,(function(t,r){if(t){a.emit("error",t);a.readable=false;return}a.fd=r;a.emit("open",r);a._read()}))}function WriteStream(r,i){if(!(this instanceof WriteStream))return new WriteStream(r,i);o.call(this);this.path=r;this.fd=null;this.writable=true;this.flags="w";this.encoding="binary";this.mode=438;this.bytesWritten=0;i=i||{};var a=Object.keys(i);for(var u=0,l=a.length;u<l;u++){var h=a[u];this[h]=i[h]}if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.start<0){throw new Error("start must be >= zero")}this.pos=this.start}this.busy=false;this._queue=[];if(this.fd===null){this._open=t.open;this._queue.push([this._open,this.path,this.flags,this.mode,undefined]);this.flush()}}}},6178:(t,r,i)=>{var o=i(2057);var a=process.cwd;var u=null;var l=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){if(!u)u=a.call(process);return u};try{process.cwd()}catch(t){}if(typeof process.chdir==="function"){var h=process.chdir;process.chdir=function(t){u=null;h.call(process,t)};if(Object.setPrototypeOf)Object.setPrototypeOf(process.chdir,h)}t.exports=patch;function patch(t){if(o.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)){patchLchmod(t)}if(!t.lutimes){patchLutimes(t)}t.chown=chownFix(t.chown);t.fchown=chownFix(t.fchown);t.lchown=chownFix(t.lchown);t.chmod=chmodFix(t.chmod);t.fchmod=chmodFix(t.fchmod);t.lchmod=chmodFix(t.lchmod);t.chownSync=chownFixSync(t.chownSync);t.fchownSync=chownFixSync(t.fchownSync);t.lchownSync=chownFixSync(t.lchownSync);t.chmodSync=chmodFixSync(t.chmodSync);t.fchmodSync=chmodFixSync(t.fchmodSync);t.lchmodSync=chmodFixSync(t.lchmodSync);t.stat=statFix(t.stat);t.fstat=statFix(t.fstat);t.lstat=statFix(t.lstat);t.statSync=statFixSync(t.statSync);t.fstatSync=statFixSync(t.fstatSync);t.lstatSync=statFixSync(t.lstatSync);if(!t.lchmod){t.lchmod=function(t,r,i){if(i)process.nextTick(i)};t.lchmodSync=function(){}}if(!t.lchown){t.lchown=function(t,r,i,o){if(o)process.nextTick(o)};t.lchownSync=function(){}}if(l==="win32"){t.rename=function(r){return function(i,o,a){var u=Date.now();var l=0;r(i,o,(function CB(h){if(h&&(h.code==="EACCES"||h.code==="EPERM")&&Date.now()-u<6e4){setTimeout((function(){t.stat(o,(function(t,u){if(t&&t.code==="ENOENT")r(i,o,CB);else a(h)}))}),l);if(l<100)l+=10;return}if(a)a(h)}))}}(t.rename)}t.read=function(r){function read(i,o,a,u,l,h){var p;if(h&&typeof h==="function"){var d=0;p=function(m,g,y){if(m&&m.code==="EAGAIN"&&d<10){d++;return r.call(t,i,o,a,u,l,p)}h.apply(this,arguments)}}return r.call(t,i,o,a,u,l,p)}if(Object.setPrototypeOf)Object.setPrototypeOf(read,r);return read}(t.read);t.readSync=function(r){return function(i,o,a,u,l){var h=0;while(true){try{return r.call(t,i,o,a,u,l)}catch(t){if(t.code==="EAGAIN"&&h<10){h++;continue}throw t}}}}(t.readSync);function patchLchmod(t){t.lchmod=function(r,i,a){t.open(r,o.O_WRONLY|o.O_SYMLINK,i,(function(r,o){if(r){if(a)a(r);return}t.fchmod(o,i,(function(r){t.close(o,(function(t){if(a)a(r||t)}))}))}))};t.lchmodSync=function(r,i){var a=t.openSync(r,o.O_WRONLY|o.O_SYMLINK,i);var u=true;var l;try{l=t.fchmodSync(a,i);u=false}finally{if(u){try{t.closeSync(a)}catch(t){}}else{t.closeSync(a)}}return l}}function patchLutimes(t){if(o.hasOwnProperty("O_SYMLINK")){t.lutimes=function(r,i,a,u){t.open(r,o.O_SYMLINK,(function(r,o){if(r){if(u)u(r);return}t.futimes(o,i,a,(function(r){t.close(o,(function(t){if(u)u(r||t)}))}))}))};t.lutimesSync=function(r,i,a){var u=t.openSync(r,o.O_SYMLINK);var l;var h=true;try{l=t.futimesSync(u,i,a);h=false}finally{if(h){try{t.closeSync(u)}catch(t){}}else{t.closeSync(u)}}return l}}else{t.lutimes=function(t,r,i,o){if(o)process.nextTick(o)};t.lutimesSync=function(){}}}function chmodFix(r){if(!r)return r;return function(i,o,a){return r.call(t,i,o,(function(t){if(chownErOk(t))t=null;if(a)a.apply(this,arguments)}))}}function chmodFixSync(r){if(!r)return r;return function(i,o){try{return r.call(t,i,o)}catch(t){if(!chownErOk(t))throw t}}}function chownFix(r){if(!r)return r;return function(i,o,a,u){return r.call(t,i,o,a,(function(t){if(chownErOk(t))t=null;if(u)u.apply(this,arguments)}))}}function chownFixSync(r){if(!r)return r;return function(i,o,a){try{return r.call(t,i,o,a)}catch(t){if(!chownErOk(t))throw t}}}function statFix(r){if(!r)return r;return function(i,o,a){if(typeof o==="function"){a=o;o=null}function callback(t,r){if(r){if(r.uid<0)r.uid+=4294967296;if(r.gid<0)r.gid+=4294967296}if(a)a.apply(this,arguments)}return o?r.call(t,i,o,callback):r.call(t,i,callback)}}function statFixSync(r){if(!r)return r;return function(i,o){var a=o?r.call(t,i,o):r.call(t,i);if(a.uid<0)a.uid+=4294967296;if(a.gid<0)a.gid+=4294967296;return a}}function chownErOk(t){if(!t)return true;if(t.code==="ENOSYS")return true;var r=!process.getuid||process.getuid()!==0;if(r){if(t.code==="EINVAL"||t.code==="EPERM")return true}return false}}},6738:t=>{"use strict";t.exports=(t,r=process.argv)=>{const i=t.startsWith("-")?"":t.length===1?"-":"--";const o=r.indexOf(i+t);const a=r.indexOf("--");return o!==-1&&(a===-1||o<a)}},426:t=>{"use strict";var r=t.exports={github:{protocols:["git","http","git+ssh","git+https","ssh","https"],domain:"github.com",treepath:"tree",filetemplate:"https://{auth@}raw.githubusercontent.com/{user}/{project}/{committish}/{path}",bugstemplate:"https://{domain}/{user}/{project}/issues",gittemplate:"git://{auth@}{domain}/{user}/{project}.git{#committish}",tarballtemplate:"https://codeload.{domain}/{user}/{project}/tar.gz/{committish}"},bitbucket:{protocols:["git+ssh","git+https","ssh","https"],domain:"bitbucket.org",treepath:"src",tarballtemplate:"https://{domain}/{user}/{project}/get/{committish}.tar.gz"},gitlab:{protocols:["git+ssh","git+https","ssh","https"],domain:"gitlab.com",treepath:"tree",bugstemplate:"https://{domain}/{user}/{project}/issues",httpstemplate:"git+https://{auth@}{domain}/{user}/{projectPath}.git{#committish}",tarballtemplate:"https://{domain}/{user}/{project}/repository/archive.tar.gz?ref={committish}",pathmatch:/^\/([^/]+)\/((?!.*(\/-\/|\/repository(\/[^/]+)?\/archive\.tar\.gz)).*?)(?:\.git|\/)?$/},gist:{protocols:["git","git+ssh","git+https","ssh","https"],domain:"gist.github.com",pathmatch:/^[/](?:([^/]+)[/])?([a-z0-9]{7,})(?:[.]git)?$/,filetemplate:"https://gist.githubusercontent.com/{user}/{project}/raw{/committish}/{path}",bugstemplate:"https://{domain}/{project}",gittemplate:"git://{domain}/{project}.git{#committish}",sshtemplate:"git@{domain}:/{project}.git{#committish}",sshurltemplate:"git+ssh://git@{domain}/{project}.git{#committish}",browsetemplate:"https://{domain}/{project}{/committish}",browsefiletemplate:"https://{domain}/{project}{/committish}{#path}",docstemplate:"https://{domain}/{project}{/committish}",httpstemplate:"git+https://{domain}/{project}.git{#committish}",shortcuttemplate:"{type}:{project}{#committish}",pathtemplate:"{project}{#committish}",tarballtemplate:"https://codeload.github.com/gist/{project}/tar.gz/{committish}",hashformat:function(t){return"file-"+formatHashFragment(t)}}};var i={sshtemplate:"git@{domain}:{user}/{project}.git{#committish}",sshurltemplate:"git+ssh://git@{domain}/{user}/{project}.git{#committish}",browsetemplate:"https://{domain}/{user}/{project}{/tree/committish}",browsefiletemplate:"https://{domain}/{user}/{project}/{treepath}/{committish}/{path}{#fragment}",docstemplate:"https://{domain}/{user}/{project}{/tree/committish}#readme",httpstemplate:"git+https://{auth@}{domain}/{user}/{project}.git{#committish}",filetemplate:"https://{domain}/{user}/{project}/raw/{committish}/{path}",shortcuttemplate:"{type}:{user}/{project}{#committish}",pathtemplate:"{user}/{project}{#committish}",pathmatch:/^[/]([^/]+)[/]([^/]+?)(?:[.]git|[/])?$/,hashformat:formatHashFragment};Object.keys(r).forEach((function(t){Object.keys(i).forEach((function(o){if(r[t][o])return;r[t][o]=i[o]}));r[t].protocols_re=RegExp("^("+r[t].protocols.map((function(t){return t.replace(/([\\+*{}()[\]$^|])/g,"\\$1")})).join("|")+"):$")}));function formatHashFragment(t){return t.toLowerCase().replace(/^\W+|\/|\W+$/g,"").replace(/\W+/g,"-")}},8982:(t,r,i)=>{"use strict";var o=i(426);var a=Object.assign||function _extend(t,r){if(r===null||typeof r!=="object")return t;const i=Object.keys(r);let o=i.length;while(o--){t[i[o]]=r[i[o]]}return t};t.exports=GitHost;function GitHost(t,r,i,a,u,l,h){var p=this;p.type=t;Object.keys(o[t]).forEach((function(r){p[r]=o[t][r]}));p.user=r;p.auth=i;p.project=a;p.committish=u;p.default=l;p.opts=h||{}}GitHost.prototype.hash=function(){return this.committish?"#"+this.committish:""};GitHost.prototype._fill=function(t,r){if(!t)return;var i=a({},r);i.path=i.path?i.path.replace(/^[/]+/g,""):"";r=a(a({},this.opts),r);var o=this;Object.keys(this).forEach((function(t){if(o[t]!=null&&i[t]==null)i[t]=o[t]}));var u=i.auth;var l=i.committish;var h=i.fragment;var p=i.path;var d=i.project;Object.keys(i).forEach((function(t){var r=i[t];if((t==="path"||t==="project")&&typeof r==="string"){i[t]=r.split("/").map((function(t){return encodeURIComponent(t)})).join("/")}else if(t!=="domain"){i[t]=encodeURIComponent(r)}}));i["auth@"]=u?u+"@":"";i["#fragment"]=h?"#"+this.hashformat(h):"";i.fragment=i.fragment?i.fragment:"";i["#path"]=p?"#"+this.hashformat(p):"";i["/path"]=i.path?"/"+i.path:"";i.projectPath=d.split("/").map(encodeURIComponent).join("/");if(r.noCommittish){i["#committish"]="";i["/tree/committish"]="";i["/committish"]="";i.committish=""}else{i["#committish"]=l?"#"+l:"";i["/tree/committish"]=i.committish?"/"+i.treepath+"/"+i.committish:"";i["/committish"]=i.committish?"/"+i.committish:"";i.committish=i.committish||"master"}var m=t;Object.keys(i).forEach((function(t){m=m.replace(new RegExp("[{]"+t+"[}]","g"),i[t])}));if(r.noGitPlus){return m.replace(/^git[+]/,"")}else{return m}};GitHost.prototype.ssh=function(t){return this._fill(this.sshtemplate,t)};GitHost.prototype.sshurl=function(t){return this._fill(this.sshurltemplate,t)};GitHost.prototype.browse=function(t,r,i){if(typeof t==="string"){if(typeof r!=="string"){i=r;r=null}return this._fill(this.browsefiletemplate,a({fragment:r,path:t},i))}else{return this._fill(this.browsetemplate,t)}};GitHost.prototype.docs=function(t){return this._fill(this.docstemplate,t)};GitHost.prototype.bugs=function(t){return this._fill(this.bugstemplate,t)};GitHost.prototype.https=function(t){return this._fill(this.httpstemplate,t)};GitHost.prototype.git=function(t){return this._fill(this.gittemplate,t)};GitHost.prototype.shortcut=function(t){return this._fill(this.shortcuttemplate,t)};GitHost.prototype.path=function(t){return this._fill(this.pathtemplate,t)};GitHost.prototype.tarball=function(t){var r=a({},t,{noCommittish:false});return this._fill(this.tarballtemplate,r)};GitHost.prototype.file=function(t,r){return this._fill(this.filetemplate,a({path:t},r))};GitHost.prototype.getDefaultRepresentation=function(){return this.default};GitHost.prototype.toString=function(t){if(this.default&&typeof this[this.default]==="function")return this[this.default](t);return this.sshurl(t)}},7562:(t,r,i)=>{"use strict";var o=i(7310);var a=i(426);var u=t.exports=i(8982);var l=i(4559);var h=new l({max:1e3});var p={"git+ssh:":"sshurl","git+https:":"https","ssh:":"sshurl","git:":"git"};function protocolToRepresentation(t){return p[t]||t.slice(0,-1)}var d={"git:":true,"https:":true,"git+https:":true,"http:":true,"git+http:":true};t.exports.fromUrl=function(t,r){if(typeof t!=="string")return;var i=t+JSON.stringify(r||{});if(!h.has(i)){h.set(i,fromUrl(t,r))}return h.get(i)};function fromUrl(t,r){if(t==null||t==="")return;var i=fixupUnqualifiedGist(isGitHubShorthand(t)?"github:"+t:t);var o=parseGitUrl(i);var l=i.match(/^([^:]+):(?:[^@]+@)?(?:([^/]*)\/)?([^#]+)/);var h=Object.keys(a).map((function(t){try{var i=a[t];var h=null;if(o.auth&&d[o.protocol]){h=o.auth}var p=o.hash?decodeURIComponent(o.hash.substr(1)):null;var m=null;var g=null;var y=null;if(l&&l[1]===t){m=l[2]&&decodeURIComponent(l[2]);g=decodeURIComponent(l[3].replace(/\.git$/,""));y="shortcut"}else{if(o.host&&o.host!==i.domain&&o.host.replace(/^www[.]/,"")!==i.domain)return;if(!i.protocols_re.test(o.protocol))return;if(!o.path)return;var v=i.pathmatch;var A=o.path.match(v);if(!A)return;if(A[1]!==null&&A[1]!==undefined){m=decodeURIComponent(A[1].replace(/^:/,""))}g=decodeURIComponent(A[2]);y=protocolToRepresentation(o.protocol)}return new u(t,m,h,g,p,y,r)}catch(t){if(t instanceof URIError){}else throw t}})).filter((function(t){return t}));if(h.length!==1)return;return h[0]}function isGitHubShorthand(t){return/^[^:@%/\s.-][^:@%/\s]*[/][^:@\s/%]+(?:#.*)?$/.test(t)}function fixupUnqualifiedGist(t){var r=o.parse(t);if(r.protocol==="gist:"&&r.host&&!r.path){return r.protocol+"/"+r.host}else{return t}}function parseGitUrl(t){var r=t.match(/^([^@]+)@([^:/]+):[/]?((?:[^/]+[/])?[^/]+?)(?:[.]git)?(#.*)?$/);if(!r){var i=o.parse(t);if(i.auth){const r=t.match(/[^@]+@[^:/]+/);if(r){var a=new o.URL(r[0]);i.auth=a.username||"";if(a.password)i.auth+=":"+a.password}}return i}return{protocol:"git+ssh:",slashes:true,auth:r[1],host:r[2],port:null,hostname:r[2],hash:r[4],search:null,query:null,pathname:"/"+r[3],path:"/"+r[3],href:"git+ssh://"+r[1]+"@"+r[2]+"/"+r[3]+(r[4]||"")}}},5091:t=>{
|
|
35
35
|
/**
|
|
36
36
|
* @preserve
|
|
37
37
|
* JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013)
|
|
@@ -79,4 +79,4 @@ var o=i(4300);var a=o.Buffer;function copyProps(t,r){for(var i in t){r[i]=t[i]}}
|
|
|
79
79
|
|
|
80
80
|
{bold Options}
|
|
81
81
|
${i.split("\n").join("\n ")}
|
|
82
|
-
`+o,0)}r.printHelp=printHelp;function resolveStringOrBooleanArgsAsync(t,r,i){const o={...r,...i};assertUnknownArgs(o,t);t=collapseAliases(o,t);return _resolveStringOrBooleanArgs(i,t)}r.resolveStringOrBooleanArgsAsync=resolveStringOrBooleanArgsAsync;function _resolveStringOrBooleanArgs(t,r){let i="";const o={};const a=Object.entries(t).filter((([,t])=>typeof t!=="string")).map((([t])=>t));for(let t=r.length-1;t>-1;t--){const u=r[t];if(u.startsWith("--")){o[u]=true}else{const l=t>0?r[t-1]:null;if(l&&a.includes(l)){o[l]=u;t--}else if(!i&&(t===r.length-1||t===0)){i=u}else{throw new Error(`Unknown argument: ${u}`)}}}return{args:o,projectRoot:i}}r._resolveStringOrBooleanArgs=_resolveStringOrBooleanArgs;function collapseAliases(t,r){const i=getAliasTuples(t);for(const[t,o]of i){r=(0,h.replaceValue)(r,t,o)}assertDuplicateArgs(r,i);return r}r.collapseAliases=collapseAliases;function assertUnknownArgs(t,r){const i=Object.keys(t);const o=r.filter((t=>!i.includes(t)&&t.startsWith("-")));if(o.length>0){throw new Error(`Unknown arguments: ${o.join(", ")}`)}}r.assertUnknownArgs=assertUnknownArgs;function getAliasTuples(t){return Object.entries(t).filter((([,t])=>typeof t==="string"))}function assertDuplicateArgs(t,r){for(const[i,o]of r){if(t.filter((t=>[i,o].includes(t))).length>1){throw new Error(`Can only provide one instance of ${i} or ${o}`)}}}r.assertDuplicateArgs=assertDuplicateArgs},6889:(t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:true});r.replaceValue=void 0;function replaceValue(t,r,i){const o=t.indexOf(r);if(o>-1){t[o]=i}return t}r.replaceValue=replaceValue},6462:(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:true});r.getConflictsForDirectory=void 0;const o=i(7147);const a=[".DS_Store","Thumbs.db",".git",".gitattributes",".gitignore",".npmignore","LICENSE","docs",".idea","npm-debug.log","yarn-debug.log","yarn-error.log"];function getConflictsForDirectory(t){return(0,o.readdirSync)(t).filter((t=>!(t.endsWith(".iml")||a.includes(t))))}r.getConflictsForDirectory=getConflictsForDirectory},2126:function(t,r,i){"use strict";var o=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(r,"__esModule",{value:true});r.withSectionLog=void 0;const a=o(i(4967));function withSectionLog(t,r){const i=(0,a.default)({text:r.pending,stream:process.stderr});i.start();return t(i).then((t=>{i.succeed(r.success);return t}),(t=>{i.fail(r.error(t));throw t}))}r.withSectionLog=withSectionLog},5075:function(t,r,i){"use strict";var o=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(r,"__esModule",{value:true});const a=o(i(961));const u=o(i(5418));const l=i(3744);const h=i(9756);async function shouldUpdate(){try{const t=await(0,u.default)(h);if(t===null||t===void 0?void 0:t.latest){l.Log.log();l.Log.log(a.default.yellow.bold(`A new version of \`${h.name}\` is available`));l.Log.log((0,a.default)`You can update by running: {cyan npm install -g ${h.name}}`);l.Log.log()}}catch{}}r["default"]=shouldUpdate},9756:module=>{module.exports=eval("require")("../package.json")},9491:t=>{"use strict";t.exports=require("assert")},4300:t=>{"use strict";t.exports=require("buffer")},2081:t=>{"use strict";t.exports=require("child_process")},2057:t=>{"use strict";t.exports=require("constants")},6113:t=>{"use strict";t.exports=require("crypto")},9523:t=>{"use strict";t.exports=require("dns")},2361:t=>{"use strict";t.exports=require("events")},7147:t=>{"use strict";t.exports=require("fs")},3685:t=>{"use strict";t.exports=require("http")},5687:t=>{"use strict";t.exports=require("https")},2037:t=>{"use strict";t.exports=require("os")},1017:t=>{"use strict";t.exports=require("path")},4521:t=>{"use strict";t.exports=require("readline")},2781:t=>{"use strict";t.exports=require("stream")},6224:t=>{"use strict";t.exports=require("tty")},7310:t=>{"use strict";t.exports=require("url")},3837:t=>{"use strict";t.exports=require("util")},1267:t=>{"use strict";t.exports=require("worker_threads")},4967:(t,r,i)=>{"use strict";i.r(r);i.d(r,{default:()=>ora,oraPromise:()=>oraPromise,spinners:()=>G});const o=require("node:process");const a=10;const wrapAnsi16=(t=0)=>r=>`[${r+t}m`;const wrapAnsi256=(t=0)=>r=>`[${38+t};5;${r}m`;const wrapAnsi16m=(t=0)=>(r,i,o)=>`[${38+t};2;${r};${i};${o}m`;const u={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};const l=Object.keys(u.modifier);const h=Object.keys(u.color);const p=Object.keys(u.bgColor);const d=[...h,...p];function assembleStyles(){const t=new Map;for(const[r,i]of Object.entries(u)){for(const[r,o]of Object.entries(i)){u[r]={open:`[${o[0]}m`,close:`[${o[1]}m`};i[r]=u[r];t.set(o[0],o[1])}Object.defineProperty(u,r,{value:i,enumerable:false})}Object.defineProperty(u,"codes",{value:t,enumerable:false});u.color.close="[39m";u.bgColor.close="[49m";u.color.ansi=wrapAnsi16();u.color.ansi256=wrapAnsi256();u.color.ansi16m=wrapAnsi16m();u.bgColor.ansi=wrapAnsi16(a);u.bgColor.ansi256=wrapAnsi256(a);u.bgColor.ansi16m=wrapAnsi16m(a);Object.defineProperties(u,{rgbToAnsi256:{value(t,r,i){if(t===r&&r===i){if(t<8){return 16}if(t>248){return 231}return Math.round((t-8)/247*24)+232}return 16+36*Math.round(t/255*5)+6*Math.round(r/255*5)+Math.round(i/255*5)},enumerable:false},hexToRgb:{value(t){const r=/[a-f\d]{6}|[a-f\d]{3}/i.exec(t.toString(16));if(!r){return[0,0,0]}let[i]=r;if(i.length===3){i=[...i].map((t=>t+t)).join("")}const o=Number.parseInt(i,16);return[o>>16&255,o>>8&255,o&255]},enumerable:false},hexToAnsi256:{value:t=>u.rgbToAnsi256(...u.hexToRgb(t)),enumerable:false},ansi256ToAnsi:{value(t){if(t<8){return 30+t}if(t<16){return 90+(t-8)}let r;let i;let o;if(t>=232){r=((t-232)*10+8)/255;i=r;o=r}else{t-=16;const a=t%36;r=Math.floor(t/36)/5;i=Math.floor(a/6)/5;o=a%6/5}const a=Math.max(r,i,o)*2;if(a===0){return 30}let u=30+(Math.round(o)<<2|Math.round(i)<<1|Math.round(r));if(a===2){u+=60}return u},enumerable:false},rgbToAnsi:{value:(t,r,i)=>u.ansi256ToAnsi(u.rgbToAnsi256(t,r,i)),enumerable:false},hexToAnsi:{value:t=>u.ansi256ToAnsi(u.hexToAnsi256(t)),enumerable:false}});return u}const m=assembleStyles();const g=m;const y=require("node:os");const v=require("node:tty");function hasFlag(t,r=(globalThis.Deno?globalThis.Deno.args:o.argv)){const i=t.startsWith("-")?"":t.length===1?"-":"--";const a=r.indexOf(i+t);const u=r.indexOf("--");return a!==-1&&(u===-1||a<u)}const{env:A}=o;let b;if(hasFlag("no-color")||hasFlag("no-colors")||hasFlag("color=false")||hasFlag("color=never")){b=0}else if(hasFlag("color")||hasFlag("colors")||hasFlag("color=true")||hasFlag("color=always")){b=1}function envForceColor(){if("FORCE_COLOR"in A){if(A.FORCE_COLOR==="true"){return 1}if(A.FORCE_COLOR==="false"){return 0}return A.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(A.FORCE_COLOR,10),3)}}function translateLevel(t){if(t===0){return false}return{level:t,hasBasic:true,has256:t>=2,has16m:t>=3}}function _supportsColor(t,{streamIsTTY:r,sniffFlags:i=true}={}){const a=envForceColor();if(a!==undefined){b=a}const u=i?b:a;if(u===0){return 0}if(i){if(hasFlag("color=16m")||hasFlag("color=full")||hasFlag("color=truecolor")){return 3}if(hasFlag("color=256")){return 2}}if("TF_BUILD"in A&&"AGENT_NAME"in A){return 1}if(t&&!r&&u===undefined){return 0}const l=u||0;if(A.TERM==="dumb"){return l}if(o.platform==="win32"){const t=y.release().split(".");if(Number(t[0])>=10&&Number(t[2])>=10586){return Number(t[2])>=14931?3:2}return 1}if("CI"in A){if("GITHUB_ACTIONS"in A||"GITEA_ACTIONS"in A){return 3}if(["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE"].some((t=>t in A))||A.CI_NAME==="codeship"){return 1}return l}if("TEAMCITY_VERSION"in A){return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(A.TEAMCITY_VERSION)?1:0}if(A.COLORTERM==="truecolor"){return 3}if(A.TERM==="xterm-kitty"){return 3}if("TERM_PROGRAM"in A){const t=Number.parseInt((A.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(A.TERM_PROGRAM){case"iTerm.app":{return t>=3?3:2}case"Apple_Terminal":{return 2}}}if(/-256(color)?$/i.test(A.TERM)){return 2}if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(A.TERM)){return 1}if("COLORTERM"in A){return 1}return l}function createSupportsColor(t,r={}){const i=_supportsColor(t,{streamIsTTY:t&&t.isTTY,...r});return translateLevel(i)}const w={stdout:createSupportsColor({isTTY:v.isatty(1)}),stderr:createSupportsColor({isTTY:v.isatty(2)})};const S=w;function stringReplaceAll(t,r,i){let o=t.indexOf(r);if(o===-1){return t}const a=r.length;let u=0;let l="";do{l+=t.slice(u,o)+r+i;u=o+a;o=t.indexOf(r,u)}while(o!==-1);l+=t.slice(u);return l}function stringEncaseCRLFWithFirstIndex(t,r,i,o){let a=0;let u="";do{const l=t[o-1]==="\r";u+=t.slice(a,l?o-1:o)+r+(l?"\r\n":"\n")+i;a=o+1;o=t.indexOf("\n",a)}while(o!==-1);u+=t.slice(a);return u}const{stdout:_,stderr:C}=S;const D=Symbol("GENERATOR");const x=Symbol("STYLER");const R=Symbol("IS_EMPTY");const O=["ansi","ansi","ansi256","ansi16m"];const k=Object.create(null);const applyOptions=(t,r={})=>{if(r.level&&!(Number.isInteger(r.level)&&r.level>=0&&r.level<=3)){throw new Error("The `level` option should be an integer from 0 to 3")}const i=_?_.level:0;t.level=r.level===undefined?i:r.level};class Chalk{constructor(t){return chalkFactory(t)}}const chalkFactory=t=>{const chalk=(...t)=>t.join(" ");applyOptions(chalk,t);Object.setPrototypeOf(chalk,createChalk.prototype);return chalk};function createChalk(t){return chalkFactory(t)}Object.setPrototypeOf(createChalk.prototype,Function.prototype);for(const[t,r]of Object.entries(g)){k[t]={get(){const i=createBuilder(this,createStyler(r.open,r.close,this[x]),this[R]);Object.defineProperty(this,t,{value:i});return i}}}k.visible={get(){const t=createBuilder(this,this[x],true);Object.defineProperty(this,"visible",{value:t});return t}};const getModelAnsi=(t,r,i,...o)=>{if(t==="rgb"){if(r==="ansi16m"){return g[i].ansi16m(...o)}if(r==="ansi256"){return g[i].ansi256(g.rgbToAnsi256(...o))}return g[i].ansi(g.rgbToAnsi(...o))}if(t==="hex"){return getModelAnsi("rgb",r,i,...g.hexToRgb(...o))}return g[i][t](...o)};const T=["rgb","hex","ansi256"];for(const t of T){k[t]={get(){const{level:r}=this;return function(...i){const o=createStyler(getModelAnsi(t,O[r],"color",...i),g.color.close,this[x]);return createBuilder(this,o,this[R])}}};const r="bg"+t[0].toUpperCase()+t.slice(1);k[r]={get(){const{level:r}=this;return function(...i){const o=createStyler(getModelAnsi(t,O[r],"bgColor",...i),g.bgColor.close,this[x]);return createBuilder(this,o,this[R])}}}}const P=Object.defineProperties((()=>{}),{...k,level:{enumerable:true,get(){return this[D].level},set(t){this[D].level=t}}});const createStyler=(t,r,i)=>{let o;let a;if(i===undefined){o=t;a=r}else{o=i.openAll+t;a=r+i.closeAll}return{open:t,close:r,openAll:o,closeAll:a,parent:i}};const createBuilder=(t,r,i)=>{const builder=(...t)=>applyStyle(builder,t.length===1?""+t[0]:t.join(" "));Object.setPrototypeOf(builder,P);builder[D]=t;builder[x]=r;builder[R]=i;return builder};const applyStyle=(t,r)=>{if(t.level<=0||!r){return t[R]?"":r}let i=t[x];if(i===undefined){return r}const{openAll:o,closeAll:a}=i;if(r.includes("")){while(i!==undefined){r=stringReplaceAll(r,i.close,i.open);i=i.parent}}const u=r.indexOf("\n");if(u!==-1){r=stringEncaseCRLFWithFirstIndex(r,a,o,u)}return o+r+a};Object.defineProperties(createChalk.prototype,k);const B=createChalk();const M=createChalk({level:C?C.level:0});const L=B;var I=i(7462);var N=i(9545);const j=I((()=>{N((()=>{o.stderr.write("[?25h")}),{alwaysLast:true})}));const $=j;let H=false;const W={};W.show=(t=o.stderr)=>{if(!t.isTTY){return}H=false;t.write("[?25h")};W.hide=(t=o.stderr)=>{if(!t.isTTY){return}$();H=true;t.write("[?25l")};W.toggle=(t,r)=>{if(t!==undefined){H=t}if(H){W.show(r)}else{W.hide(r)}};const U=W;var G=i(5549);const Y=10;const ansi_styles_wrapAnsi16=(t=0)=>r=>`[${r+t}m`;const ansi_styles_wrapAnsi256=(t=0)=>r=>`[${38+t};5;${r}m`;const ansi_styles_wrapAnsi16m=(t=0)=>(r,i,o)=>`[${38+t};2;${r};${i};${o}m`;const V={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};const q=Object.keys(V.modifier);const Q=Object.keys(V.color);const K=Object.keys(V.bgColor);const J=[...Q,...K];function ansi_styles_assembleStyles(){const t=new Map;for(const[r,i]of Object.entries(V)){for(const[r,o]of Object.entries(i)){V[r]={open:`[${o[0]}m`,close:`[${o[1]}m`};i[r]=V[r];t.set(o[0],o[1])}Object.defineProperty(V,r,{value:i,enumerable:false})}Object.defineProperty(V,"codes",{value:t,enumerable:false});V.color.close="[39m";V.bgColor.close="[49m";V.color.ansi=ansi_styles_wrapAnsi16();V.color.ansi256=ansi_styles_wrapAnsi256();V.color.ansi16m=ansi_styles_wrapAnsi16m();V.bgColor.ansi=ansi_styles_wrapAnsi16(Y);V.bgColor.ansi256=ansi_styles_wrapAnsi256(Y);V.bgColor.ansi16m=ansi_styles_wrapAnsi16m(Y);Object.defineProperties(V,{rgbToAnsi256:{value(t,r,i){if(t===r&&r===i){if(t<8){return 16}if(t>248){return 231}return Math.round((t-8)/247*24)+232}return 16+36*Math.round(t/255*5)+6*Math.round(r/255*5)+Math.round(i/255*5)},enumerable:false},hexToRgb:{value(t){const r=/[a-f\d]{6}|[a-f\d]{3}/i.exec(t.toString(16));if(!r){return[0,0,0]}let[i]=r;if(i.length===3){i=[...i].map((t=>t+t)).join("")}const o=Number.parseInt(i,16);return[o>>16&255,o>>8&255,o&255]},enumerable:false},hexToAnsi256:{value:t=>V.rgbToAnsi256(...V.hexToRgb(t)),enumerable:false},ansi256ToAnsi:{value(t){if(t<8){return 30+t}if(t<16){return 90+(t-8)}let r;let i;let o;if(t>=232){r=((t-232)*10+8)/255;i=r;o=r}else{t-=16;const a=t%36;r=Math.floor(t/36)/5;i=Math.floor(a/6)/5;o=a%6/5}const a=Math.max(r,i,o)*2;if(a===0){return 30}let u=30+(Math.round(o)<<2|Math.round(i)<<1|Math.round(r));if(a===2){u+=60}return u},enumerable:false},rgbToAnsi:{value:(t,r,i)=>V.ansi256ToAnsi(V.rgbToAnsi256(t,r,i)),enumerable:false},hexToAnsi:{value:t=>V.ansi256ToAnsi(V.hexToAnsi256(t)),enumerable:false}});return V}const z=ansi_styles_assembleStyles();const X=z;function supports_color_hasFlag(t,r=(globalThis.Deno?globalThis.Deno.args:o.argv)){const i=t.startsWith("-")?"":t.length===1?"-":"--";const a=r.indexOf(i+t);const u=r.indexOf("--");return a!==-1&&(u===-1||a<u)}const{env:Z}=o;let ee;if(supports_color_hasFlag("no-color")||supports_color_hasFlag("no-colors")||supports_color_hasFlag("color=false")||supports_color_hasFlag("color=never")){ee=0}else if(supports_color_hasFlag("color")||supports_color_hasFlag("colors")||supports_color_hasFlag("color=true")||supports_color_hasFlag("color=always")){ee=1}function supports_color_envForceColor(){if("FORCE_COLOR"in Z){if(Z.FORCE_COLOR==="true"){return 1}if(Z.FORCE_COLOR==="false"){return 0}return Z.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(Z.FORCE_COLOR,10),3)}}function supports_color_translateLevel(t){if(t===0){return false}return{level:t,hasBasic:true,has256:t>=2,has16m:t>=3}}function supports_color_supportsColor(t,{streamIsTTY:r,sniffFlags:i=true}={}){const a=supports_color_envForceColor();if(a!==undefined){ee=a}const u=i?ee:a;if(u===0){return 0}if(i){if(supports_color_hasFlag("color=16m")||supports_color_hasFlag("color=full")||supports_color_hasFlag("color=truecolor")){return 3}if(supports_color_hasFlag("color=256")){return 2}}if("TF_BUILD"in Z&&"AGENT_NAME"in Z){return 1}if(t&&!r&&u===undefined){return 0}const l=u||0;if(Z.TERM==="dumb"){return l}if(o.platform==="win32"){const t=y.release().split(".");if(Number(t[0])>=10&&Number(t[2])>=10586){return Number(t[2])>=14931?3:2}return 1}if("CI"in Z){if("GITHUB_ACTIONS"in Z||"GITEA_ACTIONS"in Z){return 3}if(["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE"].some((t=>t in Z))||Z.CI_NAME==="codeship"){return 1}return l}if("TEAMCITY_VERSION"in Z){return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(Z.TEAMCITY_VERSION)?1:0}if(Z.COLORTERM==="truecolor"){return 3}if(Z.TERM==="xterm-kitty"){return 3}if("TERM_PROGRAM"in Z){const t=Number.parseInt((Z.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(Z.TERM_PROGRAM){case"iTerm.app":{return t>=3?3:2}case"Apple_Terminal":{return 2}}}if(/-256(color)?$/i.test(Z.TERM)){return 2}if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(Z.TERM)){return 1}if("COLORTERM"in Z){return 1}return l}function supports_color_createSupportsColor(t,r={}){const i=supports_color_supportsColor(t,{streamIsTTY:t&&t.isTTY,...r});return supports_color_translateLevel(i)}const te={stdout:supports_color_createSupportsColor({isTTY:v.isatty(1)}),stderr:supports_color_createSupportsColor({isTTY:v.isatty(2)})};const re=te;function utilities_stringReplaceAll(t,r,i){let o=t.indexOf(r);if(o===-1){return t}const a=r.length;let u=0;let l="";do{l+=t.slice(u,o)+r+i;u=o+a;o=t.indexOf(r,u)}while(o!==-1);l+=t.slice(u);return l}function utilities_stringEncaseCRLFWithFirstIndex(t,r,i,o){let a=0;let u="";do{const l=t[o-1]==="\r";u+=t.slice(a,l?o-1:o)+r+(l?"\r\n":"\n")+i;a=o+1;o=t.indexOf("\n",a)}while(o!==-1);u+=t.slice(a);return u}const{stdout:ne,stderr:ie}=re;const se=Symbol("GENERATOR");const oe=Symbol("STYLER");const ae=Symbol("IS_EMPTY");const ue=["ansi","ansi","ansi256","ansi16m"];const le=Object.create(null);const source_applyOptions=(t,r={})=>{if(r.level&&!(Number.isInteger(r.level)&&r.level>=0&&r.level<=3)){throw new Error("The `level` option should be an integer from 0 to 3")}const i=ne?ne.level:0;t.level=r.level===undefined?i:r.level};class source_Chalk{constructor(t){return source_chalkFactory(t)}}const source_chalkFactory=t=>{const chalk=(...t)=>t.join(" ");source_applyOptions(chalk,t);Object.setPrototypeOf(chalk,source_createChalk.prototype);return chalk};function source_createChalk(t){return source_chalkFactory(t)}Object.setPrototypeOf(source_createChalk.prototype,Function.prototype);for(const[t,r]of Object.entries(X)){le[t]={get(){const i=source_createBuilder(this,source_createStyler(r.open,r.close,this[oe]),this[ae]);Object.defineProperty(this,t,{value:i});return i}}}le.visible={get(){const t=source_createBuilder(this,this[oe],true);Object.defineProperty(this,"visible",{value:t});return t}};const source_getModelAnsi=(t,r,i,...o)=>{if(t==="rgb"){if(r==="ansi16m"){return X[i].ansi16m(...o)}if(r==="ansi256"){return X[i].ansi256(X.rgbToAnsi256(...o))}return X[i].ansi(X.rgbToAnsi(...o))}if(t==="hex"){return source_getModelAnsi("rgb",r,i,...X.hexToRgb(...o))}return X[i][t](...o)};const ce=["rgb","hex","ansi256"];for(const t of ce){le[t]={get(){const{level:r}=this;return function(...i){const o=source_createStyler(source_getModelAnsi(t,ue[r],"color",...i),X.color.close,this[oe]);return source_createBuilder(this,o,this[ae])}}};const r="bg"+t[0].toUpperCase()+t.slice(1);le[r]={get(){const{level:r}=this;return function(...i){const o=source_createStyler(source_getModelAnsi(t,ue[r],"bgColor",...i),X.bgColor.close,this[oe]);return source_createBuilder(this,o,this[ae])}}}}const fe=Object.defineProperties((()=>{}),{...le,level:{enumerable:true,get(){return this[se].level},set(t){this[se].level=t}}});const source_createStyler=(t,r,i)=>{let o;let a;if(i===undefined){o=t;a=r}else{o=i.openAll+t;a=r+i.closeAll}return{open:t,close:r,openAll:o,closeAll:a,parent:i}};const source_createBuilder=(t,r,i)=>{const builder=(...t)=>source_applyStyle(builder,t.length===1?""+t[0]:t.join(" "));Object.setPrototypeOf(builder,fe);builder[se]=t;builder[oe]=r;builder[ae]=i;return builder};const source_applyStyle=(t,r)=>{if(t.level<=0||!r){return t[ae]?"":r}let i=t[oe];if(i===undefined){return r}const{openAll:o,closeAll:a}=i;if(r.includes("")){while(i!==undefined){r=utilities_stringReplaceAll(r,i.close,i.open);i=i.parent}}const u=r.indexOf("\n");if(u!==-1){r=utilities_stringEncaseCRLFWithFirstIndex(r,a,o,u)}return o+r+a};Object.defineProperties(source_createChalk.prototype,le);const he=source_createChalk();const pe=source_createChalk({level:ie?ie.level:0});const de=he;function isUnicodeSupported(){if(o.platform!=="win32"){return o.env.TERM!=="linux"}return Boolean(o.env.CI)||Boolean(o.env.WT_SESSION)||Boolean(o.env.TERMINUS_SUBLIME)||o.env.ConEmuTask==="{cmd::Cmder}"||o.env.TERM_PROGRAM==="Terminus-Sublime"||o.env.TERM_PROGRAM==="vscode"||o.env.TERM==="xterm-256color"||o.env.TERM==="alacritty"||o.env.TERMINAL_EMULATOR==="JetBrains-JediTerm"}const me={info:de.blue("ℹ"),success:de.green("✔"),warning:de.yellow("⚠"),error:de.red("✖")};const ge={info:de.blue("i"),success:de.green("√"),warning:de.yellow("‼"),error:de.red("×")};const ye=isUnicodeSupported()?me:ge;const ve=ye;function ansiRegex({onlyFirst:t=false}={}){const r=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(r,t?undefined:"g")}const Ae=ansiRegex();function stripAnsi(t){if(typeof t!=="string"){throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``)}return t.replace(Ae,"")}var be=i(1205);function isInteractive({stream:t=process.stdout}={}){return Boolean(t&&t.isTTY&&process.env.TERM!=="dumb"&&!("CI"in process.env))}function is_unicode_supported_isUnicodeSupported(){if(o.platform!=="win32"){return o.env.TERM!=="linux"}return Boolean(o.env.CI)||Boolean(o.env.WT_SESSION)||Boolean(o.env.TERMINUS_SUBLIME)||o.env.ConEmuTask==="{cmd::Cmder}"||o.env.TERM_PROGRAM==="Terminus-Sublime"||o.env.TERM_PROGRAM==="vscode"||o.env.TERM==="xterm-256color"||o.env.TERM==="alacritty"||o.env.TERMINAL_EMULATOR==="JetBrains-JediTerm"}const we=require("node:readline");var Ee=i(2167);const Se=3;class StdinDiscarder{#e=0;#t=new Ee.BufferListStream;#r;#n;constructor(){this.#t.pipe(o.stdout);const t=this;this.#r=function(r,i,...a){const{stdin:u}=o;if(t.#e>0||u.emit===t.#r){if(r==="keypress"){return}if(r==="data"&&i.includes(Se)){o.emit("SIGINT")}Reflect.apply(t.#r,this,[r,i,...a])}else{Reflect.apply(o.stdin.emit,this,[r,i,...a])}}}start(){this.#e++;if(this.#e===1){this._realStart()}}stop(){if(this.#e<=0){throw new Error("`stop` called more times than `start`")}this.#e--;if(this.#e===0){this._realStop()}}_realStart(){if(o.platform==="win32"){return}this.#n=we.createInterface({input:o.stdin,output:this.#t});this.#n.on("SIGINT",(()=>{if(o.listenerCount("SIGINT")===0){o.emit("SIGINT")}else{this.#n.close();o.kill(o.pid,"SIGINT")}}))}_realStop(){if(o.platform==="win32"){return}this.#n.close();this.#n=undefined}}const _e=new StdinDiscarder;const Ce=_e;class Ora{#i=0;#s=false;#o=0;#a=0;#u;#l;#c;#f;#h;#p;#d;#m;#g;#y;#v;color;constructor(t){if(typeof t==="string"){t={text:t}}this.#u={color:"cyan",stream:o.stderr,discardStdin:true,hideCursor:true,...t};this.color=this.#u.color;this.spinner=this.#u.spinner;this.#h=this.#u.interval;this.#c=this.#u.stream;this.#p=typeof this.#u.isEnabled==="boolean"?this.#u.isEnabled:isInteractive({stream:this.#c});this.#d=typeof this.#u.isSilent==="boolean"?this.#u.isSilent:false;this.text=this.#u.text;this.prefixText=this.#u.prefixText;this.suffixText=this.#u.suffixText;this.indent=this.#u.indent;if(o.env.NODE_ENV==="test"){this._stream=this.#c;this._isEnabled=this.#p;Object.defineProperty(this,"_linesToClear",{get(){return this.#i},set(t){this.#i=t}});Object.defineProperty(this,"_frameIndex",{get(){return this.#a}});Object.defineProperty(this,"_lineCount",{get(){return this.#o}})}}get indent(){return this.#m}set indent(t=0){if(!(t>=0&&Number.isInteger(t))){throw new Error("The `indent` option must be an integer from 0 and up")}this.#m=t;this.updateLineCount()}get interval(){return this.#h||this.#l.interval||100}get spinner(){return this.#l}set spinner(t){this.#a=0;this.#h=undefined;if(typeof t==="object"){if(t.frames===undefined){throw new Error("The given spinner must have a `frames` property")}this.#l=t}else if(!is_unicode_supported_isUnicodeSupported()){this.#l=G.line}else if(t===undefined){this.#l=G.dots}else if(t!=="default"&&G[t]){this.#l=G[t]}else{throw new Error(`There is no built-in spinner named '${t}'. See https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json for a full list.`)}}get text(){return this.#g}set text(t){this.#g=t||"";this.updateLineCount()}get prefixText(){return this.#y}set prefixText(t){this.#y=t||"";this.updateLineCount()}get suffixText(){return this.#v}set suffixText(t){this.#v=t||"";this.updateLineCount()}get isSpinning(){return this.#f!==undefined}getFullPrefixText(t=this.#y,r=" "){if(typeof t==="string"&&t!==""){return t+r}if(typeof t==="function"){return t()+r}return""}getFullSuffixText(t=this.#v,r=" "){if(typeof t==="string"&&t!==""){return r+t}if(typeof t==="function"){return r+t()}return""}updateLineCount(){const t=this.#c.columns||80;const r=this.getFullPrefixText(this.#y,"-");const i=this.getFullSuffixText(this.#v,"-");const o=" ".repeat(this.#m)+r+"--"+this.#g+"--"+i;this.#o=0;for(const r of stripAnsi(o).split("\n")){this.#o+=Math.max(1,Math.ceil(be(r)/t))}}get isEnabled(){return this.#p&&!this.#d}set isEnabled(t){if(typeof t!=="boolean"){throw new TypeError("The `isEnabled` option must be a boolean")}this.#p=t}get isSilent(){return this.#d}set isSilent(t){if(typeof t!=="boolean"){throw new TypeError("The `isSilent` option must be a boolean")}this.#d=t}frame(){const{frames:t}=this.#l;let r=t[this.#a];if(this.color){r=L[this.color](r)}this.#a=++this.#a%t.length;const i=typeof this.#y==="string"&&this.#y!==""?this.#y+" ":"";const o=typeof this.text==="string"?" "+this.text:"";const a=typeof this.#v==="string"&&this.#v!==""?" "+this.#v:"";return i+r+o+a}clear(){if(!this.#p||!this.#c.isTTY){return this}this.#c.cursorTo(0);for(let t=0;t<this.#i;t++){if(t>0){this.#c.moveCursor(0,-1)}this.#c.clearLine(1)}if(this.#m||this.lastIndent!==this.#m){this.#c.cursorTo(this.#m)}this.lastIndent=this.#m;this.#i=0;return this}render(){if(this.#d){return this}this.clear();this.#c.write(this.frame());this.#i=this.#o;return this}start(t){if(t){this.text=t}if(this.#d){return this}if(!this.#p){if(this.text){this.#c.write(`- ${this.text}\n`)}return this}if(this.isSpinning){return this}if(this.#u.hideCursor){U.hide(this.#c)}if(this.#u.discardStdin&&o.stdin.isTTY){this.#s=true;Ce.start()}this.render();this.#f=setInterval(this.render.bind(this),this.interval);return this}stop(){if(!this.#p){return this}clearInterval(this.#f);this.#f=undefined;this.#a=0;this.clear();if(this.#u.hideCursor){U.show(this.#c)}if(this.#u.discardStdin&&o.stdin.isTTY&&this.#s){Ce.stop();this.#s=false}return this}succeed(t){return this.stopAndPersist({symbol:ve.success,text:t})}fail(t){return this.stopAndPersist({symbol:ve.error,text:t})}warn(t){return this.stopAndPersist({symbol:ve.warning,text:t})}info(t){return this.stopAndPersist({symbol:ve.info,text:t})}stopAndPersist(t={}){if(this.#d){return this}const r=t.prefixText||this.#y;const i=this.getFullPrefixText(r," ");const o=t.symbol||" ";const a=t.text||this.text;const u=typeof a==="string"?" "+a:"";const l=t.suffixText!==undefined?t.suffixText:this.#v;const h=this.getFullSuffixText(l," ");const p=i+o+u+h+"\n";this.stop();this.#c.write(p);return this}}function ora(t){return new Ora(t)}async function oraPromise(t,r){const i=typeof t==="function";const o=typeof t.then==="function";if(!i&&!o){throw new TypeError("Parameter `action` must be a Function or a Promise")}const{successText:a,failText:u}=typeof r==="object"?r:{successText:undefined,failText:undefined};const l=ora(r).start();try{const r=i?t(l):t;const o=await r;l.succeed(a===undefined?undefined:typeof a==="string"?a:a(o));return o}catch(t){l.fail(u===undefined?undefined:typeof u==="string"?u:u(t));throw t}}},3300:t=>{"use strict";t.exports=JSON.parse('{"dots":{"interval":80,"frames":["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},"dots2":{"interval":80,"frames":["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},"dots3":{"interval":80,"frames":["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},"dots4":{"interval":80,"frames":["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},"dots5":{"interval":80,"frames":["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},"dots6":{"interval":80,"frames":["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},"dots7":{"interval":80,"frames":["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},"dots8":{"interval":80,"frames":["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},"dots9":{"interval":80,"frames":["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},"dots10":{"interval":80,"frames":["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},"dots11":{"interval":100,"frames":["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},"dots12":{"interval":80,"frames":["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},"dots13":{"interval":80,"frames":["⣼","⣹","⢻","⠿","⡟","⣏","⣧","⣶"]},"dots8Bit":{"interval":80,"frames":["⠀","⠁","⠂","⠃","⠄","⠅","⠆","⠇","⡀","⡁","⡂","⡃","⡄","⡅","⡆","⡇","⠈","⠉","⠊","⠋","⠌","⠍","⠎","⠏","⡈","⡉","⡊","⡋","⡌","⡍","⡎","⡏","⠐","⠑","⠒","⠓","⠔","⠕","⠖","⠗","⡐","⡑","⡒","⡓","⡔","⡕","⡖","⡗","⠘","⠙","⠚","⠛","⠜","⠝","⠞","⠟","⡘","⡙","⡚","⡛","⡜","⡝","⡞","⡟","⠠","⠡","⠢","⠣","⠤","⠥","⠦","⠧","⡠","⡡","⡢","⡣","⡤","⡥","⡦","⡧","⠨","⠩","⠪","⠫","⠬","⠭","⠮","⠯","⡨","⡩","⡪","⡫","⡬","⡭","⡮","⡯","⠰","⠱","⠲","⠳","⠴","⠵","⠶","⠷","⡰","⡱","⡲","⡳","⡴","⡵","⡶","⡷","⠸","⠹","⠺","⠻","⠼","⠽","⠾","⠿","⡸","⡹","⡺","⡻","⡼","⡽","⡾","⡿","⢀","⢁","⢂","⢃","⢄","⢅","⢆","⢇","⣀","⣁","⣂","⣃","⣄","⣅","⣆","⣇","⢈","⢉","⢊","⢋","⢌","⢍","⢎","⢏","⣈","⣉","⣊","⣋","⣌","⣍","⣎","⣏","⢐","⢑","⢒","⢓","⢔","⢕","⢖","⢗","⣐","⣑","⣒","⣓","⣔","⣕","⣖","⣗","⢘","⢙","⢚","⢛","⢜","⢝","⢞","⢟","⣘","⣙","⣚","⣛","⣜","⣝","⣞","⣟","⢠","⢡","⢢","⢣","⢤","⢥","⢦","⢧","⣠","⣡","⣢","⣣","⣤","⣥","⣦","⣧","⢨","⢩","⢪","⢫","⢬","⢭","⢮","⢯","⣨","⣩","⣪","⣫","⣬","⣭","⣮","⣯","⢰","⢱","⢲","⢳","⢴","⢵","⢶","⢷","⣰","⣱","⣲","⣳","⣴","⣵","⣶","⣷","⢸","⢹","⢺","⢻","⢼","⢽","⢾","⢿","⣸","⣹","⣺","⣻","⣼","⣽","⣾","⣿"]},"sand":{"interval":80,"frames":["⠁","⠂","⠄","⡀","⡈","⡐","⡠","⣀","⣁","⣂","⣄","⣌","⣔","⣤","⣥","⣦","⣮","⣶","⣷","⣿","⡿","⠿","⢟","⠟","⡛","⠛","⠫","⢋","⠋","⠍","⡉","⠉","⠑","⠡","⢁"]},"line":{"interval":130,"frames":["-","\\\\","|","/"]},"line2":{"interval":100,"frames":["⠂","-","–","—","–","-"]},"pipe":{"interval":100,"frames":["┤","┘","┴","└","├","┌","┬","┐"]},"simpleDots":{"interval":400,"frames":[". ",".. ","..."," "]},"simpleDotsScrolling":{"interval":200,"frames":[". ",".. ","..."," .."," ."," "]},"star":{"interval":70,"frames":["✶","✸","✹","✺","✹","✷"]},"star2":{"interval":80,"frames":["+","x","*"]},"flip":{"interval":70,"frames":["_","_","_","-","`","`","\'","´","-","_","_","_"]},"hamburger":{"interval":100,"frames":["☱","☲","☴"]},"growVertical":{"interval":120,"frames":["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},"growHorizontal":{"interval":120,"frames":["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},"balloon":{"interval":140,"frames":[" ",".","o","O","@","*"," "]},"balloon2":{"interval":120,"frames":[".","o","O","°","O","o","."]},"noise":{"interval":100,"frames":["▓","▒","░"]},"bounce":{"interval":120,"frames":["⠁","⠂","⠄","⠂"]},"boxBounce":{"interval":120,"frames":["▖","▘","▝","▗"]},"boxBounce2":{"interval":100,"frames":["▌","▀","▐","▄"]},"triangle":{"interval":50,"frames":["◢","◣","◤","◥"]},"binary":{"interval":80,"frames":["010010","001100","100101","111010","111101","010111","101011","111000","110011","110101"]},"arc":{"interval":100,"frames":["◜","◠","◝","◞","◡","◟"]},"circle":{"interval":120,"frames":["◡","⊙","◠"]},"squareCorners":{"interval":180,"frames":["◰","◳","◲","◱"]},"circleQuarters":{"interval":120,"frames":["◴","◷","◶","◵"]},"circleHalves":{"interval":50,"frames":["◐","◓","◑","◒"]},"squish":{"interval":100,"frames":["╫","╪"]},"toggle":{"interval":250,"frames":["⊶","⊷"]},"toggle2":{"interval":80,"frames":["▫","▪"]},"toggle3":{"interval":120,"frames":["□","■"]},"toggle4":{"interval":100,"frames":["■","□","▪","▫"]},"toggle5":{"interval":100,"frames":["▮","▯"]},"toggle6":{"interval":300,"frames":["ဝ","၀"]},"toggle7":{"interval":80,"frames":["⦾","⦿"]},"toggle8":{"interval":100,"frames":["◍","◌"]},"toggle9":{"interval":100,"frames":["◉","◎"]},"toggle10":{"interval":100,"frames":["㊂","㊀","㊁"]},"toggle11":{"interval":50,"frames":["⧇","⧆"]},"toggle12":{"interval":120,"frames":["☗","☖"]},"toggle13":{"interval":80,"frames":["=","*","-"]},"arrow":{"interval":100,"frames":["←","↖","↑","↗","→","↘","↓","↙"]},"arrow2":{"interval":80,"frames":["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},"arrow3":{"interval":120,"frames":["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},"bouncingBar":{"interval":80,"frames":["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},"bouncingBall":{"interval":80,"frames":["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},"smiley":{"interval":200,"frames":["😄 ","😝 "]},"monkey":{"interval":300,"frames":["🙈 ","🙈 ","🙉 ","🙊 "]},"hearts":{"interval":100,"frames":["💛 ","💙 ","💜 ","💚 ","❤️ "]},"clock":{"interval":100,"frames":["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},"earth":{"interval":180,"frames":["🌍 ","🌎 ","🌏 "]},"material":{"interval":17,"frames":["█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███████▁▁▁▁▁▁▁▁▁▁▁▁▁","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","██████████▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","█████████████▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁██████████████▁▁▁▁","▁▁▁██████████████▁▁▁","▁▁▁▁█████████████▁▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁▁▁████████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","██████▁▁▁▁▁▁▁▁▁▁▁▁▁█","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁▁█████████████▁▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁▁███████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁▁█████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"]},"moon":{"interval":80,"frames":["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},"runner":{"interval":140,"frames":["🚶 ","🏃 "]},"pong":{"interval":80,"frames":["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},"shark":{"interval":120,"frames":["▐|\\\\____________▌","▐_|\\\\___________▌","▐__|\\\\__________▌","▐___|\\\\_________▌","▐____|\\\\________▌","▐_____|\\\\_______▌","▐______|\\\\______▌","▐_______|\\\\_____▌","▐________|\\\\____▌","▐_________|\\\\___▌","▐__________|\\\\__▌","▐___________|\\\\_▌","▐____________|\\\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},"dqpb":{"interval":100,"frames":["d","q","p","b"]},"weather":{"interval":100,"frames":["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},"christmas":{"interval":400,"frames":["🌲","🎄"]},"grenade":{"interval":80,"frames":["، ","′ "," ´ "," ‾ "," ⸌"," ⸊"," |"," ⁎"," ⁕"," ෴ "," ⁓"," "," "," "]},"point":{"interval":125,"frames":["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},"layer":{"interval":150,"frames":["-","=","≡"]},"betaWave":{"interval":80,"frames":["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]},"fingerDance":{"interval":160,"frames":["🤘 ","🤟 ","🖖 ","✋ ","🤚 ","👆 "]},"fistBump":{"interval":80,"frames":["🤜 🤛 ","🤜 🤛 ","🤜 🤛 "," 🤜 🤛 "," 🤜🤛 "," 🤜✨🤛 ","🤜 ✨ 🤛 "]},"soccerHeader":{"interval":80,"frames":[" 🧑⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 "]},"mindblown":{"interval":160,"frames":["😐 ","😐 ","😮 ","😮 ","😦 ","😦 ","😧 ","😧 ","🤯 ","💥 ","✨ "," "," "," "]},"speaker":{"interval":160,"frames":["🔈 ","🔉 ","🔊 ","🔉 "]},"orangePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 "]},"bluePulse":{"interval":100,"frames":["🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"orangeBluePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 ","🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"timeTravel":{"interval":100,"frames":["🕛 ","🕚 ","🕙 ","🕘 ","🕗 ","🕖 ","🕕 ","🕔 ","🕓 ","🕒 ","🕑 ","🕐 "]},"aesthetic":{"interval":80,"frames":["▰▱▱▱▱▱▱","▰▰▱▱▱▱▱","▰▰▰▱▱▱▱","▰▰▰▰▱▱▱","▰▰▰▰▰▱▱","▰▰▰▰▰▰▱","▰▰▰▰▰▰▰","▰▱▱▱▱▱▱"]},"dwarfFortress":{"interval":80,"frames":[" ██████£££ ","☺██████£££ ","☺██████£££ ","☺▓█████£££ ","☺▓█████£££ ","☺▒█████£££ ","☺▒█████£££ ","☺░█████£££ ","☺░█████£££ ","☺ █████£££ "," ☺█████£££ "," ☺█████£££ "," ☺▓████£££ "," ☺▓████£££ "," ☺▒████£££ "," ☺▒████£££ "," ☺░████£££ "," ☺░████£££ "," ☺ ████£££ "," ☺████£££ "," ☺████£££ "," ☺▓███£££ "," ☺▓███£££ "," ☺▒███£££ "," ☺▒███£££ "," ☺░███£££ "," ☺░███£££ "," ☺ ███£££ "," ☺███£££ "," ☺███£££ "," ☺▓██£££ "," ☺▓██£££ "," ☺▒██£££ "," ☺▒██£££ "," ☺░██£££ "," ☺░██£££ "," ☺ ██£££ "," ☺██£££ "," ☺██£££ "," ☺▓█£££ "," ☺▓█£££ "," ☺▒█£££ "," ☺▒█£££ "," ☺░█£££ "," ☺░█£££ "," ☺ █£££ "," ☺█£££ "," ☺█£££ "," ☺▓£££ "," ☺▓£££ "," ☺▒£££ "," ☺▒£££ "," ☺░£££ "," ☺░£££ "," ☺ £££ "," ☺£££ "," ☺£££ "," ☺▓££ "," ☺▓££ "," ☺▒££ "," ☺▒££ "," ☺░££ "," ☺░££ "," ☺ ££ "," ☺££ "," ☺££ "," ☺▓£ "," ☺▓£ "," ☺▒£ "," ☺▒£ "," ☺░£ "," ☺░£ "," ☺ £ "," ☺£ "," ☺£ "," ☺▓ "," ☺▓ "," ☺▒ "," ☺▒ "," ☺░ "," ☺░ "," ☺ "," ☺ &"," ☺ ☼&"," ☺ ☼ &"," ☺☼ &"," ☺☼ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & ","‼ & "," & "," & "," & ░ "," & ▒ "," & ▓ "," & £ "," & ░£ "," & ▒£ "," & ▓£ "," & ££ "," & ░££ "," & ▒££ ","& ▓££ ","& £££ "," ░£££ "," ▒£££ "," ▓£££ "," █£££ "," ░█£££ "," ▒█£££ "," ▓█£££ "," ██£££ "," ░██£££ "," ▒██£££ "," ▓██£££ "," ███£££ "," ░███£££ "," ▒███£££ "," ▓███£££ "," ████£££ "," ░████£££ "," ▒████£££ "," ▓████£££ "," █████£££ "," ░█████£££ "," ▒█████£££ "," ▓█████£££ "," ██████£££ "," ██████£££ "]}}')},2587:t=>{"use strict";t.exports=JSON.parse('["assert","buffer","child_process","cluster","console","constants","crypto","dgram","dns","domain","events","fs","http","https","module","net","os","path","process","punycode","querystring","readline","repl","stream","string_decoder","timers","tls","tty","url","util","v8","vm","zlib"]')},4147:t=>{"use strict";t.exports={i8:"1.0.52"}}};var __webpack_module_cache__={};function __nccwpck_require__(t){var r=__webpack_module_cache__[t];if(r!==undefined){return r.exports}var i=__webpack_module_cache__[t]={id:t,loaded:false,exports:{}};var o=true;try{__webpack_modules__[t].call(i.exports,i,i.exports,__nccwpck_require__);o=false}finally{if(o)delete __webpack_module_cache__[t]}i.loaded=true;return i.exports}(()=>{__nccwpck_require__.d=(t,r)=>{for(var i in r){if(__nccwpck_require__.o(r,i)&&!__nccwpck_require__.o(t,i)){Object.defineProperty(t,i,{enumerable:true,get:r[i]})}}}})();(()=>{__nccwpck_require__.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r)})();(()=>{__nccwpck_require__.r=t=>{if(typeof Symbol!=="undefined"&&Symbol.toStringTag){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"})}Object.defineProperty(t,"__esModule",{value:true})}})();(()=>{__nccwpck_require__.nmd=t=>{t.paths=[];if(!t.children)t.children=[];return t}})();if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var __webpack_exports__={};(()=>{"use strict";__nccwpck_require__(9436)})();module.exports=__webpack_exports__})();
|
|
82
|
+
`+o,0)}r.printHelp=printHelp;function resolveStringOrBooleanArgsAsync(t,r,i){const o={...r,...i};assertUnknownArgs(o,t);t=collapseAliases(o,t);return _resolveStringOrBooleanArgs(i,t)}r.resolveStringOrBooleanArgsAsync=resolveStringOrBooleanArgsAsync;function _resolveStringOrBooleanArgs(t,r){let i="";const o={};const a=Object.entries(t).filter((([,t])=>typeof t!=="string")).map((([t])=>t));for(let t=r.length-1;t>-1;t--){const u=r[t];if(u.startsWith("--")){o[u]=true}else{const l=t>0?r[t-1]:null;if(l&&a.includes(l)){o[l]=u;t--}else if(!i&&(t===r.length-1||t===0)){i=u}else{throw new Error(`Unknown argument: ${u}`)}}}return{args:o,projectRoot:i}}r._resolveStringOrBooleanArgs=_resolveStringOrBooleanArgs;function collapseAliases(t,r){const i=getAliasTuples(t);for(const[t,o]of i){r=(0,h.replaceValue)(r,t,o)}assertDuplicateArgs(r,i);return r}r.collapseAliases=collapseAliases;function assertUnknownArgs(t,r){const i=Object.keys(t);const o=r.filter((t=>!i.includes(t)&&t.startsWith("-")));if(o.length>0){throw new Error(`Unknown arguments: ${o.join(", ")}`)}}r.assertUnknownArgs=assertUnknownArgs;function getAliasTuples(t){return Object.entries(t).filter((([,t])=>typeof t==="string"))}function assertDuplicateArgs(t,r){for(const[i,o]of r){if(t.filter((t=>[i,o].includes(t))).length>1){throw new Error(`Can only provide one instance of ${i} or ${o}`)}}}r.assertDuplicateArgs=assertDuplicateArgs},6889:(t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:true});r.replaceValue=void 0;function replaceValue(t,r,i){const o=t.indexOf(r);if(o>-1){t[o]=i}return t}r.replaceValue=replaceValue},6462:(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:true});r.getConflictsForDirectory=void 0;const o=i(7147);const a=[".DS_Store","Thumbs.db",".git",".gitattributes",".gitignore",".npmignore","LICENSE","docs",".idea","npm-debug.log","yarn-debug.log","yarn-error.log"];function getConflictsForDirectory(t){return(0,o.readdirSync)(t).filter((t=>!(t.endsWith(".iml")||a.includes(t))))}r.getConflictsForDirectory=getConflictsForDirectory},2126:function(t,r,i){"use strict";var o=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(r,"__esModule",{value:true});r.withSectionLog=void 0;const a=o(i(4967));function withSectionLog(t,r){const i=(0,a.default)({text:r.pending,stream:process.stderr});i.start();return t(i).then((t=>{i.succeed(r.success);return t}),(t=>{i.fail(r.error(t));throw t}))}r.withSectionLog=withSectionLog},5075:function(t,r,i){"use strict";var o=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(r,"__esModule",{value:true});const a=o(i(961));const u=o(i(5418));const l=i(3744);const h=i(9756);async function shouldUpdate(){try{const t=await(0,u.default)(h);if(t===null||t===void 0?void 0:t.latest){l.Log.log();l.Log.log(a.default.yellow.bold(`A new version of \`${h.name}\` is available`));l.Log.log((0,a.default)`You can update by running: {cyan npm install -g ${h.name}}`);l.Log.log()}}catch{}}r["default"]=shouldUpdate},9756:module=>{module.exports=eval("require")("../package.json")},9491:t=>{"use strict";t.exports=require("assert")},4300:t=>{"use strict";t.exports=require("buffer")},2081:t=>{"use strict";t.exports=require("child_process")},2057:t=>{"use strict";t.exports=require("constants")},6113:t=>{"use strict";t.exports=require("crypto")},9523:t=>{"use strict";t.exports=require("dns")},2361:t=>{"use strict";t.exports=require("events")},7147:t=>{"use strict";t.exports=require("fs")},3685:t=>{"use strict";t.exports=require("http")},5687:t=>{"use strict";t.exports=require("https")},2037:t=>{"use strict";t.exports=require("os")},1017:t=>{"use strict";t.exports=require("path")},4521:t=>{"use strict";t.exports=require("readline")},2781:t=>{"use strict";t.exports=require("stream")},6224:t=>{"use strict";t.exports=require("tty")},7310:t=>{"use strict";t.exports=require("url")},3837:t=>{"use strict";t.exports=require("util")},1267:t=>{"use strict";t.exports=require("worker_threads")},4967:(t,r,i)=>{"use strict";i.r(r);i.d(r,{default:()=>ora,oraPromise:()=>oraPromise,spinners:()=>G});const o=require("node:process");const a=10;const wrapAnsi16=(t=0)=>r=>`[${r+t}m`;const wrapAnsi256=(t=0)=>r=>`[${38+t};5;${r}m`;const wrapAnsi16m=(t=0)=>(r,i,o)=>`[${38+t};2;${r};${i};${o}m`;const u={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};const l=Object.keys(u.modifier);const h=Object.keys(u.color);const p=Object.keys(u.bgColor);const d=[...h,...p];function assembleStyles(){const t=new Map;for(const[r,i]of Object.entries(u)){for(const[r,o]of Object.entries(i)){u[r]={open:`[${o[0]}m`,close:`[${o[1]}m`};i[r]=u[r];t.set(o[0],o[1])}Object.defineProperty(u,r,{value:i,enumerable:false})}Object.defineProperty(u,"codes",{value:t,enumerable:false});u.color.close="[39m";u.bgColor.close="[49m";u.color.ansi=wrapAnsi16();u.color.ansi256=wrapAnsi256();u.color.ansi16m=wrapAnsi16m();u.bgColor.ansi=wrapAnsi16(a);u.bgColor.ansi256=wrapAnsi256(a);u.bgColor.ansi16m=wrapAnsi16m(a);Object.defineProperties(u,{rgbToAnsi256:{value(t,r,i){if(t===r&&r===i){if(t<8){return 16}if(t>248){return 231}return Math.round((t-8)/247*24)+232}return 16+36*Math.round(t/255*5)+6*Math.round(r/255*5)+Math.round(i/255*5)},enumerable:false},hexToRgb:{value(t){const r=/[a-f\d]{6}|[a-f\d]{3}/i.exec(t.toString(16));if(!r){return[0,0,0]}let[i]=r;if(i.length===3){i=[...i].map((t=>t+t)).join("")}const o=Number.parseInt(i,16);return[o>>16&255,o>>8&255,o&255]},enumerable:false},hexToAnsi256:{value:t=>u.rgbToAnsi256(...u.hexToRgb(t)),enumerable:false},ansi256ToAnsi:{value(t){if(t<8){return 30+t}if(t<16){return 90+(t-8)}let r;let i;let o;if(t>=232){r=((t-232)*10+8)/255;i=r;o=r}else{t-=16;const a=t%36;r=Math.floor(t/36)/5;i=Math.floor(a/6)/5;o=a%6/5}const a=Math.max(r,i,o)*2;if(a===0){return 30}let u=30+(Math.round(o)<<2|Math.round(i)<<1|Math.round(r));if(a===2){u+=60}return u},enumerable:false},rgbToAnsi:{value:(t,r,i)=>u.ansi256ToAnsi(u.rgbToAnsi256(t,r,i)),enumerable:false},hexToAnsi:{value:t=>u.ansi256ToAnsi(u.hexToAnsi256(t)),enumerable:false}});return u}const m=assembleStyles();const g=m;const y=require("node:os");const v=require("node:tty");function hasFlag(t,r=(globalThis.Deno?globalThis.Deno.args:o.argv)){const i=t.startsWith("-")?"":t.length===1?"-":"--";const a=r.indexOf(i+t);const u=r.indexOf("--");return a!==-1&&(u===-1||a<u)}const{env:A}=o;let b;if(hasFlag("no-color")||hasFlag("no-colors")||hasFlag("color=false")||hasFlag("color=never")){b=0}else if(hasFlag("color")||hasFlag("colors")||hasFlag("color=true")||hasFlag("color=always")){b=1}function envForceColor(){if("FORCE_COLOR"in A){if(A.FORCE_COLOR==="true"){return 1}if(A.FORCE_COLOR==="false"){return 0}return A.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(A.FORCE_COLOR,10),3)}}function translateLevel(t){if(t===0){return false}return{level:t,hasBasic:true,has256:t>=2,has16m:t>=3}}function _supportsColor(t,{streamIsTTY:r,sniffFlags:i=true}={}){const a=envForceColor();if(a!==undefined){b=a}const u=i?b:a;if(u===0){return 0}if(i){if(hasFlag("color=16m")||hasFlag("color=full")||hasFlag("color=truecolor")){return 3}if(hasFlag("color=256")){return 2}}if("TF_BUILD"in A&&"AGENT_NAME"in A){return 1}if(t&&!r&&u===undefined){return 0}const l=u||0;if(A.TERM==="dumb"){return l}if(o.platform==="win32"){const t=y.release().split(".");if(Number(t[0])>=10&&Number(t[2])>=10586){return Number(t[2])>=14931?3:2}return 1}if("CI"in A){if("GITHUB_ACTIONS"in A||"GITEA_ACTIONS"in A){return 3}if(["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE"].some((t=>t in A))||A.CI_NAME==="codeship"){return 1}return l}if("TEAMCITY_VERSION"in A){return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(A.TEAMCITY_VERSION)?1:0}if(A.COLORTERM==="truecolor"){return 3}if(A.TERM==="xterm-kitty"){return 3}if("TERM_PROGRAM"in A){const t=Number.parseInt((A.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(A.TERM_PROGRAM){case"iTerm.app":{return t>=3?3:2}case"Apple_Terminal":{return 2}}}if(/-256(color)?$/i.test(A.TERM)){return 2}if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(A.TERM)){return 1}if("COLORTERM"in A){return 1}return l}function createSupportsColor(t,r={}){const i=_supportsColor(t,{streamIsTTY:t&&t.isTTY,...r});return translateLevel(i)}const w={stdout:createSupportsColor({isTTY:v.isatty(1)}),stderr:createSupportsColor({isTTY:v.isatty(2)})};const S=w;function stringReplaceAll(t,r,i){let o=t.indexOf(r);if(o===-1){return t}const a=r.length;let u=0;let l="";do{l+=t.slice(u,o)+r+i;u=o+a;o=t.indexOf(r,u)}while(o!==-1);l+=t.slice(u);return l}function stringEncaseCRLFWithFirstIndex(t,r,i,o){let a=0;let u="";do{const l=t[o-1]==="\r";u+=t.slice(a,l?o-1:o)+r+(l?"\r\n":"\n")+i;a=o+1;o=t.indexOf("\n",a)}while(o!==-1);u+=t.slice(a);return u}const{stdout:_,stderr:C}=S;const D=Symbol("GENERATOR");const x=Symbol("STYLER");const R=Symbol("IS_EMPTY");const O=["ansi","ansi","ansi256","ansi16m"];const k=Object.create(null);const applyOptions=(t,r={})=>{if(r.level&&!(Number.isInteger(r.level)&&r.level>=0&&r.level<=3)){throw new Error("The `level` option should be an integer from 0 to 3")}const i=_?_.level:0;t.level=r.level===undefined?i:r.level};class Chalk{constructor(t){return chalkFactory(t)}}const chalkFactory=t=>{const chalk=(...t)=>t.join(" ");applyOptions(chalk,t);Object.setPrototypeOf(chalk,createChalk.prototype);return chalk};function createChalk(t){return chalkFactory(t)}Object.setPrototypeOf(createChalk.prototype,Function.prototype);for(const[t,r]of Object.entries(g)){k[t]={get(){const i=createBuilder(this,createStyler(r.open,r.close,this[x]),this[R]);Object.defineProperty(this,t,{value:i});return i}}}k.visible={get(){const t=createBuilder(this,this[x],true);Object.defineProperty(this,"visible",{value:t});return t}};const getModelAnsi=(t,r,i,...o)=>{if(t==="rgb"){if(r==="ansi16m"){return g[i].ansi16m(...o)}if(r==="ansi256"){return g[i].ansi256(g.rgbToAnsi256(...o))}return g[i].ansi(g.rgbToAnsi(...o))}if(t==="hex"){return getModelAnsi("rgb",r,i,...g.hexToRgb(...o))}return g[i][t](...o)};const T=["rgb","hex","ansi256"];for(const t of T){k[t]={get(){const{level:r}=this;return function(...i){const o=createStyler(getModelAnsi(t,O[r],"color",...i),g.color.close,this[x]);return createBuilder(this,o,this[R])}}};const r="bg"+t[0].toUpperCase()+t.slice(1);k[r]={get(){const{level:r}=this;return function(...i){const o=createStyler(getModelAnsi(t,O[r],"bgColor",...i),g.bgColor.close,this[x]);return createBuilder(this,o,this[R])}}}}const P=Object.defineProperties((()=>{}),{...k,level:{enumerable:true,get(){return this[D].level},set(t){this[D].level=t}}});const createStyler=(t,r,i)=>{let o;let a;if(i===undefined){o=t;a=r}else{o=i.openAll+t;a=r+i.closeAll}return{open:t,close:r,openAll:o,closeAll:a,parent:i}};const createBuilder=(t,r,i)=>{const builder=(...t)=>applyStyle(builder,t.length===1?""+t[0]:t.join(" "));Object.setPrototypeOf(builder,P);builder[D]=t;builder[x]=r;builder[R]=i;return builder};const applyStyle=(t,r)=>{if(t.level<=0||!r){return t[R]?"":r}let i=t[x];if(i===undefined){return r}const{openAll:o,closeAll:a}=i;if(r.includes("")){while(i!==undefined){r=stringReplaceAll(r,i.close,i.open);i=i.parent}}const u=r.indexOf("\n");if(u!==-1){r=stringEncaseCRLFWithFirstIndex(r,a,o,u)}return o+r+a};Object.defineProperties(createChalk.prototype,k);const B=createChalk();const M=createChalk({level:C?C.level:0});const L=B;var I=i(7462);var N=i(9545);const j=I((()=>{N((()=>{o.stderr.write("[?25h")}),{alwaysLast:true})}));const $=j;let H=false;const W={};W.show=(t=o.stderr)=>{if(!t.isTTY){return}H=false;t.write("[?25h")};W.hide=(t=o.stderr)=>{if(!t.isTTY){return}$();H=true;t.write("[?25l")};W.toggle=(t,r)=>{if(t!==undefined){H=t}if(H){W.show(r)}else{W.hide(r)}};const U=W;var G=i(5549);const Y=10;const ansi_styles_wrapAnsi16=(t=0)=>r=>`[${r+t}m`;const ansi_styles_wrapAnsi256=(t=0)=>r=>`[${38+t};5;${r}m`;const ansi_styles_wrapAnsi16m=(t=0)=>(r,i,o)=>`[${38+t};2;${r};${i};${o}m`;const V={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};const q=Object.keys(V.modifier);const Q=Object.keys(V.color);const K=Object.keys(V.bgColor);const J=[...Q,...K];function ansi_styles_assembleStyles(){const t=new Map;for(const[r,i]of Object.entries(V)){for(const[r,o]of Object.entries(i)){V[r]={open:`[${o[0]}m`,close:`[${o[1]}m`};i[r]=V[r];t.set(o[0],o[1])}Object.defineProperty(V,r,{value:i,enumerable:false})}Object.defineProperty(V,"codes",{value:t,enumerable:false});V.color.close="[39m";V.bgColor.close="[49m";V.color.ansi=ansi_styles_wrapAnsi16();V.color.ansi256=ansi_styles_wrapAnsi256();V.color.ansi16m=ansi_styles_wrapAnsi16m();V.bgColor.ansi=ansi_styles_wrapAnsi16(Y);V.bgColor.ansi256=ansi_styles_wrapAnsi256(Y);V.bgColor.ansi16m=ansi_styles_wrapAnsi16m(Y);Object.defineProperties(V,{rgbToAnsi256:{value(t,r,i){if(t===r&&r===i){if(t<8){return 16}if(t>248){return 231}return Math.round((t-8)/247*24)+232}return 16+36*Math.round(t/255*5)+6*Math.round(r/255*5)+Math.round(i/255*5)},enumerable:false},hexToRgb:{value(t){const r=/[a-f\d]{6}|[a-f\d]{3}/i.exec(t.toString(16));if(!r){return[0,0,0]}let[i]=r;if(i.length===3){i=[...i].map((t=>t+t)).join("")}const o=Number.parseInt(i,16);return[o>>16&255,o>>8&255,o&255]},enumerable:false},hexToAnsi256:{value:t=>V.rgbToAnsi256(...V.hexToRgb(t)),enumerable:false},ansi256ToAnsi:{value(t){if(t<8){return 30+t}if(t<16){return 90+(t-8)}let r;let i;let o;if(t>=232){r=((t-232)*10+8)/255;i=r;o=r}else{t-=16;const a=t%36;r=Math.floor(t/36)/5;i=Math.floor(a/6)/5;o=a%6/5}const a=Math.max(r,i,o)*2;if(a===0){return 30}let u=30+(Math.round(o)<<2|Math.round(i)<<1|Math.round(r));if(a===2){u+=60}return u},enumerable:false},rgbToAnsi:{value:(t,r,i)=>V.ansi256ToAnsi(V.rgbToAnsi256(t,r,i)),enumerable:false},hexToAnsi:{value:t=>V.ansi256ToAnsi(V.hexToAnsi256(t)),enumerable:false}});return V}const z=ansi_styles_assembleStyles();const X=z;function supports_color_hasFlag(t,r=(globalThis.Deno?globalThis.Deno.args:o.argv)){const i=t.startsWith("-")?"":t.length===1?"-":"--";const a=r.indexOf(i+t);const u=r.indexOf("--");return a!==-1&&(u===-1||a<u)}const{env:Z}=o;let ee;if(supports_color_hasFlag("no-color")||supports_color_hasFlag("no-colors")||supports_color_hasFlag("color=false")||supports_color_hasFlag("color=never")){ee=0}else if(supports_color_hasFlag("color")||supports_color_hasFlag("colors")||supports_color_hasFlag("color=true")||supports_color_hasFlag("color=always")){ee=1}function supports_color_envForceColor(){if("FORCE_COLOR"in Z){if(Z.FORCE_COLOR==="true"){return 1}if(Z.FORCE_COLOR==="false"){return 0}return Z.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(Z.FORCE_COLOR,10),3)}}function supports_color_translateLevel(t){if(t===0){return false}return{level:t,hasBasic:true,has256:t>=2,has16m:t>=3}}function supports_color_supportsColor(t,{streamIsTTY:r,sniffFlags:i=true}={}){const a=supports_color_envForceColor();if(a!==undefined){ee=a}const u=i?ee:a;if(u===0){return 0}if(i){if(supports_color_hasFlag("color=16m")||supports_color_hasFlag("color=full")||supports_color_hasFlag("color=truecolor")){return 3}if(supports_color_hasFlag("color=256")){return 2}}if("TF_BUILD"in Z&&"AGENT_NAME"in Z){return 1}if(t&&!r&&u===undefined){return 0}const l=u||0;if(Z.TERM==="dumb"){return l}if(o.platform==="win32"){const t=y.release().split(".");if(Number(t[0])>=10&&Number(t[2])>=10586){return Number(t[2])>=14931?3:2}return 1}if("CI"in Z){if("GITHUB_ACTIONS"in Z||"GITEA_ACTIONS"in Z){return 3}if(["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE"].some((t=>t in Z))||Z.CI_NAME==="codeship"){return 1}return l}if("TEAMCITY_VERSION"in Z){return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(Z.TEAMCITY_VERSION)?1:0}if(Z.COLORTERM==="truecolor"){return 3}if(Z.TERM==="xterm-kitty"){return 3}if("TERM_PROGRAM"in Z){const t=Number.parseInt((Z.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(Z.TERM_PROGRAM){case"iTerm.app":{return t>=3?3:2}case"Apple_Terminal":{return 2}}}if(/-256(color)?$/i.test(Z.TERM)){return 2}if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(Z.TERM)){return 1}if("COLORTERM"in Z){return 1}return l}function supports_color_createSupportsColor(t,r={}){const i=supports_color_supportsColor(t,{streamIsTTY:t&&t.isTTY,...r});return supports_color_translateLevel(i)}const te={stdout:supports_color_createSupportsColor({isTTY:v.isatty(1)}),stderr:supports_color_createSupportsColor({isTTY:v.isatty(2)})};const re=te;function utilities_stringReplaceAll(t,r,i){let o=t.indexOf(r);if(o===-1){return t}const a=r.length;let u=0;let l="";do{l+=t.slice(u,o)+r+i;u=o+a;o=t.indexOf(r,u)}while(o!==-1);l+=t.slice(u);return l}function utilities_stringEncaseCRLFWithFirstIndex(t,r,i,o){let a=0;let u="";do{const l=t[o-1]==="\r";u+=t.slice(a,l?o-1:o)+r+(l?"\r\n":"\n")+i;a=o+1;o=t.indexOf("\n",a)}while(o!==-1);u+=t.slice(a);return u}const{stdout:ne,stderr:ie}=re;const se=Symbol("GENERATOR");const oe=Symbol("STYLER");const ae=Symbol("IS_EMPTY");const ue=["ansi","ansi","ansi256","ansi16m"];const le=Object.create(null);const source_applyOptions=(t,r={})=>{if(r.level&&!(Number.isInteger(r.level)&&r.level>=0&&r.level<=3)){throw new Error("The `level` option should be an integer from 0 to 3")}const i=ne?ne.level:0;t.level=r.level===undefined?i:r.level};class source_Chalk{constructor(t){return source_chalkFactory(t)}}const source_chalkFactory=t=>{const chalk=(...t)=>t.join(" ");source_applyOptions(chalk,t);Object.setPrototypeOf(chalk,source_createChalk.prototype);return chalk};function source_createChalk(t){return source_chalkFactory(t)}Object.setPrototypeOf(source_createChalk.prototype,Function.prototype);for(const[t,r]of Object.entries(X)){le[t]={get(){const i=source_createBuilder(this,source_createStyler(r.open,r.close,this[oe]),this[ae]);Object.defineProperty(this,t,{value:i});return i}}}le.visible={get(){const t=source_createBuilder(this,this[oe],true);Object.defineProperty(this,"visible",{value:t});return t}};const source_getModelAnsi=(t,r,i,...o)=>{if(t==="rgb"){if(r==="ansi16m"){return X[i].ansi16m(...o)}if(r==="ansi256"){return X[i].ansi256(X.rgbToAnsi256(...o))}return X[i].ansi(X.rgbToAnsi(...o))}if(t==="hex"){return source_getModelAnsi("rgb",r,i,...X.hexToRgb(...o))}return X[i][t](...o)};const ce=["rgb","hex","ansi256"];for(const t of ce){le[t]={get(){const{level:r}=this;return function(...i){const o=source_createStyler(source_getModelAnsi(t,ue[r],"color",...i),X.color.close,this[oe]);return source_createBuilder(this,o,this[ae])}}};const r="bg"+t[0].toUpperCase()+t.slice(1);le[r]={get(){const{level:r}=this;return function(...i){const o=source_createStyler(source_getModelAnsi(t,ue[r],"bgColor",...i),X.bgColor.close,this[oe]);return source_createBuilder(this,o,this[ae])}}}}const fe=Object.defineProperties((()=>{}),{...le,level:{enumerable:true,get(){return this[se].level},set(t){this[se].level=t}}});const source_createStyler=(t,r,i)=>{let o;let a;if(i===undefined){o=t;a=r}else{o=i.openAll+t;a=r+i.closeAll}return{open:t,close:r,openAll:o,closeAll:a,parent:i}};const source_createBuilder=(t,r,i)=>{const builder=(...t)=>source_applyStyle(builder,t.length===1?""+t[0]:t.join(" "));Object.setPrototypeOf(builder,fe);builder[se]=t;builder[oe]=r;builder[ae]=i;return builder};const source_applyStyle=(t,r)=>{if(t.level<=0||!r){return t[ae]?"":r}let i=t[oe];if(i===undefined){return r}const{openAll:o,closeAll:a}=i;if(r.includes("")){while(i!==undefined){r=utilities_stringReplaceAll(r,i.close,i.open);i=i.parent}}const u=r.indexOf("\n");if(u!==-1){r=utilities_stringEncaseCRLFWithFirstIndex(r,a,o,u)}return o+r+a};Object.defineProperties(source_createChalk.prototype,le);const he=source_createChalk();const pe=source_createChalk({level:ie?ie.level:0});const de=he;function isUnicodeSupported(){if(o.platform!=="win32"){return o.env.TERM!=="linux"}return Boolean(o.env.CI)||Boolean(o.env.WT_SESSION)||Boolean(o.env.TERMINUS_SUBLIME)||o.env.ConEmuTask==="{cmd::Cmder}"||o.env.TERM_PROGRAM==="Terminus-Sublime"||o.env.TERM_PROGRAM==="vscode"||o.env.TERM==="xterm-256color"||o.env.TERM==="alacritty"||o.env.TERMINAL_EMULATOR==="JetBrains-JediTerm"}const me={info:de.blue("ℹ"),success:de.green("✔"),warning:de.yellow("⚠"),error:de.red("✖")};const ge={info:de.blue("i"),success:de.green("√"),warning:de.yellow("‼"),error:de.red("×")};const ye=isUnicodeSupported()?me:ge;const ve=ye;function ansiRegex({onlyFirst:t=false}={}){const r=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(r,t?undefined:"g")}const Ae=ansiRegex();function stripAnsi(t){if(typeof t!=="string"){throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``)}return t.replace(Ae,"")}var be=i(1205);function isInteractive({stream:t=process.stdout}={}){return Boolean(t&&t.isTTY&&process.env.TERM!=="dumb"&&!("CI"in process.env))}function is_unicode_supported_isUnicodeSupported(){if(o.platform!=="win32"){return o.env.TERM!=="linux"}return Boolean(o.env.CI)||Boolean(o.env.WT_SESSION)||Boolean(o.env.TERMINUS_SUBLIME)||o.env.ConEmuTask==="{cmd::Cmder}"||o.env.TERM_PROGRAM==="Terminus-Sublime"||o.env.TERM_PROGRAM==="vscode"||o.env.TERM==="xterm-256color"||o.env.TERM==="alacritty"||o.env.TERMINAL_EMULATOR==="JetBrains-JediTerm"}const we=require("node:readline");var Ee=i(2167);const Se=3;class StdinDiscarder{#e=0;#t=new Ee.BufferListStream;#r;#n;constructor(){this.#t.pipe(o.stdout);const t=this;this.#r=function(r,i,...a){const{stdin:u}=o;if(t.#e>0||u.emit===t.#r){if(r==="keypress"){return}if(r==="data"&&i.includes(Se)){o.emit("SIGINT")}Reflect.apply(t.#r,this,[r,i,...a])}else{Reflect.apply(o.stdin.emit,this,[r,i,...a])}}}start(){this.#e++;if(this.#e===1){this._realStart()}}stop(){if(this.#e<=0){throw new Error("`stop` called more times than `start`")}this.#e--;if(this.#e===0){this._realStop()}}_realStart(){if(o.platform==="win32"){return}this.#n=we.createInterface({input:o.stdin,output:this.#t});this.#n.on("SIGINT",(()=>{if(o.listenerCount("SIGINT")===0){o.emit("SIGINT")}else{this.#n.close();o.kill(o.pid,"SIGINT")}}))}_realStop(){if(o.platform==="win32"){return}this.#n.close();this.#n=undefined}}const _e=new StdinDiscarder;const Ce=_e;class Ora{#i=0;#s=false;#o=0;#a=0;#u;#l;#c;#f;#h;#p;#d;#m;#g;#y;#v;color;constructor(t){if(typeof t==="string"){t={text:t}}this.#u={color:"cyan",stream:o.stderr,discardStdin:true,hideCursor:true,...t};this.color=this.#u.color;this.spinner=this.#u.spinner;this.#h=this.#u.interval;this.#c=this.#u.stream;this.#p=typeof this.#u.isEnabled==="boolean"?this.#u.isEnabled:isInteractive({stream:this.#c});this.#d=typeof this.#u.isSilent==="boolean"?this.#u.isSilent:false;this.text=this.#u.text;this.prefixText=this.#u.prefixText;this.suffixText=this.#u.suffixText;this.indent=this.#u.indent;if(o.env.NODE_ENV==="test"){this._stream=this.#c;this._isEnabled=this.#p;Object.defineProperty(this,"_linesToClear",{get(){return this.#i},set(t){this.#i=t}});Object.defineProperty(this,"_frameIndex",{get(){return this.#a}});Object.defineProperty(this,"_lineCount",{get(){return this.#o}})}}get indent(){return this.#m}set indent(t=0){if(!(t>=0&&Number.isInteger(t))){throw new Error("The `indent` option must be an integer from 0 and up")}this.#m=t;this.updateLineCount()}get interval(){return this.#h||this.#l.interval||100}get spinner(){return this.#l}set spinner(t){this.#a=0;this.#h=undefined;if(typeof t==="object"){if(t.frames===undefined){throw new Error("The given spinner must have a `frames` property")}this.#l=t}else if(!is_unicode_supported_isUnicodeSupported()){this.#l=G.line}else if(t===undefined){this.#l=G.dots}else if(t!=="default"&&G[t]){this.#l=G[t]}else{throw new Error(`There is no built-in spinner named '${t}'. See https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json for a full list.`)}}get text(){return this.#g}set text(t){this.#g=t||"";this.updateLineCount()}get prefixText(){return this.#y}set prefixText(t){this.#y=t||"";this.updateLineCount()}get suffixText(){return this.#v}set suffixText(t){this.#v=t||"";this.updateLineCount()}get isSpinning(){return this.#f!==undefined}getFullPrefixText(t=this.#y,r=" "){if(typeof t==="string"&&t!==""){return t+r}if(typeof t==="function"){return t()+r}return""}getFullSuffixText(t=this.#v,r=" "){if(typeof t==="string"&&t!==""){return r+t}if(typeof t==="function"){return r+t()}return""}updateLineCount(){const t=this.#c.columns||80;const r=this.getFullPrefixText(this.#y,"-");const i=this.getFullSuffixText(this.#v,"-");const o=" ".repeat(this.#m)+r+"--"+this.#g+"--"+i;this.#o=0;for(const r of stripAnsi(o).split("\n")){this.#o+=Math.max(1,Math.ceil(be(r)/t))}}get isEnabled(){return this.#p&&!this.#d}set isEnabled(t){if(typeof t!=="boolean"){throw new TypeError("The `isEnabled` option must be a boolean")}this.#p=t}get isSilent(){return this.#d}set isSilent(t){if(typeof t!=="boolean"){throw new TypeError("The `isSilent` option must be a boolean")}this.#d=t}frame(){const{frames:t}=this.#l;let r=t[this.#a];if(this.color){r=L[this.color](r)}this.#a=++this.#a%t.length;const i=typeof this.#y==="string"&&this.#y!==""?this.#y+" ":"";const o=typeof this.text==="string"?" "+this.text:"";const a=typeof this.#v==="string"&&this.#v!==""?" "+this.#v:"";return i+r+o+a}clear(){if(!this.#p||!this.#c.isTTY){return this}this.#c.cursorTo(0);for(let t=0;t<this.#i;t++){if(t>0){this.#c.moveCursor(0,-1)}this.#c.clearLine(1)}if(this.#m||this.lastIndent!==this.#m){this.#c.cursorTo(this.#m)}this.lastIndent=this.#m;this.#i=0;return this}render(){if(this.#d){return this}this.clear();this.#c.write(this.frame());this.#i=this.#o;return this}start(t){if(t){this.text=t}if(this.#d){return this}if(!this.#p){if(this.text){this.#c.write(`- ${this.text}\n`)}return this}if(this.isSpinning){return this}if(this.#u.hideCursor){U.hide(this.#c)}if(this.#u.discardStdin&&o.stdin.isTTY){this.#s=true;Ce.start()}this.render();this.#f=setInterval(this.render.bind(this),this.interval);return this}stop(){if(!this.#p){return this}clearInterval(this.#f);this.#f=undefined;this.#a=0;this.clear();if(this.#u.hideCursor){U.show(this.#c)}if(this.#u.discardStdin&&o.stdin.isTTY&&this.#s){Ce.stop();this.#s=false}return this}succeed(t){return this.stopAndPersist({symbol:ve.success,text:t})}fail(t){return this.stopAndPersist({symbol:ve.error,text:t})}warn(t){return this.stopAndPersist({symbol:ve.warning,text:t})}info(t){return this.stopAndPersist({symbol:ve.info,text:t})}stopAndPersist(t={}){if(this.#d){return this}const r=t.prefixText||this.#y;const i=this.getFullPrefixText(r," ");const o=t.symbol||" ";const a=t.text||this.text;const u=typeof a==="string"?" "+a:"";const l=t.suffixText!==undefined?t.suffixText:this.#v;const h=this.getFullSuffixText(l," ");const p=i+o+u+h+"\n";this.stop();this.#c.write(p);return this}}function ora(t){return new Ora(t)}async function oraPromise(t,r){const i=typeof t==="function";const o=typeof t.then==="function";if(!i&&!o){throw new TypeError("Parameter `action` must be a Function or a Promise")}const{successText:a,failText:u}=typeof r==="object"?r:{successText:undefined,failText:undefined};const l=ora(r).start();try{const r=i?t(l):t;const o=await r;l.succeed(a===undefined?undefined:typeof a==="string"?a:a(o));return o}catch(t){l.fail(u===undefined?undefined:typeof u==="string"?u:u(t));throw t}}},3300:t=>{"use strict";t.exports=JSON.parse('{"dots":{"interval":80,"frames":["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},"dots2":{"interval":80,"frames":["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},"dots3":{"interval":80,"frames":["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},"dots4":{"interval":80,"frames":["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},"dots5":{"interval":80,"frames":["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},"dots6":{"interval":80,"frames":["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},"dots7":{"interval":80,"frames":["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},"dots8":{"interval":80,"frames":["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},"dots9":{"interval":80,"frames":["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},"dots10":{"interval":80,"frames":["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},"dots11":{"interval":100,"frames":["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},"dots12":{"interval":80,"frames":["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},"dots13":{"interval":80,"frames":["⣼","⣹","⢻","⠿","⡟","⣏","⣧","⣶"]},"dots8Bit":{"interval":80,"frames":["⠀","⠁","⠂","⠃","⠄","⠅","⠆","⠇","⡀","⡁","⡂","⡃","⡄","⡅","⡆","⡇","⠈","⠉","⠊","⠋","⠌","⠍","⠎","⠏","⡈","⡉","⡊","⡋","⡌","⡍","⡎","⡏","⠐","⠑","⠒","⠓","⠔","⠕","⠖","⠗","⡐","⡑","⡒","⡓","⡔","⡕","⡖","⡗","⠘","⠙","⠚","⠛","⠜","⠝","⠞","⠟","⡘","⡙","⡚","⡛","⡜","⡝","⡞","⡟","⠠","⠡","⠢","⠣","⠤","⠥","⠦","⠧","⡠","⡡","⡢","⡣","⡤","⡥","⡦","⡧","⠨","⠩","⠪","⠫","⠬","⠭","⠮","⠯","⡨","⡩","⡪","⡫","⡬","⡭","⡮","⡯","⠰","⠱","⠲","⠳","⠴","⠵","⠶","⠷","⡰","⡱","⡲","⡳","⡴","⡵","⡶","⡷","⠸","⠹","⠺","⠻","⠼","⠽","⠾","⠿","⡸","⡹","⡺","⡻","⡼","⡽","⡾","⡿","⢀","⢁","⢂","⢃","⢄","⢅","⢆","⢇","⣀","⣁","⣂","⣃","⣄","⣅","⣆","⣇","⢈","⢉","⢊","⢋","⢌","⢍","⢎","⢏","⣈","⣉","⣊","⣋","⣌","⣍","⣎","⣏","⢐","⢑","⢒","⢓","⢔","⢕","⢖","⢗","⣐","⣑","⣒","⣓","⣔","⣕","⣖","⣗","⢘","⢙","⢚","⢛","⢜","⢝","⢞","⢟","⣘","⣙","⣚","⣛","⣜","⣝","⣞","⣟","⢠","⢡","⢢","⢣","⢤","⢥","⢦","⢧","⣠","⣡","⣢","⣣","⣤","⣥","⣦","⣧","⢨","⢩","⢪","⢫","⢬","⢭","⢮","⢯","⣨","⣩","⣪","⣫","⣬","⣭","⣮","⣯","⢰","⢱","⢲","⢳","⢴","⢵","⢶","⢷","⣰","⣱","⣲","⣳","⣴","⣵","⣶","⣷","⢸","⢹","⢺","⢻","⢼","⢽","⢾","⢿","⣸","⣹","⣺","⣻","⣼","⣽","⣾","⣿"]},"sand":{"interval":80,"frames":["⠁","⠂","⠄","⡀","⡈","⡐","⡠","⣀","⣁","⣂","⣄","⣌","⣔","⣤","⣥","⣦","⣮","⣶","⣷","⣿","⡿","⠿","⢟","⠟","⡛","⠛","⠫","⢋","⠋","⠍","⡉","⠉","⠑","⠡","⢁"]},"line":{"interval":130,"frames":["-","\\\\","|","/"]},"line2":{"interval":100,"frames":["⠂","-","–","—","–","-"]},"pipe":{"interval":100,"frames":["┤","┘","┴","└","├","┌","┬","┐"]},"simpleDots":{"interval":400,"frames":[". ",".. ","..."," "]},"simpleDotsScrolling":{"interval":200,"frames":[". ",".. ","..."," .."," ."," "]},"star":{"interval":70,"frames":["✶","✸","✹","✺","✹","✷"]},"star2":{"interval":80,"frames":["+","x","*"]},"flip":{"interval":70,"frames":["_","_","_","-","`","`","\'","´","-","_","_","_"]},"hamburger":{"interval":100,"frames":["☱","☲","☴"]},"growVertical":{"interval":120,"frames":["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},"growHorizontal":{"interval":120,"frames":["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},"balloon":{"interval":140,"frames":[" ",".","o","O","@","*"," "]},"balloon2":{"interval":120,"frames":[".","o","O","°","O","o","."]},"noise":{"interval":100,"frames":["▓","▒","░"]},"bounce":{"interval":120,"frames":["⠁","⠂","⠄","⠂"]},"boxBounce":{"interval":120,"frames":["▖","▘","▝","▗"]},"boxBounce2":{"interval":100,"frames":["▌","▀","▐","▄"]},"triangle":{"interval":50,"frames":["◢","◣","◤","◥"]},"binary":{"interval":80,"frames":["010010","001100","100101","111010","111101","010111","101011","111000","110011","110101"]},"arc":{"interval":100,"frames":["◜","◠","◝","◞","◡","◟"]},"circle":{"interval":120,"frames":["◡","⊙","◠"]},"squareCorners":{"interval":180,"frames":["◰","◳","◲","◱"]},"circleQuarters":{"interval":120,"frames":["◴","◷","◶","◵"]},"circleHalves":{"interval":50,"frames":["◐","◓","◑","◒"]},"squish":{"interval":100,"frames":["╫","╪"]},"toggle":{"interval":250,"frames":["⊶","⊷"]},"toggle2":{"interval":80,"frames":["▫","▪"]},"toggle3":{"interval":120,"frames":["□","■"]},"toggle4":{"interval":100,"frames":["■","□","▪","▫"]},"toggle5":{"interval":100,"frames":["▮","▯"]},"toggle6":{"interval":300,"frames":["ဝ","၀"]},"toggle7":{"interval":80,"frames":["⦾","⦿"]},"toggle8":{"interval":100,"frames":["◍","◌"]},"toggle9":{"interval":100,"frames":["◉","◎"]},"toggle10":{"interval":100,"frames":["㊂","㊀","㊁"]},"toggle11":{"interval":50,"frames":["⧇","⧆"]},"toggle12":{"interval":120,"frames":["☗","☖"]},"toggle13":{"interval":80,"frames":["=","*","-"]},"arrow":{"interval":100,"frames":["←","↖","↑","↗","→","↘","↓","↙"]},"arrow2":{"interval":80,"frames":["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},"arrow3":{"interval":120,"frames":["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},"bouncingBar":{"interval":80,"frames":["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},"bouncingBall":{"interval":80,"frames":["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},"smiley":{"interval":200,"frames":["😄 ","😝 "]},"monkey":{"interval":300,"frames":["🙈 ","🙈 ","🙉 ","🙊 "]},"hearts":{"interval":100,"frames":["💛 ","💙 ","💜 ","💚 ","❤️ "]},"clock":{"interval":100,"frames":["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},"earth":{"interval":180,"frames":["🌍 ","🌎 ","🌏 "]},"material":{"interval":17,"frames":["█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███████▁▁▁▁▁▁▁▁▁▁▁▁▁","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","██████████▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","█████████████▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁██████████████▁▁▁▁","▁▁▁██████████████▁▁▁","▁▁▁▁█████████████▁▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁▁▁████████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","██████▁▁▁▁▁▁▁▁▁▁▁▁▁█","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁▁█████████████▁▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁▁███████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁▁█████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"]},"moon":{"interval":80,"frames":["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},"runner":{"interval":140,"frames":["🚶 ","🏃 "]},"pong":{"interval":80,"frames":["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},"shark":{"interval":120,"frames":["▐|\\\\____________▌","▐_|\\\\___________▌","▐__|\\\\__________▌","▐___|\\\\_________▌","▐____|\\\\________▌","▐_____|\\\\_______▌","▐______|\\\\______▌","▐_______|\\\\_____▌","▐________|\\\\____▌","▐_________|\\\\___▌","▐__________|\\\\__▌","▐___________|\\\\_▌","▐____________|\\\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},"dqpb":{"interval":100,"frames":["d","q","p","b"]},"weather":{"interval":100,"frames":["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},"christmas":{"interval":400,"frames":["🌲","🎄"]},"grenade":{"interval":80,"frames":["، ","′ "," ´ "," ‾ "," ⸌"," ⸊"," |"," ⁎"," ⁕"," ෴ "," ⁓"," "," "," "]},"point":{"interval":125,"frames":["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},"layer":{"interval":150,"frames":["-","=","≡"]},"betaWave":{"interval":80,"frames":["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]},"fingerDance":{"interval":160,"frames":["🤘 ","🤟 ","🖖 ","✋ ","🤚 ","👆 "]},"fistBump":{"interval":80,"frames":["🤜 🤛 ","🤜 🤛 ","🤜 🤛 "," 🤜 🤛 "," 🤜🤛 "," 🤜✨🤛 ","🤜 ✨ 🤛 "]},"soccerHeader":{"interval":80,"frames":[" 🧑⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 "]},"mindblown":{"interval":160,"frames":["😐 ","😐 ","😮 ","😮 ","😦 ","😦 ","😧 ","😧 ","🤯 ","💥 ","✨ "," "," "," "]},"speaker":{"interval":160,"frames":["🔈 ","🔉 ","🔊 ","🔉 "]},"orangePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 "]},"bluePulse":{"interval":100,"frames":["🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"orangeBluePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 ","🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"timeTravel":{"interval":100,"frames":["🕛 ","🕚 ","🕙 ","🕘 ","🕗 ","🕖 ","🕕 ","🕔 ","🕓 ","🕒 ","🕑 ","🕐 "]},"aesthetic":{"interval":80,"frames":["▰▱▱▱▱▱▱","▰▰▱▱▱▱▱","▰▰▰▱▱▱▱","▰▰▰▰▱▱▱","▰▰▰▰▰▱▱","▰▰▰▰▰▰▱","▰▰▰▰▰▰▰","▰▱▱▱▱▱▱"]},"dwarfFortress":{"interval":80,"frames":[" ██████£££ ","☺██████£££ ","☺██████£££ ","☺▓█████£££ ","☺▓█████£££ ","☺▒█████£££ ","☺▒█████£££ ","☺░█████£££ ","☺░█████£££ ","☺ █████£££ "," ☺█████£££ "," ☺█████£££ "," ☺▓████£££ "," ☺▓████£££ "," ☺▒████£££ "," ☺▒████£££ "," ☺░████£££ "," ☺░████£££ "," ☺ ████£££ "," ☺████£££ "," ☺████£££ "," ☺▓███£££ "," ☺▓███£££ "," ☺▒███£££ "," ☺▒███£££ "," ☺░███£££ "," ☺░███£££ "," ☺ ███£££ "," ☺███£££ "," ☺███£££ "," ☺▓██£££ "," ☺▓██£££ "," ☺▒██£££ "," ☺▒██£££ "," ☺░██£££ "," ☺░██£££ "," ☺ ██£££ "," ☺██£££ "," ☺██£££ "," ☺▓█£££ "," ☺▓█£££ "," ☺▒█£££ "," ☺▒█£££ "," ☺░█£££ "," ☺░█£££ "," ☺ █£££ "," ☺█£££ "," ☺█£££ "," ☺▓£££ "," ☺▓£££ "," ☺▒£££ "," ☺▒£££ "," ☺░£££ "," ☺░£££ "," ☺ £££ "," ☺£££ "," ☺£££ "," ☺▓££ "," ☺▓££ "," ☺▒££ "," ☺▒££ "," ☺░££ "," ☺░££ "," ☺ ££ "," ☺££ "," ☺££ "," ☺▓£ "," ☺▓£ "," ☺▒£ "," ☺▒£ "," ☺░£ "," ☺░£ "," ☺ £ "," ☺£ "," ☺£ "," ☺▓ "," ☺▓ "," ☺▒ "," ☺▒ "," ☺░ "," ☺░ "," ☺ "," ☺ &"," ☺ ☼&"," ☺ ☼ &"," ☺☼ &"," ☺☼ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & ","‼ & "," & "," & "," & ░ "," & ▒ "," & ▓ "," & £ "," & ░£ "," & ▒£ "," & ▓£ "," & ££ "," & ░££ "," & ▒££ ","& ▓££ ","& £££ "," ░£££ "," ▒£££ "," ▓£££ "," █£££ "," ░█£££ "," ▒█£££ "," ▓█£££ "," ██£££ "," ░██£££ "," ▒██£££ "," ▓██£££ "," ███£££ "," ░███£££ "," ▒███£££ "," ▓███£££ "," ████£££ "," ░████£££ "," ▒████£££ "," ▓████£££ "," █████£££ "," ░█████£££ "," ▒█████£££ "," ▓█████£££ "," ██████£££ "," ██████£££ "]}}')},2587:t=>{"use strict";t.exports=JSON.parse('["assert","buffer","child_process","cluster","console","constants","crypto","dgram","dns","domain","events","fs","http","https","module","net","os","path","process","punycode","querystring","readline","repl","stream","string_decoder","timers","tls","tty","url","util","v8","vm","zlib"]')},4147:t=>{"use strict";t.exports={i8:"1.0.57"}}};var __webpack_module_cache__={};function __nccwpck_require__(t){var r=__webpack_module_cache__[t];if(r!==undefined){return r.exports}var i=__webpack_module_cache__[t]={id:t,loaded:false,exports:{}};var o=true;try{__webpack_modules__[t].call(i.exports,i,i.exports,__nccwpck_require__);o=false}finally{if(o)delete __webpack_module_cache__[t]}i.loaded=true;return i.exports}(()=>{__nccwpck_require__.d=(t,r)=>{for(var i in r){if(__nccwpck_require__.o(r,i)&&!__nccwpck_require__.o(t,i)){Object.defineProperty(t,i,{enumerable:true,get:r[i]})}}}})();(()=>{__nccwpck_require__.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r)})();(()=>{__nccwpck_require__.r=t=>{if(typeof Symbol!=="undefined"&&Symbol.toStringTag){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"})}Object.defineProperty(t,"__esModule",{value:true})}})();(()=>{__nccwpck_require__.nmd=t=>{t.paths=[];if(!t.children)t.children=[];return t}})();if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var __webpack_exports__={};(()=>{"use strict";__nccwpck_require__(9436)})();module.exports=__webpack_exports__})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-eas-build-function",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.57",
|
|
4
4
|
"bin": {
|
|
5
5
|
"create-eas-build-function": "./build/index.js"
|
|
6
6
|
},
|
|
@@ -33,29 +33,29 @@
|
|
|
33
33
|
"clean": "rimraf ./build/"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@expo/steps": "1.0.
|
|
36
|
+
"@expo/steps": "1.0.57"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@expo/package-manager": "^1.0.2",
|
|
40
|
-
"@jest/globals": "^29.
|
|
41
|
-
"@types/jest": "^29.5.
|
|
42
|
-
"@types/node": "
|
|
43
|
-
"@types/prompts": "^2.4.
|
|
44
|
-
"@vercel/ncc": "^0.38.
|
|
40
|
+
"@jest/globals": "^29.7.0",
|
|
41
|
+
"@types/jest": "^29.5.11",
|
|
42
|
+
"@types/node": "20.11.0",
|
|
43
|
+
"@types/prompts": "^2.4.9",
|
|
44
|
+
"@vercel/ncc": "^0.38.1",
|
|
45
45
|
"chalk": "4.1.2",
|
|
46
|
-
"fs-extra": "^11.
|
|
46
|
+
"fs-extra": "^11.2.0",
|
|
47
47
|
"ora": "^6.3.1",
|
|
48
48
|
"prompts": "^2.4.2",
|
|
49
|
-
"ts-node": "^10.9.
|
|
50
|
-
"typescript": "^5.
|
|
49
|
+
"ts-node": "^10.9.2",
|
|
50
|
+
"typescript": "^5.3.3",
|
|
51
51
|
"update-check": "^1.5.4"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"volta": {
|
|
57
|
-
"node": "
|
|
58
|
-
"yarn": "1.22.
|
|
57
|
+
"node": "20.11.0",
|
|
58
|
+
"yarn": "1.22.21"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "7304accf0b3da5670d1cacf8777db04a3bf16a91"
|
|
61
61
|
}
|