yarn.lock 225 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325
  1. # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
  2. # yarn lockfile v1
  3. "@ampproject/remapping@^2.1.0":
  4. "integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
  5. "resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
  6. "version" "2.2.0"
  7. dependencies:
  8. "@jridgewell/gen-mapping" "^0.1.0"
  9. "@jridgewell/trace-mapping" "^0.3.9"
  10. "@antfu/utils@^0.5.1", "@antfu/utils@^0.5.2":
  11. "integrity" "sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA=="
  12. "resolved" "https://registry.npmjs.org/@antfu/utils/-/utils-0.5.2.tgz"
  13. "version" "0.5.2"
  14. "@babel/code-frame@^7.16.7":
  15. "integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
  16. "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
  17. "version" "7.16.7"
  18. dependencies:
  19. "@babel/highlight" "^7.16.7"
  20. "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10":
  21. "integrity" "sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg=="
  22. "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.5.tgz"
  23. "version" "7.18.5"
  24. "@babel/core@^7.16.5", "@babel/core@^7.17.9":
  25. "integrity" "sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ=="
  26. "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.18.5.tgz"
  27. "version" "7.18.5"
  28. dependencies:
  29. "@ampproject/remapping" "^2.1.0"
  30. "@babel/code-frame" "^7.16.7"
  31. "@babel/generator" "^7.18.2"
  32. "@babel/helper-compilation-targets" "^7.18.2"
  33. "@babel/helper-module-transforms" "^7.18.0"
  34. "@babel/helpers" "^7.18.2"
  35. "@babel/parser" "^7.18.5"
  36. "@babel/template" "^7.16.7"
  37. "@babel/traverse" "^7.18.5"
  38. "@babel/types" "^7.18.4"
  39. "convert-source-map" "^1.7.0"
  40. "debug" "^4.1.0"
  41. "gensync" "^1.0.0-beta.2"
  42. "json5" "^2.2.1"
  43. "semver" "^6.3.0"
  44. "@babel/generator@^7.18.2":
  45. "integrity" "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="
  46. "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz"
  47. "version" "7.18.2"
  48. dependencies:
  49. "@babel/types" "^7.18.2"
  50. "@jridgewell/gen-mapping" "^0.3.0"
  51. "jsesc" "^2.5.1"
  52. "@babel/helper-annotate-as-pure@^7.16.7":
  53. "integrity" "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="
  54. "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"
  55. "version" "7.16.7"
  56. dependencies:
  57. "@babel/types" "^7.16.7"
  58. "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
  59. "integrity" "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="
  60. "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"
  61. "version" "7.16.7"
  62. dependencies:
  63. "@babel/helper-explode-assignable-expression" "^7.16.7"
  64. "@babel/types" "^7.16.7"
  65. "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10", "@babel/helper-compilation-targets@^7.18.2":
  66. "integrity" "sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ=="
  67. "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz"
  68. "version" "7.18.2"
  69. dependencies:
  70. "@babel/compat-data" "^7.17.10"
  71. "@babel/helper-validator-option" "^7.16.7"
  72. "browserslist" "^4.20.2"
  73. "semver" "^6.3.0"
  74. "@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0":
  75. "integrity" "sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg=="
  76. "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz"
  77. "version" "7.18.0"
  78. dependencies:
  79. "@babel/helper-annotate-as-pure" "^7.16.7"
  80. "@babel/helper-environment-visitor" "^7.16.7"
  81. "@babel/helper-function-name" "^7.17.9"
  82. "@babel/helper-member-expression-to-functions" "^7.17.7"
  83. "@babel/helper-optimise-call-expression" "^7.16.7"
  84. "@babel/helper-replace-supers" "^7.16.7"
  85. "@babel/helper-split-export-declaration" "^7.16.7"
  86. "@babel/helper-create-regexp-features-plugin@^7.16.7", "@babel/helper-create-regexp-features-plugin@^7.17.12":
  87. "integrity" "sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw=="
  88. "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz"
  89. "version" "7.17.12"
  90. dependencies:
  91. "@babel/helper-annotate-as-pure" "^7.16.7"
  92. "regexpu-core" "^5.0.1"
  93. "@babel/helper-define-polyfill-provider@^0.3.1":
  94. "integrity" "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA=="
  95. "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz"
  96. "version" "0.3.1"
  97. dependencies:
  98. "@babel/helper-compilation-targets" "^7.13.0"
  99. "@babel/helper-module-imports" "^7.12.13"
  100. "@babel/helper-plugin-utils" "^7.13.0"
  101. "@babel/traverse" "^7.13.0"
  102. "debug" "^4.1.1"
  103. "lodash.debounce" "^4.0.8"
  104. "resolve" "^1.14.2"
  105. "semver" "^6.1.2"
  106. "@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":
  107. "integrity" "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ=="
  108. "resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz"
  109. "version" "7.18.2"
  110. "@babel/helper-explode-assignable-expression@^7.16.7":
  111. "integrity" "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="
  112. "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"
  113. "version" "7.16.7"
  114. dependencies:
  115. "@babel/types" "^7.16.7"
  116. "@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9":
  117. "integrity" "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg=="
  118. "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz"
  119. "version" "7.17.9"
  120. dependencies:
  121. "@babel/template" "^7.16.7"
  122. "@babel/types" "^7.17.0"
  123. "@babel/helper-get-function-arity@^7.16.7":
  124. "integrity" "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="
  125. "resolved" "https://registry.npmmirror.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"
  126. "version" "7.16.7"
  127. dependencies:
  128. "@babel/types" "^7.16.7"
  129. "@babel/helper-hoist-variables@^7.16.7":
  130. "integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="
  131. "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
  132. "version" "7.16.7"
  133. dependencies:
  134. "@babel/types" "^7.16.7"
  135. "@babel/helper-member-expression-to-functions@^7.17.7":
  136. "integrity" "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw=="
  137. "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz"
  138. "version" "7.17.7"
  139. dependencies:
  140. "@babel/types" "^7.17.0"
  141. "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
  142. "integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="
  143. "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
  144. "version" "7.16.7"
  145. dependencies:
  146. "@babel/types" "^7.16.7"
  147. "@babel/helper-module-transforms@^7.18.0":
  148. "integrity" "sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA=="
  149. "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz"
  150. "version" "7.18.0"
  151. dependencies:
  152. "@babel/helper-environment-visitor" "^7.16.7"
  153. "@babel/helper-module-imports" "^7.16.7"
  154. "@babel/helper-simple-access" "^7.17.7"
  155. "@babel/helper-split-export-declaration" "^7.16.7"
  156. "@babel/helper-validator-identifier" "^7.16.7"
  157. "@babel/template" "^7.16.7"
  158. "@babel/traverse" "^7.18.0"
  159. "@babel/types" "^7.18.0"
  160. "@babel/helper-optimise-call-expression@^7.16.7":
  161. "integrity" "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="
  162. "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"
  163. "version" "7.16.7"
  164. dependencies:
  165. "@babel/types" "^7.16.7"
  166. "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
  167. "integrity" "sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA=="
  168. "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz"
  169. "version" "7.17.12"
  170. "@babel/helper-remap-async-to-generator@^7.16.8":
  171. "integrity" "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="
  172. "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"
  173. "version" "7.16.8"
  174. dependencies:
  175. "@babel/helper-annotate-as-pure" "^7.16.7"
  176. "@babel/helper-wrap-function" "^7.16.8"
  177. "@babel/types" "^7.16.8"
  178. "@babel/helper-replace-supers@^7.16.7", "@babel/helper-replace-supers@^7.18.2":
  179. "integrity" "sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q=="
  180. "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz"
  181. "version" "7.18.2"
  182. dependencies:
  183. "@babel/helper-environment-visitor" "^7.18.2"
  184. "@babel/helper-member-expression-to-functions" "^7.17.7"
  185. "@babel/helper-optimise-call-expression" "^7.16.7"
  186. "@babel/traverse" "^7.18.2"
  187. "@babel/types" "^7.18.2"
  188. "@babel/helper-simple-access@^7.17.7", "@babel/helper-simple-access@^7.18.2":
  189. "integrity" "sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ=="
  190. "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz"
  191. "version" "7.18.2"
  192. dependencies:
  193. "@babel/types" "^7.18.2"
  194. "@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
  195. "integrity" "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="
  196. "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz"
  197. "version" "7.16.0"
  198. dependencies:
  199. "@babel/types" "^7.16.0"
  200. "@babel/helper-split-export-declaration@^7.16.7":
  201. "integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="
  202. "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
  203. "version" "7.16.7"
  204. dependencies:
  205. "@babel/types" "^7.16.7"
  206. "@babel/helper-validator-identifier@^7.16.7":
  207. "integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
  208. "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
  209. "version" "7.16.7"
  210. "@babel/helper-validator-option@^7.16.7":
  211. "integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
  212. "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
  213. "version" "7.16.7"
  214. "@babel/helper-wrap-function@^7.16.8":
  215. "integrity" "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="
  216. "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"
  217. "version" "7.16.8"
  218. dependencies:
  219. "@babel/helper-function-name" "^7.16.7"
  220. "@babel/template" "^7.16.7"
  221. "@babel/traverse" "^7.16.8"
  222. "@babel/types" "^7.16.8"
  223. "@babel/helpers@^7.18.2":
  224. "integrity" "sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg=="
  225. "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz"
  226. "version" "7.18.2"
  227. dependencies:
  228. "@babel/template" "^7.16.7"
  229. "@babel/traverse" "^7.18.2"
  230. "@babel/types" "^7.18.2"
  231. "@babel/highlight@^7.16.7":
  232. "integrity" "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="
  233. "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz"
  234. "version" "7.17.12"
  235. dependencies:
  236. "@babel/helper-validator-identifier" "^7.16.7"
  237. "chalk" "^2.0.0"
  238. "js-tokens" "^4.0.0"
  239. "@babel/parser@^7.16.4", "@babel/parser@^7.16.7", "@babel/parser@^7.18.5", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
  240. "integrity" "sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw=="
  241. "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz"
  242. "version" "7.18.5"
  243. "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12":
  244. "integrity" "sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw=="
  245. "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz"
  246. "version" "7.17.12"
  247. dependencies:
  248. "@babel/helper-plugin-utils" "^7.17.12"
  249. "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.17.12":
  250. "integrity" "sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ=="
  251. "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12.tgz"
  252. "version" "7.17.12"
  253. dependencies:
  254. "@babel/helper-plugin-utils" "^7.17.12"
  255. "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
  256. "@babel/plugin-proposal-optional-chaining" "^7.17.12"
  257. "@babel/plugin-proposal-async-generator-functions@^7.17.12":
  258. "integrity" "sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ=="
  259. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.17.12.tgz"
  260. "version" "7.17.12"
  261. dependencies:
  262. "@babel/helper-plugin-utils" "^7.17.12"
  263. "@babel/helper-remap-async-to-generator" "^7.16.8"
  264. "@babel/plugin-syntax-async-generators" "^7.8.4"
  265. "@babel/plugin-proposal-class-properties@^7.17.12":
  266. "integrity" "sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw=="
  267. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz"
  268. "version" "7.17.12"
  269. dependencies:
  270. "@babel/helper-create-class-features-plugin" "^7.17.12"
  271. "@babel/helper-plugin-utils" "^7.17.12"
  272. "@babel/plugin-proposal-class-static-block@^7.18.0":
  273. "integrity" "sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA=="
  274. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.0.tgz"
  275. "version" "7.18.0"
  276. dependencies:
  277. "@babel/helper-create-class-features-plugin" "^7.18.0"
  278. "@babel/helper-plugin-utils" "^7.17.12"
  279. "@babel/plugin-syntax-class-static-block" "^7.14.5"
  280. "@babel/plugin-proposal-dynamic-import@^7.16.7":
  281. "integrity" "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="
  282. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"
  283. "version" "7.16.7"
  284. dependencies:
  285. "@babel/helper-plugin-utils" "^7.16.7"
  286. "@babel/plugin-syntax-dynamic-import" "^7.8.3"
  287. "@babel/plugin-proposal-export-namespace-from@^7.17.12":
  288. "integrity" "sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ=="
  289. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.17.12.tgz"
  290. "version" "7.17.12"
  291. dependencies:
  292. "@babel/helper-plugin-utils" "^7.17.12"
  293. "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
  294. "@babel/plugin-proposal-json-strings@^7.17.12":
  295. "integrity" "sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg=="
  296. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.17.12.tgz"
  297. "version" "7.17.12"
  298. dependencies:
  299. "@babel/helper-plugin-utils" "^7.17.12"
  300. "@babel/plugin-syntax-json-strings" "^7.8.3"
  301. "@babel/plugin-proposal-logical-assignment-operators@^7.17.12":
  302. "integrity" "sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q=="
  303. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.17.12.tgz"
  304. "version" "7.17.12"
  305. dependencies:
  306. "@babel/helper-plugin-utils" "^7.17.12"
  307. "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
  308. "@babel/plugin-proposal-nullish-coalescing-operator@^7.17.12":
  309. "integrity" "sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag=="
  310. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz"
  311. "version" "7.17.12"
  312. dependencies:
  313. "@babel/helper-plugin-utils" "^7.17.12"
  314. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
  315. "@babel/plugin-proposal-numeric-separator@^7.16.7":
  316. "integrity" "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="
  317. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"
  318. "version" "7.16.7"
  319. dependencies:
  320. "@babel/helper-plugin-utils" "^7.16.7"
  321. "@babel/plugin-syntax-numeric-separator" "^7.10.4"
  322. "@babel/plugin-proposal-object-rest-spread@^7.18.0":
  323. "integrity" "sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw=="
  324. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz"
  325. "version" "7.18.0"
  326. dependencies:
  327. "@babel/compat-data" "^7.17.10"
  328. "@babel/helper-compilation-targets" "^7.17.10"
  329. "@babel/helper-plugin-utils" "^7.17.12"
  330. "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
  331. "@babel/plugin-transform-parameters" "^7.17.12"
  332. "@babel/plugin-proposal-optional-catch-binding@^7.16.7":
  333. "integrity" "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA=="
  334. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"
  335. "version" "7.16.7"
  336. dependencies:
  337. "@babel/helper-plugin-utils" "^7.16.7"
  338. "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
  339. "@babel/plugin-proposal-optional-chaining@^7.17.12":
  340. "integrity" "sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ=="
  341. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz"
  342. "version" "7.17.12"
  343. dependencies:
  344. "@babel/helper-plugin-utils" "^7.17.12"
  345. "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
  346. "@babel/plugin-syntax-optional-chaining" "^7.8.3"
  347. "@babel/plugin-proposal-private-methods@^7.17.12":
  348. "integrity" "sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A=="
  349. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.17.12.tgz"
  350. "version" "7.17.12"
  351. dependencies:
  352. "@babel/helper-create-class-features-plugin" "^7.17.12"
  353. "@babel/helper-plugin-utils" "^7.17.12"
  354. "@babel/plugin-proposal-private-property-in-object@^7.17.12":
  355. "integrity" "sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg=="
  356. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.17.12.tgz"
  357. "version" "7.17.12"
  358. dependencies:
  359. "@babel/helper-annotate-as-pure" "^7.16.7"
  360. "@babel/helper-create-class-features-plugin" "^7.17.12"
  361. "@babel/helper-plugin-utils" "^7.17.12"
  362. "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
  363. "@babel/plugin-proposal-unicode-property-regex@^7.17.12", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
  364. "integrity" "sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A=="
  365. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.17.12.tgz"
  366. "version" "7.17.12"
  367. dependencies:
  368. "@babel/helper-create-regexp-features-plugin" "^7.17.12"
  369. "@babel/helper-plugin-utils" "^7.17.12"
  370. "@babel/plugin-syntax-async-generators@^7.8.4":
  371. "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
  372. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
  373. "version" "7.8.4"
  374. dependencies:
  375. "@babel/helper-plugin-utils" "^7.8.0"
  376. "@babel/plugin-syntax-class-properties@^7.12.13":
  377. "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
  378. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
  379. "version" "7.12.13"
  380. dependencies:
  381. "@babel/helper-plugin-utils" "^7.12.13"
  382. "@babel/plugin-syntax-class-static-block@^7.14.5":
  383. "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="
  384. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"
  385. "version" "7.14.5"
  386. dependencies:
  387. "@babel/helper-plugin-utils" "^7.14.5"
  388. "@babel/plugin-syntax-dynamic-import@^7.8.3":
  389. "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="
  390. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"
  391. "version" "7.8.3"
  392. dependencies:
  393. "@babel/helper-plugin-utils" "^7.8.0"
  394. "@babel/plugin-syntax-export-namespace-from@^7.8.3":
  395. "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="
  396. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"
  397. "version" "7.8.3"
  398. dependencies:
  399. "@babel/helper-plugin-utils" "^7.8.3"
  400. "@babel/plugin-syntax-import-assertions@^7.17.12":
  401. "integrity" "sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw=="
  402. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.17.12.tgz"
  403. "version" "7.17.12"
  404. dependencies:
  405. "@babel/helper-plugin-utils" "^7.17.12"
  406. "@babel/plugin-syntax-import-meta@^7.10.4":
  407. "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
  408. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
  409. "version" "7.10.4"
  410. dependencies:
  411. "@babel/helper-plugin-utils" "^7.10.4"
  412. "@babel/plugin-syntax-json-strings@^7.8.3":
  413. "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
  414. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
  415. "version" "7.8.3"
  416. dependencies:
  417. "@babel/helper-plugin-utils" "^7.8.0"
  418. "@babel/plugin-syntax-jsx@^7.0.0":
  419. "integrity" "sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog=="
  420. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz"
  421. "version" "7.17.12"
  422. dependencies:
  423. "@babel/helper-plugin-utils" "^7.17.12"
  424. "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
  425. "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
  426. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
  427. "version" "7.10.4"
  428. dependencies:
  429. "@babel/helper-plugin-utils" "^7.10.4"
  430. "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
  431. "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
  432. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
  433. "version" "7.8.3"
  434. dependencies:
  435. "@babel/helper-plugin-utils" "^7.8.0"
  436. "@babel/plugin-syntax-numeric-separator@^7.10.4":
  437. "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
  438. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
  439. "version" "7.10.4"
  440. dependencies:
  441. "@babel/helper-plugin-utils" "^7.10.4"
  442. "@babel/plugin-syntax-object-rest-spread@^7.8.3":
  443. "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
  444. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
  445. "version" "7.8.3"
  446. dependencies:
  447. "@babel/helper-plugin-utils" "^7.8.0"
  448. "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
  449. "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
  450. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
  451. "version" "7.8.3"
  452. dependencies:
  453. "@babel/helper-plugin-utils" "^7.8.0"
  454. "@babel/plugin-syntax-optional-chaining@^7.8.3":
  455. "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
  456. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
  457. "version" "7.8.3"
  458. dependencies:
  459. "@babel/helper-plugin-utils" "^7.8.0"
  460. "@babel/plugin-syntax-private-property-in-object@^7.14.5":
  461. "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="
  462. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"
  463. "version" "7.14.5"
  464. dependencies:
  465. "@babel/helper-plugin-utils" "^7.14.5"
  466. "@babel/plugin-syntax-top-level-await@^7.14.5":
  467. "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
  468. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
  469. "version" "7.14.5"
  470. dependencies:
  471. "@babel/helper-plugin-utils" "^7.14.5"
  472. "@babel/plugin-syntax-typescript@^7.17.12":
  473. "integrity" "sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw=="
  474. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz"
  475. "version" "7.17.12"
  476. dependencies:
  477. "@babel/helper-plugin-utils" "^7.17.12"
  478. "@babel/plugin-transform-arrow-functions@^7.17.12":
  479. "integrity" "sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA=="
  480. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz"
  481. "version" "7.17.12"
  482. dependencies:
  483. "@babel/helper-plugin-utils" "^7.17.12"
  484. "@babel/plugin-transform-async-to-generator@^7.17.12":
  485. "integrity" "sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ=="
  486. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz"
  487. "version" "7.17.12"
  488. dependencies:
  489. "@babel/helper-module-imports" "^7.16.7"
  490. "@babel/helper-plugin-utils" "^7.17.12"
  491. "@babel/helper-remap-async-to-generator" "^7.16.8"
  492. "@babel/plugin-transform-block-scoped-functions@^7.16.7":
  493. "integrity" "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg=="
  494. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"
  495. "version" "7.16.7"
  496. dependencies:
  497. "@babel/helper-plugin-utils" "^7.16.7"
  498. "@babel/plugin-transform-block-scoping@^7.17.12":
  499. "integrity" "sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw=="
  500. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.4.tgz"
  501. "version" "7.18.4"
  502. dependencies:
  503. "@babel/helper-plugin-utils" "^7.17.12"
  504. "@babel/plugin-transform-classes@^7.17.12":
  505. "integrity" "sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A=="
  506. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.4.tgz"
  507. "version" "7.18.4"
  508. dependencies:
  509. "@babel/helper-annotate-as-pure" "^7.16.7"
  510. "@babel/helper-environment-visitor" "^7.18.2"
  511. "@babel/helper-function-name" "^7.17.9"
  512. "@babel/helper-optimise-call-expression" "^7.16.7"
  513. "@babel/helper-plugin-utils" "^7.17.12"
  514. "@babel/helper-replace-supers" "^7.18.2"
  515. "@babel/helper-split-export-declaration" "^7.16.7"
  516. "globals" "^11.1.0"
  517. "@babel/plugin-transform-computed-properties@^7.17.12":
  518. "integrity" "sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ=="
  519. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz"
  520. "version" "7.17.12"
  521. dependencies:
  522. "@babel/helper-plugin-utils" "^7.17.12"
  523. "@babel/plugin-transform-destructuring@^7.18.0":
  524. "integrity" "sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw=="
  525. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz"
  526. "version" "7.18.0"
  527. dependencies:
  528. "@babel/helper-plugin-utils" "^7.17.12"
  529. "@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4":
  530. "integrity" "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ=="
  531. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"
  532. "version" "7.16.7"
  533. dependencies:
  534. "@babel/helper-create-regexp-features-plugin" "^7.16.7"
  535. "@babel/helper-plugin-utils" "^7.16.7"
  536. "@babel/plugin-transform-duplicate-keys@^7.17.12":
  537. "integrity" "sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw=="
  538. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.17.12.tgz"
  539. "version" "7.17.12"
  540. dependencies:
  541. "@babel/helper-plugin-utils" "^7.17.12"
  542. "@babel/plugin-transform-exponentiation-operator@^7.16.7":
  543. "integrity" "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="
  544. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"
  545. "version" "7.16.7"
  546. dependencies:
  547. "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7"
  548. "@babel/helper-plugin-utils" "^7.16.7"
  549. "@babel/plugin-transform-for-of@^7.18.1":
  550. "integrity" "sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg=="
  551. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz"
  552. "version" "7.18.1"
  553. dependencies:
  554. "@babel/helper-plugin-utils" "^7.17.12"
  555. "@babel/plugin-transform-function-name@^7.16.7":
  556. "integrity" "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="
  557. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"
  558. "version" "7.16.7"
  559. dependencies:
  560. "@babel/helper-compilation-targets" "^7.16.7"
  561. "@babel/helper-function-name" "^7.16.7"
  562. "@babel/helper-plugin-utils" "^7.16.7"
  563. "@babel/plugin-transform-literals@^7.17.12":
  564. "integrity" "sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ=="
  565. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz"
  566. "version" "7.17.12"
  567. dependencies:
  568. "@babel/helper-plugin-utils" "^7.17.12"
  569. "@babel/plugin-transform-member-expression-literals@^7.16.7":
  570. "integrity" "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="
  571. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"
  572. "version" "7.16.7"
  573. dependencies:
  574. "@babel/helper-plugin-utils" "^7.16.7"
  575. "@babel/plugin-transform-modules-amd@^7.18.0":
  576. "integrity" "sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA=="
  577. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.0.tgz"
  578. "version" "7.18.0"
  579. dependencies:
  580. "@babel/helper-module-transforms" "^7.18.0"
  581. "@babel/helper-plugin-utils" "^7.17.12"
  582. "babel-plugin-dynamic-import-node" "^2.3.3"
  583. "@babel/plugin-transform-modules-commonjs@^7.18.2":
  584. "integrity" "sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ=="
  585. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.2.tgz"
  586. "version" "7.18.2"
  587. dependencies:
  588. "@babel/helper-module-transforms" "^7.18.0"
  589. "@babel/helper-plugin-utils" "^7.17.12"
  590. "@babel/helper-simple-access" "^7.18.2"
  591. "babel-plugin-dynamic-import-node" "^2.3.3"
  592. "@babel/plugin-transform-modules-systemjs@^7.18.0":
  593. "integrity" "sha512-SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q=="
  594. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.5.tgz"
  595. "version" "7.18.5"
  596. dependencies:
  597. "@babel/helper-hoist-variables" "^7.16.7"
  598. "@babel/helper-module-transforms" "^7.18.0"
  599. "@babel/helper-plugin-utils" "^7.17.12"
  600. "@babel/helper-validator-identifier" "^7.16.7"
  601. "babel-plugin-dynamic-import-node" "^2.3.3"
  602. "@babel/plugin-transform-modules-umd@^7.18.0":
  603. "integrity" "sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA=="
  604. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.0.tgz"
  605. "version" "7.18.0"
  606. dependencies:
  607. "@babel/helper-module-transforms" "^7.18.0"
  608. "@babel/helper-plugin-utils" "^7.17.12"
  609. "@babel/plugin-transform-named-capturing-groups-regex@^7.17.12":
  610. "integrity" "sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA=="
  611. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.12.tgz"
  612. "version" "7.17.12"
  613. dependencies:
  614. "@babel/helper-create-regexp-features-plugin" "^7.17.12"
  615. "@babel/helper-plugin-utils" "^7.17.12"
  616. "@babel/plugin-transform-new-target@^7.17.12":
  617. "integrity" "sha512-TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg=="
  618. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.5.tgz"
  619. "version" "7.18.5"
  620. dependencies:
  621. "@babel/helper-plugin-utils" "^7.17.12"
  622. "@babel/plugin-transform-object-super@^7.16.7":
  623. "integrity" "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw=="
  624. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"
  625. "version" "7.16.7"
  626. dependencies:
  627. "@babel/helper-plugin-utils" "^7.16.7"
  628. "@babel/helper-replace-supers" "^7.16.7"
  629. "@babel/plugin-transform-parameters@^7.17.12":
  630. "integrity" "sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA=="
  631. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz"
  632. "version" "7.17.12"
  633. dependencies:
  634. "@babel/helper-plugin-utils" "^7.17.12"
  635. "@babel/plugin-transform-property-literals@^7.16.7":
  636. "integrity" "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="
  637. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"
  638. "version" "7.16.7"
  639. dependencies:
  640. "@babel/helper-plugin-utils" "^7.16.7"
  641. "@babel/plugin-transform-regenerator@^7.18.0":
  642. "integrity" "sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw=="
  643. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz"
  644. "version" "7.18.0"
  645. dependencies:
  646. "@babel/helper-plugin-utils" "^7.17.12"
  647. "regenerator-transform" "^0.15.0"
  648. "@babel/plugin-transform-reserved-words@^7.17.12":
  649. "integrity" "sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA=="
  650. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.17.12.tgz"
  651. "version" "7.17.12"
  652. dependencies:
  653. "@babel/helper-plugin-utils" "^7.17.12"
  654. "@babel/plugin-transform-shorthand-properties@^7.16.7":
  655. "integrity" "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="
  656. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"
  657. "version" "7.16.7"
  658. dependencies:
  659. "@babel/helper-plugin-utils" "^7.16.7"
  660. "@babel/plugin-transform-spread@^7.17.12":
  661. "integrity" "sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg=="
  662. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz"
  663. "version" "7.17.12"
  664. dependencies:
  665. "@babel/helper-plugin-utils" "^7.17.12"
  666. "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
  667. "@babel/plugin-transform-sticky-regex@^7.16.7":
  668. "integrity" "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="
  669. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"
  670. "version" "7.16.7"
  671. dependencies:
  672. "@babel/helper-plugin-utils" "^7.16.7"
  673. "@babel/plugin-transform-template-literals@^7.18.2":
  674. "integrity" "sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g=="
  675. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.2.tgz"
  676. "version" "7.18.2"
  677. dependencies:
  678. "@babel/helper-plugin-utils" "^7.17.12"
  679. "@babel/plugin-transform-typeof-symbol@^7.17.12":
  680. "integrity" "sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw=="
  681. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.17.12.tgz"
  682. "version" "7.17.12"
  683. dependencies:
  684. "@babel/helper-plugin-utils" "^7.17.12"
  685. "@babel/plugin-transform-typescript@^7.16.8":
  686. "integrity" "sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw=="
  687. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.4.tgz"
  688. "version" "7.18.4"
  689. dependencies:
  690. "@babel/helper-create-class-features-plugin" "^7.18.0"
  691. "@babel/helper-plugin-utils" "^7.17.12"
  692. "@babel/plugin-syntax-typescript" "^7.17.12"
  693. "@babel/plugin-transform-unicode-escapes@^7.16.7":
  694. "integrity" "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q=="
  695. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"
  696. "version" "7.16.7"
  697. dependencies:
  698. "@babel/helper-plugin-utils" "^7.16.7"
  699. "@babel/plugin-transform-unicode-regex@^7.16.7":
  700. "integrity" "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q=="
  701. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"
  702. "version" "7.16.7"
  703. dependencies:
  704. "@babel/helper-create-regexp-features-plugin" "^7.16.7"
  705. "@babel/helper-plugin-utils" "^7.16.7"
  706. "@babel/preset-env@^7.16.5":
  707. "integrity" "sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q=="
  708. "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.2.tgz"
  709. "version" "7.18.2"
  710. dependencies:
  711. "@babel/compat-data" "^7.17.10"
  712. "@babel/helper-compilation-targets" "^7.18.2"
  713. "@babel/helper-plugin-utils" "^7.17.12"
  714. "@babel/helper-validator-option" "^7.16.7"
  715. "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.17.12"
  716. "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.17.12"
  717. "@babel/plugin-proposal-async-generator-functions" "^7.17.12"
  718. "@babel/plugin-proposal-class-properties" "^7.17.12"
  719. "@babel/plugin-proposal-class-static-block" "^7.18.0"
  720. "@babel/plugin-proposal-dynamic-import" "^7.16.7"
  721. "@babel/plugin-proposal-export-namespace-from" "^7.17.12"
  722. "@babel/plugin-proposal-json-strings" "^7.17.12"
  723. "@babel/plugin-proposal-logical-assignment-operators" "^7.17.12"
  724. "@babel/plugin-proposal-nullish-coalescing-operator" "^7.17.12"
  725. "@babel/plugin-proposal-numeric-separator" "^7.16.7"
  726. "@babel/plugin-proposal-object-rest-spread" "^7.18.0"
  727. "@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
  728. "@babel/plugin-proposal-optional-chaining" "^7.17.12"
  729. "@babel/plugin-proposal-private-methods" "^7.17.12"
  730. "@babel/plugin-proposal-private-property-in-object" "^7.17.12"
  731. "@babel/plugin-proposal-unicode-property-regex" "^7.17.12"
  732. "@babel/plugin-syntax-async-generators" "^7.8.4"
  733. "@babel/plugin-syntax-class-properties" "^7.12.13"
  734. "@babel/plugin-syntax-class-static-block" "^7.14.5"
  735. "@babel/plugin-syntax-dynamic-import" "^7.8.3"
  736. "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
  737. "@babel/plugin-syntax-import-assertions" "^7.17.12"
  738. "@babel/plugin-syntax-json-strings" "^7.8.3"
  739. "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
  740. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
  741. "@babel/plugin-syntax-numeric-separator" "^7.10.4"
  742. "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
  743. "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
  744. "@babel/plugin-syntax-optional-chaining" "^7.8.3"
  745. "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
  746. "@babel/plugin-syntax-top-level-await" "^7.14.5"
  747. "@babel/plugin-transform-arrow-functions" "^7.17.12"
  748. "@babel/plugin-transform-async-to-generator" "^7.17.12"
  749. "@babel/plugin-transform-block-scoped-functions" "^7.16.7"
  750. "@babel/plugin-transform-block-scoping" "^7.17.12"
  751. "@babel/plugin-transform-classes" "^7.17.12"
  752. "@babel/plugin-transform-computed-properties" "^7.17.12"
  753. "@babel/plugin-transform-destructuring" "^7.18.0"
  754. "@babel/plugin-transform-dotall-regex" "^7.16.7"
  755. "@babel/plugin-transform-duplicate-keys" "^7.17.12"
  756. "@babel/plugin-transform-exponentiation-operator" "^7.16.7"
  757. "@babel/plugin-transform-for-of" "^7.18.1"
  758. "@babel/plugin-transform-function-name" "^7.16.7"
  759. "@babel/plugin-transform-literals" "^7.17.12"
  760. "@babel/plugin-transform-member-expression-literals" "^7.16.7"
  761. "@babel/plugin-transform-modules-amd" "^7.18.0"
  762. "@babel/plugin-transform-modules-commonjs" "^7.18.2"
  763. "@babel/plugin-transform-modules-systemjs" "^7.18.0"
  764. "@babel/plugin-transform-modules-umd" "^7.18.0"
  765. "@babel/plugin-transform-named-capturing-groups-regex" "^7.17.12"
  766. "@babel/plugin-transform-new-target" "^7.17.12"
  767. "@babel/plugin-transform-object-super" "^7.16.7"
  768. "@babel/plugin-transform-parameters" "^7.17.12"
  769. "@babel/plugin-transform-property-literals" "^7.16.7"
  770. "@babel/plugin-transform-regenerator" "^7.18.0"
  771. "@babel/plugin-transform-reserved-words" "^7.17.12"
  772. "@babel/plugin-transform-shorthand-properties" "^7.16.7"
  773. "@babel/plugin-transform-spread" "^7.17.12"
  774. "@babel/plugin-transform-sticky-regex" "^7.16.7"
  775. "@babel/plugin-transform-template-literals" "^7.18.2"
  776. "@babel/plugin-transform-typeof-symbol" "^7.17.12"
  777. "@babel/plugin-transform-unicode-escapes" "^7.16.7"
  778. "@babel/plugin-transform-unicode-regex" "^7.16.7"
  779. "@babel/preset-modules" "^0.1.5"
  780. "@babel/types" "^7.18.2"
  781. "babel-plugin-polyfill-corejs2" "^0.3.0"
  782. "babel-plugin-polyfill-corejs3" "^0.5.0"
  783. "babel-plugin-polyfill-regenerator" "^0.3.0"
  784. "core-js-compat" "^3.22.1"
  785. "semver" "^6.3.0"
  786. "@babel/preset-modules@^0.1.5":
  787. "integrity" "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="
  788. "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz"
  789. "version" "0.1.5"
  790. dependencies:
  791. "@babel/helper-plugin-utils" "^7.0.0"
  792. "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
  793. "@babel/plugin-transform-dotall-regex" "^7.4.4"
  794. "@babel/types" "^7.4.4"
  795. "esutils" "^2.0.2"
  796. "@babel/runtime@^7.17.2", "@babel/runtime@^7.8.4":
  797. "integrity" "sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug=="
  798. "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz"
  799. "version" "7.18.3"
  800. dependencies:
  801. "regenerator-runtime" "^0.13.4"
  802. "@babel/standalone@^7.17.11":
  803. "integrity" "sha512-3RlzTl3JSvbY1bvaRmuHf3fM2BSy7IbX0zqpVFjsiGO7678KE/LytwvJN+f5MGrarnUFUz2DNcCdetumWdIAKA=="
  804. "resolved" "https://registry.npmjs.org/@babel/standalone/-/standalone-7.18.5.tgz"
  805. "version" "7.18.5"
  806. "@babel/template@^7.0.0", "@babel/template@^7.16.7":
  807. "integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="
  808. "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"
  809. "version" "7.16.7"
  810. dependencies:
  811. "@babel/code-frame" "^7.16.7"
  812. "@babel/parser" "^7.16.7"
  813. "@babel/types" "^7.16.7"
  814. "@babel/traverse@^7.0.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2", "@babel/traverse@^7.18.5":
  815. "integrity" "sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA=="
  816. "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz"
  817. "version" "7.18.5"
  818. dependencies:
  819. "@babel/code-frame" "^7.16.7"
  820. "@babel/generator" "^7.18.2"
  821. "@babel/helper-environment-visitor" "^7.18.2"
  822. "@babel/helper-function-name" "^7.17.9"
  823. "@babel/helper-hoist-variables" "^7.16.7"
  824. "@babel/helper-split-export-declaration" "^7.16.7"
  825. "@babel/parser" "^7.18.5"
  826. "@babel/types" "^7.18.4"
  827. "debug" "^4.1.0"
  828. "globals" "^11.1.0"
  829. "@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.18.0", "@babel/types@^7.18.2", "@babel/types@^7.18.4", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
  830. "integrity" "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="
  831. "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz"
  832. "version" "7.18.4"
  833. dependencies:
  834. "@babel/helper-validator-identifier" "^7.16.7"
  835. "to-fast-properties" "^2.0.0"
  836. "@ctrl/tinycolor@^3.4.1":
  837. "integrity" "sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw=="
  838. "resolved" "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.1.tgz"
  839. "version" "3.4.1"
  840. "@element-plus/icons-vue@^2.0.5":
  841. "integrity" "sha512-jvNWyKcdvPvMDLTWjghrPY+bYHKqh7hbAFIPe+HWR073zilzt33csREzmKx3VwhdlJUW5u0nCqN+0rwI8jlH+w=="
  842. "resolved" "https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.0.5.tgz"
  843. "version" "2.0.5"
  844. "@emmetio/abbreviation@^2.2.3":
  845. "integrity" "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA=="
  846. "resolved" "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.3.tgz"
  847. "version" "2.2.3"
  848. dependencies:
  849. "@emmetio/scanner" "^1.0.0"
  850. "@emmetio/css-abbreviation@^2.1.4":
  851. "integrity" "sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw=="
  852. "resolved" "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz"
  853. "version" "2.1.4"
  854. dependencies:
  855. "@emmetio/scanner" "^1.0.0"
  856. "@emmetio/scanner@^1.0.0":
  857. "integrity" "sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA=="
  858. "resolved" "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.0.tgz"
  859. "version" "1.0.0"
  860. "@eslint/eslintrc@^1.3.0":
  861. "integrity" "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw=="
  862. "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz"
  863. "version" "1.3.0"
  864. dependencies:
  865. "ajv" "^6.12.4"
  866. "debug" "^4.3.2"
  867. "espree" "^9.3.2"
  868. "globals" "^13.15.0"
  869. "ignore" "^5.2.0"
  870. "import-fresh" "^3.2.1"
  871. "js-yaml" "^4.1.0"
  872. "minimatch" "^3.1.2"
  873. "strip-json-comments" "^3.1.1"
  874. "@floating-ui/core@^0.7.3":
  875. "integrity" "sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg=="
  876. "resolved" "https://registry.npmjs.org/@floating-ui/core/-/core-0.7.3.tgz"
  877. "version" "0.7.3"
  878. "@floating-ui/dom@^0.5.2":
  879. "integrity" "sha512-vpjWB1uC7rajvgA58uzlJZgtWqrdDQLw+XVA3w63ZTmsWwRmVd0Gl5Dy9VMAViI9cP7hBWaJt23Jy3AVgVYnoQ=="
  880. "resolved" "https://registry.npmjs.org/@floating-ui/dom/-/dom-0.5.3.tgz"
  881. "version" "0.5.3"
  882. dependencies:
  883. "@floating-ui/core" "^0.7.3"
  884. "@humanwhocodes/config-array@^0.9.2":
  885. "integrity" "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw=="
  886. "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz"
  887. "version" "0.9.5"
  888. dependencies:
  889. "@humanwhocodes/object-schema" "^1.2.1"
  890. "debug" "^4.1.1"
  891. "minimatch" "^3.0.4"
  892. "@humanwhocodes/object-schema@^1.2.1":
  893. "integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
  894. "resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
  895. "version" "1.2.1"
  896. "@jridgewell/gen-mapping@^0.1.0":
  897. "integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
  898. "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
  899. "version" "0.1.1"
  900. dependencies:
  901. "@jridgewell/set-array" "^1.0.0"
  902. "@jridgewell/sourcemap-codec" "^1.4.10"
  903. "@jridgewell/gen-mapping@^0.3.0":
  904. "integrity" "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg=="
  905. "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz"
  906. "version" "0.3.1"
  907. dependencies:
  908. "@jridgewell/set-array" "^1.0.0"
  909. "@jridgewell/sourcemap-codec" "^1.4.10"
  910. "@jridgewell/trace-mapping" "^0.3.9"
  911. "@jridgewell/resolve-uri@^3.0.3":
  912. "integrity" "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA=="
  913. "resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz"
  914. "version" "3.0.7"
  915. "@jridgewell/set-array@^1.0.0":
  916. "integrity" "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ=="
  917. "resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz"
  918. "version" "1.1.1"
  919. "@jridgewell/sourcemap-codec@^1.4.10":
  920. "integrity" "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w=="
  921. "resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz"
  922. "version" "1.4.13"
  923. "@jridgewell/trace-mapping@^0.3.9":
  924. "integrity" "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w=="
  925. "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz"
  926. "version" "0.3.13"
  927. dependencies:
  928. "@jridgewell/resolve-uri" "^3.0.3"
  929. "@jridgewell/sourcemap-codec" "^1.4.10"
  930. "@nodelib/fs.scandir@2.1.5":
  931. "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
  932. "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
  933. "version" "2.1.5"
  934. dependencies:
  935. "@nodelib/fs.stat" "2.0.5"
  936. "run-parallel" "^1.1.9"
  937. "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
  938. "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
  939. "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
  940. "version" "2.0.5"
  941. "@nodelib/fs.walk@^1.2.3":
  942. "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
  943. "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
  944. "version" "1.2.8"
  945. dependencies:
  946. "@nodelib/fs.scandir" "2.1.5"
  947. "fastq" "^1.6.0"
  948. "@popperjs/core@^2.9.2", "@popperjs/core@npm:@sxzz/popperjs-es@^2.11.7":
  949. "integrity" "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ=="
  950. "resolved" "https://registry.npmjs.org/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz"
  951. "version" "2.11.7"
  952. "@rollup/pluginutils@^4.1.2", "@rollup/pluginutils@^4.2.0", "@rollup/pluginutils@^4.2.1":
  953. "integrity" "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="
  954. "resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"
  955. "version" "4.2.1"
  956. dependencies:
  957. "estree-walker" "^2.0.1"
  958. "picomatch" "^2.2.2"
  959. "@types/fined@*":
  960. "integrity" "sha512-CWYnSRnun3CGbt6taXeVo2lCbuaj4mchVJ4UF/BdU5TSuIn3AmS13pGMwCsBUoehGbhZrBrpNJZSZI5EVilXww=="
  961. "resolved" "https://registry.npmjs.org/@types/fined/-/fined-1.1.3.tgz"
  962. "version" "1.1.3"
  963. "@types/inquirer@^8.2.1":
  964. "integrity" "sha512-wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw=="
  965. "resolved" "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.1.tgz"
  966. "version" "8.2.1"
  967. dependencies:
  968. "@types/through" "*"
  969. "rxjs" "^7.2.0"
  970. "@types/json-schema@^7.0.9":
  971. "integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
  972. "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz"
  973. "version" "7.0.11"
  974. "@types/liftoff@^4.0.0":
  975. "integrity" "sha512-Ny/PJkO6nxWAQnaet8q/oWz15lrfwvdvBpuY4treB0CSsBO1CG0fVuNLngR3m3bepQLd+E4c3Y3DlC2okpUvPw=="
  976. "resolved" "https://registry.npmjs.org/@types/liftoff/-/liftoff-4.0.0.tgz"
  977. "version" "4.0.0"
  978. dependencies:
  979. "@types/fined" "*"
  980. "@types/node" "*"
  981. "@types/lodash-es@^4.17.6":
  982. "integrity" "sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg=="
  983. "resolved" "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.6.tgz"
  984. "version" "4.17.6"
  985. dependencies:
  986. "@types/lodash" "*"
  987. "@types/lodash@*", "@types/lodash@^4.14.182":
  988. "integrity" "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q=="
  989. "resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz"
  990. "version" "4.14.182"
  991. "@types/node@*", "@types/node@^16.11.14":
  992. "integrity" "sha512-K0MsdV42vPwm9L6UwhIxMAOmcvH/1OoVkZyCgEtVu4Wx7sElGloy/W7kMBNe/oJ7V/jW9BVt1F6RahH6e7tPXw=="
  993. "resolved" "https://registry.npmjs.org/@types/node/-/node-16.11.39.tgz"
  994. "version" "16.11.39"
  995. "@types/numeral@^2.0.2":
  996. "integrity" "sha512-A8F30k2gYJ/6e07spSCPpkuZu79LCnkPTvqmIWQzNGcrzwFKpVOydG41lNt5wZXjSI149qjyzC2L1+F2PD/NUA=="
  997. "resolved" "https://registry.npmjs.org/@types/numeral/-/numeral-2.0.2.tgz"
  998. "version" "2.0.2"
  999. "@types/through@*":
  1000. "integrity" "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg=="
  1001. "resolved" "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz"
  1002. "version" "0.0.30"
  1003. dependencies:
  1004. "@types/node" "*"
  1005. "@typescript-eslint/eslint-plugin@^5.7.0":
  1006. "integrity" "sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA=="
  1007. "resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.28.0.tgz"
  1008. "version" "5.28.0"
  1009. dependencies:
  1010. "@typescript-eslint/scope-manager" "5.28.0"
  1011. "@typescript-eslint/type-utils" "5.28.0"
  1012. "@typescript-eslint/utils" "5.28.0"
  1013. "debug" "^4.3.4"
  1014. "functional-red-black-tree" "^1.0.1"
  1015. "ignore" "^5.2.0"
  1016. "regexpp" "^3.2.0"
  1017. "semver" "^7.3.7"
  1018. "tsutils" "^3.21.0"
  1019. "@typescript-eslint/parser@^5.7.0":
  1020. "integrity" "sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA=="
  1021. "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.28.0.tgz"
  1022. "version" "5.28.0"
  1023. dependencies:
  1024. "@typescript-eslint/scope-manager" "5.28.0"
  1025. "@typescript-eslint/types" "5.28.0"
  1026. "@typescript-eslint/typescript-estree" "5.28.0"
  1027. "debug" "^4.3.4"
  1028. "@typescript-eslint/scope-manager@5.28.0":
  1029. "integrity" "sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w=="
  1030. "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.28.0.tgz"
  1031. "version" "5.28.0"
  1032. dependencies:
  1033. "@typescript-eslint/types" "5.28.0"
  1034. "@typescript-eslint/visitor-keys" "5.28.0"
  1035. "@typescript-eslint/type-utils@5.28.0":
  1036. "integrity" "sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ=="
  1037. "resolved" "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.28.0.tgz"
  1038. "version" "5.28.0"
  1039. dependencies:
  1040. "@typescript-eslint/utils" "5.28.0"
  1041. "debug" "^4.3.4"
  1042. "tsutils" "^3.21.0"
  1043. "@typescript-eslint/types@5.28.0":
  1044. "integrity" "sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA=="
  1045. "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.28.0.tgz"
  1046. "version" "5.28.0"
  1047. "@typescript-eslint/typescript-estree@5.28.0":
  1048. "integrity" "sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA=="
  1049. "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.28.0.tgz"
  1050. "version" "5.28.0"
  1051. dependencies:
  1052. "@typescript-eslint/types" "5.28.0"
  1053. "@typescript-eslint/visitor-keys" "5.28.0"
  1054. "debug" "^4.3.4"
  1055. "globby" "^11.1.0"
  1056. "is-glob" "^4.0.3"
  1057. "semver" "^7.3.7"
  1058. "tsutils" "^3.21.0"
  1059. "@typescript-eslint/utils@5.28.0":
  1060. "integrity" "sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g=="
  1061. "resolved" "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.28.0.tgz"
  1062. "version" "5.28.0"
  1063. dependencies:
  1064. "@types/json-schema" "^7.0.9"
  1065. "@typescript-eslint/scope-manager" "5.28.0"
  1066. "@typescript-eslint/types" "5.28.0"
  1067. "@typescript-eslint/typescript-estree" "5.28.0"
  1068. "eslint-scope" "^5.1.1"
  1069. "eslint-utils" "^3.0.0"
  1070. "@typescript-eslint/visitor-keys@5.28.0":
  1071. "integrity" "sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA=="
  1072. "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.28.0.tgz"
  1073. "version" "5.28.0"
  1074. dependencies:
  1075. "@typescript-eslint/types" "5.28.0"
  1076. "eslint-visitor-keys" "^3.3.0"
  1077. "@vant/icons@^1.8.0":
  1078. "integrity" "sha512-sKfEUo2/CkQFuERxvkuF6mGQZDKu3IQdj5rV9Fm0weJXtchDSSQ+zt8qPCNUEhh9Y8shy5PzxbvAfOOkCwlCXg=="
  1079. "resolved" "https://registry.npmmirror.com/@vant/icons/-/icons-1.8.0.tgz"
  1080. "version" "1.8.0"
  1081. "@vant/popperjs@^1.2.1":
  1082. "integrity" "sha512-qzQlrPE4aOsBzfrktDVwzQy/QICCTKifmjrruhY58+Q2fobUYp/T9QINluIafzsD3VJwgP8+HFVLBsyDmy3VZQ=="
  1083. "resolved" "https://registry.npmmirror.com/@vant/popperjs/-/popperjs-1.2.1.tgz"
  1084. "version" "1.2.1"
  1085. dependencies:
  1086. "@popperjs/core" "^2.9.2"
  1087. "@vant/touch-emulator@^1.3.2":
  1088. "integrity" "sha512-Om6e8kCAnmk/q8byngKreff7Hyn6XxwOGr8yedP3y3LEVoE+iyj8/+Mn+AYvGEQ00GK0MlgAfyaV4emXAYj1Hw=="
  1089. "resolved" "https://registry.npmmirror.com/@vant/touch-emulator/-/touch-emulator-1.3.2.tgz"
  1090. "version" "1.3.2"
  1091. "@vant/use@^1.3.6", "@vant/use@^1.4.1":
  1092. "integrity" "sha512-YonNN0SuJLEJuqdoMcVAJm2JUZWkHNrW81QzeF6FLyG5HFUGlmTM5Sby7gdS3Z/8UDMlkWRQpJxBWbmVzmUWxQ=="
  1093. "resolved" "https://registry.npmjs.org/@vant/use/-/use-1.4.1.tgz"
  1094. "version" "1.4.1"
  1095. "@vitejs/plugin-legacy@^1.7.1":
  1096. "integrity" "sha512-NCOKU+pU+cxLMR9P9RTolEuOK+h+zYBXlknj+zGcKSj/NXBZYgA1GAH1FnO4zijoWRiTaiOm2ha9LQrELE7XHg=="
  1097. "resolved" "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.8.2.tgz"
  1098. "version" "1.8.2"
  1099. dependencies:
  1100. "@babel/standalone" "^7.17.11"
  1101. "core-js" "^3.22.3"
  1102. "magic-string" "^0.26.1"
  1103. "regenerator-runtime" "^0.13.9"
  1104. "systemjs" "^6.12.1"
  1105. "@vitejs/plugin-vue-jsx@^1.3.8":
  1106. "integrity" "sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw=="
  1107. "resolved" "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz"
  1108. "version" "1.3.10"
  1109. dependencies:
  1110. "@babel/core" "^7.17.9"
  1111. "@babel/plugin-syntax-import-meta" "^7.10.4"
  1112. "@babel/plugin-transform-typescript" "^7.16.8"
  1113. "@rollup/pluginutils" "^4.2.0"
  1114. "@vue/babel-plugin-jsx" "^1.1.1"
  1115. "hash-sum" "^2.0.0"
  1116. "@vitejs/plugin-vue@^2.0.1":
  1117. "integrity" "sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw=="
  1118. "resolved" "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-2.3.3.tgz"
  1119. "version" "2.3.3"
  1120. "@volar/code-gen@0.29.8":
  1121. "integrity" "sha512-eohLLUqPChHRPDFT5gXn4V6pr/CeTri7Ou5GI26lUvBRRAbP8p+oYfQRcbMPGeKmVkYjfVj0chsxQGx6T8PQ4Q=="
  1122. "resolved" "https://registry.npmjs.org/@volar/code-gen/-/code-gen-0.29.8.tgz"
  1123. "version" "0.29.8"
  1124. dependencies:
  1125. "@volar/shared" "0.29.8"
  1126. "@volar/source-map" "0.29.8"
  1127. "@volar/html2pug@0.29.8":
  1128. "integrity" "sha512-bhSNXg8A2aD3w0B+CwmHjqCAaKtj5rORbE5C/q/UdGqptJbC6STCmi30KuRTdfPhR++Xb18Hauf3s/WCmtNAPA=="
  1129. "resolved" "https://registry.npmjs.org/@volar/html2pug/-/html2pug-0.29.8.tgz"
  1130. "version" "0.29.8"
  1131. dependencies:
  1132. "domelementtype" "^2.2.0"
  1133. "domhandler" "^4.2.2"
  1134. "htmlparser2" "^7.1.2"
  1135. "pug" "^3.0.2"
  1136. "@volar/shared@0.29.8":
  1137. "integrity" "sha512-Y1NN6irkIukD+T0wf4p/dHWYL90sacN2e2lYoDXxRlvoYxwANnHgw0J0Rcp+yw58ElWRScdG7/YntEIuZWeJsw=="
  1138. "resolved" "https://registry.npmjs.org/@volar/shared/-/shared-0.29.8.tgz"
  1139. "version" "0.29.8"
  1140. dependencies:
  1141. "upath" "^2.0.1"
  1142. "vscode-jsonrpc" "^8.0.0-next.2"
  1143. "vscode-uri" "^3.0.2"
  1144. "@volar/source-map@0.29.8":
  1145. "integrity" "sha512-7w+UoYtnc6UQu30CgMVvx0YN4dzDgP4TIsSmUaW62AGmxU9Lxwp3Kkn/4N8efi91z8ma5Z78v/HddyJPwAC3LA=="
  1146. "resolved" "https://registry.npmjs.org/@volar/source-map/-/source-map-0.29.8.tgz"
  1147. "version" "0.29.8"
  1148. dependencies:
  1149. "@volar/shared" "0.29.8"
  1150. "@volar/transforms@0.29.8":
  1151. "integrity" "sha512-o2hRa8CoDwYTO1Mu5KA47+1elUnYUjDaVhCvbyKlRfd8qpHea2llotArq7B6OORSL2M9DVs1IRJ5NGURBFeZ3Q=="
  1152. "resolved" "https://registry.npmjs.org/@volar/transforms/-/transforms-0.29.8.tgz"
  1153. "version" "0.29.8"
  1154. dependencies:
  1155. "@volar/shared" "0.29.8"
  1156. "vscode-languageserver" "^8.0.0-next.2"
  1157. "@volar/vue-code-gen@0.29.8":
  1158. "integrity" "sha512-E1e7P2oktNC/DzgDBditfla4s8+HlUlluZ+BtcLvEdbkl3QEjujkB0x1wxguWzXmpWgLIDPtrS3Jzll5cCOkTg=="
  1159. "resolved" "https://registry.npmjs.org/@volar/vue-code-gen/-/vue-code-gen-0.29.8.tgz"
  1160. "version" "0.29.8"
  1161. dependencies:
  1162. "@volar/code-gen" "0.29.8"
  1163. "@volar/shared" "0.29.8"
  1164. "@volar/source-map" "0.29.8"
  1165. "@vue/compiler-core" "^3.2.21"
  1166. "@vue/compiler-dom" "^3.2.21"
  1167. "@vue/shared" "^3.2.21"
  1168. "upath" "^2.0.1"
  1169. "@vscode/emmet-helper@^2.8.0":
  1170. "integrity" "sha512-lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg=="
  1171. "resolved" "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.8.4.tgz"
  1172. "version" "2.8.4"
  1173. dependencies:
  1174. "emmet" "^2.3.0"
  1175. "jsonc-parser" "^2.3.0"
  1176. "vscode-languageserver-textdocument" "^1.0.1"
  1177. "vscode-languageserver-types" "^3.15.1"
  1178. "vscode-nls" "^5.0.0"
  1179. "vscode-uri" "^2.1.2"
  1180. "@vue/babel-helper-vue-transform-on@^1.0.2":
  1181. "integrity" "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA=="
  1182. "resolved" "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz"
  1183. "version" "1.0.2"
  1184. "@vue/babel-plugin-jsx@^1.1.1":
  1185. "integrity" "sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w=="
  1186. "resolved" "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz"
  1187. "version" "1.1.1"
  1188. dependencies:
  1189. "@babel/helper-module-imports" "^7.0.0"
  1190. "@babel/plugin-syntax-jsx" "^7.0.0"
  1191. "@babel/template" "^7.0.0"
  1192. "@babel/traverse" "^7.0.0"
  1193. "@babel/types" "^7.0.0"
  1194. "@vue/babel-helper-vue-transform-on" "^1.0.2"
  1195. "camelcase" "^6.0.0"
  1196. "html-tags" "^3.1.0"
  1197. "svg-tags" "^1.0.0"
  1198. "@vue/compiler-core@^3.2.21", "@vue/compiler-core@3.2.37":
  1199. "integrity" "sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg=="
  1200. "resolved" "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.37.tgz"
  1201. "version" "3.2.37"
  1202. dependencies:
  1203. "@babel/parser" "^7.16.4"
  1204. "@vue/shared" "3.2.37"
  1205. "estree-walker" "^2.0.2"
  1206. "source-map" "^0.6.1"
  1207. "@vue/compiler-dom@^3.2.21", "@vue/compiler-dom@3.2.37":
  1208. "integrity" "sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ=="
  1209. "resolved" "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.37.tgz"
  1210. "version" "3.2.37"
  1211. dependencies:
  1212. "@vue/compiler-core" "3.2.37"
  1213. "@vue/shared" "3.2.37"
  1214. "@vue/compiler-sfc@^3.2.26", "@vue/compiler-sfc@3.2.37":
  1215. "integrity" "sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg=="
  1216. "resolved" "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.37.tgz"
  1217. "version" "3.2.37"
  1218. dependencies:
  1219. "@babel/parser" "^7.16.4"
  1220. "@vue/compiler-core" "3.2.37"
  1221. "@vue/compiler-dom" "3.2.37"
  1222. "@vue/compiler-ssr" "3.2.37"
  1223. "@vue/reactivity-transform" "3.2.37"
  1224. "@vue/shared" "3.2.37"
  1225. "estree-walker" "^2.0.2"
  1226. "magic-string" "^0.25.7"
  1227. "postcss" "^8.1.10"
  1228. "source-map" "^0.6.1"
  1229. "@vue/compiler-ssr@3.2.37":
  1230. "integrity" "sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw=="
  1231. "resolved" "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.37.tgz"
  1232. "version" "3.2.37"
  1233. dependencies:
  1234. "@vue/compiler-dom" "3.2.37"
  1235. "@vue/shared" "3.2.37"
  1236. "@vue/devtools-api@^6.0.0", "@vue/devtools-api@^6.0.0-beta.11":
  1237. "integrity" "sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ=="
  1238. "resolved" "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.1.4.tgz"
  1239. "version" "6.1.4"
  1240. "@vue/eslint-config-prettier@^6.0.0":
  1241. "integrity" "sha512-wFQmv45c3ige5EA+ngijq40YpVcIkAy0Lihupnsnd1Dao5CBbPyfCzqtejFLZX1EwH/kCJdpz3t6s+5wd3+KxQ=="
  1242. "resolved" "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-6.0.0.tgz"
  1243. "version" "6.0.0"
  1244. dependencies:
  1245. "eslint-config-prettier" "^6.0.0"
  1246. "@vue/eslint-config-typescript@^9.1.0":
  1247. "integrity" "sha512-j/852/ZYQ5wDvCD3HE2q4uqJwJAceer2FwoEch1nFo+zTOsPrbzbE3cuWIs3kvu5hdFsGTMYwRwjI6fqZKDMxQ=="
  1248. "resolved" "https://registry.npmjs.org/@vue/eslint-config-typescript/-/eslint-config-typescript-9.1.0.tgz"
  1249. "version" "9.1.0"
  1250. dependencies:
  1251. "vue-eslint-parser" "^8.0.0"
  1252. "@vue/reactivity-transform@3.2.37":
  1253. "integrity" "sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg=="
  1254. "resolved" "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.37.tgz"
  1255. "version" "3.2.37"
  1256. dependencies:
  1257. "@babel/parser" "^7.16.4"
  1258. "@vue/compiler-core" "3.2.37"
  1259. "@vue/shared" "3.2.37"
  1260. "estree-walker" "^2.0.2"
  1261. "magic-string" "^0.25.7"
  1262. "@vue/reactivity@^3.2.21", "@vue/reactivity@3.2.37":
  1263. "integrity" "sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A=="
  1264. "resolved" "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.37.tgz"
  1265. "version" "3.2.37"
  1266. dependencies:
  1267. "@vue/shared" "3.2.37"
  1268. "@vue/runtime-core@3.2.37":
  1269. "integrity" "sha512-JPcd9kFyEdXLl/i0ClS7lwgcs0QpUAWj+SKX2ZC3ANKi1U4DOtiEr6cRqFXsPwY5u1L9fAjkinIdB8Rz3FoYNQ=="
  1270. "resolved" "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.37.tgz"
  1271. "version" "3.2.37"
  1272. dependencies:
  1273. "@vue/reactivity" "3.2.37"
  1274. "@vue/shared" "3.2.37"
  1275. "@vue/runtime-dom@3.2.37":
  1276. "integrity" "sha512-HimKdh9BepShW6YozwRKAYjYQWg9mQn63RGEiSswMbW+ssIht1MILYlVGkAGGQbkhSh31PCdoUcfiu4apXJoPw=="
  1277. "resolved" "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.37.tgz"
  1278. "version" "3.2.37"
  1279. dependencies:
  1280. "@vue/runtime-core" "3.2.37"
  1281. "@vue/shared" "3.2.37"
  1282. "csstype" "^2.6.8"
  1283. "@vue/server-renderer@3.2.37":
  1284. "integrity" "sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA=="
  1285. "resolved" "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.37.tgz"
  1286. "version" "3.2.37"
  1287. dependencies:
  1288. "@vue/compiler-ssr" "3.2.37"
  1289. "@vue/shared" "3.2.37"
  1290. "@vue/shared@^3.2.21", "@vue/shared@3.2.37":
  1291. "integrity" "sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw=="
  1292. "resolved" "https://registry.npmjs.org/@vue/shared/-/shared-3.2.37.tgz"
  1293. "version" "3.2.37"
  1294. "@vueuse/core@^8.4.1", "@vueuse/core@^8.6.0":
  1295. "integrity" "sha512-VirzExCm/N+QdrEWT7J4uSrvJ5hquKIAU9alQ37kUvIJk9XxCLxmfRnmekYc1kz2+6BnoyuKYXVmrMV351CB4w=="
  1296. "resolved" "https://registry.npmjs.org/@vueuse/core/-/core-8.6.0.tgz"
  1297. "version" "8.6.0"
  1298. dependencies:
  1299. "@vueuse/metadata" "8.6.0"
  1300. "@vueuse/shared" "8.6.0"
  1301. "vue-demi" "*"
  1302. "@vueuse/metadata@8.6.0":
  1303. "integrity" "sha512-F+CKPvaExsm7QgRr8y+ZNJFwXasn89rs5wth/HeX9lJ1q8XEt+HJ16Q5Sxh4rfG5YSKXrStveVge8TKvPjMjFA=="
  1304. "resolved" "https://registry.npmjs.org/@vueuse/metadata/-/metadata-8.6.0.tgz"
  1305. "version" "8.6.0"
  1306. "@vueuse/shared@8.6.0":
  1307. "integrity" "sha512-Y/IVywZo7IfEoSSEtCYpkVEmPV7pU35mEIxV7PbD/D3ly18B3mEsBaPbtDkNM/QP3zAZ5mn4nEkOfddX4uwuIA=="
  1308. "resolved" "https://registry.npmjs.org/@vueuse/shared/-/shared-8.6.0.tgz"
  1309. "version" "8.6.0"
  1310. dependencies:
  1311. "vue-demi" "*"
  1312. "acorn-jsx@^5.3.2":
  1313. "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
  1314. "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
  1315. "version" "5.3.2"
  1316. "acorn-node@^1.8.2":
  1317. "integrity" "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="
  1318. "resolved" "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz"
  1319. "version" "1.8.2"
  1320. dependencies:
  1321. "acorn" "^7.0.0"
  1322. "acorn-walk" "^7.0.0"
  1323. "xtend" "^4.0.2"
  1324. "acorn-walk@^7.0.0":
  1325. "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="
  1326. "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"
  1327. "version" "7.2.0"
  1328. "acorn@^7.0.0":
  1329. "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
  1330. "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
  1331. "version" "7.4.1"
  1332. "acorn@^7.1.1":
  1333. "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
  1334. "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
  1335. "version" "7.4.1"
  1336. "acorn@^8.7.1":
  1337. "integrity" "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="
  1338. "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz"
  1339. "version" "8.7.1"
  1340. "aggregate-error@^3.0.0":
  1341. "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="
  1342. "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
  1343. "version" "3.1.0"
  1344. dependencies:
  1345. "clean-stack" "^2.0.0"
  1346. "indent-string" "^4.0.0"
  1347. "ajv@^6.10.0", "ajv@^6.12.4":
  1348. "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
  1349. "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
  1350. "version" "6.12.6"
  1351. dependencies:
  1352. "fast-deep-equal" "^3.1.1"
  1353. "fast-json-stable-stringify" "^2.0.0"
  1354. "json-schema-traverse" "^0.4.1"
  1355. "uri-js" "^4.2.2"
  1356. "ansi-escapes@^4.2.1", "ansi-escapes@^4.3.0":
  1357. "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="
  1358. "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
  1359. "version" "4.3.2"
  1360. dependencies:
  1361. "type-fest" "^0.21.3"
  1362. "ansi-regex@^5.0.1":
  1363. "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
  1364. "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
  1365. "version" "5.0.1"
  1366. "ansi-regex@^6.0.1":
  1367. "integrity" "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="
  1368. "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz"
  1369. "version" "6.0.1"
  1370. "ansi-styles@^3.2.1":
  1371. "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
  1372. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
  1373. "version" "3.2.1"
  1374. dependencies:
  1375. "color-convert" "^1.9.0"
  1376. "ansi-styles@^4.0.0":
  1377. "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
  1378. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
  1379. "version" "4.3.0"
  1380. dependencies:
  1381. "color-convert" "^2.0.1"
  1382. "ansi-styles@^4.1.0":
  1383. "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
  1384. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
  1385. "version" "4.3.0"
  1386. dependencies:
  1387. "color-convert" "^2.0.1"
  1388. "ansi-styles@^6.0.0":
  1389. "integrity" "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ=="
  1390. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz"
  1391. "version" "6.1.0"
  1392. "anymatch@~3.1.2":
  1393. "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
  1394. "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
  1395. "version" "3.1.2"
  1396. dependencies:
  1397. "normalize-path" "^3.0.0"
  1398. "picomatch" "^2.0.4"
  1399. "arg@^5.0.1":
  1400. "integrity" "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
  1401. "resolved" "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz"
  1402. "version" "5.0.2"
  1403. "argparse@^2.0.1":
  1404. "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
  1405. "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
  1406. "version" "2.0.1"
  1407. "array-each@^1.0.1":
  1408. "integrity" "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA=="
  1409. "resolved" "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"
  1410. "version" "1.0.1"
  1411. "array-slice@^1.0.0":
  1412. "integrity" "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="
  1413. "resolved" "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"
  1414. "version" "1.1.0"
  1415. "array-union@^2.1.0":
  1416. "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
  1417. "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
  1418. "version" "2.1.0"
  1419. "asap@~2.0.3":
  1420. "integrity" "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
  1421. "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
  1422. "version" "2.0.6"
  1423. "assert-never@^1.2.1":
  1424. "integrity" "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw=="
  1425. "resolved" "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz"
  1426. "version" "1.2.1"
  1427. "astral-regex@^2.0.0":
  1428. "integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="
  1429. "resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
  1430. "version" "2.0.0"
  1431. "async-validator@^4.1.1":
  1432. "integrity" "sha512-p4DO/JXwjs8klJyJL8Q2oM4ks5fUTze/h5k10oPPKMiLe1fj3G1QMzPHNmN1Py4ycOk7WlO2DcGXv1qiESJCZA=="
  1433. "resolved" "https://registry.npmjs.org/async-validator/-/async-validator-4.1.1.tgz"
  1434. "version" "4.1.1"
  1435. "autoprefixer@^10.4.7":
  1436. "integrity" "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA=="
  1437. "resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz"
  1438. "version" "10.4.7"
  1439. dependencies:
  1440. "browserslist" "^4.20.3"
  1441. "caniuse-lite" "^1.0.30001335"
  1442. "fraction.js" "^4.2.0"
  1443. "normalize-range" "^0.1.2"
  1444. "picocolors" "^1.0.0"
  1445. "postcss-value-parser" "^4.2.0"
  1446. "babel-plugin-dynamic-import-node@^2.3.3":
  1447. "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="
  1448. "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"
  1449. "version" "2.3.3"
  1450. dependencies:
  1451. "object.assign" "^4.1.0"
  1452. "babel-plugin-polyfill-corejs2@^0.3.0":
  1453. "integrity" "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w=="
  1454. "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz"
  1455. "version" "0.3.1"
  1456. dependencies:
  1457. "@babel/compat-data" "^7.13.11"
  1458. "@babel/helper-define-polyfill-provider" "^0.3.1"
  1459. "semver" "^6.1.1"
  1460. "babel-plugin-polyfill-corejs3@^0.5.0":
  1461. "integrity" "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ=="
  1462. "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz"
  1463. "version" "0.5.2"
  1464. dependencies:
  1465. "@babel/helper-define-polyfill-provider" "^0.3.1"
  1466. "core-js-compat" "^3.21.0"
  1467. "babel-plugin-polyfill-regenerator@^0.3.0":
  1468. "integrity" "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="
  1469. "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz"
  1470. "version" "0.3.1"
  1471. dependencies:
  1472. "@babel/helper-define-polyfill-provider" "^0.3.1"
  1473. "babel-walk@3.0.0-canary-5":
  1474. "integrity" "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw=="
  1475. "resolved" "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz"
  1476. "version" "3.0.0-canary-5"
  1477. dependencies:
  1478. "@babel/types" "^7.9.6"
  1479. "balanced-match@^1.0.0":
  1480. "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
  1481. "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
  1482. "version" "1.0.2"
  1483. "base64-js@^1.3.1":
  1484. "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
  1485. "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
  1486. "version" "1.5.1"
  1487. "binary-extensions@^2.0.0":
  1488. "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
  1489. "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
  1490. "version" "2.2.0"
  1491. "bl@^4.1.0":
  1492. "integrity" "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="
  1493. "resolved" "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
  1494. "version" "4.1.0"
  1495. dependencies:
  1496. "buffer" "^5.5.0"
  1497. "inherits" "^2.0.4"
  1498. "readable-stream" "^3.4.0"
  1499. "bl@^5.0.0":
  1500. "integrity" "sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ=="
  1501. "resolved" "https://registry.npmjs.org/bl/-/bl-5.0.0.tgz"
  1502. "version" "5.0.0"
  1503. dependencies:
  1504. "buffer" "^6.0.3"
  1505. "inherits" "^2.0.4"
  1506. "readable-stream" "^3.4.0"
  1507. "boolbase@^1.0.0":
  1508. "integrity" "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
  1509. "resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
  1510. "version" "1.0.0"
  1511. "brace-expansion@^1.1.7":
  1512. "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
  1513. "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
  1514. "version" "1.1.11"
  1515. dependencies:
  1516. "balanced-match" "^1.0.0"
  1517. "concat-map" "0.0.1"
  1518. "brace-expansion@^2.0.1":
  1519. "integrity" "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="
  1520. "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"
  1521. "version" "2.0.1"
  1522. dependencies:
  1523. "balanced-match" "^1.0.0"
  1524. "braces@^3.0.2", "braces@~3.0.2":
  1525. "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
  1526. "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
  1527. "version" "3.0.2"
  1528. dependencies:
  1529. "fill-range" "^7.0.1"
  1530. "browserslist@^4.20.2", "browserslist@^4.20.3", "browserslist@^4.20.4":
  1531. "integrity" "sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw=="
  1532. "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.20.4.tgz"
  1533. "version" "4.20.4"
  1534. dependencies:
  1535. "caniuse-lite" "^1.0.30001349"
  1536. "electron-to-chromium" "^1.4.147"
  1537. "escalade" "^3.1.1"
  1538. "node-releases" "^2.0.5"
  1539. "picocolors" "^1.0.0"
  1540. "buffer@^5.5.0":
  1541. "integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
  1542. "resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
  1543. "version" "5.7.1"
  1544. dependencies:
  1545. "base64-js" "^1.3.1"
  1546. "ieee754" "^1.1.13"
  1547. "buffer@^6.0.3":
  1548. "integrity" "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="
  1549. "resolved" "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
  1550. "version" "6.0.3"
  1551. dependencies:
  1552. "base64-js" "^1.3.1"
  1553. "ieee754" "^1.2.1"
  1554. "call-bind@^1.0.0", "call-bind@^1.0.2":
  1555. "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
  1556. "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
  1557. "version" "1.0.2"
  1558. dependencies:
  1559. "function-bind" "^1.1.1"
  1560. "get-intrinsic" "^1.0.2"
  1561. "callsites@^3.0.0":
  1562. "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
  1563. "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
  1564. "version" "3.1.0"
  1565. "camel-case@^4.1.2":
  1566. "integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw=="
  1567. "resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz"
  1568. "version" "4.1.2"
  1569. dependencies:
  1570. "pascal-case" "^3.1.2"
  1571. "tslib" "^2.0.3"
  1572. "camelcase-css@^2.0.1":
  1573. "integrity" "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
  1574. "resolved" "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz"
  1575. "version" "2.0.1"
  1576. "camelcase@^6.0.0":
  1577. "integrity" "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
  1578. "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"
  1579. "version" "6.3.0"
  1580. "caniuse-lite@^1.0.30001335", "caniuse-lite@^1.0.30001349":
  1581. "integrity" "sha512-GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA=="
  1582. "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001352.tgz"
  1583. "version" "1.0.30001352"
  1584. "capital-case@^1.0.4":
  1585. "integrity" "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="
  1586. "resolved" "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz"
  1587. "version" "1.0.4"
  1588. dependencies:
  1589. "no-case" "^3.0.4"
  1590. "tslib" "^2.0.3"
  1591. "upper-case-first" "^2.0.2"
  1592. "chalk@^2.0.0":
  1593. "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
  1594. "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
  1595. "version" "2.4.2"
  1596. dependencies:
  1597. "ansi-styles" "^3.2.1"
  1598. "escape-string-regexp" "^1.0.5"
  1599. "supports-color" "^5.3.0"
  1600. "chalk@^4.0.0":
  1601. "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
  1602. "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
  1603. "version" "4.1.2"
  1604. dependencies:
  1605. "ansi-styles" "^4.1.0"
  1606. "supports-color" "^7.1.0"
  1607. "chalk@^4.1.0", "chalk@^4.1.1":
  1608. "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
  1609. "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
  1610. "version" "4.1.2"
  1611. dependencies:
  1612. "ansi-styles" "^4.1.0"
  1613. "supports-color" "^7.1.0"
  1614. "chalk@^5.0.0":
  1615. "integrity" "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w=="
  1616. "resolved" "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz"
  1617. "version" "5.0.1"
  1618. "chalk@^5.0.1":
  1619. "integrity" "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w=="
  1620. "resolved" "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz"
  1621. "version" "5.0.1"
  1622. "change-case@^4.1.2":
  1623. "integrity" "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A=="
  1624. "resolved" "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz"
  1625. "version" "4.1.2"
  1626. dependencies:
  1627. "camel-case" "^4.1.2"
  1628. "capital-case" "^1.0.4"
  1629. "constant-case" "^3.0.4"
  1630. "dot-case" "^3.0.4"
  1631. "header-case" "^2.0.4"
  1632. "no-case" "^3.0.4"
  1633. "param-case" "^3.0.4"
  1634. "pascal-case" "^3.1.2"
  1635. "path-case" "^3.0.4"
  1636. "sentence-case" "^3.0.4"
  1637. "snake-case" "^3.0.4"
  1638. "tslib" "^2.0.3"
  1639. "character-parser@^2.2.0":
  1640. "integrity" "sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw=="
  1641. "resolved" "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz"
  1642. "version" "2.2.0"
  1643. dependencies:
  1644. "is-regex" "^1.0.3"
  1645. "chardet@^0.7.0":
  1646. "integrity" "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
  1647. "resolved" "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"
  1648. "version" "0.7.0"
  1649. "chokidar@^3.5.3":
  1650. "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="
  1651. "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
  1652. "version" "3.5.3"
  1653. dependencies:
  1654. "anymatch" "~3.1.2"
  1655. "braces" "~3.0.2"
  1656. "glob-parent" "~5.1.2"
  1657. "is-binary-path" "~2.1.0"
  1658. "is-glob" "~4.0.1"
  1659. "normalize-path" "~3.0.0"
  1660. "readdirp" "~3.6.0"
  1661. optionalDependencies:
  1662. "fsevents" "~2.3.2"
  1663. "ci-info@^1.5.0":
  1664. "integrity" "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A=="
  1665. "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz"
  1666. "version" "1.6.0"
  1667. "classnames@^2.3.1":
  1668. "integrity" "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="
  1669. "resolved" "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz"
  1670. "version" "2.3.1"
  1671. "clean-deep@^3.4.0":
  1672. "integrity" "sha512-Lo78NV5ItJL/jl+B5w0BycAisaieJGXK1qYi/9m4SjR8zbqmrUtO7Yhro40wEShGmmxs/aJLI/A+jNhdkXK8mw=="
  1673. "resolved" "https://registry.npmjs.org/clean-deep/-/clean-deep-3.4.0.tgz"
  1674. "version" "3.4.0"
  1675. dependencies:
  1676. "lodash.isempty" "^4.4.0"
  1677. "lodash.isplainobject" "^4.0.6"
  1678. "lodash.transform" "^4.6.0"
  1679. "clean-stack@^2.0.0":
  1680. "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
  1681. "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
  1682. "version" "2.2.0"
  1683. "cli-cursor@^3.1.0":
  1684. "integrity" "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="
  1685. "resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"
  1686. "version" "3.1.0"
  1687. dependencies:
  1688. "restore-cursor" "^3.1.0"
  1689. "cli-cursor@^4.0.0":
  1690. "integrity" "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg=="
  1691. "resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz"
  1692. "version" "4.0.0"
  1693. dependencies:
  1694. "restore-cursor" "^4.0.0"
  1695. "cli-spinners@^2.5.0", "cli-spinners@^2.6.1":
  1696. "integrity" "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g=="
  1697. "resolved" "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz"
  1698. "version" "2.6.1"
  1699. "cli-truncate@^2.1.0":
  1700. "integrity" "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg=="
  1701. "resolved" "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz"
  1702. "version" "2.1.0"
  1703. dependencies:
  1704. "slice-ansi" "^3.0.0"
  1705. "string-width" "^4.2.0"
  1706. "cli-truncate@^3.1.0":
  1707. "integrity" "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA=="
  1708. "resolved" "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz"
  1709. "version" "3.1.0"
  1710. dependencies:
  1711. "slice-ansi" "^5.0.0"
  1712. "string-width" "^5.0.0"
  1713. "cli-width@^3.0.0":
  1714. "integrity" "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="
  1715. "resolved" "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz"
  1716. "version" "3.0.0"
  1717. "clone@^1.0.2":
  1718. "integrity" "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="
  1719. "resolved" "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"
  1720. "version" "1.0.4"
  1721. "color-convert@^1.9.0":
  1722. "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
  1723. "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
  1724. "version" "1.9.3"
  1725. dependencies:
  1726. "color-name" "1.1.3"
  1727. "color-convert@^2.0.1":
  1728. "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
  1729. "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
  1730. "version" "2.0.1"
  1731. dependencies:
  1732. "color-name" "~1.1.4"
  1733. "color-name@^1.1.4":
  1734. "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
  1735. "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
  1736. "version" "1.1.4"
  1737. "color-name@~1.1.4":
  1738. "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
  1739. "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
  1740. "version" "1.1.4"
  1741. "color-name@1.1.3":
  1742. "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
  1743. "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
  1744. "version" "1.1.3"
  1745. "colorette@^2.0.16":
  1746. "integrity" "sha512-rHDY1i4V4JBCXHnHwaVyA202CKSj2kUrjI5cSJQbTdnFeI4ShV3e19Fe7EQfzL2tjSrvYyWugdGAtEc1lLvGDg=="
  1747. "resolved" "https://registry.npmjs.org/colorette/-/colorette-2.0.18.tgz"
  1748. "version" "2.0.18"
  1749. "commander@^9.3.0":
  1750. "integrity" "sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw=="
  1751. "resolved" "https://registry.npmjs.org/commander/-/commander-9.3.0.tgz"
  1752. "version" "9.3.0"
  1753. "concat-map@0.0.1":
  1754. "integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
  1755. "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
  1756. "version" "0.0.1"
  1757. "constant-case@^3.0.4":
  1758. "integrity" "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ=="
  1759. "resolved" "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz"
  1760. "version" "3.0.4"
  1761. dependencies:
  1762. "no-case" "^3.0.4"
  1763. "tslib" "^2.0.3"
  1764. "upper-case" "^2.0.2"
  1765. "constantinople@^4.0.1":
  1766. "integrity" "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw=="
  1767. "resolved" "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz"
  1768. "version" "4.0.1"
  1769. dependencies:
  1770. "@babel/parser" "^7.6.0"
  1771. "@babel/types" "^7.6.1"
  1772. "convert-source-map@^1.7.0":
  1773. "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="
  1774. "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"
  1775. "version" "1.8.0"
  1776. dependencies:
  1777. "safe-buffer" "~5.1.1"
  1778. "copy-anything@^2.0.1":
  1779. "integrity" "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw=="
  1780. "resolved" "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz"
  1781. "version" "2.0.6"
  1782. dependencies:
  1783. "is-what" "^3.14.1"
  1784. "copy-text-to-clipboard@^3.0.1":
  1785. "integrity" "sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q=="
  1786. "resolved" "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.0.1.tgz"
  1787. "version" "3.0.1"
  1788. "core-js-compat@^3.21.0", "core-js-compat@^3.22.1":
  1789. "integrity" "sha512-i4FgbtahOArZBEteiL+czI5N/bp17w16bXmLagGThdA2zuX1a5X4HbBmOVD7ERRtk3wMtPOFEmlXpVV4lsvwNw=="
  1790. "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.0.tgz"
  1791. "version" "3.23.0"
  1792. dependencies:
  1793. "browserslist" "^4.20.4"
  1794. "semver" "7.0.0"
  1795. "core-js@^3.11.0", "core-js@^3.22.0", "core-js@^3.22.3":
  1796. "integrity" "sha512-v2/hZoRcRrvQiBoGsHwmRdr+S4oICKcjA6xb2qjVurin6TpcDC1X2CIDa8rdu/d5n8RT/Sdoos2IlnpQ1rXs5A=="
  1797. "resolved" "https://registry.npmjs.org/core-js/-/core-js-3.23.0.tgz"
  1798. "version" "3.23.0"
  1799. "cross-spawn@^5.0.1":
  1800. "integrity" "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A=="
  1801. "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"
  1802. "version" "5.1.0"
  1803. dependencies:
  1804. "lru-cache" "^4.0.1"
  1805. "shebang-command" "^1.2.0"
  1806. "which" "^1.2.9"
  1807. "cross-spawn@^7.0.2", "cross-spawn@^7.0.3":
  1808. "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
  1809. "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
  1810. "version" "7.0.3"
  1811. dependencies:
  1812. "path-key" "^3.1.0"
  1813. "shebang-command" "^2.0.0"
  1814. "which" "^2.0.1"
  1815. "cssesc@^3.0.0":
  1816. "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
  1817. "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
  1818. "version" "3.0.0"
  1819. "csstype@^2.6.8":
  1820. "integrity" "sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA=="
  1821. "resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.20.tgz"
  1822. "version" "2.6.20"
  1823. "custom-event-polyfill@^1.0.7":
  1824. "integrity" "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w=="
  1825. "resolved" "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz"
  1826. "version" "1.0.7"
  1827. "dayjs@^1.10.7", "dayjs@^1.11.3":
  1828. "integrity" "sha512-xxwlswWOlGhzgQ4TKzASQkUhqERI3egRNqgV4ScR8wlANA/A9tZ7miXa44vTTKEq5l7vWoL5G57bG3zA+Kow0A=="
  1829. "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.3.tgz"
  1830. "version" "1.11.3"
  1831. "debug@^3.2.6":
  1832. "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="
  1833. "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
  1834. "version" "3.2.7"
  1835. dependencies:
  1836. "ms" "^2.1.1"
  1837. "debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.2", "debug@^4.3.3", "debug@^4.3.4":
  1838. "integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
  1839. "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
  1840. "version" "4.3.4"
  1841. dependencies:
  1842. "ms" "2.1.2"
  1843. "decode-uri-component@^0.2.0":
  1844. "integrity" "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og=="
  1845. "resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
  1846. "version" "0.2.0"
  1847. "deep-is@^0.1.3":
  1848. "integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
  1849. "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
  1850. "version" "0.1.4"
  1851. "defaults@^1.0.3":
  1852. "integrity" "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA=="
  1853. "resolved" "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"
  1854. "version" "1.0.3"
  1855. dependencies:
  1856. "clone" "^1.0.2"
  1857. "define-properties@^1.1.3":
  1858. "integrity" "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="
  1859. "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"
  1860. "version" "1.1.4"
  1861. dependencies:
  1862. "has-property-descriptors" "^1.0.0"
  1863. "object-keys" "^1.1.1"
  1864. "defined@^1.0.0":
  1865. "integrity" "sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ=="
  1866. "resolved" "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"
  1867. "version" "1.0.0"
  1868. "del@^6.0.0":
  1869. "integrity" "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg=="
  1870. "resolved" "https://registry.npmjs.org/del/-/del-6.1.1.tgz"
  1871. "version" "6.1.1"
  1872. dependencies:
  1873. "globby" "^11.0.1"
  1874. "graceful-fs" "^4.2.4"
  1875. "is-glob" "^4.0.1"
  1876. "is-path-cwd" "^2.2.0"
  1877. "is-path-inside" "^3.0.2"
  1878. "p-map" "^4.0.0"
  1879. "rimraf" "^3.0.2"
  1880. "slash" "^3.0.0"
  1881. "detect-file@^1.0.0":
  1882. "integrity" "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q=="
  1883. "resolved" "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"
  1884. "version" "1.0.0"
  1885. "detective@^5.2.1":
  1886. "integrity" "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw=="
  1887. "resolved" "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz"
  1888. "version" "5.2.1"
  1889. dependencies:
  1890. "acorn-node" "^1.8.2"
  1891. "defined" "^1.0.0"
  1892. "minimist" "^1.2.6"
  1893. "didyoumean@^1.2.2":
  1894. "integrity" "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
  1895. "resolved" "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz"
  1896. "version" "1.2.2"
  1897. "dir-glob@^3.0.1":
  1898. "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="
  1899. "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
  1900. "version" "3.0.1"
  1901. dependencies:
  1902. "path-type" "^4.0.0"
  1903. "dlv@^1.1.3":
  1904. "integrity" "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
  1905. "resolved" "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz"
  1906. "version" "1.1.3"
  1907. "doctrine@^3.0.0":
  1908. "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
  1909. "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
  1910. "version" "3.0.0"
  1911. dependencies:
  1912. "esutils" "^2.0.2"
  1913. "doctypes@^1.1.0":
  1914. "integrity" "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ=="
  1915. "resolved" "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz"
  1916. "version" "1.1.0"
  1917. "dom-serializer@^1.0.1":
  1918. "integrity" "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag=="
  1919. "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz"
  1920. "version" "1.4.1"
  1921. dependencies:
  1922. "domelementtype" "^2.0.1"
  1923. "domhandler" "^4.2.0"
  1924. "entities" "^2.0.0"
  1925. "dom7@^4.0.4":
  1926. "integrity" "sha512-DSSgBzQ4rJWQp1u6o+3FVwMNnT5bzQbMb+o31TjYYeRi05uAcpF8koxdfzeoe5ElzPmua7W7N28YJhF7iEKqIw=="
  1927. "resolved" "https://registry.npmjs.org/dom7/-/dom7-4.0.4.tgz"
  1928. "version" "4.0.4"
  1929. dependencies:
  1930. "ssr-window" "^4.0.0"
  1931. "domelementtype@^2.0.1", "domelementtype@^2.2.0":
  1932. "integrity" "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
  1933. "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz"
  1934. "version" "2.3.0"
  1935. "domhandler@^4.2.0", "domhandler@^4.2.2":
  1936. "integrity" "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="
  1937. "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz"
  1938. "version" "4.3.1"
  1939. dependencies:
  1940. "domelementtype" "^2.2.0"
  1941. "domutils@^2.8.0":
  1942. "integrity" "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="
  1943. "resolved" "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"
  1944. "version" "2.8.0"
  1945. dependencies:
  1946. "dom-serializer" "^1.0.1"
  1947. "domelementtype" "^2.2.0"
  1948. "domhandler" "^4.2.0"
  1949. "dot-case@^3.0.4":
  1950. "integrity" "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="
  1951. "resolved" "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz"
  1952. "version" "3.0.4"
  1953. dependencies:
  1954. "no-case" "^3.0.4"
  1955. "tslib" "^2.0.3"
  1956. "eastasianwidth@^0.2.0":
  1957. "integrity" "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
  1958. "resolved" "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"
  1959. "version" "0.2.0"
  1960. "electron-to-chromium@^1.4.147":
  1961. "integrity" "sha512-GbV9djOkrnj6xmW+YYVVEI3VCQnJ0pnSTu7TW2JyjKd5cakoiSaG5R4RbEtfaD92GsY10DzbU3GYRe+IOA9kqA=="
  1962. "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.154.tgz"
  1963. "version" "1.4.154"
  1964. "element-plus@^2.2.5":
  1965. "integrity" "sha512-Kl0yn/PQca5YQo3M3NPBP4Xl71NQuMtDx5zNXZGVyl5FjdMujXiFB9SXKYGDUCgFU3d/Rl14vB4Fpmcl2Iz+Hw=="
  1966. "resolved" "https://registry.npmjs.org/element-plus/-/element-plus-2.2.5.tgz"
  1967. "version" "2.2.5"
  1968. dependencies:
  1969. "@ctrl/tinycolor" "^3.4.1"
  1970. "@element-plus/icons-vue" "^2.0.5"
  1971. "@floating-ui/dom" "^0.5.2"
  1972. "@popperjs/core" "npm:@sxzz/popperjs-es@^2.11.7"
  1973. "@types/lodash" "^4.14.182"
  1974. "@types/lodash-es" "^4.17.6"
  1975. "@vueuse/core" "^8.6.0"
  1976. "async-validator" "^4.1.1"
  1977. "dayjs" "^1.11.3"
  1978. "escape-html" "^1.0.3"
  1979. "lodash" "^4.17.21"
  1980. "lodash-es" "^4.17.21"
  1981. "lodash-unified" "^1.0.2"
  1982. "memoize-one" "^6.0.0"
  1983. "normalize-wheel-es" "^1.1.2"
  1984. "emmet@^2.3.0":
  1985. "integrity" "sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A=="
  1986. "resolved" "https://registry.npmjs.org/emmet/-/emmet-2.3.6.tgz"
  1987. "version" "2.3.6"
  1988. dependencies:
  1989. "@emmetio/abbreviation" "^2.2.3"
  1990. "@emmetio/css-abbreviation" "^2.1.4"
  1991. "emoji-regex@^8.0.0":
  1992. "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
  1993. "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
  1994. "version" "8.0.0"
  1995. "emoji-regex@^9.2.2":
  1996. "integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
  1997. "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz"
  1998. "version" "9.2.2"
  1999. "encoding@^0.1.11":
  2000. "integrity" "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="
  2001. "resolved" "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"
  2002. "version" "0.1.13"
  2003. dependencies:
  2004. "iconv-lite" "^0.6.2"
  2005. "entities@^2.0.0":
  2006. "integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
  2007. "resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"
  2008. "version" "2.2.0"
  2009. "entities@^3.0.1":
  2010. "integrity" "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q=="
  2011. "resolved" "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz"
  2012. "version" "3.0.1"
  2013. "errno@^0.1.1":
  2014. "integrity" "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A=="
  2015. "resolved" "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz"
  2016. "version" "0.1.8"
  2017. dependencies:
  2018. "prr" "~1.0.1"
  2019. "es-module-lexer@^0.9.3":
  2020. "integrity" "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="
  2021. "resolved" "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz"
  2022. "version" "0.9.3"
  2023. "esbuild-windows-64@0.14.43":
  2024. "integrity" "sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw=="
  2025. "resolved" "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.43.tgz"
  2026. "version" "0.14.43"
  2027. "esbuild@^0.14.27":
  2028. "integrity" "sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA=="
  2029. "resolved" "https://registry.npmjs.org/esbuild/-/esbuild-0.14.43.tgz"
  2030. "version" "0.14.43"
  2031. optionalDependencies:
  2032. "esbuild-android-64" "0.14.43"
  2033. "esbuild-android-arm64" "0.14.43"
  2034. "esbuild-darwin-64" "0.14.43"
  2035. "esbuild-darwin-arm64" "0.14.43"
  2036. "esbuild-freebsd-64" "0.14.43"
  2037. "esbuild-freebsd-arm64" "0.14.43"
  2038. "esbuild-linux-32" "0.14.43"
  2039. "esbuild-linux-64" "0.14.43"
  2040. "esbuild-linux-arm" "0.14.43"
  2041. "esbuild-linux-arm64" "0.14.43"
  2042. "esbuild-linux-mips64le" "0.14.43"
  2043. "esbuild-linux-ppc64le" "0.14.43"
  2044. "esbuild-linux-riscv64" "0.14.43"
  2045. "esbuild-linux-s390x" "0.14.43"
  2046. "esbuild-netbsd-64" "0.14.43"
  2047. "esbuild-openbsd-64" "0.14.43"
  2048. "esbuild-sunos-64" "0.14.43"
  2049. "esbuild-windows-32" "0.14.43"
  2050. "esbuild-windows-64" "0.14.43"
  2051. "esbuild-windows-arm64" "0.14.43"
  2052. "escalade@^3.1.1":
  2053. "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
  2054. "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
  2055. "version" "3.1.1"
  2056. "escape-html@^1.0.3":
  2057. "integrity" "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
  2058. "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
  2059. "version" "1.0.3"
  2060. "escape-string-regexp@^1.0.5":
  2061. "integrity" "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
  2062. "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
  2063. "version" "1.0.5"
  2064. "escape-string-regexp@^4.0.0":
  2065. "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
  2066. "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
  2067. "version" "4.0.0"
  2068. "escape-string-regexp@^5.0.0":
  2069. "integrity" "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
  2070. "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz"
  2071. "version" "5.0.0"
  2072. "eslint-config-prettier@^6.0.0":
  2073. "integrity" "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw=="
  2074. "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz"
  2075. "version" "6.15.0"
  2076. dependencies:
  2077. "get-stdin" "^6.0.0"
  2078. "eslint-plugin-prettier@^4.0.0":
  2079. "integrity" "sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ=="
  2080. "resolved" "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz"
  2081. "version" "4.0.0"
  2082. dependencies:
  2083. "prettier-linter-helpers" "^1.0.0"
  2084. "eslint-plugin-vue@^8.2.0":
  2085. "integrity" "sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg=="
  2086. "resolved" "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.7.1.tgz"
  2087. "version" "8.7.1"
  2088. dependencies:
  2089. "eslint-utils" "^3.0.0"
  2090. "natural-compare" "^1.4.0"
  2091. "nth-check" "^2.0.1"
  2092. "postcss-selector-parser" "^6.0.9"
  2093. "semver" "^7.3.5"
  2094. "vue-eslint-parser" "^8.0.1"
  2095. "eslint-scope@^5.1.1":
  2096. "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="
  2097. "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
  2098. "version" "5.1.1"
  2099. dependencies:
  2100. "esrecurse" "^4.3.0"
  2101. "estraverse" "^4.1.1"
  2102. "eslint-scope@^7.0.0":
  2103. "integrity" "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="
  2104. "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz"
  2105. "version" "7.1.1"
  2106. dependencies:
  2107. "esrecurse" "^4.3.0"
  2108. "estraverse" "^5.2.0"
  2109. "eslint-scope@^7.1.1":
  2110. "integrity" "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="
  2111. "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz"
  2112. "version" "7.1.1"
  2113. dependencies:
  2114. "esrecurse" "^4.3.0"
  2115. "estraverse" "^5.2.0"
  2116. "eslint-utils@^3.0.0":
  2117. "integrity" "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA=="
  2118. "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz"
  2119. "version" "3.0.0"
  2120. dependencies:
  2121. "eslint-visitor-keys" "^2.0.0"
  2122. "eslint-visitor-keys@^2.0.0":
  2123. "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="
  2124. "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
  2125. "version" "2.1.0"
  2126. "eslint-visitor-keys@^3.1.0", "eslint-visitor-keys@^3.3.0":
  2127. "integrity" "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="
  2128. "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"
  2129. "version" "3.3.0"
  2130. "eslint@^8.4.1":
  2131. "integrity" "sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw=="
  2132. "resolved" "https://registry.npmjs.org/eslint/-/eslint-8.17.0.tgz"
  2133. "version" "8.17.0"
  2134. dependencies:
  2135. "@eslint/eslintrc" "^1.3.0"
  2136. "@humanwhocodes/config-array" "^0.9.2"
  2137. "ajv" "^6.10.0"
  2138. "chalk" "^4.0.0"
  2139. "cross-spawn" "^7.0.2"
  2140. "debug" "^4.3.2"
  2141. "doctrine" "^3.0.0"
  2142. "escape-string-regexp" "^4.0.0"
  2143. "eslint-scope" "^7.1.1"
  2144. "eslint-utils" "^3.0.0"
  2145. "eslint-visitor-keys" "^3.3.0"
  2146. "espree" "^9.3.2"
  2147. "esquery" "^1.4.0"
  2148. "esutils" "^2.0.2"
  2149. "fast-deep-equal" "^3.1.3"
  2150. "file-entry-cache" "^6.0.1"
  2151. "functional-red-black-tree" "^1.0.1"
  2152. "glob-parent" "^6.0.1"
  2153. "globals" "^13.15.0"
  2154. "ignore" "^5.2.0"
  2155. "import-fresh" "^3.0.0"
  2156. "imurmurhash" "^0.1.4"
  2157. "is-glob" "^4.0.0"
  2158. "js-yaml" "^4.1.0"
  2159. "json-stable-stringify-without-jsonify" "^1.0.1"
  2160. "levn" "^0.4.1"
  2161. "lodash.merge" "^4.6.2"
  2162. "minimatch" "^3.1.2"
  2163. "natural-compare" "^1.4.0"
  2164. "optionator" "^0.9.1"
  2165. "regexpp" "^3.2.0"
  2166. "strip-ansi" "^6.0.1"
  2167. "strip-json-comments" "^3.1.0"
  2168. "text-table" "^0.2.0"
  2169. "v8-compile-cache" "^2.0.3"
  2170. "espree@^9.0.0", "espree@^9.3.2":
  2171. "integrity" "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA=="
  2172. "resolved" "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz"
  2173. "version" "9.3.2"
  2174. dependencies:
  2175. "acorn" "^8.7.1"
  2176. "acorn-jsx" "^5.3.2"
  2177. "eslint-visitor-keys" "^3.3.0"
  2178. "esquery@^1.4.0":
  2179. "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="
  2180. "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
  2181. "version" "1.4.0"
  2182. dependencies:
  2183. "estraverse" "^5.1.0"
  2184. "esrecurse@^4.3.0":
  2185. "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="
  2186. "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
  2187. "version" "4.3.0"
  2188. dependencies:
  2189. "estraverse" "^5.2.0"
  2190. "estraverse@^4.1.1":
  2191. "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
  2192. "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
  2193. "version" "4.3.0"
  2194. "estraverse@^5.1.0":
  2195. "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
  2196. "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
  2197. "version" "5.3.0"
  2198. "estraverse@^5.2.0":
  2199. "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
  2200. "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
  2201. "version" "5.3.0"
  2202. "estree-walker@^2.0.1", "estree-walker@^2.0.2":
  2203. "integrity" "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
  2204. "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
  2205. "version" "2.0.2"
  2206. "esutils@^2.0.2":
  2207. "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
  2208. "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
  2209. "version" "2.0.3"
  2210. "execa@^0.8.0":
  2211. "integrity" "sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA=="
  2212. "resolved" "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz"
  2213. "version" "0.8.0"
  2214. dependencies:
  2215. "cross-spawn" "^5.0.1"
  2216. "get-stream" "^3.0.0"
  2217. "is-stream" "^1.1.0"
  2218. "npm-run-path" "^2.0.0"
  2219. "p-finally" "^1.0.0"
  2220. "signal-exit" "^3.0.0"
  2221. "strip-eof" "^1.0.0"
  2222. "execa@^5.1.1":
  2223. "integrity" "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="
  2224. "resolved" "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"
  2225. "version" "5.1.1"
  2226. dependencies:
  2227. "cross-spawn" "^7.0.3"
  2228. "get-stream" "^6.0.0"
  2229. "human-signals" "^2.1.0"
  2230. "is-stream" "^2.0.0"
  2231. "merge-stream" "^2.0.0"
  2232. "npm-run-path" "^4.0.1"
  2233. "onetime" "^5.1.2"
  2234. "signal-exit" "^3.0.3"
  2235. "strip-final-newline" "^2.0.0"
  2236. "expand-tilde@^2.0.0", "expand-tilde@^2.0.2":
  2237. "integrity" "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw=="
  2238. "resolved" "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"
  2239. "version" "2.0.2"
  2240. dependencies:
  2241. "homedir-polyfill" "^1.0.1"
  2242. "extend@^3.0.2":
  2243. "integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
  2244. "resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
  2245. "version" "3.0.2"
  2246. "external-editor@^3.0.3":
  2247. "integrity" "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="
  2248. "resolved" "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"
  2249. "version" "3.1.0"
  2250. dependencies:
  2251. "chardet" "^0.7.0"
  2252. "iconv-lite" "^0.4.24"
  2253. "tmp" "^0.0.33"
  2254. "fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3":
  2255. "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
  2256. "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
  2257. "version" "3.1.3"
  2258. "fast-diff@^1.1.2":
  2259. "integrity" "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="
  2260. "resolved" "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz"
  2261. "version" "1.2.0"
  2262. "fast-glob@^3.2.11", "fast-glob@^3.2.9":
  2263. "integrity" "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="
  2264. "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz"
  2265. "version" "3.2.11"
  2266. dependencies:
  2267. "@nodelib/fs.stat" "^2.0.2"
  2268. "@nodelib/fs.walk" "^1.2.3"
  2269. "glob-parent" "^5.1.2"
  2270. "merge2" "^1.3.0"
  2271. "micromatch" "^4.0.4"
  2272. "fast-json-stable-stringify@^2.0.0":
  2273. "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
  2274. "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
  2275. "version" "2.1.0"
  2276. "fast-levenshtein@^2.0.6":
  2277. "integrity" "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
  2278. "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
  2279. "version" "2.0.6"
  2280. "fastq@^1.6.0":
  2281. "integrity" "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="
  2282. "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"
  2283. "version" "1.13.0"
  2284. dependencies:
  2285. "reusify" "^1.0.4"
  2286. "figures@^3.0.0":
  2287. "integrity" "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="
  2288. "resolved" "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"
  2289. "version" "3.2.0"
  2290. dependencies:
  2291. "escape-string-regexp" "^1.0.5"
  2292. "file-entry-cache@^6.0.1":
  2293. "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="
  2294. "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
  2295. "version" "6.0.1"
  2296. dependencies:
  2297. "flat-cache" "^3.0.4"
  2298. "fill-range@^7.0.1":
  2299. "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="
  2300. "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
  2301. "version" "7.0.1"
  2302. dependencies:
  2303. "to-regex-range" "^5.0.1"
  2304. "filter-obj@^1.1.0":
  2305. "integrity" "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ=="
  2306. "resolved" "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz"
  2307. "version" "1.1.0"
  2308. "findup-sync@^5.0.0":
  2309. "integrity" "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ=="
  2310. "resolved" "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz"
  2311. "version" "5.0.0"
  2312. dependencies:
  2313. "detect-file" "^1.0.0"
  2314. "is-glob" "^4.0.3"
  2315. "micromatch" "^4.0.4"
  2316. "resolve-dir" "^1.0.1"
  2317. "fined@^2.0.0":
  2318. "integrity" "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A=="
  2319. "resolved" "https://registry.npmjs.org/fined/-/fined-2.0.0.tgz"
  2320. "version" "2.0.0"
  2321. dependencies:
  2322. "expand-tilde" "^2.0.2"
  2323. "is-plain-object" "^5.0.0"
  2324. "object.defaults" "^1.1.0"
  2325. "object.pick" "^1.3.0"
  2326. "parse-filepath" "^1.0.2"
  2327. "flagged-respawn@^2.0.0":
  2328. "integrity" "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA=="
  2329. "resolved" "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-2.0.0.tgz"
  2330. "version" "2.0.0"
  2331. "flat-cache@^3.0.4":
  2332. "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="
  2333. "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"
  2334. "version" "3.0.4"
  2335. dependencies:
  2336. "flatted" "^3.1.0"
  2337. "rimraf" "^3.0.2"
  2338. "flatted@^3.1.0":
  2339. "integrity" "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="
  2340. "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz"
  2341. "version" "3.2.5"
  2342. "for-in@^1.0.1":
  2343. "integrity" "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="
  2344. "resolved" "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
  2345. "version" "1.0.2"
  2346. "for-own@^1.0.0":
  2347. "integrity" "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg=="
  2348. "resolved" "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"
  2349. "version" "1.0.0"
  2350. dependencies:
  2351. "for-in" "^1.0.1"
  2352. "fraction.js@^4.2.0":
  2353. "integrity" "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="
  2354. "resolved" "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"
  2355. "version" "4.2.0"
  2356. "fs-extra@^10.0.0":
  2357. "integrity" "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="
  2358. "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"
  2359. "version" "10.1.0"
  2360. dependencies:
  2361. "graceful-fs" "^4.2.0"
  2362. "jsonfile" "^6.0.1"
  2363. "universalify" "^2.0.0"
  2364. "fs.realpath@^1.0.0":
  2365. "integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
  2366. "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
  2367. "version" "1.0.0"
  2368. "function-bind@^1.1.1":
  2369. "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
  2370. "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
  2371. "version" "1.1.1"
  2372. "functional-red-black-tree@^1.0.1":
  2373. "integrity" "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="
  2374. "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
  2375. "version" "1.0.1"
  2376. "gensync@^1.0.0-beta.2":
  2377. "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="
  2378. "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
  2379. "version" "1.0.0-beta.2"
  2380. "get-intrinsic@^1.0.2", "get-intrinsic@^1.1.1":
  2381. "integrity" "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA=="
  2382. "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz"
  2383. "version" "1.1.2"
  2384. dependencies:
  2385. "function-bind" "^1.1.1"
  2386. "has" "^1.0.3"
  2387. "has-symbols" "^1.0.3"
  2388. "get-stdin@^6.0.0":
  2389. "integrity" "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g=="
  2390. "resolved" "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz"
  2391. "version" "6.0.0"
  2392. "get-stream@^3.0.0":
  2393. "integrity" "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ=="
  2394. "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"
  2395. "version" "3.0.0"
  2396. "get-stream@^6.0.0":
  2397. "integrity" "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
  2398. "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"
  2399. "version" "6.0.1"
  2400. "glob-parent@^5.1.2", "glob-parent@~5.1.2":
  2401. "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
  2402. "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
  2403. "version" "5.1.2"
  2404. dependencies:
  2405. "is-glob" "^4.0.1"
  2406. "glob-parent@^6.0.1":
  2407. "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="
  2408. "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
  2409. "version" "6.0.2"
  2410. dependencies:
  2411. "is-glob" "^4.0.3"
  2412. "glob-parent@^6.0.2":
  2413. "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="
  2414. "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
  2415. "version" "6.0.2"
  2416. dependencies:
  2417. "is-glob" "^4.0.3"
  2418. "glob@^7.1.3":
  2419. "integrity" "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="
  2420. "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
  2421. "version" "7.2.3"
  2422. dependencies:
  2423. "fs.realpath" "^1.0.0"
  2424. "inflight" "^1.0.4"
  2425. "inherits" "2"
  2426. "minimatch" "^3.1.1"
  2427. "once" "^1.3.0"
  2428. "path-is-absolute" "^1.0.0"
  2429. "global-modules@^1.0.0":
  2430. "integrity" "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg=="
  2431. "resolved" "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"
  2432. "version" "1.0.0"
  2433. dependencies:
  2434. "global-prefix" "^1.0.1"
  2435. "is-windows" "^1.0.1"
  2436. "resolve-dir" "^1.0.0"
  2437. "global-prefix@^1.0.1":
  2438. "integrity" "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg=="
  2439. "resolved" "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"
  2440. "version" "1.0.2"
  2441. dependencies:
  2442. "expand-tilde" "^2.0.2"
  2443. "homedir-polyfill" "^1.0.1"
  2444. "ini" "^1.3.4"
  2445. "is-windows" "^1.0.1"
  2446. "which" "^1.2.14"
  2447. "globals@^11.1.0":
  2448. "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
  2449. "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
  2450. "version" "11.12.0"
  2451. "globals@^13.15.0":
  2452. "integrity" "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog=="
  2453. "resolved" "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz"
  2454. "version" "13.15.0"
  2455. dependencies:
  2456. "type-fest" "^0.20.2"
  2457. "globby@^11.0.1", "globby@^11.1.0":
  2458. "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="
  2459. "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
  2460. "version" "11.1.0"
  2461. dependencies:
  2462. "array-union" "^2.1.0"
  2463. "dir-glob" "^3.0.1"
  2464. "fast-glob" "^3.2.9"
  2465. "ignore" "^5.2.0"
  2466. "merge2" "^1.4.1"
  2467. "slash" "^3.0.0"
  2468. "globby@^13.1.1":
  2469. "integrity" "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ=="
  2470. "resolved" "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz"
  2471. "version" "13.1.2"
  2472. dependencies:
  2473. "dir-glob" "^3.0.1"
  2474. "fast-glob" "^3.2.11"
  2475. "ignore" "^5.2.0"
  2476. "merge2" "^1.4.1"
  2477. "slash" "^4.0.0"
  2478. "graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4":
  2479. "integrity" "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
  2480. "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"
  2481. "version" "4.2.10"
  2482. "handlebars@^4.4.3":
  2483. "integrity" "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="
  2484. "resolved" "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"
  2485. "version" "4.7.7"
  2486. dependencies:
  2487. "minimist" "^1.2.5"
  2488. "neo-async" "^2.6.0"
  2489. "source-map" "^0.6.1"
  2490. "wordwrap" "^1.0.0"
  2491. optionalDependencies:
  2492. "uglify-js" "^3.1.4"
  2493. "has-flag@^3.0.0":
  2494. "integrity" "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
  2495. "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
  2496. "version" "3.0.0"
  2497. "has-flag@^4.0.0":
  2498. "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
  2499. "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
  2500. "version" "4.0.0"
  2501. "has-property-descriptors@^1.0.0":
  2502. "integrity" "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="
  2503. "resolved" "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"
  2504. "version" "1.0.0"
  2505. dependencies:
  2506. "get-intrinsic" "^1.1.1"
  2507. "has-symbols@^1.0.1", "has-symbols@^1.0.2", "has-symbols@^1.0.3":
  2508. "integrity" "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
  2509. "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
  2510. "version" "1.0.3"
  2511. "has-tostringtag@^1.0.0":
  2512. "integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="
  2513. "resolved" "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
  2514. "version" "1.0.0"
  2515. dependencies:
  2516. "has-symbols" "^1.0.2"
  2517. "has@^1.0.3":
  2518. "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="
  2519. "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
  2520. "version" "1.0.3"
  2521. dependencies:
  2522. "function-bind" "^1.1.1"
  2523. "hash-sum@^2.0.0":
  2524. "integrity" "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg=="
  2525. "resolved" "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz"
  2526. "version" "2.0.0"
  2527. "header-case@^2.0.4":
  2528. "integrity" "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q=="
  2529. "resolved" "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz"
  2530. "version" "2.0.4"
  2531. dependencies:
  2532. "capital-case" "^1.0.4"
  2533. "tslib" "^2.0.3"
  2534. "homedir-polyfill@^1.0.1":
  2535. "integrity" "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA=="
  2536. "resolved" "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"
  2537. "version" "1.0.3"
  2538. dependencies:
  2539. "parse-passwd" "^1.0.0"
  2540. "html-tags@^3.1.0":
  2541. "integrity" "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg=="
  2542. "resolved" "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz"
  2543. "version" "3.2.0"
  2544. "html-to-image@^1.9.0":
  2545. "integrity" "sha512-9gaDCIYg62Ek07F2pBk76AHgYZ2gxq2YALU7rK3gNCqXuhu6cWzsOQqM7qGbjZiOzxGzrU1deDqZpAod2NEwbA=="
  2546. "resolved" "https://registry.npmjs.org/html-to-image/-/html-to-image-1.9.0.tgz"
  2547. "version" "1.9.0"
  2548. "htmlparser2@^7.1.2":
  2549. "integrity" "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog=="
  2550. "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz"
  2551. "version" "7.2.0"
  2552. dependencies:
  2553. "domelementtype" "^2.0.1"
  2554. "domhandler" "^4.2.2"
  2555. "domutils" "^2.8.0"
  2556. "entities" "^3.0.1"
  2557. "human-signals@^2.1.0":
  2558. "integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
  2559. "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
  2560. "version" "2.1.0"
  2561. "iconv-lite@^0.4.24":
  2562. "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="
  2563. "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
  2564. "version" "0.4.24"
  2565. dependencies:
  2566. "safer-buffer" ">= 2.1.2 < 3"
  2567. "iconv-lite@^0.6.2", "iconv-lite@^0.6.3":
  2568. "integrity" "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="
  2569. "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
  2570. "version" "0.6.3"
  2571. dependencies:
  2572. "safer-buffer" ">= 2.1.2 < 3.0.0"
  2573. "ieee754@^1.1.13", "ieee754@^1.2.1":
  2574. "integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
  2575. "resolved" "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
  2576. "version" "1.2.1"
  2577. "ignore@^5.2.0":
  2578. "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="
  2579. "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"
  2580. "version" "5.2.0"
  2581. "image-size@~0.5.0":
  2582. "integrity" "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ=="
  2583. "resolved" "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz"
  2584. "version" "0.5.5"
  2585. "import-fresh@^3.0.0", "import-fresh@^3.2.1":
  2586. "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="
  2587. "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
  2588. "version" "3.3.0"
  2589. dependencies:
  2590. "parent-module" "^1.0.0"
  2591. "resolve-from" "^4.0.0"
  2592. "imurmurhash@^0.1.4":
  2593. "integrity" "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="
  2594. "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
  2595. "version" "0.1.4"
  2596. "indent-string@^4.0.0":
  2597. "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
  2598. "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"
  2599. "version" "4.0.0"
  2600. "inflight@^1.0.4":
  2601. "integrity" "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="
  2602. "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
  2603. "version" "1.0.6"
  2604. dependencies:
  2605. "once" "^1.3.0"
  2606. "wrappy" "1"
  2607. "inherits@^2.0.3", "inherits@^2.0.4", "inherits@2":
  2608. "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
  2609. "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
  2610. "version" "2.0.4"
  2611. "ini@^1.3.4":
  2612. "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
  2613. "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
  2614. "version" "1.3.8"
  2615. "inquirer@^8.2.2":
  2616. "integrity" "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg=="
  2617. "resolved" "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz"
  2618. "version" "8.2.4"
  2619. dependencies:
  2620. "ansi-escapes" "^4.2.1"
  2621. "chalk" "^4.1.1"
  2622. "cli-cursor" "^3.1.0"
  2623. "cli-width" "^3.0.0"
  2624. "external-editor" "^3.0.3"
  2625. "figures" "^3.0.0"
  2626. "lodash" "^4.17.21"
  2627. "mute-stream" "0.0.8"
  2628. "ora" "^5.4.1"
  2629. "run-async" "^2.4.0"
  2630. "rxjs" "^7.5.5"
  2631. "string-width" "^4.1.0"
  2632. "strip-ansi" "^6.0.0"
  2633. "through" "^2.3.6"
  2634. "wrap-ansi" "^7.0.0"
  2635. "interpret@^2.2.0":
  2636. "integrity" "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw=="
  2637. "resolved" "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz"
  2638. "version" "2.2.0"
  2639. "is-absolute@^1.0.0":
  2640. "integrity" "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA=="
  2641. "resolved" "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"
  2642. "version" "1.0.0"
  2643. dependencies:
  2644. "is-relative" "^1.0.0"
  2645. "is-windows" "^1.0.1"
  2646. "is-binary-path@~2.1.0":
  2647. "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="
  2648. "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
  2649. "version" "2.1.0"
  2650. dependencies:
  2651. "binary-extensions" "^2.0.0"
  2652. "is-ci@^1.0.10":
  2653. "integrity" "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg=="
  2654. "resolved" "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz"
  2655. "version" "1.2.1"
  2656. dependencies:
  2657. "ci-info" "^1.5.0"
  2658. "is-core-module@^2.8.1":
  2659. "integrity" "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A=="
  2660. "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz"
  2661. "version" "2.9.0"
  2662. dependencies:
  2663. "has" "^1.0.3"
  2664. "is-expression@^4.0.0":
  2665. "integrity" "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A=="
  2666. "resolved" "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz"
  2667. "version" "4.0.0"
  2668. dependencies:
  2669. "acorn" "^7.1.1"
  2670. "object-assign" "^4.1.1"
  2671. "is-extglob@^2.1.1":
  2672. "integrity" "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
  2673. "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
  2674. "version" "2.1.1"
  2675. "is-fullwidth-code-point@^3.0.0":
  2676. "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
  2677. "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
  2678. "version" "3.0.0"
  2679. "is-fullwidth-code-point@^4.0.0":
  2680. "integrity" "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ=="
  2681. "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz"
  2682. "version" "4.0.0"
  2683. "is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1":
  2684. "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="
  2685. "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
  2686. "version" "4.0.3"
  2687. dependencies:
  2688. "is-extglob" "^2.1.1"
  2689. "is-interactive@^1.0.0":
  2690. "integrity" "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="
  2691. "resolved" "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz"
  2692. "version" "1.0.0"
  2693. "is-interactive@^2.0.0":
  2694. "integrity" "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ=="
  2695. "resolved" "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz"
  2696. "version" "2.0.0"
  2697. "is-number@^7.0.0":
  2698. "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
  2699. "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
  2700. "version" "7.0.0"
  2701. "is-path-cwd@^2.2.0":
  2702. "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ=="
  2703. "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz"
  2704. "version" "2.2.0"
  2705. "is-path-inside@^3.0.2":
  2706. "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
  2707. "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
  2708. "version" "3.0.3"
  2709. "is-plain-object@^5.0.0":
  2710. "integrity" "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="
  2711. "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz"
  2712. "version" "5.0.0"
  2713. "is-promise@^2.0.0":
  2714. "integrity" "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="
  2715. "resolved" "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz"
  2716. "version" "2.2.2"
  2717. "is-regex@^1.0.3":
  2718. "integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="
  2719. "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
  2720. "version" "1.1.4"
  2721. dependencies:
  2722. "call-bind" "^1.0.2"
  2723. "has-tostringtag" "^1.0.0"
  2724. "is-relative@^1.0.0":
  2725. "integrity" "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA=="
  2726. "resolved" "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"
  2727. "version" "1.0.0"
  2728. dependencies:
  2729. "is-unc-path" "^1.0.0"
  2730. "is-stream@^1.0.1", "is-stream@^1.1.0":
  2731. "integrity" "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="
  2732. "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
  2733. "version" "1.1.0"
  2734. "is-stream@^2.0.0":
  2735. "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
  2736. "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
  2737. "version" "2.0.1"
  2738. "is-unc-path@^1.0.0":
  2739. "integrity" "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="
  2740. "resolved" "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"
  2741. "version" "1.0.0"
  2742. dependencies:
  2743. "unc-path-regex" "^0.1.2"
  2744. "is-unicode-supported@^0.1.0":
  2745. "integrity" "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="
  2746. "resolved" "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"
  2747. "version" "0.1.0"
  2748. "is-unicode-supported@^1.1.0":
  2749. "integrity" "sha512-wH+U77omcRzevfIG8dDhTS0V9zZyweakfD01FULl97+0EHiJTTZtJqxPSkIIo/SDPv/i07k/C9jAPY+jwLLeUQ=="
  2750. "resolved" "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.2.0.tgz"
  2751. "version" "1.2.0"
  2752. "is-what@^3.14.1":
  2753. "integrity" "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA=="
  2754. "resolved" "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz"
  2755. "version" "3.14.1"
  2756. "is-windows@^1.0.1":
  2757. "integrity" "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
  2758. "resolved" "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
  2759. "version" "1.0.2"
  2760. "isbinaryfile@^4.0.8":
  2761. "integrity" "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw=="
  2762. "resolved" "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz"
  2763. "version" "4.0.10"
  2764. "isexe@^2.0.0":
  2765. "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
  2766. "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
  2767. "version" "2.0.0"
  2768. "isobject@^3.0.0", "isobject@^3.0.1":
  2769. "integrity" "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg=="
  2770. "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
  2771. "version" "3.0.1"
  2772. "isomorphic-fetch@^2.2.1":
  2773. "integrity" "sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA=="
  2774. "resolved" "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"
  2775. "version" "2.2.1"
  2776. dependencies:
  2777. "node-fetch" "^1.0.1"
  2778. "whatwg-fetch" ">=0.10.0"
  2779. "js-cookie@^3.0.1":
  2780. "integrity" "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw=="
  2781. "resolved" "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz"
  2782. "version" "3.0.1"
  2783. "js-stringify@^1.0.2":
  2784. "integrity" "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g=="
  2785. "resolved" "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz"
  2786. "version" "1.0.2"
  2787. "js-tokens@^4.0.0":
  2788. "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
  2789. "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
  2790. "version" "4.0.0"
  2791. "js-yaml@^4.1.0":
  2792. "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="
  2793. "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"
  2794. "version" "4.1.0"
  2795. dependencies:
  2796. "argparse" "^2.0.1"
  2797. "jsesc@^2.5.1":
  2798. "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
  2799. "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
  2800. "version" "2.5.2"
  2801. "jsesc@~0.5.0":
  2802. "integrity" "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="
  2803. "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"
  2804. "version" "0.5.0"
  2805. "json-schema-traverse@^0.4.1":
  2806. "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
  2807. "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
  2808. "version" "0.4.1"
  2809. "json-stable-stringify-without-jsonify@^1.0.1":
  2810. "integrity" "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
  2811. "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
  2812. "version" "1.0.1"
  2813. "json5@^2.2.1":
  2814. "integrity" "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="
  2815. "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"
  2816. "version" "2.2.1"
  2817. "jsonc-parser@^2.3.0":
  2818. "integrity" "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg=="
  2819. "resolved" "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz"
  2820. "version" "2.3.1"
  2821. "jsonc-parser@^3.0.0":
  2822. "integrity" "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA=="
  2823. "resolved" "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz"
  2824. "version" "3.0.0"
  2825. "jsonfile@^6.0.1":
  2826. "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="
  2827. "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
  2828. "version" "6.1.0"
  2829. dependencies:
  2830. "graceful-fs" "^4.1.6"
  2831. "universalify" "^2.0.0"
  2832. "jstransformer@1.0.0":
  2833. "integrity" "sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A=="
  2834. "resolved" "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz"
  2835. "version" "1.0.0"
  2836. dependencies:
  2837. "is-promise" "^2.0.0"
  2838. "promise" "^7.0.1"
  2839. "kind-of@^6.0.2":
  2840. "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
  2841. "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
  2842. "version" "6.0.3"
  2843. "klona@^2.0.4":
  2844. "integrity" "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ=="
  2845. "resolved" "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz"
  2846. "version" "2.0.5"
  2847. "less-loader@^10.2.0":
  2848. "integrity" "sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg=="
  2849. "resolved" "https://registry.npmjs.org/less-loader/-/less-loader-10.2.0.tgz"
  2850. "version" "10.2.0"
  2851. dependencies:
  2852. "klona" "^2.0.4"
  2853. "less@^4.1.2":
  2854. "integrity" "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA=="
  2855. "resolved" "https://registry.npmjs.org/less/-/less-4.1.3.tgz"
  2856. "version" "4.1.3"
  2857. dependencies:
  2858. "copy-anything" "^2.0.1"
  2859. "graceful-fs" "^4.1.2"
  2860. "parse-node-version" "^1.0.1"
  2861. "source-map" "~0.6.0"
  2862. "tslib" "^2.3.0"
  2863. optionalDependencies:
  2864. "errno" "^0.1.1"
  2865. "image-size" "~0.5.0"
  2866. "make-dir" "^2.1.0"
  2867. "mime" "^1.4.1"
  2868. "needle" "^3.1.0"
  2869. "levn@^0.4.1":
  2870. "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="
  2871. "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
  2872. "version" "0.4.1"
  2873. dependencies:
  2874. "prelude-ls" "^1.2.1"
  2875. "type-check" "~0.4.0"
  2876. "liftoff@^4.0.0":
  2877. "integrity" "sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA=="
  2878. "resolved" "https://registry.npmjs.org/liftoff/-/liftoff-4.0.0.tgz"
  2879. "version" "4.0.0"
  2880. dependencies:
  2881. "extend" "^3.0.2"
  2882. "findup-sync" "^5.0.0"
  2883. "fined" "^2.0.0"
  2884. "flagged-respawn" "^2.0.0"
  2885. "is-plain-object" "^5.0.0"
  2886. "object.map" "^1.0.1"
  2887. "rechoir" "^0.8.0"
  2888. "resolve" "^1.20.0"
  2889. "lilconfig@^2.0.5", "lilconfig@2.0.5":
  2890. "integrity" "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg=="
  2891. "resolved" "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz"
  2892. "version" "2.0.5"
  2893. "lint-staged@^12.1.2":
  2894. "integrity" "sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g=="
  2895. "resolved" "https://registry.npmjs.org/lint-staged/-/lint-staged-12.5.0.tgz"
  2896. "version" "12.5.0"
  2897. dependencies:
  2898. "cli-truncate" "^3.1.0"
  2899. "colorette" "^2.0.16"
  2900. "commander" "^9.3.0"
  2901. "debug" "^4.3.4"
  2902. "execa" "^5.1.1"
  2903. "lilconfig" "2.0.5"
  2904. "listr2" "^4.0.5"
  2905. "micromatch" "^4.0.5"
  2906. "normalize-path" "^3.0.0"
  2907. "object-inspect" "^1.12.2"
  2908. "pidtree" "^0.5.0"
  2909. "string-argv" "^0.3.1"
  2910. "supports-color" "^9.2.2"
  2911. "yaml" "^1.10.2"
  2912. "listr2@^4.0.5":
  2913. "integrity" "sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA=="
  2914. "resolved" "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz"
  2915. "version" "4.0.5"
  2916. dependencies:
  2917. "cli-truncate" "^2.1.0"
  2918. "colorette" "^2.0.16"
  2919. "log-update" "^4.0.0"
  2920. "p-map" "^4.0.0"
  2921. "rfdc" "^1.3.0"
  2922. "rxjs" "^7.5.5"
  2923. "through" "^2.3.8"
  2924. "wrap-ansi" "^7.0.0"
  2925. "loaders.css@^0.1.2":
  2926. "integrity" "sha512-Rhowlq24ey1VOeor+3wYOt9+MjaxBOJm1u4KlQgNC3+0xJ0LS4wq4iG57D/BPzvuD/7HHDGQOWJ+81oR2EI9bQ=="
  2927. "resolved" "https://registry.npmjs.org/loaders.css/-/loaders.css-0.1.2.tgz"
  2928. "version" "0.1.2"
  2929. "loadjs@^4.2.0":
  2930. "integrity" "sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA=="
  2931. "resolved" "https://registry.npmjs.org/loadjs/-/loadjs-4.2.0.tgz"
  2932. "version" "4.2.0"
  2933. "local-pkg@^0.4.1":
  2934. "integrity" "sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw=="
  2935. "resolved" "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.1.tgz"
  2936. "version" "0.4.1"
  2937. "lodash-es@^4.17.21":
  2938. "integrity" "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
  2939. "resolved" "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz"
  2940. "version" "4.17.21"
  2941. "lodash-unified@^1.0.2":
  2942. "integrity" "sha512-OGbEy+1P+UT26CYi4opY4gebD8cWRDxAT6MAObIVQMiqYdxZr1g3QHWCToVsm31x2NkLS4K3+MC2qInaRMa39g=="
  2943. "resolved" "https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.2.tgz"
  2944. "version" "1.0.2"
  2945. "lodash.debounce@^4.0.8":
  2946. "integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
  2947. "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
  2948. "version" "4.0.8"
  2949. "lodash.get@^4.4.2":
  2950. "integrity" "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ=="
  2951. "resolved" "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"
  2952. "version" "4.4.2"
  2953. "lodash.isempty@^4.4.0":
  2954. "integrity" "sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg=="
  2955. "resolved" "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz"
  2956. "version" "4.4.0"
  2957. "lodash.isplainobject@^4.0.6":
  2958. "integrity" "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
  2959. "resolved" "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"
  2960. "version" "4.0.6"
  2961. "lodash.merge@^4.6.2":
  2962. "integrity" "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
  2963. "resolved" "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
  2964. "version" "4.6.2"
  2965. "lodash.transform@^4.6.0":
  2966. "integrity" "sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ=="
  2967. "resolved" "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz"
  2968. "version" "4.6.0"
  2969. "lodash@^4.17.21":
  2970. "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
  2971. "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
  2972. "version" "4.17.21"
  2973. "log-symbols@^4.1.0":
  2974. "integrity" "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="
  2975. "resolved" "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"
  2976. "version" "4.1.0"
  2977. dependencies:
  2978. "chalk" "^4.1.0"
  2979. "is-unicode-supported" "^0.1.0"
  2980. "log-symbols@^5.1.0":
  2981. "integrity" "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA=="
  2982. "resolved" "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz"
  2983. "version" "5.1.0"
  2984. dependencies:
  2985. "chalk" "^5.0.0"
  2986. "is-unicode-supported" "^1.1.0"
  2987. "log-update@^4.0.0":
  2988. "integrity" "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg=="
  2989. "resolved" "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz"
  2990. "version" "4.0.0"
  2991. dependencies:
  2992. "ansi-escapes" "^4.3.0"
  2993. "cli-cursor" "^3.1.0"
  2994. "slice-ansi" "^4.0.0"
  2995. "wrap-ansi" "^6.2.0"
  2996. "lower-case@^2.0.2":
  2997. "integrity" "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg=="
  2998. "resolved" "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz"
  2999. "version" "2.0.2"
  3000. dependencies:
  3001. "tslib" "^2.0.3"
  3002. "lru-cache@^4.0.1":
  3003. "integrity" "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="
  3004. "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"
  3005. "version" "4.1.5"
  3006. dependencies:
  3007. "pseudomap" "^1.0.2"
  3008. "yallist" "^2.1.2"
  3009. "lru-cache@^6.0.0":
  3010. "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="
  3011. "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
  3012. "version" "6.0.0"
  3013. dependencies:
  3014. "yallist" "^4.0.0"
  3015. "magic-string@^0.25.7":
  3016. "integrity" "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ=="
  3017. "resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz"
  3018. "version" "0.25.9"
  3019. dependencies:
  3020. "sourcemap-codec" "^1.4.8"
  3021. "magic-string@^0.26.1":
  3022. "integrity" "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A=="
  3023. "resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.26.2.tgz"
  3024. "version" "0.26.2"
  3025. dependencies:
  3026. "sourcemap-codec" "^1.4.8"
  3027. "magic-string@^0.26.2":
  3028. "integrity" "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A=="
  3029. "resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.26.2.tgz"
  3030. "version" "0.26.2"
  3031. dependencies:
  3032. "sourcemap-codec" "^1.4.8"
  3033. "make-dir@^2.1.0":
  3034. "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="
  3035. "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
  3036. "version" "2.1.0"
  3037. dependencies:
  3038. "pify" "^4.0.1"
  3039. "semver" "^5.6.0"
  3040. "make-iterator@^1.0.0":
  3041. "integrity" "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="
  3042. "resolved" "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz"
  3043. "version" "1.0.1"
  3044. dependencies:
  3045. "kind-of" "^6.0.2"
  3046. "map-cache@^0.2.0":
  3047. "integrity" "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg=="
  3048. "resolved" "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
  3049. "version" "0.2.2"
  3050. "memoize-one@^6.0.0":
  3051. "integrity" "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="
  3052. "resolved" "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz"
  3053. "version" "6.0.0"
  3054. "merge-stream@^2.0.0":
  3055. "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
  3056. "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
  3057. "version" "2.0.0"
  3058. "merge2@^1.3.0", "merge2@^1.4.1":
  3059. "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
  3060. "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
  3061. "version" "1.4.1"
  3062. "micromatch@^4.0.4", "micromatch@^4.0.5":
  3063. "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="
  3064. "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
  3065. "version" "4.0.5"
  3066. dependencies:
  3067. "braces" "^3.0.2"
  3068. "picomatch" "^2.3.1"
  3069. "mime@^1.4.1":
  3070. "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
  3071. "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
  3072. "version" "1.6.0"
  3073. "mimic-fn@^2.1.0":
  3074. "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
  3075. "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
  3076. "version" "2.1.0"
  3077. "minimatch@^3.0.4", "minimatch@^3.1.1", "minimatch@^3.1.2":
  3078. "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="
  3079. "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
  3080. "version" "3.1.2"
  3081. dependencies:
  3082. "brace-expansion" "^1.1.7"
  3083. "minimatch@^5.0.1":
  3084. "integrity" "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="
  3085. "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz"
  3086. "version" "5.1.0"
  3087. dependencies:
  3088. "brace-expansion" "^2.0.1"
  3089. "minimist@^1.2.5", "minimist@^1.2.6":
  3090. "integrity" "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
  3091. "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"
  3092. "version" "1.2.6"
  3093. "mitt@^3.0.0":
  3094. "integrity" "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ=="
  3095. "resolved" "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz"
  3096. "version" "3.0.0"
  3097. "mkdirp@^1.0.4":
  3098. "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
  3099. "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"
  3100. "version" "1.0.4"
  3101. "mlly@^0.3.6":
  3102. "integrity" "sha512-zMq5n3cOf4fOzA4WoeulxagbAgMChdev3MgP6K51k7M0u2whTXxupfIY4VVzws4vxkiWhwH1rVQcsw7zDGfRhA=="
  3103. "resolved" "https://registry.npmjs.org/mlly/-/mlly-0.3.19.tgz"
  3104. "version" "0.3.19"
  3105. "mlly@^0.5.2":
  3106. "integrity" "sha512-4GTELSSErv6ZZJYU98fZNuIBJcXSz+ktHdRrCYEqU1m6ZlebOCG0jwZ+IEd9vOrbpYsVBBMC5OTrEyLnKRcauQ=="
  3107. "resolved" "https://registry.npmjs.org/mlly/-/mlly-0.5.2.tgz"
  3108. "version" "0.5.2"
  3109. dependencies:
  3110. "pathe" "^0.2.0"
  3111. "pkg-types" "^0.3.2"
  3112. "ms@^2.1.1", "ms@2.1.2":
  3113. "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
  3114. "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
  3115. "version" "2.1.2"
  3116. "mutation-observer@^1.0.3":
  3117. "integrity" "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA=="
  3118. "resolved" "https://registry.npmjs.org/mutation-observer/-/mutation-observer-1.0.3.tgz"
  3119. "version" "1.0.3"
  3120. "mute-stream@0.0.8":
  3121. "integrity" "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
  3122. "resolved" "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
  3123. "version" "0.0.8"
  3124. "nanoid@^3.3.4":
  3125. "integrity" "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="
  3126. "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"
  3127. "version" "3.3.4"
  3128. "natural-compare@^1.4.0":
  3129. "integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
  3130. "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
  3131. "version" "1.4.0"
  3132. "needle@^3.1.0":
  3133. "integrity" "sha512-gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw=="
  3134. "resolved" "https://registry.npmjs.org/needle/-/needle-3.1.0.tgz"
  3135. "version" "3.1.0"
  3136. dependencies:
  3137. "debug" "^3.2.6"
  3138. "iconv-lite" "^0.6.3"
  3139. "sax" "^1.2.4"
  3140. "neo-async@^2.6.0":
  3141. "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="
  3142. "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
  3143. "version" "2.6.2"
  3144. "no-case@^3.0.4":
  3145. "integrity" "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="
  3146. "resolved" "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"
  3147. "version" "3.0.4"
  3148. dependencies:
  3149. "lower-case" "^2.0.2"
  3150. "tslib" "^2.0.3"
  3151. "node-fetch@^1.0.1":
  3152. "integrity" "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="
  3153. "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz"
  3154. "version" "1.7.3"
  3155. dependencies:
  3156. "encoding" "^0.1.11"
  3157. "is-stream" "^1.0.1"
  3158. "node-plop@^0.31.0":
  3159. "integrity" "sha512-aKLPxiBoFTNUovvtK8j/Whc4PZREkYx6htw2HJPiU8wYquXmN8pkd9B3xlFo6AJ4ZlzFsQSf/NXR5xET8EqRYw=="
  3160. "resolved" "https://registry.npmjs.org/node-plop/-/node-plop-0.31.0.tgz"
  3161. "version" "0.31.0"
  3162. dependencies:
  3163. "@types/inquirer" "^8.2.1"
  3164. "change-case" "^4.1.2"
  3165. "del" "^6.0.0"
  3166. "globby" "^13.1.1"
  3167. "handlebars" "^4.4.3"
  3168. "inquirer" "^8.2.2"
  3169. "isbinaryfile" "^4.0.8"
  3170. "lodash.get" "^4.4.2"
  3171. "lower-case" "^2.0.2"
  3172. "mkdirp" "^1.0.4"
  3173. "resolve" "^1.20.0"
  3174. "title-case" "^3.0.3"
  3175. "upper-case" "^2.0.2"
  3176. "node-releases@^2.0.5":
  3177. "integrity" "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q=="
  3178. "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz"
  3179. "version" "2.0.5"
  3180. "normalize-path@^1.0.0":
  3181. "integrity" "sha512-7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA=="
  3182. "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-1.0.0.tgz"
  3183. "version" "1.0.0"
  3184. "normalize-path@^3.0.0", "normalize-path@~3.0.0":
  3185. "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
  3186. "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
  3187. "version" "3.0.0"
  3188. "normalize-range@^0.1.2":
  3189. "integrity" "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="
  3190. "resolved" "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"
  3191. "version" "0.1.2"
  3192. "normalize-wheel-es@^1.1.2":
  3193. "integrity" "sha512-scX83plWJXYH1J4+BhAuIHadROzxX0UBF3+HuZNY2Ks8BciE7tSTQ+5JhTsvzjaO0/EJdm4JBGrfObKxFf3Png=="
  3194. "resolved" "https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.1.2.tgz"
  3195. "version" "1.1.2"
  3196. "normalize.css@^8.0.1":
  3197. "integrity" "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
  3198. "resolved" "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz"
  3199. "version" "8.0.1"
  3200. "npm-run-path@^2.0.0":
  3201. "integrity" "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="
  3202. "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
  3203. "version" "2.0.2"
  3204. dependencies:
  3205. "path-key" "^2.0.0"
  3206. "npm-run-path@^4.0.1":
  3207. "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="
  3208. "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
  3209. "version" "4.0.1"
  3210. dependencies:
  3211. "path-key" "^3.0.0"
  3212. "nth-check@^2.0.1":
  3213. "integrity" "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w=="
  3214. "resolved" "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz"
  3215. "version" "2.1.1"
  3216. dependencies:
  3217. "boolbase" "^1.0.0"
  3218. "numeral@^2.0.6":
  3219. "integrity" "sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA=="
  3220. "resolved" "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz"
  3221. "version" "2.0.6"
  3222. "object-assign@^4.1.1":
  3223. "integrity" "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
  3224. "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
  3225. "version" "4.1.1"
  3226. "object-hash@^3.0.0":
  3227. "integrity" "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="
  3228. "resolved" "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz"
  3229. "version" "3.0.0"
  3230. "object-inspect@^1.12.2", "object-inspect@^1.9.0":
  3231. "integrity" "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
  3232. "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"
  3233. "version" "1.12.2"
  3234. "object-keys@^1.1.1":
  3235. "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
  3236. "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
  3237. "version" "1.1.1"
  3238. "object.assign@^4.1.0":
  3239. "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="
  3240. "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"
  3241. "version" "4.1.2"
  3242. dependencies:
  3243. "call-bind" "^1.0.0"
  3244. "define-properties" "^1.1.3"
  3245. "has-symbols" "^1.0.1"
  3246. "object-keys" "^1.1.1"
  3247. "object.defaults@^1.1.0":
  3248. "integrity" "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA=="
  3249. "resolved" "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"
  3250. "version" "1.1.0"
  3251. dependencies:
  3252. "array-each" "^1.0.1"
  3253. "array-slice" "^1.0.0"
  3254. "for-own" "^1.0.0"
  3255. "isobject" "^3.0.0"
  3256. "object.map@^1.0.1":
  3257. "integrity" "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w=="
  3258. "resolved" "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz"
  3259. "version" "1.0.1"
  3260. dependencies:
  3261. "for-own" "^1.0.0"
  3262. "make-iterator" "^1.0.0"
  3263. "object.pick@^1.3.0":
  3264. "integrity" "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="
  3265. "resolved" "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"
  3266. "version" "1.3.0"
  3267. dependencies:
  3268. "isobject" "^3.0.1"
  3269. "once@^1.3.0":
  3270. "integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="
  3271. "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
  3272. "version" "1.4.0"
  3273. dependencies:
  3274. "wrappy" "1"
  3275. "onetime@^5.1.0", "onetime@^5.1.2":
  3276. "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="
  3277. "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
  3278. "version" "5.1.2"
  3279. dependencies:
  3280. "mimic-fn" "^2.1.0"
  3281. "optionator@^0.9.1":
  3282. "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="
  3283. "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
  3284. "version" "0.9.1"
  3285. dependencies:
  3286. "deep-is" "^0.1.3"
  3287. "fast-levenshtein" "^2.0.6"
  3288. "levn" "^0.4.1"
  3289. "prelude-ls" "^1.2.1"
  3290. "type-check" "^0.4.0"
  3291. "word-wrap" "^1.2.3"
  3292. "ora@^5.4.1":
  3293. "integrity" "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="
  3294. "resolved" "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz"
  3295. "version" "5.4.1"
  3296. dependencies:
  3297. "bl" "^4.1.0"
  3298. "chalk" "^4.1.0"
  3299. "cli-cursor" "^3.1.0"
  3300. "cli-spinners" "^2.5.0"
  3301. "is-interactive" "^1.0.0"
  3302. "is-unicode-supported" "^0.1.0"
  3303. "log-symbols" "^4.1.0"
  3304. "strip-ansi" "^6.0.0"
  3305. "wcwidth" "^1.0.1"
  3306. "ora@^6.0.1":
  3307. "integrity" "sha512-CxEP6845hLK+NHFWZ+LplGO4zfw4QSfxTlqMfvlJ988GoiUeZDMzCvqsZkFHv69sPICmJH1MDxZoQFOKXerAVw=="
  3308. "resolved" "https://registry.npmjs.org/ora/-/ora-6.1.0.tgz"
  3309. "version" "6.1.0"
  3310. dependencies:
  3311. "bl" "^5.0.0"
  3312. "chalk" "^5.0.0"
  3313. "cli-cursor" "^4.0.0"
  3314. "cli-spinners" "^2.6.1"
  3315. "is-interactive" "^2.0.0"
  3316. "is-unicode-supported" "^1.1.0"
  3317. "log-symbols" "^5.1.0"
  3318. "strip-ansi" "^7.0.1"
  3319. "wcwidth" "^1.0.1"
  3320. "os-tmpdir@~1.0.2":
  3321. "integrity" "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="
  3322. "resolved" "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
  3323. "version" "1.0.2"
  3324. "p-finally@^1.0.0":
  3325. "integrity" "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="
  3326. "resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
  3327. "version" "1.0.0"
  3328. "p-map@^4.0.0":
  3329. "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ=="
  3330. "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"
  3331. "version" "4.0.0"
  3332. dependencies:
  3333. "aggregate-error" "^3.0.0"
  3334. "param-case@^3.0.4":
  3335. "integrity" "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A=="
  3336. "resolved" "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz"
  3337. "version" "3.0.4"
  3338. dependencies:
  3339. "dot-case" "^3.0.4"
  3340. "tslib" "^2.0.3"
  3341. "parent-module@^1.0.0":
  3342. "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="
  3343. "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
  3344. "version" "1.0.1"
  3345. dependencies:
  3346. "callsites" "^3.0.0"
  3347. "parse-filepath@^1.0.2":
  3348. "integrity" "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q=="
  3349. "resolved" "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"
  3350. "version" "1.0.2"
  3351. dependencies:
  3352. "is-absolute" "^1.0.0"
  3353. "map-cache" "^0.2.0"
  3354. "path-root" "^0.1.1"
  3355. "parse-node-version@^1.0.1":
  3356. "integrity" "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="
  3357. "resolved" "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz"
  3358. "version" "1.0.1"
  3359. "parse-passwd@^1.0.0":
  3360. "integrity" "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q=="
  3361. "resolved" "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"
  3362. "version" "1.0.0"
  3363. "pascal-case@^3.1.2":
  3364. "integrity" "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g=="
  3365. "resolved" "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz"
  3366. "version" "3.1.2"
  3367. dependencies:
  3368. "no-case" "^3.0.4"
  3369. "tslib" "^2.0.3"
  3370. "path-case@^3.0.4":
  3371. "integrity" "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg=="
  3372. "resolved" "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz"
  3373. "version" "3.0.4"
  3374. dependencies:
  3375. "dot-case" "^3.0.4"
  3376. "tslib" "^2.0.3"
  3377. "path-is-absolute@^1.0.0":
  3378. "integrity" "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
  3379. "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
  3380. "version" "1.0.1"
  3381. "path-key@^2.0.0":
  3382. "integrity" "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw=="
  3383. "resolved" "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
  3384. "version" "2.0.1"
  3385. "path-key@^3.0.0", "path-key@^3.1.0":
  3386. "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
  3387. "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
  3388. "version" "3.1.1"
  3389. "path-parse@^1.0.7":
  3390. "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
  3391. "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
  3392. "version" "1.0.7"
  3393. "path-root-regex@^0.1.0":
  3394. "integrity" "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ=="
  3395. "resolved" "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"
  3396. "version" "0.1.2"
  3397. "path-root@^0.1.1":
  3398. "integrity" "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg=="
  3399. "resolved" "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"
  3400. "version" "0.1.1"
  3401. dependencies:
  3402. "path-root-regex" "^0.1.0"
  3403. "path-type@^4.0.0":
  3404. "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
  3405. "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
  3406. "version" "4.0.0"
  3407. "pathe@^0.2.0":
  3408. "integrity" "sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw=="
  3409. "resolved" "https://registry.npmjs.org/pathe/-/pathe-0.2.0.tgz"
  3410. "version" "0.2.0"
  3411. "pathe@^0.3.0":
  3412. "integrity" "sha512-3vUjp552BJzCw9vqKsO5sttHkbYqqsZtH0x1PNtItgqx8BXEXzoY1SYRKcL6BTyVh4lGJGLj0tM42elUDMvcYA=="
  3413. "resolved" "https://registry.npmjs.org/pathe/-/pathe-0.3.0.tgz"
  3414. "version" "0.3.0"
  3415. "picocolors@^1.0.0":
  3416. "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
  3417. "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
  3418. "version" "1.0.0"
  3419. "picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.2", "picomatch@^2.3.1":
  3420. "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
  3421. "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
  3422. "version" "2.3.1"
  3423. "pidtree@^0.5.0":
  3424. "integrity" "sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA=="
  3425. "resolved" "https://registry.npmjs.org/pidtree/-/pidtree-0.5.0.tgz"
  3426. "version" "0.5.0"
  3427. "pify@^2.3.0":
  3428. "integrity" "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="
  3429. "resolved" "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
  3430. "version" "2.3.0"
  3431. "pify@^4.0.1":
  3432. "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="
  3433. "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
  3434. "version" "4.0.1"
  3435. "pkg-types@^0.3.2":
  3436. "integrity" "sha512-eBYzX/7NYsQEOR2alWY4rnQB49G62oHzFpoi9Som56aUr8vB8UGcmcIia9v8fpBeuhH3Ltentuk2OGpp4IQV3Q=="
  3437. "resolved" "https://registry.npmjs.org/pkg-types/-/pkg-types-0.3.2.tgz"
  3438. "version" "0.3.2"
  3439. dependencies:
  3440. "jsonc-parser" "^3.0.0"
  3441. "mlly" "^0.3.6"
  3442. "pathe" "^0.2.0"
  3443. "plop@^3.0.5":
  3444. "integrity" "sha512-bkKZ5X7V2hjH1ha5x8eX2mzyxM/sR166icNdQAbuAK5L4iHTT7fNKjV7VOpF3hBWtRNnzBoctjC3hC5syX5iYg=="
  3445. "resolved" "https://registry.npmjs.org/plop/-/plop-3.1.0.tgz"
  3446. "version" "3.1.0"
  3447. dependencies:
  3448. "@types/liftoff" "^4.0.0"
  3449. "chalk" "^5.0.1"
  3450. "interpret" "^2.2.0"
  3451. "liftoff" "^4.0.0"
  3452. "minimist" "^1.2.6"
  3453. "node-plop" "^0.31.0"
  3454. "ora" "^6.0.1"
  3455. "v8flags" "^4.0.0"
  3456. "plyr@^3.7.2":
  3457. "integrity" "sha512-I0ZC/OI4oJ0iWG9s2rrnO0YFO6aLyrPiQBq9kum0FqITYljwTPBbYL3TZZu8UJQJUq7tUWN18Q7ACwNCkGKABQ=="
  3458. "resolved" "https://registry.npmjs.org/plyr/-/plyr-3.7.2.tgz"
  3459. "version" "3.7.2"
  3460. dependencies:
  3461. "core-js" "^3.22.0"
  3462. "custom-event-polyfill" "^1.0.7"
  3463. "loadjs" "^4.2.0"
  3464. "rangetouch" "^2.0.1"
  3465. "url-polyfill" "^1.1.12"
  3466. "postcss-import@^14.1.0":
  3467. "integrity" "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw=="
  3468. "resolved" "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz"
  3469. "version" "14.1.0"
  3470. dependencies:
  3471. "postcss-value-parser" "^4.0.0"
  3472. "read-cache" "^1.0.0"
  3473. "resolve" "^1.1.7"
  3474. "postcss-js@^4.0.0":
  3475. "integrity" "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ=="
  3476. "resolved" "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz"
  3477. "version" "4.0.0"
  3478. dependencies:
  3479. "camelcase-css" "^2.0.1"
  3480. "postcss-load-config@^3.1.4":
  3481. "integrity" "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg=="
  3482. "resolved" "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz"
  3483. "version" "3.1.4"
  3484. dependencies:
  3485. "lilconfig" "^2.0.5"
  3486. "yaml" "^1.10.2"
  3487. "postcss-nested@5.0.6":
  3488. "integrity" "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA=="
  3489. "resolved" "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz"
  3490. "version" "5.0.6"
  3491. dependencies:
  3492. "postcss-selector-parser" "^6.0.6"
  3493. "postcss-selector-parser@^6.0.10", "postcss-selector-parser@^6.0.6", "postcss-selector-parser@^6.0.9":
  3494. "integrity" "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="
  3495. "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"
  3496. "version" "6.0.10"
  3497. dependencies:
  3498. "cssesc" "^3.0.0"
  3499. "util-deprecate" "^1.0.2"
  3500. "postcss-value-parser@^4.0.0", "postcss-value-parser@^4.2.0":
  3501. "integrity" "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
  3502. "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
  3503. "version" "4.2.0"
  3504. "postcss@^8.1.10", "postcss@^8.4.13", "postcss@^8.4.14":
  3505. "integrity" "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig=="
  3506. "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"
  3507. "version" "8.4.14"
  3508. dependencies:
  3509. "nanoid" "^3.3.4"
  3510. "picocolors" "^1.0.0"
  3511. "source-map-js" "^1.0.2"
  3512. "prelude-ls@^1.2.1":
  3513. "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="
  3514. "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
  3515. "version" "1.2.1"
  3516. "prettier-linter-helpers@^1.0.0":
  3517. "integrity" "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w=="
  3518. "resolved" "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz"
  3519. "version" "1.0.0"
  3520. dependencies:
  3521. "fast-diff" "^1.1.2"
  3522. "prettier@^2.5.1":
  3523. "integrity" "sha512-nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ=="
  3524. "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.7.0.tgz"
  3525. "version" "2.7.0"
  3526. "promise@^7.0.1":
  3527. "integrity" "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg=="
  3528. "resolved" "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"
  3529. "version" "7.3.1"
  3530. dependencies:
  3531. "asap" "~2.0.3"
  3532. "prr@~1.0.1":
  3533. "integrity" "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw=="
  3534. "resolved" "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"
  3535. "version" "1.0.1"
  3536. "pseudomap@^1.0.2":
  3537. "integrity" "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="
  3538. "resolved" "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"
  3539. "version" "1.0.2"
  3540. "pug-attrs@^3.0.0":
  3541. "integrity" "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA=="
  3542. "resolved" "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz"
  3543. "version" "3.0.0"
  3544. dependencies:
  3545. "constantinople" "^4.0.1"
  3546. "js-stringify" "^1.0.2"
  3547. "pug-runtime" "^3.0.0"
  3548. "pug-code-gen@^3.0.2":
  3549. "integrity" "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg=="
  3550. "resolved" "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz"
  3551. "version" "3.0.2"
  3552. dependencies:
  3553. "constantinople" "^4.0.1"
  3554. "doctypes" "^1.1.0"
  3555. "js-stringify" "^1.0.2"
  3556. "pug-attrs" "^3.0.0"
  3557. "pug-error" "^2.0.0"
  3558. "pug-runtime" "^3.0.0"
  3559. "void-elements" "^3.1.0"
  3560. "with" "^7.0.0"
  3561. "pug-error@^2.0.0":
  3562. "integrity" "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ=="
  3563. "resolved" "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz"
  3564. "version" "2.0.0"
  3565. "pug-filters@^4.0.0":
  3566. "integrity" "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A=="
  3567. "resolved" "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz"
  3568. "version" "4.0.0"
  3569. dependencies:
  3570. "constantinople" "^4.0.1"
  3571. "jstransformer" "1.0.0"
  3572. "pug-error" "^2.0.0"
  3573. "pug-walk" "^2.0.0"
  3574. "resolve" "^1.15.1"
  3575. "pug-lexer@^5.0.1":
  3576. "integrity" "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w=="
  3577. "resolved" "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz"
  3578. "version" "5.0.1"
  3579. dependencies:
  3580. "character-parser" "^2.2.0"
  3581. "is-expression" "^4.0.0"
  3582. "pug-error" "^2.0.0"
  3583. "pug-linker@^4.0.0":
  3584. "integrity" "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw=="
  3585. "resolved" "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz"
  3586. "version" "4.0.0"
  3587. dependencies:
  3588. "pug-error" "^2.0.0"
  3589. "pug-walk" "^2.0.0"
  3590. "pug-load@^3.0.0":
  3591. "integrity" "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ=="
  3592. "resolved" "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz"
  3593. "version" "3.0.0"
  3594. dependencies:
  3595. "object-assign" "^4.1.1"
  3596. "pug-walk" "^2.0.0"
  3597. "pug-parser@^6.0.0":
  3598. "integrity" "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw=="
  3599. "resolved" "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz"
  3600. "version" "6.0.0"
  3601. dependencies:
  3602. "pug-error" "^2.0.0"
  3603. "token-stream" "1.0.0"
  3604. "pug-runtime@^3.0.0", "pug-runtime@^3.0.1":
  3605. "integrity" "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg=="
  3606. "resolved" "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz"
  3607. "version" "3.0.1"
  3608. "pug-strip-comments@^2.0.0":
  3609. "integrity" "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ=="
  3610. "resolved" "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz"
  3611. "version" "2.0.0"
  3612. dependencies:
  3613. "pug-error" "^2.0.0"
  3614. "pug-walk@^2.0.0":
  3615. "integrity" "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ=="
  3616. "resolved" "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz"
  3617. "version" "2.0.0"
  3618. "pug@^3.0.2":
  3619. "integrity" "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw=="
  3620. "resolved" "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz"
  3621. "version" "3.0.2"
  3622. dependencies:
  3623. "pug-code-gen" "^3.0.2"
  3624. "pug-filters" "^4.0.0"
  3625. "pug-lexer" "^5.0.1"
  3626. "pug-linker" "^4.0.0"
  3627. "pug-load" "^3.0.0"
  3628. "pug-parser" "^6.0.0"
  3629. "pug-runtime" "^3.0.1"
  3630. "pug-strip-comments" "^2.0.0"
  3631. "punycode@^2.1.0":
  3632. "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
  3633. "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
  3634. "version" "2.1.1"
  3635. "qrcode.vue@^3.3.3":
  3636. "integrity" "sha512-OsD4tQjIbxg/K6D5ZkWjBdYI9eg9K2i8qeYILdEAX5mdAydSAxV7xKmmZSP/hA12olLqEMZ9ryqDQrwa9jEMgw=="
  3637. "resolved" "https://registry.npmjs.org/qrcode.vue/-/qrcode.vue-3.3.3.tgz"
  3638. "version" "3.3.3"
  3639. "qs@^6.9.1":
  3640. "integrity" "sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ=="
  3641. "resolved" "https://registry.npmjs.org/qs/-/qs-6.10.5.tgz"
  3642. "version" "6.10.5"
  3643. dependencies:
  3644. "side-channel" "^1.0.4"
  3645. "query-string@^7.1.1":
  3646. "integrity" "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w=="
  3647. "resolved" "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz"
  3648. "version" "7.1.1"
  3649. dependencies:
  3650. "decode-uri-component" "^0.2.0"
  3651. "filter-obj" "^1.1.0"
  3652. "split-on-first" "^1.0.0"
  3653. "strict-uri-encode" "^2.0.0"
  3654. "queue-microtask@^1.2.2":
  3655. "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
  3656. "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
  3657. "version" "1.2.3"
  3658. "quick-lru@^5.1.1":
  3659. "integrity" "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="
  3660. "resolved" "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"
  3661. "version" "5.1.1"
  3662. "rangetouch@^2.0.1":
  3663. "integrity" "sha512-sln+pNSc8NGaHoLzwNBssFSf/rSYkqeBXzX1AtJlkJiUaVSJSbRAWJk+4omsXkN+EJalzkZhWQ3th1m0FpR5xA=="
  3664. "resolved" "https://registry.npmjs.org/rangetouch/-/rangetouch-2.0.1.tgz"
  3665. "version" "2.0.1"
  3666. "read-cache@^1.0.0":
  3667. "integrity" "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA=="
  3668. "resolved" "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz"
  3669. "version" "1.0.0"
  3670. dependencies:
  3671. "pify" "^2.3.0"
  3672. "readable-stream@^3.4.0":
  3673. "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="
  3674. "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"
  3675. "version" "3.6.0"
  3676. dependencies:
  3677. "inherits" "^2.0.3"
  3678. "string_decoder" "^1.1.1"
  3679. "util-deprecate" "^1.0.1"
  3680. "readdirp@~3.6.0":
  3681. "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="
  3682. "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
  3683. "version" "3.6.0"
  3684. dependencies:
  3685. "picomatch" "^2.2.1"
  3686. "rechoir@^0.8.0":
  3687. "integrity" "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ=="
  3688. "resolved" "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz"
  3689. "version" "0.8.0"
  3690. dependencies:
  3691. "resolve" "^1.20.0"
  3692. "regenerate-unicode-properties@^10.0.1":
  3693. "integrity" "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw=="
  3694. "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"
  3695. "version" "10.0.1"
  3696. dependencies:
  3697. "regenerate" "^1.4.2"
  3698. "regenerate@^1.4.2":
  3699. "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
  3700. "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
  3701. "version" "1.4.2"
  3702. "regenerator-runtime@^0.13.4", "regenerator-runtime@^0.13.9":
  3703. "integrity" "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
  3704. "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"
  3705. "version" "0.13.9"
  3706. "regenerator-transform@^0.15.0":
  3707. "integrity" "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="
  3708. "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"
  3709. "version" "0.15.0"
  3710. dependencies:
  3711. "@babel/runtime" "^7.8.4"
  3712. "regexpp@^3.2.0":
  3713. "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="
  3714. "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"
  3715. "version" "3.2.0"
  3716. "regexpu-core@^5.0.1":
  3717. "integrity" "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw=="
  3718. "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz"
  3719. "version" "5.0.1"
  3720. dependencies:
  3721. "regenerate" "^1.4.2"
  3722. "regenerate-unicode-properties" "^10.0.1"
  3723. "regjsgen" "^0.6.0"
  3724. "regjsparser" "^0.8.2"
  3725. "unicode-match-property-ecmascript" "^2.0.0"
  3726. "unicode-match-property-value-ecmascript" "^2.0.0"
  3727. "regjsgen@^0.6.0":
  3728. "integrity" "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="
  3729. "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz"
  3730. "version" "0.6.0"
  3731. "regjsparser@^0.8.2":
  3732. "integrity" "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA=="
  3733. "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz"
  3734. "version" "0.8.4"
  3735. dependencies:
  3736. "jsesc" "~0.5.0"
  3737. "request-light@^0.5.4":
  3738. "integrity" "sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg=="
  3739. "resolved" "https://registry.npmjs.org/request-light/-/request-light-0.5.8.tgz"
  3740. "version" "0.5.8"
  3741. "resolve-dir@^1.0.0", "resolve-dir@^1.0.1":
  3742. "integrity" "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg=="
  3743. "resolved" "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"
  3744. "version" "1.0.1"
  3745. dependencies:
  3746. "expand-tilde" "^2.0.0"
  3747. "global-modules" "^1.0.0"
  3748. "resolve-from@^4.0.0":
  3749. "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
  3750. "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
  3751. "version" "4.0.0"
  3752. "resolve@^1.1.7", "resolve@^1.14.2", "resolve@^1.15.1", "resolve@^1.20.0", "resolve@^1.22.0":
  3753. "integrity" "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw=="
  3754. "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"
  3755. "version" "1.22.0"
  3756. dependencies:
  3757. "is-core-module" "^2.8.1"
  3758. "path-parse" "^1.0.7"
  3759. "supports-preserve-symlinks-flag" "^1.0.0"
  3760. "restore-cursor@^3.1.0":
  3761. "integrity" "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA=="
  3762. "resolved" "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"
  3763. "version" "3.1.0"
  3764. dependencies:
  3765. "onetime" "^5.1.0"
  3766. "signal-exit" "^3.0.2"
  3767. "restore-cursor@^4.0.0":
  3768. "integrity" "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg=="
  3769. "resolved" "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz"
  3770. "version" "4.0.0"
  3771. dependencies:
  3772. "onetime" "^5.1.0"
  3773. "signal-exit" "^3.0.2"
  3774. "reusify@^1.0.4":
  3775. "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
  3776. "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
  3777. "version" "1.0.4"
  3778. "rfdc@^1.3.0":
  3779. "integrity" "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA=="
  3780. "resolved" "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz"
  3781. "version" "1.3.0"
  3782. "rimraf@^3.0.2":
  3783. "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="
  3784. "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
  3785. "version" "3.0.2"
  3786. dependencies:
  3787. "glob" "^7.1.3"
  3788. "rollup@^2.59.0":
  3789. "integrity" "sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA=="
  3790. "resolved" "https://registry.npmjs.org/rollup/-/rollup-2.75.6.tgz"
  3791. "version" "2.75.6"
  3792. optionalDependencies:
  3793. "fsevents" "~2.3.2"
  3794. "run-async@^2.4.0":
  3795. "integrity" "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="
  3796. "resolved" "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"
  3797. "version" "2.4.1"
  3798. "run-parallel@^1.1.9":
  3799. "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="
  3800. "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
  3801. "version" "1.2.0"
  3802. dependencies:
  3803. "queue-microtask" "^1.2.2"
  3804. "rxjs@^7.2.0", "rxjs@^7.5.5":
  3805. "integrity" "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw=="
  3806. "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz"
  3807. "version" "7.5.5"
  3808. dependencies:
  3809. "tslib" "^2.1.0"
  3810. "safe-buffer@~5.1.1":
  3811. "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
  3812. "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
  3813. "version" "5.1.2"
  3814. "safe-buffer@~5.2.0":
  3815. "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
  3816. "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
  3817. "version" "5.2.1"
  3818. "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
  3819. "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
  3820. "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
  3821. "version" "2.1.2"
  3822. "sax@^1.2.4":
  3823. "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
  3824. "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
  3825. "version" "1.2.4"
  3826. "scule@^0.2.1":
  3827. "integrity" "sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg=="
  3828. "resolved" "https://registry.npmjs.org/scule/-/scule-0.2.1.tgz"
  3829. "version" "0.2.1"
  3830. "semver@^5.6.0":
  3831. "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
  3832. "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
  3833. "version" "5.7.1"
  3834. "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0":
  3835. "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
  3836. "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
  3837. "version" "6.3.0"
  3838. "semver@^7.3.5":
  3839. "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="
  3840. "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"
  3841. "version" "7.3.7"
  3842. dependencies:
  3843. "lru-cache" "^6.0.0"
  3844. "semver@^7.3.7":
  3845. "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="
  3846. "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"
  3847. "version" "7.3.7"
  3848. dependencies:
  3849. "lru-cache" "^6.0.0"
  3850. "semver@7.0.0":
  3851. "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="
  3852. "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz"
  3853. "version" "7.0.0"
  3854. "sentence-case@^3.0.4":
  3855. "integrity" "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg=="
  3856. "resolved" "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz"
  3857. "version" "3.0.4"
  3858. dependencies:
  3859. "no-case" "^3.0.4"
  3860. "tslib" "^2.0.3"
  3861. "upper-case-first" "^2.0.2"
  3862. "shebang-command@^1.2.0":
  3863. "integrity" "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg=="
  3864. "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
  3865. "version" "1.2.0"
  3866. dependencies:
  3867. "shebang-regex" "^1.0.0"
  3868. "shebang-command@^2.0.0":
  3869. "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="
  3870. "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
  3871. "version" "2.0.0"
  3872. dependencies:
  3873. "shebang-regex" "^3.0.0"
  3874. "shebang-regex@^1.0.0":
  3875. "integrity" "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ=="
  3876. "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
  3877. "version" "1.0.0"
  3878. "shebang-regex@^3.0.0":
  3879. "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
  3880. "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
  3881. "version" "3.0.0"
  3882. "side-channel@^1.0.4":
  3883. "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
  3884. "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
  3885. "version" "1.0.4"
  3886. dependencies:
  3887. "call-bind" "^1.0.0"
  3888. "get-intrinsic" "^1.0.2"
  3889. "object-inspect" "^1.9.0"
  3890. "signal-exit@^3.0.0", "signal-exit@^3.0.2", "signal-exit@^3.0.3":
  3891. "integrity" "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
  3892. "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
  3893. "version" "3.0.7"
  3894. "slash@^3.0.0":
  3895. "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
  3896. "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
  3897. "version" "3.0.0"
  3898. "slash@^4.0.0":
  3899. "integrity" "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="
  3900. "resolved" "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz"
  3901. "version" "4.0.0"
  3902. "slice-ansi@^3.0.0":
  3903. "integrity" "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ=="
  3904. "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz"
  3905. "version" "3.0.0"
  3906. dependencies:
  3907. "ansi-styles" "^4.0.0"
  3908. "astral-regex" "^2.0.0"
  3909. "is-fullwidth-code-point" "^3.0.0"
  3910. "slice-ansi@^4.0.0":
  3911. "integrity" "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="
  3912. "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"
  3913. "version" "4.0.0"
  3914. dependencies:
  3915. "ansi-styles" "^4.0.0"
  3916. "astral-regex" "^2.0.0"
  3917. "is-fullwidth-code-point" "^3.0.0"
  3918. "slice-ansi@^5.0.0":
  3919. "integrity" "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ=="
  3920. "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz"
  3921. "version" "5.0.0"
  3922. dependencies:
  3923. "ansi-styles" "^6.0.0"
  3924. "is-fullwidth-code-point" "^4.0.0"
  3925. "snake-case@^3.0.4":
  3926. "integrity" "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg=="
  3927. "resolved" "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz"
  3928. "version" "3.0.4"
  3929. dependencies:
  3930. "dot-case" "^3.0.4"
  3931. "tslib" "^2.0.3"
  3932. "source-map-js@^1.0.2":
  3933. "integrity" "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
  3934. "resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
  3935. "version" "1.0.2"
  3936. "source-map@^0.6.1", "source-map@~0.6.0":
  3937. "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
  3938. "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
  3939. "version" "0.6.1"
  3940. "sourcemap-codec@^1.4.8":
  3941. "integrity" "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="
  3942. "resolved" "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"
  3943. "version" "1.4.8"
  3944. "split-on-first@^1.0.0":
  3945. "integrity" "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="
  3946. "resolved" "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz"
  3947. "version" "1.1.0"
  3948. "ssr-window@^4.0.0", "ssr-window@^4.0.2":
  3949. "integrity" "sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ=="
  3950. "resolved" "https://registry.npmjs.org/ssr-window/-/ssr-window-4.0.2.tgz"
  3951. "version" "4.0.2"
  3952. "strict-uri-encode@^2.0.0":
  3953. "integrity" "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="
  3954. "resolved" "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"
  3955. "version" "2.0.0"
  3956. "string_decoder@^1.1.1":
  3957. "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
  3958. "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
  3959. "version" "1.3.0"
  3960. dependencies:
  3961. "safe-buffer" "~5.2.0"
  3962. "string-argv@^0.3.1":
  3963. "integrity" "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg=="
  3964. "resolved" "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz"
  3965. "version" "0.3.1"
  3966. "string-width@^4.1.0":
  3967. "integrity" "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="
  3968. "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
  3969. "version" "4.2.3"
  3970. dependencies:
  3971. "emoji-regex" "^8.0.0"
  3972. "is-fullwidth-code-point" "^3.0.0"
  3973. "strip-ansi" "^6.0.1"
  3974. "string-width@^4.2.0":
  3975. "integrity" "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="
  3976. "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
  3977. "version" "4.2.3"
  3978. dependencies:
  3979. "emoji-regex" "^8.0.0"
  3980. "is-fullwidth-code-point" "^3.0.0"
  3981. "strip-ansi" "^6.0.1"
  3982. "string-width@^5.0.0":
  3983. "integrity" "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="
  3984. "resolved" "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz"
  3985. "version" "5.1.2"
  3986. dependencies:
  3987. "eastasianwidth" "^0.2.0"
  3988. "emoji-regex" "^9.2.2"
  3989. "strip-ansi" "^7.0.1"
  3990. "strip-ansi@^6.0.0", "strip-ansi@^6.0.1":
  3991. "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="
  3992. "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
  3993. "version" "6.0.1"
  3994. dependencies:
  3995. "ansi-regex" "^5.0.1"
  3996. "strip-ansi@^7.0.1":
  3997. "integrity" "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw=="
  3998. "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz"
  3999. "version" "7.0.1"
  4000. dependencies:
  4001. "ansi-regex" "^6.0.1"
  4002. "strip-eof@^1.0.0":
  4003. "integrity" "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q=="
  4004. "resolved" "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
  4005. "version" "1.0.0"
  4006. "strip-final-newline@^2.0.0":
  4007. "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="
  4008. "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
  4009. "version" "2.0.0"
  4010. "strip-indent@^2.0.0":
  4011. "integrity" "sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA=="
  4012. "resolved" "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz"
  4013. "version" "2.0.0"
  4014. "strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1":
  4015. "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
  4016. "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
  4017. "version" "3.1.1"
  4018. "strip-literal@^0.4.0":
  4019. "integrity" "sha512-ql/sBDoJOybTKSIOWrrh8kgUEMjXMwRAkZTD0EwiwxQH/6tTPkZvMIEjp0CRlpi6V5FMiJyvxeRkEi1KrGISoA=="
  4020. "resolved" "https://registry.npmjs.org/strip-literal/-/strip-literal-0.4.0.tgz"
  4021. "version" "0.4.0"
  4022. dependencies:
  4023. "acorn" "^8.7.1"
  4024. "supports-color@^5.3.0":
  4025. "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="
  4026. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
  4027. "version" "5.5.0"
  4028. dependencies:
  4029. "has-flag" "^3.0.0"
  4030. "supports-color@^7.1.0":
  4031. "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
  4032. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
  4033. "version" "7.2.0"
  4034. dependencies:
  4035. "has-flag" "^4.0.0"
  4036. "supports-color@^9.2.2":
  4037. "integrity" "sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA=="
  4038. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-9.2.2.tgz"
  4039. "version" "9.2.2"
  4040. "supports-preserve-symlinks-flag@^1.0.0":
  4041. "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
  4042. "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
  4043. "version" "1.0.0"
  4044. "svg-tags@^1.0.0":
  4045. "integrity" "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA=="
  4046. "resolved" "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz"
  4047. "version" "1.0.0"
  4048. "swiper@^8.2.4":
  4049. "integrity" "sha512-TPq64KiZUt8lZY5ZEg75RjToT+RwfLomfKIpcFLy6+UCUp2kL7hHWslLxjFtcFeiwfG67RHFYbJnq6tsothcJQ=="
  4050. "resolved" "https://registry.npmjs.org/swiper/-/swiper-8.2.4.tgz"
  4051. "version" "8.2.4"
  4052. dependencies:
  4053. "dom7" "^4.0.4"
  4054. "ssr-window" "^4.0.2"
  4055. "systemjs@^6.12.1":
  4056. "integrity" "sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A=="
  4057. "resolved" "https://registry.npmjs.org/systemjs/-/systemjs-6.12.1.tgz"
  4058. "version" "6.12.1"
  4059. "tailwindcss@^3.1.2":
  4060. "integrity" "sha512-yJ6L5s1U5AeS5g7HHy212zdQfjwD426FBfm59pet/JsyneuZuD4C2W7PpJEg4ppisiB21uLqtNagv8KXury3+Q=="
  4061. "resolved" "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.2.tgz"
  4062. "version" "3.1.2"
  4063. dependencies:
  4064. "arg" "^5.0.1"
  4065. "chokidar" "^3.5.3"
  4066. "color-name" "^1.1.4"
  4067. "detective" "^5.2.1"
  4068. "didyoumean" "^1.2.2"
  4069. "dlv" "^1.1.3"
  4070. "fast-glob" "^3.2.11"
  4071. "glob-parent" "^6.0.2"
  4072. "is-glob" "^4.0.3"
  4073. "lilconfig" "^2.0.5"
  4074. "normalize-path" "^3.0.0"
  4075. "object-hash" "^3.0.0"
  4076. "picocolors" "^1.0.0"
  4077. "postcss" "^8.4.14"
  4078. "postcss-import" "^14.1.0"
  4079. "postcss-js" "^4.0.0"
  4080. "postcss-load-config" "^3.1.4"
  4081. "postcss-nested" "5.0.6"
  4082. "postcss-selector-parser" "^6.0.10"
  4083. "postcss-value-parser" "^4.2.0"
  4084. "quick-lru" "^5.1.1"
  4085. "resolve" "^1.22.0"
  4086. "text-table@^0.2.0":
  4087. "integrity" "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
  4088. "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
  4089. "version" "0.2.0"
  4090. "through@^2.3.6", "through@^2.3.8":
  4091. "integrity" "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
  4092. "resolved" "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
  4093. "version" "2.3.8"
  4094. "title-case@^3.0.3":
  4095. "integrity" "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA=="
  4096. "resolved" "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz"
  4097. "version" "3.0.3"
  4098. dependencies:
  4099. "tslib" "^2.0.3"
  4100. "tmp@^0.0.33":
  4101. "integrity" "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="
  4102. "resolved" "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"
  4103. "version" "0.0.33"
  4104. dependencies:
  4105. "os-tmpdir" "~1.0.2"
  4106. "to-fast-properties@^2.0.0":
  4107. "integrity" "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="
  4108. "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
  4109. "version" "2.0.0"
  4110. "to-regex-range@^5.0.1":
  4111. "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="
  4112. "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
  4113. "version" "5.0.1"
  4114. dependencies:
  4115. "is-number" "^7.0.0"
  4116. "token-stream@1.0.0":
  4117. "integrity" "sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg=="
  4118. "resolved" "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz"
  4119. "version" "1.0.0"
  4120. "tslib@^1.8.1":
  4121. "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
  4122. "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
  4123. "version" "1.14.1"
  4124. "tslib@^2.0.3":
  4125. "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
  4126. "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
  4127. "version" "2.4.0"
  4128. "tslib@^2.1.0":
  4129. "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
  4130. "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
  4131. "version" "2.4.0"
  4132. "tslib@^2.3.0":
  4133. "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
  4134. "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
  4135. "version" "2.4.0"
  4136. "tsutils@^3.21.0":
  4137. "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="
  4138. "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
  4139. "version" "3.21.0"
  4140. dependencies:
  4141. "tslib" "^1.8.1"
  4142. "type-check@^0.4.0", "type-check@~0.4.0":
  4143. "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="
  4144. "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
  4145. "version" "0.4.0"
  4146. dependencies:
  4147. "prelude-ls" "^1.2.1"
  4148. "type-fest@^0.20.2":
  4149. "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
  4150. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
  4151. "version" "0.20.2"
  4152. "type-fest@^0.21.3":
  4153. "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
  4154. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
  4155. "version" "0.21.3"
  4156. "typescript@^4.5.2":
  4157. "integrity" "sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA=="
  4158. "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.7.3.tgz"
  4159. "version" "4.7.3"
  4160. "uglify-js@^3.1.4":
  4161. "integrity" "sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw=="
  4162. "resolved" "https://registry.npmjs.org/uglify-js/-/uglify-js-3.16.0.tgz"
  4163. "version" "3.16.0"
  4164. "umi-request@^1.4.0":
  4165. "integrity" "sha512-OknwtQZddZHi0Ggi+Vr/olJ7HNMx4AzlywyK0W3NZBT7B0stjeZ9lcztA85dBgdAj3KVk8uPJPZSnGaDjELhrA=="
  4166. "resolved" "https://registry.npmjs.org/umi-request/-/umi-request-1.4.0.tgz"
  4167. "version" "1.4.0"
  4168. dependencies:
  4169. "isomorphic-fetch" "^2.2.1"
  4170. "qs" "^6.9.1"
  4171. "unc-path-regex@^0.1.2":
  4172. "integrity" "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg=="
  4173. "resolved" "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"
  4174. "version" "0.1.2"
  4175. "unicode-canonical-property-names-ecmascript@^2.0.0":
  4176. "integrity" "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="
  4177. "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"
  4178. "version" "2.0.0"
  4179. "unicode-match-property-ecmascript@^2.0.0":
  4180. "integrity" "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="
  4181. "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"
  4182. "version" "2.0.0"
  4183. dependencies:
  4184. "unicode-canonical-property-names-ecmascript" "^2.0.0"
  4185. "unicode-property-aliases-ecmascript" "^2.0.0"
  4186. "unicode-match-property-value-ecmascript@^2.0.0":
  4187. "integrity" "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="
  4188. "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"
  4189. "version" "2.0.0"
  4190. "unicode-property-aliases-ecmascript@^2.0.0":
  4191. "integrity" "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ=="
  4192. "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"
  4193. "version" "2.0.0"
  4194. "unimport@^0.2.7":
  4195. "integrity" "sha512-5SLmZZL2rwaNOQa/yTGaG0QI0meRhb6MDdIlS9s1uHPSYO6Gfzr7ugl5Rf35/CJioW6wYiNJsN9dru5JMzaD8w=="
  4196. "resolved" "https://registry.npmjs.org/unimport/-/unimport-0.2.9.tgz"
  4197. "version" "0.2.9"
  4198. dependencies:
  4199. "@rollup/pluginutils" "^4.2.1"
  4200. "escape-string-regexp" "^5.0.0"
  4201. "fast-glob" "^3.2.11"
  4202. "local-pkg" "^0.4.1"
  4203. "magic-string" "^0.26.2"
  4204. "mlly" "^0.5.2"
  4205. "pathe" "^0.3.0"
  4206. "scule" "^0.2.1"
  4207. "strip-literal" "^0.4.0"
  4208. "unplugin" "^0.7.0"
  4209. "universalify@^2.0.0":
  4210. "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="
  4211. "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"
  4212. "version" "2.0.0"
  4213. "unplugin-auto-import@^0.8.7":
  4214. "integrity" "sha512-cVZ79zMR1v4VCZ9emFTUnltmazCc2B4hObyVrxJdlgJ2sK8qub6JfjFt38rCF6MVEddkHiWCU6wZR1qbdqe+ig=="
  4215. "resolved" "https://registry.npmjs.org/unplugin-auto-import/-/unplugin-auto-import-0.8.8.tgz"
  4216. "version" "0.8.8"
  4217. dependencies:
  4218. "@antfu/utils" "^0.5.2"
  4219. "@rollup/pluginutils" "^4.2.1"
  4220. "local-pkg" "^0.4.1"
  4221. "magic-string" "^0.26.2"
  4222. "unimport" "^0.2.7"
  4223. "unplugin" "^0.7.0"
  4224. "unplugin-vue-components@^0.19.6":
  4225. "integrity" "sha512-APvrJ9Hpid1MLT0G4PWerMJgARhNw6dzz0pcCwCxaO2DR7VyvDacMqjOQNC6ukq7FSw3wzD8VH+9i3EFXwkGmw=="
  4226. "resolved" "https://registry.npmjs.org/unplugin-vue-components/-/unplugin-vue-components-0.19.6.tgz"
  4227. "version" "0.19.6"
  4228. dependencies:
  4229. "@antfu/utils" "^0.5.1"
  4230. "@rollup/pluginutils" "^4.2.1"
  4231. "chokidar" "^3.5.3"
  4232. "debug" "^4.3.4"
  4233. "fast-glob" "^3.2.11"
  4234. "local-pkg" "^0.4.1"
  4235. "magic-string" "^0.26.1"
  4236. "minimatch" "^5.0.1"
  4237. "resolve" "^1.22.0"
  4238. "unplugin" "^0.6.3"
  4239. "unplugin@^0.6.3":
  4240. "integrity" "sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A=="
  4241. "resolved" "https://registry.npmjs.org/unplugin/-/unplugin-0.6.3.tgz"
  4242. "version" "0.6.3"
  4243. dependencies:
  4244. "chokidar" "^3.5.3"
  4245. "webpack-sources" "^3.2.3"
  4246. "webpack-virtual-modules" "^0.4.3"
  4247. "unplugin@^0.7.0":
  4248. "integrity" "sha512-OsiFrgybmqm5bGuaodvbLYhqUrvGuRHRMZDhddKEXTDbuQ1x+hR7M1WpQguXj03whVYjEYChhFo738cZH5RNig=="
  4249. "resolved" "https://registry.npmjs.org/unplugin/-/unplugin-0.7.0.tgz"
  4250. "version" "0.7.0"
  4251. dependencies:
  4252. "acorn" "^8.7.1"
  4253. "chokidar" "^3.5.3"
  4254. "webpack-sources" "^3.2.3"
  4255. "webpack-virtual-modules" "^0.4.3"
  4256. "upath@^2.0.1":
  4257. "integrity" "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="
  4258. "resolved" "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz"
  4259. "version" "2.0.1"
  4260. "upper-case-first@^2.0.2":
  4261. "integrity" "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg=="
  4262. "resolved" "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz"
  4263. "version" "2.0.2"
  4264. dependencies:
  4265. "tslib" "^2.0.3"
  4266. "upper-case@^2.0.2":
  4267. "integrity" "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg=="
  4268. "resolved" "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz"
  4269. "version" "2.0.2"
  4270. dependencies:
  4271. "tslib" "^2.0.3"
  4272. "uri-js@^4.2.2":
  4273. "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="
  4274. "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
  4275. "version" "4.4.1"
  4276. dependencies:
  4277. "punycode" "^2.1.0"
  4278. "url-polyfill@^1.1.12":
  4279. "integrity" "sha512-mYFmBHCapZjtcNHW0MDq9967t+z4Dmg5CJ0KqysK3+ZbyoNOWQHksGCTWwDhxGXllkWlOc10Xfko6v4a3ucM6A=="
  4280. "resolved" "https://registry.npmjs.org/url-polyfill/-/url-polyfill-1.1.12.tgz"
  4281. "version" "1.1.12"
  4282. "util-deprecate@^1.0.1", "util-deprecate@^1.0.2":
  4283. "integrity" "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
  4284. "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
  4285. "version" "1.0.2"
  4286. "v8-compile-cache@^2.0.3":
  4287. "integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="
  4288. "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
  4289. "version" "2.3.0"
  4290. "v8flags@^4.0.0":
  4291. "integrity" "sha512-83N0OkTbn6gOjJ2awNuzuK4czeGxwEwBoTqlhBZhnp8o0IJ72mXRQKphj/azwRf3acbDJZYZhbOPEJHd884ELg=="
  4292. "resolved" "https://registry.npmjs.org/v8flags/-/v8flags-4.0.0.tgz"
  4293. "version" "4.0.0"
  4294. "vant@^3.5.2":
  4295. "integrity" "sha512-RR2SEE/ZHH30Z7a9iLBxskvSzs8rwaU2vDhR7HtBjgXreADzGjU75XxV2ogwrtaj2YU1IaBYC8xXjn3VXRxREw=="
  4296. "resolved" "https://registry.npmmirror.com/vant/-/vant-3.5.2.tgz"
  4297. "version" "3.5.2"
  4298. dependencies:
  4299. "@vant/icons" "^1.8.0"
  4300. "@vant/popperjs" "^1.2.1"
  4301. "@vant/use" "^1.4.1"
  4302. "vconsole@^3.14.6":
  4303. "integrity" "sha512-8Ffk2SfNe6EzKqZ0aNnNjpAVBVT7zgJo81lYEJdKySYLVYBeSawdSkWi9fSjDg3WsQhgS1vNPmRqJDTuwdVbnQ=="
  4304. "resolved" "https://registry.npmjs.org/vconsole/-/vconsole-3.14.6.tgz"
  4305. "version" "3.14.6"
  4306. dependencies:
  4307. "@babel/runtime" "^7.17.2"
  4308. "copy-text-to-clipboard" "^3.0.1"
  4309. "core-js" "^3.11.0"
  4310. "mutation-observer" "^1.0.3"
  4311. "vite-plugin-style-import@^1.4.0":
  4312. "integrity" "sha512-lJCRvm7+So0hHdnSJiJPg9gD5mxtL6YY0jmhEph+k7ArpsyvqOh6han2kG5htbWWDZxHkUN9d1BuTFL//yCLLQ=="
  4313. "resolved" "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-1.4.1.tgz"
  4314. "version" "1.4.1"
  4315. dependencies:
  4316. "@rollup/pluginutils" "^4.1.2"
  4317. "change-case" "^4.1.2"
  4318. "debug" "^4.3.3"
  4319. "es-module-lexer" "^0.9.3"
  4320. "fs-extra" "^10.0.0"
  4321. "magic-string" "^0.25.7"
  4322. "vite@^2.7.3":
  4323. "integrity" "sha512-suxC36dQo9Rq1qMB2qiRorNJtJAdxguu5TMvBHOc/F370KvqAe9t48vYp+/TbPKRNrMh/J55tOUmkuIqstZaew=="
  4324. "resolved" "https://registry.npmjs.org/vite/-/vite-2.9.12.tgz"
  4325. "version" "2.9.12"
  4326. dependencies:
  4327. "esbuild" "^0.14.27"
  4328. "postcss" "^8.4.13"
  4329. "resolve" "^1.22.0"
  4330. "rollup" "^2.59.0"
  4331. optionalDependencies:
  4332. "fsevents" "~2.3.2"
  4333. "void-elements@^3.1.0":
  4334. "integrity" "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="
  4335. "resolved" "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz"
  4336. "version" "3.1.0"
  4337. "vscode-css-languageservice@^5.1.7":
  4338. "integrity" "sha512-DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg=="
  4339. "resolved" "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.4.2.tgz"
  4340. "version" "5.4.2"
  4341. dependencies:
  4342. "vscode-languageserver-textdocument" "^1.0.4"
  4343. "vscode-languageserver-types" "^3.16.0"
  4344. "vscode-nls" "^5.0.0"
  4345. "vscode-uri" "^3.0.3"
  4346. "vscode-html-languageservice@^4.1.0":
  4347. "integrity" "sha512-dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw=="
  4348. "resolved" "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.2.5.tgz"
  4349. "version" "4.2.5"
  4350. dependencies:
  4351. "vscode-languageserver-textdocument" "^1.0.4"
  4352. "vscode-languageserver-types" "^3.16.0"
  4353. "vscode-nls" "^5.0.0"
  4354. "vscode-uri" "^3.0.3"
  4355. "vscode-json-languageservice@^4.1.8":
  4356. "integrity" "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA=="
  4357. "resolved" "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz"
  4358. "version" "4.2.1"
  4359. dependencies:
  4360. "jsonc-parser" "^3.0.0"
  4361. "vscode-languageserver-textdocument" "^1.0.3"
  4362. "vscode-languageserver-types" "^3.16.0"
  4363. "vscode-nls" "^5.0.0"
  4364. "vscode-uri" "^3.0.3"
  4365. "vscode-jsonrpc@^8.0.0-next.2", "vscode-jsonrpc@8.0.1":
  4366. "integrity" "sha512-N/WKvghIajmEvXpatSzvTvOIz61ZSmOSa4BRA4pTLi+1+jozquQKP/MkaylP9iB68k73Oua1feLQvH3xQuigiQ=="
  4367. "resolved" "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.1.tgz"
  4368. "version" "8.0.1"
  4369. "vscode-languageserver-protocol@3.17.1":
  4370. "integrity" "sha512-BNlAYgQoYwlSgDLJhSG+DeA8G1JyECqRzM2YO6tMmMji3Ad9Mw6AW7vnZMti90qlAKb0LqAlJfSVGEdqMMNzKg=="
  4371. "resolved" "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.1.tgz"
  4372. "version" "3.17.1"
  4373. dependencies:
  4374. "vscode-jsonrpc" "8.0.1"
  4375. "vscode-languageserver-types" "3.17.1"
  4376. "vscode-languageserver-textdocument@^1.0.1", "vscode-languageserver-textdocument@^1.0.3", "vscode-languageserver-textdocument@^1.0.4":
  4377. "integrity" "sha512-1ah7zyQjKBudnMiHbZmxz5bYNM9KKZYz+5VQLj+yr8l+9w3g+WAhCkUkWbhMEdC5u0ub4Ndiye/fDyS8ghIKQg=="
  4378. "resolved" "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.5.tgz"
  4379. "version" "1.0.5"
  4380. "vscode-languageserver-types@^3.15.1", "vscode-languageserver-types@^3.16.0", "vscode-languageserver-types@3.17.1":
  4381. "integrity" "sha512-K3HqVRPElLZVVPtMeKlsyL9aK0GxGQpvtAUTfX4k7+iJ4mc1M+JM+zQwkgGy2LzY0f0IAafe8MKqIkJrxfGGjQ=="
  4382. "resolved" "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.1.tgz"
  4383. "version" "3.17.1"
  4384. "vscode-languageserver@^8.0.0-next.2":
  4385. "integrity" "sha512-sn7SjBwWm3OlmLtgg7jbM0wBULppyL60rj8K5HF0ny/MzN+GzPBX1kCvYdybhl7UW63V5V5tRVnyB8iwC73lSQ=="
  4386. "resolved" "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.1.tgz"
  4387. "version" "8.0.1"
  4388. dependencies:
  4389. "vscode-languageserver-protocol" "3.17.1"
  4390. "vscode-nls@^5.0.0":
  4391. "integrity" "sha512-hHQV6iig+M21lTdItKPkJAaWrxALQb/nqpVffakO4knJOh3DrU2SXOMzUzNgo1eADPzu3qSsJY1weCzvR52q9A=="
  4392. "resolved" "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.1.tgz"
  4393. "version" "5.0.1"
  4394. "vscode-pug-languageservice@0.29.8":
  4395. "integrity" "sha512-QHYAzDSJLg7GOLxCZ12qsM0dAM0dPeMSS1t4kKfzLsfpErmZpFzkAIXbidVrNMdMffGZMtTuIlcpEyWHbx96Iw=="
  4396. "resolved" "https://registry.npmjs.org/vscode-pug-languageservice/-/vscode-pug-languageservice-0.29.8.tgz"
  4397. "version" "0.29.8"
  4398. dependencies:
  4399. "@volar/code-gen" "0.29.8"
  4400. "@volar/shared" "0.29.8"
  4401. "@volar/source-map" "0.29.8"
  4402. "@volar/transforms" "0.29.8"
  4403. "pug-lexer" "^5.0.1"
  4404. "pug-parser" "^6.0.0"
  4405. "vscode-languageserver" "^8.0.0-next.2"
  4406. "vscode-typescript-languageservice@0.29.8":
  4407. "integrity" "sha512-eecDqHk4WjEvy6VHQ6teHczppQ9yJO2wExCy7yu7WiFj35qbw0h4G6Erv46MvP3ClL8FggFzD7s1qM6vdqJUfw=="
  4408. "resolved" "https://registry.npmjs.org/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.29.8.tgz"
  4409. "version" "0.29.8"
  4410. dependencies:
  4411. "@volar/shared" "0.29.8"
  4412. "semver" "^7.3.5"
  4413. "upath" "^2.0.1"
  4414. "vscode-languageserver" "^8.0.0-next.2"
  4415. "vscode-languageserver-textdocument" "^1.0.1"
  4416. "vscode-uri@^2.1.2":
  4417. "integrity" "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A=="
  4418. "resolved" "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz"
  4419. "version" "2.1.2"
  4420. "vscode-uri@^3.0.2", "vscode-uri@^3.0.3":
  4421. "integrity" "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA=="
  4422. "resolved" "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz"
  4423. "version" "3.0.3"
  4424. "vscode-vue-languageservice@0.29.8":
  4425. "integrity" "sha512-qSJdvW5ttyGUB/8uWDKgo8vnIoFnXYlBP4Z/cn54btsRn6ZMw7IJGJU1381e7p/yGvMTLeGbugD53SghbnSa6g=="
  4426. "resolved" "https://registry.npmjs.org/vscode-vue-languageservice/-/vscode-vue-languageservice-0.29.8.tgz"
  4427. "version" "0.29.8"
  4428. dependencies:
  4429. "@volar/code-gen" "0.29.8"
  4430. "@volar/html2pug" "0.29.8"
  4431. "@volar/shared" "0.29.8"
  4432. "@volar/source-map" "0.29.8"
  4433. "@volar/transforms" "0.29.8"
  4434. "@volar/vue-code-gen" "0.29.8"
  4435. "@vscode/emmet-helper" "^2.8.0"
  4436. "@vue/reactivity" "^3.2.21"
  4437. "@vue/shared" "^3.2.21"
  4438. "request-light" "^0.5.4"
  4439. "upath" "^2.0.1"
  4440. "vscode-css-languageservice" "^5.1.7"
  4441. "vscode-html-languageservice" "^4.1.0"
  4442. "vscode-json-languageservice" "^4.1.8"
  4443. "vscode-languageserver" "^8.0.0-next.2"
  4444. "vscode-languageserver-textdocument" "^1.0.1"
  4445. "vscode-pug-languageservice" "0.29.8"
  4446. "vscode-typescript-languageservice" "0.29.8"
  4447. "vue-cropper@^1.0.3":
  4448. "integrity" "sha512-yDrZkE4H5vOiMA9WQHE+6rmXrZ1S9TMZasEPAZPKg/2I/nySHL4ECD1lNxt7+ofTPKT+9+2sQkCwagPqEqiqJg=="
  4449. "resolved" "https://registry.npmmirror.com/vue-cropper/-/vue-cropper-1.0.3.tgz"
  4450. "version" "1.0.3"
  4451. "vue-demi@*":
  4452. "integrity" "sha512-xmkJ56koG3ptpLnpgmIzk9/4nFf4CqduSJbUM0OdPoU87NwRuZ6x49OLhjSa/fC15fV+5CbEnrxU4oyE022svg=="
  4453. "resolved" "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.1.tgz"
  4454. "version" "0.13.1"
  4455. "vue-eslint-parser@^8.0.0", "vue-eslint-parser@^8.0.1":
  4456. "integrity" "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g=="
  4457. "resolved" "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz"
  4458. "version" "8.3.0"
  4459. dependencies:
  4460. "debug" "^4.3.2"
  4461. "eslint-scope" "^7.0.0"
  4462. "eslint-visitor-keys" "^3.1.0"
  4463. "espree" "^9.0.0"
  4464. "esquery" "^1.4.0"
  4465. "lodash" "^4.17.21"
  4466. "semver" "^7.3.5"
  4467. "vue-router@^4.0.12":
  4468. "integrity" "sha512-JcO7cb8QJLBWE+DfxGUL3xUDOae/8nhM1KVdnudadTAORbuxIC/xAydC5Zr/VLHUDQi1ppuTF5/rjBGzgzrJNA=="
  4469. "resolved" "https://registry.npmjs.org/vue-router/-/vue-router-4.0.16.tgz"
  4470. "version" "4.0.16"
  4471. dependencies:
  4472. "@vue/devtools-api" "^6.0.0"
  4473. "vue-tsc@^0.29.8":
  4474. "integrity" "sha512-pT0wLRjvRuSmB+J4WJT6uuV9mO0KtSSXEAtaVXZQzyk5+DJdbLIQTbRce/TXSkfqt1l1WogO78RjtOJFiMCgfQ=="
  4475. "resolved" "https://registry.npmjs.org/vue-tsc/-/vue-tsc-0.29.8.tgz"
  4476. "version" "0.29.8"
  4477. dependencies:
  4478. "@volar/shared" "0.29.8"
  4479. "vscode-vue-languageservice" "0.29.8"
  4480. "vue@^3.0.0", "vue@^3.2.26":
  4481. "integrity" "sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ=="
  4482. "resolved" "https://registry.npmjs.org/vue/-/vue-3.2.37.tgz"
  4483. "version" "3.2.37"
  4484. dependencies:
  4485. "@vue/compiler-dom" "3.2.37"
  4486. "@vue/compiler-sfc" "3.2.37"
  4487. "@vue/runtime-dom" "3.2.37"
  4488. "@vue/server-renderer" "3.2.37"
  4489. "@vue/shared" "3.2.37"
  4490. "vuex@^4.0.2":
  4491. "integrity" "sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q=="
  4492. "resolved" "https://registry.npmjs.org/vuex/-/vuex-4.0.2.tgz"
  4493. "version" "4.0.2"
  4494. dependencies:
  4495. "@vue/devtools-api" "^6.0.0-beta.11"
  4496. "wcwidth@^1.0.1":
  4497. "integrity" "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="
  4498. "resolved" "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"
  4499. "version" "1.0.1"
  4500. dependencies:
  4501. "defaults" "^1.0.3"
  4502. "webpack-sources@^3.2.3":
  4503. "integrity" "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="
  4504. "resolved" "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz"
  4505. "version" "3.2.3"
  4506. "webpack-virtual-modules@^0.4.3":
  4507. "integrity" "sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw=="
  4508. "resolved" "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.3.tgz"
  4509. "version" "0.4.3"
  4510. "whatwg-fetch@>=0.10.0":
  4511. "integrity" "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA=="
  4512. "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
  4513. "version" "3.6.2"
  4514. "which@^1.2.14":
  4515. "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="
  4516. "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
  4517. "version" "1.3.1"
  4518. dependencies:
  4519. "isexe" "^2.0.0"
  4520. "which@^1.2.9":
  4521. "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="
  4522. "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
  4523. "version" "1.3.1"
  4524. dependencies:
  4525. "isexe" "^2.0.0"
  4526. "which@^2.0.1":
  4527. "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="
  4528. "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
  4529. "version" "2.0.2"
  4530. dependencies:
  4531. "isexe" "^2.0.0"
  4532. "with@^7.0.0":
  4533. "integrity" "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w=="
  4534. "resolved" "https://registry.npmjs.org/with/-/with-7.0.2.tgz"
  4535. "version" "7.0.2"
  4536. dependencies:
  4537. "@babel/parser" "^7.9.6"
  4538. "@babel/types" "^7.9.6"
  4539. "assert-never" "^1.2.1"
  4540. "babel-walk" "3.0.0-canary-5"
  4541. "word-wrap@^1.2.3":
  4542. "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="
  4543. "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
  4544. "version" "1.2.3"
  4545. "wordwrap@^1.0.0":
  4546. "integrity" "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q=="
  4547. "resolved" "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
  4548. "version" "1.0.0"
  4549. "wrap-ansi@^6.2.0":
  4550. "integrity" "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="
  4551. "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"
  4552. "version" "6.2.0"
  4553. dependencies:
  4554. "ansi-styles" "^4.0.0"
  4555. "string-width" "^4.1.0"
  4556. "strip-ansi" "^6.0.0"
  4557. "wrap-ansi@^7.0.0":
  4558. "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="
  4559. "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
  4560. "version" "7.0.0"
  4561. dependencies:
  4562. "ansi-styles" "^4.0.0"
  4563. "string-width" "^4.1.0"
  4564. "strip-ansi" "^6.0.0"
  4565. "wrappy@1":
  4566. "integrity" "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
  4567. "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
  4568. "version" "1.0.2"
  4569. "xtend@^4.0.2":
  4570. "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
  4571. "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
  4572. "version" "4.0.2"
  4573. "yallist@^2.1.2":
  4574. "integrity" "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="
  4575. "resolved" "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"
  4576. "version" "2.1.2"
  4577. "yallist@^4.0.0":
  4578. "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
  4579. "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
  4580. "version" "4.0.0"
  4581. "yaml@^1.10.2":
  4582. "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="
  4583. "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
  4584. "version" "1.10.2"
  4585. "yorkie@^2.0.0":
  4586. "integrity" "sha512-jcKpkthap6x63MB4TxwCyuIGkV0oYP/YRyuQU5UO0Yz/E/ZAu+653/uov+phdmO54n6BcvFRyyt0RRrWdN2mpw=="
  4587. "resolved" "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz"
  4588. "version" "2.0.0"
  4589. dependencies:
  4590. "execa" "^0.8.0"
  4591. "is-ci" "^1.0.10"
  4592. "normalize-path" "^1.0.0"
  4593. "strip-indent" "^2.0.0"