package-lock.json 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139
  1. {
  2. "name": "simo2",
  3. "version": "0.0.1",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "simo2",
  9. "version": "0.0.1",
  10. "dependencies": {
  11. "@astrojs/svelte": "^4.0.0",
  12. "@astrojs/tailwind": "^5.0.0",
  13. "astro": "^3.0.2",
  14. "svelte": "^4.2.0",
  15. "tailwindcss": "^3.3.3"
  16. }
  17. },
  18. "node_modules/@alloc/quick-lru": {
  19. "version": "5.2.0",
  20. "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
  21. "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
  22. "engines": {
  23. "node": ">=10"
  24. },
  25. "funding": {
  26. "url": "https://github.com/sponsors/sindresorhus"
  27. }
  28. },
  29. "node_modules/@ampproject/remapping": {
  30. "version": "2.2.1",
  31. "license": "Apache-2.0",
  32. "dependencies": {
  33. "@jridgewell/gen-mapping": "^0.3.0",
  34. "@jridgewell/trace-mapping": "^0.3.9"
  35. },
  36. "engines": {
  37. "node": ">=6.0.0"
  38. }
  39. },
  40. "node_modules/@astrojs/compiler": {
  41. "version": "2.0.1",
  42. "license": "MIT"
  43. },
  44. "node_modules/@astrojs/internal-helpers": {
  45. "version": "0.2.0",
  46. "license": "MIT"
  47. },
  48. "node_modules/@astrojs/markdown-remark": {
  49. "version": "3.0.0",
  50. "license": "MIT",
  51. "dependencies": {
  52. "@astrojs/prism": "^3.0.0",
  53. "github-slugger": "^2.0.0",
  54. "import-meta-resolve": "^3.0.0",
  55. "rehype-raw": "^6.1.1",
  56. "rehype-stringify": "^9.0.4",
  57. "remark-gfm": "^3.0.1",
  58. "remark-parse": "^10.0.2",
  59. "remark-rehype": "^10.1.0",
  60. "remark-smartypants": "^2.0.0",
  61. "shiki": "^0.14.3",
  62. "unified": "^10.1.2",
  63. "unist-util-visit": "^4.1.2",
  64. "vfile": "^5.3.7"
  65. },
  66. "peerDependencies": {
  67. "astro": "^3.0.0"
  68. }
  69. },
  70. "node_modules/@astrojs/prism": {
  71. "version": "3.0.0",
  72. "license": "MIT",
  73. "dependencies": {
  74. "prismjs": "^1.29.0"
  75. },
  76. "engines": {
  77. "node": ">=18.14.1"
  78. }
  79. },
  80. "node_modules/@astrojs/svelte": {
  81. "version": "4.0.0",
  82. "resolved": "https://registry.npmjs.org/@astrojs/svelte/-/svelte-4.0.0.tgz",
  83. "integrity": "sha512-HTn6p2U8GnbiDFxfyaUUCPLGW1P/RAEC0jeg4Zk0IGQd1szSvHwuZst99/k8oRoIytH5eLWSRuiYMI4j5vdA6w==",
  84. "dependencies": {
  85. "@sveltejs/vite-plugin-svelte": "^2.4.5",
  86. "svelte2tsx": "^0.6.20"
  87. },
  88. "engines": {
  89. "node": ">=18.14.1"
  90. },
  91. "peerDependencies": {
  92. "astro": "^3.0.0",
  93. "svelte": "^3.55.0 || ^4.0.0"
  94. }
  95. },
  96. "node_modules/@astrojs/tailwind": {
  97. "version": "5.0.0",
  98. "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.0.0.tgz",
  99. "integrity": "sha512-bMZZNNm/SW+ijUKMQDhdiuNWDdR3CubEKUHb2Ran4Arx1ikWn/kKIkFDXUV+MUnsLa7s19x9VMRlARRyKbqMkQ==",
  100. "dependencies": {
  101. "autoprefixer": "^10.4.15",
  102. "postcss": "^8.4.28",
  103. "postcss-load-config": "^4.0.1"
  104. },
  105. "peerDependencies": {
  106. "astro": "^3.0.0",
  107. "tailwindcss": "^3.0.24"
  108. }
  109. },
  110. "node_modules/@astrojs/telemetry": {
  111. "version": "3.0.0",
  112. "license": "MIT",
  113. "dependencies": {
  114. "ci-info": "^3.8.0",
  115. "debug": "^4.3.4",
  116. "dlv": "^1.1.3",
  117. "dset": "^3.1.2",
  118. "is-docker": "^3.0.0",
  119. "is-wsl": "^3.0.0",
  120. "undici": "^5.23.0",
  121. "which-pm-runs": "^1.1.0"
  122. },
  123. "engines": {
  124. "node": ">=18.14.1"
  125. }
  126. },
  127. "node_modules/@babel/code-frame": {
  128. "version": "7.22.13",
  129. "license": "MIT",
  130. "dependencies": {
  131. "@babel/highlight": "^7.22.13",
  132. "chalk": "^2.4.2"
  133. },
  134. "engines": {
  135. "node": ">=6.9.0"
  136. }
  137. },
  138. "node_modules/@babel/code-frame/node_modules/chalk": {
  139. "version": "2.4.2",
  140. "license": "MIT",
  141. "dependencies": {
  142. "ansi-styles": "^3.2.1",
  143. "escape-string-regexp": "^1.0.5",
  144. "supports-color": "^5.3.0"
  145. },
  146. "engines": {
  147. "node": ">=4"
  148. }
  149. },
  150. "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles": {
  151. "version": "3.2.1",
  152. "license": "MIT",
  153. "dependencies": {
  154. "color-convert": "^1.9.0"
  155. },
  156. "engines": {
  157. "node": ">=4"
  158. }
  159. },
  160. "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert": {
  161. "version": "1.9.3",
  162. "license": "MIT",
  163. "dependencies": {
  164. "color-name": "1.1.3"
  165. }
  166. },
  167. "node_modules/@babel/code-frame/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name": {
  168. "version": "1.1.3",
  169. "license": "MIT"
  170. },
  171. "node_modules/@babel/compat-data": {
  172. "version": "7.22.9",
  173. "license": "MIT",
  174. "engines": {
  175. "node": ">=6.9.0"
  176. }
  177. },
  178. "node_modules/@babel/core": {
  179. "version": "7.22.11",
  180. "license": "MIT",
  181. "dependencies": {
  182. "@ampproject/remapping": "^2.2.0",
  183. "@babel/code-frame": "^7.22.10",
  184. "@babel/generator": "^7.22.10",
  185. "@babel/helper-compilation-targets": "^7.22.10",
  186. "@babel/helper-module-transforms": "^7.22.9",
  187. "@babel/helpers": "^7.22.11",
  188. "@babel/parser": "^7.22.11",
  189. "@babel/template": "^7.22.5",
  190. "@babel/traverse": "^7.22.11",
  191. "@babel/types": "^7.22.11",
  192. "convert-source-map": "^1.7.0",
  193. "debug": "^4.1.0",
  194. "gensync": "^1.0.0-beta.2",
  195. "json5": "^2.2.3",
  196. "semver": "^6.3.1"
  197. },
  198. "engines": {
  199. "node": ">=6.9.0"
  200. },
  201. "funding": {
  202. "type": "opencollective",
  203. "url": "https://opencollective.com/babel"
  204. }
  205. },
  206. "node_modules/@babel/core/node_modules/semver": {
  207. "version": "6.3.1",
  208. "license": "ISC",
  209. "bin": {
  210. "semver": "bin/semver.js"
  211. }
  212. },
  213. "node_modules/@babel/generator": {
  214. "version": "7.22.10",
  215. "license": "MIT",
  216. "dependencies": {
  217. "@babel/types": "^7.22.10",
  218. "@jridgewell/gen-mapping": "^0.3.2",
  219. "@jridgewell/trace-mapping": "^0.3.17",
  220. "jsesc": "^2.5.1"
  221. },
  222. "engines": {
  223. "node": ">=6.9.0"
  224. }
  225. },
  226. "node_modules/@babel/helper-annotate-as-pure": {
  227. "version": "7.22.5",
  228. "license": "MIT",
  229. "dependencies": {
  230. "@babel/types": "^7.22.5"
  231. },
  232. "engines": {
  233. "node": ">=6.9.0"
  234. }
  235. },
  236. "node_modules/@babel/helper-compilation-targets": {
  237. "version": "7.22.10",
  238. "license": "MIT",
  239. "dependencies": {
  240. "@babel/compat-data": "^7.22.9",
  241. "@babel/helper-validator-option": "^7.22.5",
  242. "browserslist": "^4.21.9",
  243. "lru-cache": "^5.1.1",
  244. "semver": "^6.3.1"
  245. },
  246. "engines": {
  247. "node": ">=6.9.0"
  248. }
  249. },
  250. "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
  251. "version": "5.1.1",
  252. "license": "ISC",
  253. "dependencies": {
  254. "yallist": "^3.0.2"
  255. }
  256. },
  257. "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/node_modules/yallist": {
  258. "version": "3.1.1",
  259. "license": "ISC"
  260. },
  261. "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
  262. "version": "6.3.1",
  263. "license": "ISC",
  264. "bin": {
  265. "semver": "bin/semver.js"
  266. }
  267. },
  268. "node_modules/@babel/helper-environment-visitor": {
  269. "version": "7.22.5",
  270. "license": "MIT",
  271. "engines": {
  272. "node": ">=6.9.0"
  273. }
  274. },
  275. "node_modules/@babel/helper-function-name": {
  276. "version": "7.22.5",
  277. "license": "MIT",
  278. "dependencies": {
  279. "@babel/template": "^7.22.5",
  280. "@babel/types": "^7.22.5"
  281. },
  282. "engines": {
  283. "node": ">=6.9.0"
  284. }
  285. },
  286. "node_modules/@babel/helper-hoist-variables": {
  287. "version": "7.22.5",
  288. "license": "MIT",
  289. "dependencies": {
  290. "@babel/types": "^7.22.5"
  291. },
  292. "engines": {
  293. "node": ">=6.9.0"
  294. }
  295. },
  296. "node_modules/@babel/helper-module-imports": {
  297. "version": "7.22.5",
  298. "license": "MIT",
  299. "dependencies": {
  300. "@babel/types": "^7.22.5"
  301. },
  302. "engines": {
  303. "node": ">=6.9.0"
  304. }
  305. },
  306. "node_modules/@babel/helper-module-transforms": {
  307. "version": "7.22.9",
  308. "license": "MIT",
  309. "dependencies": {
  310. "@babel/helper-environment-visitor": "^7.22.5",
  311. "@babel/helper-module-imports": "^7.22.5",
  312. "@babel/helper-simple-access": "^7.22.5",
  313. "@babel/helper-split-export-declaration": "^7.22.6",
  314. "@babel/helper-validator-identifier": "^7.22.5"
  315. },
  316. "engines": {
  317. "node": ">=6.9.0"
  318. },
  319. "peerDependencies": {
  320. "@babel/core": "^7.0.0"
  321. }
  322. },
  323. "node_modules/@babel/helper-plugin-utils": {
  324. "version": "7.22.5",
  325. "license": "MIT",
  326. "engines": {
  327. "node": ">=6.9.0"
  328. }
  329. },
  330. "node_modules/@babel/helper-simple-access": {
  331. "version": "7.22.5",
  332. "license": "MIT",
  333. "dependencies": {
  334. "@babel/types": "^7.22.5"
  335. },
  336. "engines": {
  337. "node": ">=6.9.0"
  338. }
  339. },
  340. "node_modules/@babel/helper-split-export-declaration": {
  341. "version": "7.22.6",
  342. "license": "MIT",
  343. "dependencies": {
  344. "@babel/types": "^7.22.5"
  345. },
  346. "engines": {
  347. "node": ">=6.9.0"
  348. }
  349. },
  350. "node_modules/@babel/helper-string-parser": {
  351. "version": "7.22.5",
  352. "license": "MIT",
  353. "engines": {
  354. "node": ">=6.9.0"
  355. }
  356. },
  357. "node_modules/@babel/helper-validator-identifier": {
  358. "version": "7.22.5",
  359. "license": "MIT",
  360. "engines": {
  361. "node": ">=6.9.0"
  362. }
  363. },
  364. "node_modules/@babel/helper-validator-option": {
  365. "version": "7.22.5",
  366. "license": "MIT",
  367. "engines": {
  368. "node": ">=6.9.0"
  369. }
  370. },
  371. "node_modules/@babel/helpers": {
  372. "version": "7.22.11",
  373. "license": "MIT",
  374. "dependencies": {
  375. "@babel/template": "^7.22.5",
  376. "@babel/traverse": "^7.22.11",
  377. "@babel/types": "^7.22.11"
  378. },
  379. "engines": {
  380. "node": ">=6.9.0"
  381. }
  382. },
  383. "node_modules/@babel/highlight": {
  384. "version": "7.22.13",
  385. "license": "MIT",
  386. "dependencies": {
  387. "@babel/helper-validator-identifier": "^7.22.5",
  388. "chalk": "^2.4.2",
  389. "js-tokens": "^4.0.0"
  390. },
  391. "engines": {
  392. "node": ">=6.9.0"
  393. }
  394. },
  395. "node_modules/@babel/highlight/node_modules/chalk": {
  396. "version": "2.4.2",
  397. "license": "MIT",
  398. "dependencies": {
  399. "ansi-styles": "^3.2.1",
  400. "escape-string-regexp": "^1.0.5",
  401. "supports-color": "^5.3.0"
  402. },
  403. "engines": {
  404. "node": ">=4"
  405. }
  406. },
  407. "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles": {
  408. "version": "3.2.1",
  409. "license": "MIT",
  410. "dependencies": {
  411. "color-convert": "^1.9.0"
  412. },
  413. "engines": {
  414. "node": ">=4"
  415. }
  416. },
  417. "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert": {
  418. "version": "1.9.3",
  419. "license": "MIT",
  420. "dependencies": {
  421. "color-name": "1.1.3"
  422. }
  423. },
  424. "node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name": {
  425. "version": "1.1.3",
  426. "license": "MIT"
  427. },
  428. "node_modules/@babel/parser": {
  429. "version": "7.22.14",
  430. "license": "MIT",
  431. "bin": {
  432. "parser": "bin/babel-parser.js"
  433. },
  434. "engines": {
  435. "node": ">=6.0.0"
  436. }
  437. },
  438. "node_modules/@babel/plugin-syntax-jsx": {
  439. "version": "7.22.5",
  440. "license": "MIT",
  441. "dependencies": {
  442. "@babel/helper-plugin-utils": "^7.22.5"
  443. },
  444. "engines": {
  445. "node": ">=6.9.0"
  446. },
  447. "peerDependencies": {
  448. "@babel/core": "^7.0.0-0"
  449. }
  450. },
  451. "node_modules/@babel/plugin-transform-react-jsx": {
  452. "version": "7.22.5",
  453. "license": "MIT",
  454. "dependencies": {
  455. "@babel/helper-annotate-as-pure": "^7.22.5",
  456. "@babel/helper-module-imports": "^7.22.5",
  457. "@babel/helper-plugin-utils": "^7.22.5",
  458. "@babel/plugin-syntax-jsx": "^7.22.5",
  459. "@babel/types": "^7.22.5"
  460. },
  461. "engines": {
  462. "node": ">=6.9.0"
  463. },
  464. "peerDependencies": {
  465. "@babel/core": "^7.0.0-0"
  466. }
  467. },
  468. "node_modules/@babel/template": {
  469. "version": "7.22.5",
  470. "license": "MIT",
  471. "dependencies": {
  472. "@babel/code-frame": "^7.22.5",
  473. "@babel/parser": "^7.22.5",
  474. "@babel/types": "^7.22.5"
  475. },
  476. "engines": {
  477. "node": ">=6.9.0"
  478. }
  479. },
  480. "node_modules/@babel/traverse": {
  481. "version": "7.22.11",
  482. "license": "MIT",
  483. "dependencies": {
  484. "@babel/code-frame": "^7.22.10",
  485. "@babel/generator": "^7.22.10",
  486. "@babel/helper-environment-visitor": "^7.22.5",
  487. "@babel/helper-function-name": "^7.22.5",
  488. "@babel/helper-hoist-variables": "^7.22.5",
  489. "@babel/helper-split-export-declaration": "^7.22.6",
  490. "@babel/parser": "^7.22.11",
  491. "@babel/types": "^7.22.11",
  492. "debug": "^4.1.0",
  493. "globals": "^11.1.0"
  494. },
  495. "engines": {
  496. "node": ">=6.9.0"
  497. }
  498. },
  499. "node_modules/@babel/types": {
  500. "version": "7.22.11",
  501. "license": "MIT",
  502. "dependencies": {
  503. "@babel/helper-string-parser": "^7.22.5",
  504. "@babel/helper-validator-identifier": "^7.22.5",
  505. "to-fast-properties": "^2.0.0"
  506. },
  507. "engines": {
  508. "node": ">=6.9.0"
  509. }
  510. },
  511. "node_modules/@esbuild/linux-x64": {
  512. "version": "0.19.2",
  513. "cpu": [
  514. "x64"
  515. ],
  516. "license": "MIT",
  517. "optional": true,
  518. "os": [
  519. "linux"
  520. ],
  521. "engines": {
  522. "node": ">=12"
  523. }
  524. },
  525. "node_modules/@jridgewell/gen-mapping": {
  526. "version": "0.3.3",
  527. "license": "MIT",
  528. "dependencies": {
  529. "@jridgewell/set-array": "^1.0.1",
  530. "@jridgewell/sourcemap-codec": "^1.4.10",
  531. "@jridgewell/trace-mapping": "^0.3.9"
  532. },
  533. "engines": {
  534. "node": ">=6.0.0"
  535. }
  536. },
  537. "node_modules/@jridgewell/resolve-uri": {
  538. "version": "3.1.1",
  539. "license": "MIT",
  540. "engines": {
  541. "node": ">=6.0.0"
  542. }
  543. },
  544. "node_modules/@jridgewell/set-array": {
  545. "version": "1.1.2",
  546. "license": "MIT",
  547. "engines": {
  548. "node": ">=6.0.0"
  549. }
  550. },
  551. "node_modules/@jridgewell/sourcemap-codec": {
  552. "version": "1.4.15",
  553. "license": "MIT"
  554. },
  555. "node_modules/@jridgewell/trace-mapping": {
  556. "version": "0.3.19",
  557. "license": "MIT",
  558. "dependencies": {
  559. "@jridgewell/resolve-uri": "^3.1.0",
  560. "@jridgewell/sourcemap-codec": "^1.4.14"
  561. }
  562. },
  563. "node_modules/@nodelib/fs.scandir": {
  564. "version": "2.1.5",
  565. "license": "MIT",
  566. "dependencies": {
  567. "@nodelib/fs.stat": "2.0.5",
  568. "run-parallel": "^1.1.9"
  569. },
  570. "engines": {
  571. "node": ">= 8"
  572. }
  573. },
  574. "node_modules/@nodelib/fs.stat": {
  575. "version": "2.0.5",
  576. "license": "MIT",
  577. "engines": {
  578. "node": ">= 8"
  579. }
  580. },
  581. "node_modules/@nodelib/fs.walk": {
  582. "version": "1.2.8",
  583. "license": "MIT",
  584. "dependencies": {
  585. "@nodelib/fs.scandir": "2.1.5",
  586. "fastq": "^1.6.0"
  587. },
  588. "engines": {
  589. "node": ">= 8"
  590. }
  591. },
  592. "node_modules/@sveltejs/vite-plugin-svelte": {
  593. "version": "2.4.5",
  594. "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-2.4.5.tgz",
  595. "integrity": "sha512-UJKsFNwhzCVuiZd06jM/psscyNJNDwjQC+qIeb7GBJK9iWeQCcIyfcPWDvbCudfcJggY9jtxJeeaZH7uny93FQ==",
  596. "dependencies": {
  597. "@sveltejs/vite-plugin-svelte-inspector": "^1.0.3",
  598. "debug": "^4.3.4",
  599. "deepmerge": "^4.3.1",
  600. "kleur": "^4.1.5",
  601. "magic-string": "^0.30.2",
  602. "svelte-hmr": "^0.15.3",
  603. "vitefu": "^0.2.4"
  604. },
  605. "engines": {
  606. "node": "^14.18.0 || >= 16"
  607. },
  608. "peerDependencies": {
  609. "svelte": "^3.54.0 || ^4.0.0",
  610. "vite": "^4.0.0"
  611. }
  612. },
  613. "node_modules/@sveltejs/vite-plugin-svelte-inspector": {
  614. "version": "1.0.4",
  615. "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-1.0.4.tgz",
  616. "integrity": "sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==",
  617. "dependencies": {
  618. "debug": "^4.3.4"
  619. },
  620. "engines": {
  621. "node": "^14.18.0 || >= 16"
  622. },
  623. "peerDependencies": {
  624. "@sveltejs/vite-plugin-svelte": "^2.2.0",
  625. "svelte": "^3.54.0 || ^4.0.0",
  626. "vite": "^4.0.0"
  627. }
  628. },
  629. "node_modules/@types/babel__core": {
  630. "version": "7.20.1",
  631. "license": "MIT",
  632. "dependencies": {
  633. "@babel/parser": "^7.20.7",
  634. "@babel/types": "^7.20.7",
  635. "@types/babel__generator": "*",
  636. "@types/babel__template": "*",
  637. "@types/babel__traverse": "*"
  638. }
  639. },
  640. "node_modules/@types/babel__generator": {
  641. "version": "7.6.4",
  642. "license": "MIT",
  643. "dependencies": {
  644. "@babel/types": "^7.0.0"
  645. }
  646. },
  647. "node_modules/@types/babel__template": {
  648. "version": "7.4.1",
  649. "license": "MIT",
  650. "dependencies": {
  651. "@babel/parser": "^7.1.0",
  652. "@babel/types": "^7.0.0"
  653. }
  654. },
  655. "node_modules/@types/babel__traverse": {
  656. "version": "7.20.1",
  657. "license": "MIT",
  658. "dependencies": {
  659. "@babel/types": "^7.20.7"
  660. }
  661. },
  662. "node_modules/@types/debug": {
  663. "version": "4.1.8",
  664. "license": "MIT",
  665. "dependencies": {
  666. "@types/ms": "*"
  667. }
  668. },
  669. "node_modules/@types/estree": {
  670. "version": "1.0.1",
  671. "license": "MIT"
  672. },
  673. "node_modules/@types/hast": {
  674. "version": "2.3.5",
  675. "license": "MIT",
  676. "dependencies": {
  677. "@types/unist": "^2"
  678. }
  679. },
  680. "node_modules/@types/json5": {
  681. "version": "0.0.30",
  682. "license": "MIT"
  683. },
  684. "node_modules/@types/mdast": {
  685. "version": "3.0.12",
  686. "license": "MIT",
  687. "dependencies": {
  688. "@types/unist": "^2"
  689. }
  690. },
  691. "node_modules/@types/ms": {
  692. "version": "0.7.31",
  693. "license": "MIT"
  694. },
  695. "node_modules/@types/nlcst": {
  696. "version": "1.0.1",
  697. "license": "MIT",
  698. "dependencies": {
  699. "@types/unist": "^2"
  700. }
  701. },
  702. "node_modules/@types/parse5": {
  703. "version": "6.0.3",
  704. "license": "MIT"
  705. },
  706. "node_modules/@types/resolve": {
  707. "version": "1.20.2",
  708. "license": "MIT"
  709. },
  710. "node_modules/@types/unist": {
  711. "version": "2.0.8",
  712. "license": "MIT"
  713. },
  714. "node_modules/acorn": {
  715. "version": "8.10.0",
  716. "license": "MIT",
  717. "bin": {
  718. "acorn": "bin/acorn"
  719. },
  720. "engines": {
  721. "node": ">=0.4.0"
  722. }
  723. },
  724. "node_modules/ansi-align": {
  725. "version": "3.0.1",
  726. "license": "ISC",
  727. "dependencies": {
  728. "string-width": "^4.1.0"
  729. }
  730. },
  731. "node_modules/ansi-align/node_modules/string-width": {
  732. "version": "4.2.3",
  733. "license": "MIT",
  734. "dependencies": {
  735. "emoji-regex": "^8.0.0",
  736. "is-fullwidth-code-point": "^3.0.0",
  737. "strip-ansi": "^6.0.1"
  738. },
  739. "engines": {
  740. "node": ">=8"
  741. }
  742. },
  743. "node_modules/ansi-align/node_modules/string-width/node_modules/emoji-regex": {
  744. "version": "8.0.0",
  745. "license": "MIT"
  746. },
  747. "node_modules/ansi-align/node_modules/string-width/node_modules/strip-ansi": {
  748. "version": "6.0.1",
  749. "license": "MIT",
  750. "dependencies": {
  751. "ansi-regex": "^5.0.1"
  752. },
  753. "engines": {
  754. "node": ">=8"
  755. }
  756. },
  757. "node_modules/ansi-align/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex": {
  758. "version": "5.0.1",
  759. "license": "MIT",
  760. "engines": {
  761. "node": ">=8"
  762. }
  763. },
  764. "node_modules/ansi-regex": {
  765. "version": "6.0.1",
  766. "license": "MIT",
  767. "engines": {
  768. "node": ">=12"
  769. },
  770. "funding": {
  771. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  772. }
  773. },
  774. "node_modules/ansi-sequence-parser": {
  775. "version": "1.1.1",
  776. "license": "MIT"
  777. },
  778. "node_modules/ansi-styles": {
  779. "version": "6.2.1",
  780. "license": "MIT",
  781. "engines": {
  782. "node": ">=12"
  783. },
  784. "funding": {
  785. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  786. }
  787. },
  788. "node_modules/any-promise": {
  789. "version": "1.3.0",
  790. "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
  791. "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
  792. },
  793. "node_modules/anymatch": {
  794. "version": "3.1.3",
  795. "license": "ISC",
  796. "dependencies": {
  797. "normalize-path": "^3.0.0",
  798. "picomatch": "^2.0.4"
  799. },
  800. "engines": {
  801. "node": ">= 8"
  802. }
  803. },
  804. "node_modules/arg": {
  805. "version": "5.0.2",
  806. "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
  807. "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
  808. },
  809. "node_modules/argparse": {
  810. "version": "2.0.1",
  811. "license": "Python-2.0"
  812. },
  813. "node_modules/aria-query": {
  814. "version": "5.3.0",
  815. "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz",
  816. "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
  817. "dependencies": {
  818. "dequal": "^2.0.3"
  819. }
  820. },
  821. "node_modules/array-iterate": {
  822. "version": "2.0.1",
  823. "license": "MIT",
  824. "funding": {
  825. "type": "github",
  826. "url": "https://github.com/sponsors/wooorm"
  827. }
  828. },
  829. "node_modules/astro": {
  830. "version": "3.0.2",
  831. "license": "MIT",
  832. "dependencies": {
  833. "@astrojs/compiler": "^2.0.1",
  834. "@astrojs/internal-helpers": "0.2.0",
  835. "@astrojs/markdown-remark": "3.0.0",
  836. "@astrojs/telemetry": "3.0.0",
  837. "@babel/core": "^7.22.10",
  838. "@babel/generator": "^7.22.10",
  839. "@babel/parser": "^7.22.10",
  840. "@babel/plugin-transform-react-jsx": "^7.22.5",
  841. "@babel/traverse": "^7.22.10",
  842. "@babel/types": "^7.22.10",
  843. "@types/babel__core": "^7.20.1",
  844. "acorn": "^8.10.0",
  845. "boxen": "^7.1.1",
  846. "chokidar": "^3.5.3",
  847. "ci-info": "^3.8.0",
  848. "clsx": "^2.0.0",
  849. "common-ancestor-path": "^1.0.1",
  850. "cookie": "^0.5.0",
  851. "debug": "^4.3.4",
  852. "devalue": "^4.3.2",
  853. "diff": "^5.1.0",
  854. "es-module-lexer": "^1.3.0",
  855. "esbuild": "^0.19.2",
  856. "estree-walker": "^3.0.3",
  857. "execa": "^8.0.1",
  858. "fast-glob": "^3.3.1",
  859. "github-slugger": "^2.0.0",
  860. "gray-matter": "^4.0.3",
  861. "html-escaper": "^3.0.3",
  862. "http-cache-semantics": "^4.1.1",
  863. "js-yaml": "^4.1.0",
  864. "kleur": "^4.1.4",
  865. "magic-string": "^0.30.3",
  866. "mime": "^3.0.0",
  867. "ora": "^7.0.1",
  868. "p-limit": "^4.0.0",
  869. "path-to-regexp": "^6.2.1",
  870. "preferred-pm": "^3.0.3",
  871. "prompts": "^2.4.2",
  872. "rehype": "^12.0.1",
  873. "resolve": "^1.22.4",
  874. "semver": "^7.5.4",
  875. "server-destroy": "^1.0.1",
  876. "sharp": "^0.32.5",
  877. "shiki": "^0.14.3",
  878. "string-width": "^6.1.0",
  879. "strip-ansi": "^7.1.0",
  880. "tsconfig-resolver": "^3.0.1",
  881. "undici": "^5.23.0",
  882. "unist-util-visit": "^4.1.2",
  883. "vfile": "^5.3.7",
  884. "vite": "^4.4.9",
  885. "vitefu": "^0.2.4",
  886. "which-pm": "^2.0.0",
  887. "yargs-parser": "^21.1.1",
  888. "zod": "3.21.1"
  889. },
  890. "bin": {
  891. "astro": "astro.js"
  892. },
  893. "engines": {
  894. "node": ">=18.14.1",
  895. "npm": ">=6.14.0"
  896. }
  897. },
  898. "node_modules/autoprefixer": {
  899. "version": "10.4.15",
  900. "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.15.tgz",
  901. "integrity": "sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==",
  902. "funding": [
  903. {
  904. "type": "opencollective",
  905. "url": "https://opencollective.com/postcss/"
  906. },
  907. {
  908. "type": "tidelift",
  909. "url": "https://tidelift.com/funding/github/npm/autoprefixer"
  910. },
  911. {
  912. "type": "github",
  913. "url": "https://github.com/sponsors/ai"
  914. }
  915. ],
  916. "dependencies": {
  917. "browserslist": "^4.21.10",
  918. "caniuse-lite": "^1.0.30001520",
  919. "fraction.js": "^4.2.0",
  920. "normalize-range": "^0.1.2",
  921. "picocolors": "^1.0.0",
  922. "postcss-value-parser": "^4.2.0"
  923. },
  924. "bin": {
  925. "autoprefixer": "bin/autoprefixer"
  926. },
  927. "engines": {
  928. "node": "^10 || ^12 || >=14"
  929. },
  930. "peerDependencies": {
  931. "postcss": "^8.1.0"
  932. }
  933. },
  934. "node_modules/axobject-query": {
  935. "version": "3.2.1",
  936. "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz",
  937. "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==",
  938. "dependencies": {
  939. "dequal": "^2.0.3"
  940. }
  941. },
  942. "node_modules/b4a": {
  943. "version": "1.6.4",
  944. "license": "ISC"
  945. },
  946. "node_modules/bail": {
  947. "version": "2.0.2",
  948. "license": "MIT",
  949. "funding": {
  950. "type": "github",
  951. "url": "https://github.com/sponsors/wooorm"
  952. }
  953. },
  954. "node_modules/balanced-match": {
  955. "version": "1.0.2",
  956. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  957. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
  958. },
  959. "node_modules/base64-js": {
  960. "version": "1.5.1",
  961. "funding": [
  962. {
  963. "type": "github",
  964. "url": "https://github.com/sponsors/feross"
  965. },
  966. {
  967. "type": "patreon",
  968. "url": "https://www.patreon.com/feross"
  969. },
  970. {
  971. "type": "consulting",
  972. "url": "https://feross.org/support"
  973. }
  974. ],
  975. "license": "MIT"
  976. },
  977. "node_modules/binary-extensions": {
  978. "version": "2.2.0",
  979. "license": "MIT",
  980. "engines": {
  981. "node": ">=8"
  982. }
  983. },
  984. "node_modules/bl": {
  985. "version": "5.1.0",
  986. "license": "MIT",
  987. "dependencies": {
  988. "buffer": "^6.0.3",
  989. "inherits": "^2.0.4",
  990. "readable-stream": "^3.4.0"
  991. }
  992. },
  993. "node_modules/boxen": {
  994. "version": "7.1.1",
  995. "license": "MIT",
  996. "dependencies": {
  997. "ansi-align": "^3.0.1",
  998. "camelcase": "^7.0.1",
  999. "chalk": "^5.2.0",
  1000. "cli-boxes": "^3.0.0",
  1001. "string-width": "^5.1.2",
  1002. "type-fest": "^2.13.0",
  1003. "widest-line": "^4.0.1",
  1004. "wrap-ansi": "^8.1.0"
  1005. },
  1006. "engines": {
  1007. "node": ">=14.16"
  1008. },
  1009. "funding": {
  1010. "url": "https://github.com/sponsors/sindresorhus"
  1011. }
  1012. },
  1013. "node_modules/boxen/node_modules/string-width": {
  1014. "version": "5.1.2",
  1015. "license": "MIT",
  1016. "dependencies": {
  1017. "eastasianwidth": "^0.2.0",
  1018. "emoji-regex": "^9.2.2",
  1019. "strip-ansi": "^7.0.1"
  1020. },
  1021. "engines": {
  1022. "node": ">=12"
  1023. },
  1024. "funding": {
  1025. "url": "https://github.com/sponsors/sindresorhus"
  1026. }
  1027. },
  1028. "node_modules/boxen/node_modules/string-width/node_modules/emoji-regex": {
  1029. "version": "9.2.2",
  1030. "license": "MIT"
  1031. },
  1032. "node_modules/brace-expansion": {
  1033. "version": "1.1.11",
  1034. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
  1035. "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
  1036. "dependencies": {
  1037. "balanced-match": "^1.0.0",
  1038. "concat-map": "0.0.1"
  1039. }
  1040. },
  1041. "node_modules/braces": {
  1042. "version": "3.0.2",
  1043. "license": "MIT",
  1044. "dependencies": {
  1045. "fill-range": "^7.0.1"
  1046. },
  1047. "engines": {
  1048. "node": ">=8"
  1049. }
  1050. },
  1051. "node_modules/browserslist": {
  1052. "version": "4.21.10",
  1053. "funding": [
  1054. {
  1055. "type": "opencollective",
  1056. "url": "https://opencollective.com/browserslist"
  1057. },
  1058. {
  1059. "type": "tidelift",
  1060. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1061. },
  1062. {
  1063. "type": "github",
  1064. "url": "https://github.com/sponsors/ai"
  1065. }
  1066. ],
  1067. "license": "MIT",
  1068. "dependencies": {
  1069. "caniuse-lite": "^1.0.30001517",
  1070. "electron-to-chromium": "^1.4.477",
  1071. "node-releases": "^2.0.13",
  1072. "update-browserslist-db": "^1.0.11"
  1073. },
  1074. "bin": {
  1075. "browserslist": "cli.js"
  1076. },
  1077. "engines": {
  1078. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1079. }
  1080. },
  1081. "node_modules/buffer": {
  1082. "version": "6.0.3",
  1083. "funding": [
  1084. {
  1085. "type": "github",
  1086. "url": "https://github.com/sponsors/feross"
  1087. },
  1088. {
  1089. "type": "patreon",
  1090. "url": "https://www.patreon.com/feross"
  1091. },
  1092. {
  1093. "type": "consulting",
  1094. "url": "https://feross.org/support"
  1095. }
  1096. ],
  1097. "license": "MIT",
  1098. "dependencies": {
  1099. "base64-js": "^1.3.1",
  1100. "ieee754": "^1.2.1"
  1101. }
  1102. },
  1103. "node_modules/busboy": {
  1104. "version": "1.6.0",
  1105. "dependencies": {
  1106. "streamsearch": "^1.1.0"
  1107. },
  1108. "engines": {
  1109. "node": ">=10.16.0"
  1110. }
  1111. },
  1112. "node_modules/camelcase": {
  1113. "version": "7.0.1",
  1114. "license": "MIT",
  1115. "engines": {
  1116. "node": ">=14.16"
  1117. },
  1118. "funding": {
  1119. "url": "https://github.com/sponsors/sindresorhus"
  1120. }
  1121. },
  1122. "node_modules/camelcase-css": {
  1123. "version": "2.0.1",
  1124. "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
  1125. "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
  1126. "engines": {
  1127. "node": ">= 6"
  1128. }
  1129. },
  1130. "node_modules/caniuse-lite": {
  1131. "version": "1.0.30001524",
  1132. "funding": [
  1133. {
  1134. "type": "opencollective",
  1135. "url": "https://opencollective.com/browserslist"
  1136. },
  1137. {
  1138. "type": "tidelift",
  1139. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1140. },
  1141. {
  1142. "type": "github",
  1143. "url": "https://github.com/sponsors/ai"
  1144. }
  1145. ],
  1146. "license": "CC-BY-4.0"
  1147. },
  1148. "node_modules/ccount": {
  1149. "version": "2.0.1",
  1150. "license": "MIT",
  1151. "funding": {
  1152. "type": "github",
  1153. "url": "https://github.com/sponsors/wooorm"
  1154. }
  1155. },
  1156. "node_modules/chalk": {
  1157. "version": "5.3.0",
  1158. "license": "MIT",
  1159. "engines": {
  1160. "node": "^12.17.0 || ^14.13 || >=16.0.0"
  1161. },
  1162. "funding": {
  1163. "url": "https://github.com/chalk/chalk?sponsor=1"
  1164. }
  1165. },
  1166. "node_modules/character-entities": {
  1167. "version": "2.0.2",
  1168. "license": "MIT",
  1169. "funding": {
  1170. "type": "github",
  1171. "url": "https://github.com/sponsors/wooorm"
  1172. }
  1173. },
  1174. "node_modules/character-entities-html4": {
  1175. "version": "2.1.0",
  1176. "license": "MIT",
  1177. "funding": {
  1178. "type": "github",
  1179. "url": "https://github.com/sponsors/wooorm"
  1180. }
  1181. },
  1182. "node_modules/character-entities-legacy": {
  1183. "version": "3.0.0",
  1184. "license": "MIT",
  1185. "funding": {
  1186. "type": "github",
  1187. "url": "https://github.com/sponsors/wooorm"
  1188. }
  1189. },
  1190. "node_modules/chokidar": {
  1191. "version": "3.5.3",
  1192. "funding": [
  1193. {
  1194. "type": "individual",
  1195. "url": "https://paulmillr.com/funding/"
  1196. }
  1197. ],
  1198. "license": "MIT",
  1199. "dependencies": {
  1200. "anymatch": "~3.1.2",
  1201. "braces": "~3.0.2",
  1202. "glob-parent": "~5.1.2",
  1203. "is-binary-path": "~2.1.0",
  1204. "is-glob": "~4.0.1",
  1205. "normalize-path": "~3.0.0",
  1206. "readdirp": "~3.6.0"
  1207. },
  1208. "engines": {
  1209. "node": ">= 8.10.0"
  1210. },
  1211. "optionalDependencies": {
  1212. "fsevents": "~2.3.2"
  1213. }
  1214. },
  1215. "node_modules/chownr": {
  1216. "version": "1.1.4",
  1217. "license": "ISC"
  1218. },
  1219. "node_modules/ci-info": {
  1220. "version": "3.8.0",
  1221. "funding": [
  1222. {
  1223. "type": "github",
  1224. "url": "https://github.com/sponsors/sibiraj-s"
  1225. }
  1226. ],
  1227. "license": "MIT",
  1228. "engines": {
  1229. "node": ">=8"
  1230. }
  1231. },
  1232. "node_modules/cli-boxes": {
  1233. "version": "3.0.0",
  1234. "license": "MIT",
  1235. "engines": {
  1236. "node": ">=10"
  1237. },
  1238. "funding": {
  1239. "url": "https://github.com/sponsors/sindresorhus"
  1240. }
  1241. },
  1242. "node_modules/cli-cursor": {
  1243. "version": "4.0.0",
  1244. "license": "MIT",
  1245. "dependencies": {
  1246. "restore-cursor": "^4.0.0"
  1247. },
  1248. "engines": {
  1249. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  1250. },
  1251. "funding": {
  1252. "url": "https://github.com/sponsors/sindresorhus"
  1253. }
  1254. },
  1255. "node_modules/cli-spinners": {
  1256. "version": "2.9.0",
  1257. "license": "MIT",
  1258. "engines": {
  1259. "node": ">=6"
  1260. },
  1261. "funding": {
  1262. "url": "https://github.com/sponsors/sindresorhus"
  1263. }
  1264. },
  1265. "node_modules/clsx": {
  1266. "version": "2.0.0",
  1267. "license": "MIT",
  1268. "engines": {
  1269. "node": ">=6"
  1270. }
  1271. },
  1272. "node_modules/code-red": {
  1273. "version": "1.0.4",
  1274. "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz",
  1275. "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==",
  1276. "dependencies": {
  1277. "@jridgewell/sourcemap-codec": "^1.4.15",
  1278. "@types/estree": "^1.0.1",
  1279. "acorn": "^8.10.0",
  1280. "estree-walker": "^3.0.3",
  1281. "periscopic": "^3.1.0"
  1282. }
  1283. },
  1284. "node_modules/color": {
  1285. "version": "4.2.3",
  1286. "license": "MIT",
  1287. "dependencies": {
  1288. "color-convert": "^2.0.1",
  1289. "color-string": "^1.9.0"
  1290. },
  1291. "engines": {
  1292. "node": ">=12.5.0"
  1293. }
  1294. },
  1295. "node_modules/color-convert": {
  1296. "version": "2.0.1",
  1297. "license": "MIT",
  1298. "dependencies": {
  1299. "color-name": "~1.1.4"
  1300. },
  1301. "engines": {
  1302. "node": ">=7.0.0"
  1303. }
  1304. },
  1305. "node_modules/color-name": {
  1306. "version": "1.1.4",
  1307. "license": "MIT"
  1308. },
  1309. "node_modules/color-string": {
  1310. "version": "1.9.1",
  1311. "license": "MIT",
  1312. "dependencies": {
  1313. "color-name": "^1.0.0",
  1314. "simple-swizzle": "^0.2.2"
  1315. }
  1316. },
  1317. "node_modules/comma-separated-tokens": {
  1318. "version": "2.0.3",
  1319. "license": "MIT",
  1320. "funding": {
  1321. "type": "github",
  1322. "url": "https://github.com/sponsors/wooorm"
  1323. }
  1324. },
  1325. "node_modules/commander": {
  1326. "version": "4.1.1",
  1327. "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
  1328. "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
  1329. "engines": {
  1330. "node": ">= 6"
  1331. }
  1332. },
  1333. "node_modules/common-ancestor-path": {
  1334. "version": "1.0.1",
  1335. "license": "ISC"
  1336. },
  1337. "node_modules/concat-map": {
  1338. "version": "0.0.1",
  1339. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  1340. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
  1341. },
  1342. "node_modules/convert-source-map": {
  1343. "version": "1.9.0",
  1344. "license": "MIT"
  1345. },
  1346. "node_modules/cookie": {
  1347. "version": "0.5.0",
  1348. "license": "MIT",
  1349. "engines": {
  1350. "node": ">= 0.6"
  1351. }
  1352. },
  1353. "node_modules/cross-spawn": {
  1354. "version": "7.0.3",
  1355. "license": "MIT",
  1356. "dependencies": {
  1357. "path-key": "^3.1.0",
  1358. "shebang-command": "^2.0.0",
  1359. "which": "^2.0.1"
  1360. },
  1361. "engines": {
  1362. "node": ">= 8"
  1363. }
  1364. },
  1365. "node_modules/css-tree": {
  1366. "version": "2.3.1",
  1367. "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
  1368. "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
  1369. "dependencies": {
  1370. "mdn-data": "2.0.30",
  1371. "source-map-js": "^1.0.1"
  1372. },
  1373. "engines": {
  1374. "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
  1375. }
  1376. },
  1377. "node_modules/cssesc": {
  1378. "version": "3.0.0",
  1379. "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
  1380. "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
  1381. "bin": {
  1382. "cssesc": "bin/cssesc"
  1383. },
  1384. "engines": {
  1385. "node": ">=4"
  1386. }
  1387. },
  1388. "node_modules/debug": {
  1389. "version": "4.3.4",
  1390. "license": "MIT",
  1391. "dependencies": {
  1392. "ms": "2.1.2"
  1393. },
  1394. "engines": {
  1395. "node": ">=6.0"
  1396. },
  1397. "peerDependenciesMeta": {
  1398. "supports-color": {
  1399. "optional": true
  1400. }
  1401. }
  1402. },
  1403. "node_modules/decode-named-character-reference": {
  1404. "version": "1.0.2",
  1405. "license": "MIT",
  1406. "dependencies": {
  1407. "character-entities": "^2.0.0"
  1408. },
  1409. "funding": {
  1410. "type": "github",
  1411. "url": "https://github.com/sponsors/wooorm"
  1412. }
  1413. },
  1414. "node_modules/decompress-response": {
  1415. "version": "6.0.0",
  1416. "license": "MIT",
  1417. "dependencies": {
  1418. "mimic-response": "^3.1.0"
  1419. },
  1420. "engines": {
  1421. "node": ">=10"
  1422. },
  1423. "funding": {
  1424. "url": "https://github.com/sponsors/sindresorhus"
  1425. }
  1426. },
  1427. "node_modules/dedent-js": {
  1428. "version": "1.0.1",
  1429. "resolved": "https://registry.npmjs.org/dedent-js/-/dedent-js-1.0.1.tgz",
  1430. "integrity": "sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ=="
  1431. },
  1432. "node_modules/deep-extend": {
  1433. "version": "0.6.0",
  1434. "license": "MIT",
  1435. "engines": {
  1436. "node": ">=4.0.0"
  1437. }
  1438. },
  1439. "node_modules/deepmerge": {
  1440. "version": "4.3.1",
  1441. "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
  1442. "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
  1443. "engines": {
  1444. "node": ">=0.10.0"
  1445. }
  1446. },
  1447. "node_modules/dequal": {
  1448. "version": "2.0.3",
  1449. "license": "MIT",
  1450. "engines": {
  1451. "node": ">=6"
  1452. }
  1453. },
  1454. "node_modules/detect-libc": {
  1455. "version": "2.0.2",
  1456. "license": "Apache-2.0",
  1457. "engines": {
  1458. "node": ">=8"
  1459. }
  1460. },
  1461. "node_modules/devalue": {
  1462. "version": "4.3.2",
  1463. "license": "MIT"
  1464. },
  1465. "node_modules/didyoumean": {
  1466. "version": "1.2.2",
  1467. "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
  1468. "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
  1469. },
  1470. "node_modules/diff": {
  1471. "version": "5.1.0",
  1472. "license": "BSD-3-Clause",
  1473. "engines": {
  1474. "node": ">=0.3.1"
  1475. }
  1476. },
  1477. "node_modules/dlv": {
  1478. "version": "1.1.3",
  1479. "license": "MIT"
  1480. },
  1481. "node_modules/dset": {
  1482. "version": "3.1.2",
  1483. "license": "MIT",
  1484. "engines": {
  1485. "node": ">=4"
  1486. }
  1487. },
  1488. "node_modules/eastasianwidth": {
  1489. "version": "0.2.0",
  1490. "license": "MIT"
  1491. },
  1492. "node_modules/electron-to-chromium": {
  1493. "version": "1.4.505",
  1494. "license": "ISC"
  1495. },
  1496. "node_modules/emoji-regex": {
  1497. "version": "10.2.1",
  1498. "license": "MIT"
  1499. },
  1500. "node_modules/end-of-stream": {
  1501. "version": "1.4.4",
  1502. "license": "MIT",
  1503. "dependencies": {
  1504. "once": "^1.4.0"
  1505. }
  1506. },
  1507. "node_modules/es-module-lexer": {
  1508. "version": "1.3.0",
  1509. "license": "MIT"
  1510. },
  1511. "node_modules/esbuild": {
  1512. "version": "0.19.2",
  1513. "hasInstallScript": true,
  1514. "license": "MIT",
  1515. "bin": {
  1516. "esbuild": "bin/esbuild"
  1517. },
  1518. "engines": {
  1519. "node": ">=12"
  1520. },
  1521. "optionalDependencies": {
  1522. "@esbuild/android-arm": "0.19.2",
  1523. "@esbuild/android-arm64": "0.19.2",
  1524. "@esbuild/android-x64": "0.19.2",
  1525. "@esbuild/darwin-arm64": "0.19.2",
  1526. "@esbuild/darwin-x64": "0.19.2",
  1527. "@esbuild/freebsd-arm64": "0.19.2",
  1528. "@esbuild/freebsd-x64": "0.19.2",
  1529. "@esbuild/linux-arm": "0.19.2",
  1530. "@esbuild/linux-arm64": "0.19.2",
  1531. "@esbuild/linux-ia32": "0.19.2",
  1532. "@esbuild/linux-loong64": "0.19.2",
  1533. "@esbuild/linux-mips64el": "0.19.2",
  1534. "@esbuild/linux-ppc64": "0.19.2",
  1535. "@esbuild/linux-riscv64": "0.19.2",
  1536. "@esbuild/linux-s390x": "0.19.2",
  1537. "@esbuild/linux-x64": "0.19.2",
  1538. "@esbuild/netbsd-x64": "0.19.2",
  1539. "@esbuild/openbsd-x64": "0.19.2",
  1540. "@esbuild/sunos-x64": "0.19.2",
  1541. "@esbuild/win32-arm64": "0.19.2",
  1542. "@esbuild/win32-ia32": "0.19.2",
  1543. "@esbuild/win32-x64": "0.19.2"
  1544. }
  1545. },
  1546. "node_modules/escalade": {
  1547. "version": "3.1.1",
  1548. "license": "MIT",
  1549. "engines": {
  1550. "node": ">=6"
  1551. }
  1552. },
  1553. "node_modules/escape-string-regexp": {
  1554. "version": "1.0.5",
  1555. "license": "MIT",
  1556. "engines": {
  1557. "node": ">=0.8.0"
  1558. }
  1559. },
  1560. "node_modules/esprima": {
  1561. "version": "4.0.1",
  1562. "license": "BSD-2-Clause",
  1563. "bin": {
  1564. "esparse": "bin/esparse.js",
  1565. "esvalidate": "bin/esvalidate.js"
  1566. },
  1567. "engines": {
  1568. "node": ">=4"
  1569. }
  1570. },
  1571. "node_modules/estree-walker": {
  1572. "version": "3.0.3",
  1573. "license": "MIT",
  1574. "dependencies": {
  1575. "@types/estree": "^1.0.0"
  1576. }
  1577. },
  1578. "node_modules/execa": {
  1579. "version": "8.0.1",
  1580. "license": "MIT",
  1581. "dependencies": {
  1582. "cross-spawn": "^7.0.3",
  1583. "get-stream": "^8.0.1",
  1584. "human-signals": "^5.0.0",
  1585. "is-stream": "^3.0.0",
  1586. "merge-stream": "^2.0.0",
  1587. "npm-run-path": "^5.1.0",
  1588. "onetime": "^6.0.0",
  1589. "signal-exit": "^4.1.0",
  1590. "strip-final-newline": "^3.0.0"
  1591. },
  1592. "engines": {
  1593. "node": ">=16.17"
  1594. },
  1595. "funding": {
  1596. "url": "https://github.com/sindresorhus/execa?sponsor=1"
  1597. }
  1598. },
  1599. "node_modules/expand-template": {
  1600. "version": "2.0.3",
  1601. "license": "(MIT OR WTFPL)",
  1602. "engines": {
  1603. "node": ">=6"
  1604. }
  1605. },
  1606. "node_modules/extend": {
  1607. "version": "3.0.2",
  1608. "license": "MIT"
  1609. },
  1610. "node_modules/extend-shallow": {
  1611. "version": "2.0.1",
  1612. "license": "MIT",
  1613. "dependencies": {
  1614. "is-extendable": "^0.1.0"
  1615. },
  1616. "engines": {
  1617. "node": ">=0.10.0"
  1618. }
  1619. },
  1620. "node_modules/fast-fifo": {
  1621. "version": "1.3.2",
  1622. "license": "MIT"
  1623. },
  1624. "node_modules/fast-glob": {
  1625. "version": "3.3.1",
  1626. "license": "MIT",
  1627. "dependencies": {
  1628. "@nodelib/fs.stat": "^2.0.2",
  1629. "@nodelib/fs.walk": "^1.2.3",
  1630. "glob-parent": "^5.1.2",
  1631. "merge2": "^1.3.0",
  1632. "micromatch": "^4.0.4"
  1633. },
  1634. "engines": {
  1635. "node": ">=8.6.0"
  1636. }
  1637. },
  1638. "node_modules/fastq": {
  1639. "version": "1.15.0",
  1640. "license": "ISC",
  1641. "dependencies": {
  1642. "reusify": "^1.0.4"
  1643. }
  1644. },
  1645. "node_modules/fill-range": {
  1646. "version": "7.0.1",
  1647. "license": "MIT",
  1648. "dependencies": {
  1649. "to-regex-range": "^5.0.1"
  1650. },
  1651. "engines": {
  1652. "node": ">=8"
  1653. }
  1654. },
  1655. "node_modules/find-up": {
  1656. "version": "5.0.0",
  1657. "license": "MIT",
  1658. "dependencies": {
  1659. "locate-path": "^6.0.0",
  1660. "path-exists": "^4.0.0"
  1661. },
  1662. "engines": {
  1663. "node": ">=10"
  1664. },
  1665. "funding": {
  1666. "url": "https://github.com/sponsors/sindresorhus"
  1667. }
  1668. },
  1669. "node_modules/find-yarn-workspace-root2": {
  1670. "version": "1.2.16",
  1671. "license": "Apache-2.0",
  1672. "dependencies": {
  1673. "micromatch": "^4.0.2",
  1674. "pkg-dir": "^4.2.0"
  1675. }
  1676. },
  1677. "node_modules/fraction.js": {
  1678. "version": "4.3.6",
  1679. "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz",
  1680. "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==",
  1681. "engines": {
  1682. "node": "*"
  1683. },
  1684. "funding": {
  1685. "type": "patreon",
  1686. "url": "https://github.com/sponsors/rawify"
  1687. }
  1688. },
  1689. "node_modules/fs-constants": {
  1690. "version": "1.0.0",
  1691. "license": "MIT"
  1692. },
  1693. "node_modules/fs.realpath": {
  1694. "version": "1.0.0",
  1695. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  1696. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
  1697. },
  1698. "node_modules/function-bind": {
  1699. "version": "1.1.1",
  1700. "license": "MIT"
  1701. },
  1702. "node_modules/gensync": {
  1703. "version": "1.0.0-beta.2",
  1704. "license": "MIT",
  1705. "engines": {
  1706. "node": ">=6.9.0"
  1707. }
  1708. },
  1709. "node_modules/get-stream": {
  1710. "version": "8.0.1",
  1711. "license": "MIT",
  1712. "engines": {
  1713. "node": ">=16"
  1714. },
  1715. "funding": {
  1716. "url": "https://github.com/sponsors/sindresorhus"
  1717. }
  1718. },
  1719. "node_modules/github-from-package": {
  1720. "version": "0.0.0",
  1721. "license": "MIT"
  1722. },
  1723. "node_modules/github-slugger": {
  1724. "version": "2.0.0",
  1725. "license": "ISC"
  1726. },
  1727. "node_modules/glob": {
  1728. "version": "7.1.6",
  1729. "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
  1730. "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
  1731. "dependencies": {
  1732. "fs.realpath": "^1.0.0",
  1733. "inflight": "^1.0.4",
  1734. "inherits": "2",
  1735. "minimatch": "^3.0.4",
  1736. "once": "^1.3.0",
  1737. "path-is-absolute": "^1.0.0"
  1738. },
  1739. "engines": {
  1740. "node": "*"
  1741. },
  1742. "funding": {
  1743. "url": "https://github.com/sponsors/isaacs"
  1744. }
  1745. },
  1746. "node_modules/glob-parent": {
  1747. "version": "5.1.2",
  1748. "license": "ISC",
  1749. "dependencies": {
  1750. "is-glob": "^4.0.1"
  1751. },
  1752. "engines": {
  1753. "node": ">= 6"
  1754. }
  1755. },
  1756. "node_modules/globals": {
  1757. "version": "11.12.0",
  1758. "license": "MIT",
  1759. "engines": {
  1760. "node": ">=4"
  1761. }
  1762. },
  1763. "node_modules/graceful-fs": {
  1764. "version": "4.2.11",
  1765. "license": "ISC"
  1766. },
  1767. "node_modules/gray-matter": {
  1768. "version": "4.0.3",
  1769. "license": "MIT",
  1770. "dependencies": {
  1771. "js-yaml": "^3.13.1",
  1772. "kind-of": "^6.0.2",
  1773. "section-matter": "^1.0.0",
  1774. "strip-bom-string": "^1.0.0"
  1775. },
  1776. "engines": {
  1777. "node": ">=6.0"
  1778. }
  1779. },
  1780. "node_modules/gray-matter/node_modules/js-yaml": {
  1781. "version": "3.14.1",
  1782. "license": "MIT",
  1783. "dependencies": {
  1784. "argparse": "^1.0.7",
  1785. "esprima": "^4.0.0"
  1786. },
  1787. "bin": {
  1788. "js-yaml": "bin/js-yaml.js"
  1789. }
  1790. },
  1791. "node_modules/gray-matter/node_modules/js-yaml/node_modules/argparse": {
  1792. "version": "1.0.10",
  1793. "license": "MIT",
  1794. "dependencies": {
  1795. "sprintf-js": "~1.0.2"
  1796. }
  1797. },
  1798. "node_modules/has": {
  1799. "version": "1.0.3",
  1800. "license": "MIT",
  1801. "dependencies": {
  1802. "function-bind": "^1.1.1"
  1803. },
  1804. "engines": {
  1805. "node": ">= 0.4.0"
  1806. }
  1807. },
  1808. "node_modules/has-flag": {
  1809. "version": "3.0.0",
  1810. "license": "MIT",
  1811. "engines": {
  1812. "node": ">=4"
  1813. }
  1814. },
  1815. "node_modules/hast-util-from-parse5": {
  1816. "version": "7.1.2",
  1817. "license": "MIT",
  1818. "dependencies": {
  1819. "@types/hast": "^2.0.0",
  1820. "@types/unist": "^2.0.0",
  1821. "hastscript": "^7.0.0",
  1822. "property-information": "^6.0.0",
  1823. "vfile": "^5.0.0",
  1824. "vfile-location": "^4.0.0",
  1825. "web-namespaces": "^2.0.0"
  1826. },
  1827. "funding": {
  1828. "type": "opencollective",
  1829. "url": "https://opencollective.com/unified"
  1830. }
  1831. },
  1832. "node_modules/hast-util-parse-selector": {
  1833. "version": "3.1.1",
  1834. "license": "MIT",
  1835. "dependencies": {
  1836. "@types/hast": "^2.0.0"
  1837. },
  1838. "funding": {
  1839. "type": "opencollective",
  1840. "url": "https://opencollective.com/unified"
  1841. }
  1842. },
  1843. "node_modules/hast-util-raw": {
  1844. "version": "7.2.3",
  1845. "license": "MIT",
  1846. "dependencies": {
  1847. "@types/hast": "^2.0.0",
  1848. "@types/parse5": "^6.0.0",
  1849. "hast-util-from-parse5": "^7.0.0",
  1850. "hast-util-to-parse5": "^7.0.0",
  1851. "html-void-elements": "^2.0.0",
  1852. "parse5": "^6.0.0",
  1853. "unist-util-position": "^4.0.0",
  1854. "unist-util-visit": "^4.0.0",
  1855. "vfile": "^5.0.0",
  1856. "web-namespaces": "^2.0.0",
  1857. "zwitch": "^2.0.0"
  1858. },
  1859. "funding": {
  1860. "type": "opencollective",
  1861. "url": "https://opencollective.com/unified"
  1862. }
  1863. },
  1864. "node_modules/hast-util-to-html": {
  1865. "version": "8.0.4",
  1866. "license": "MIT",
  1867. "dependencies": {
  1868. "@types/hast": "^2.0.0",
  1869. "@types/unist": "^2.0.0",
  1870. "ccount": "^2.0.0",
  1871. "comma-separated-tokens": "^2.0.0",
  1872. "hast-util-raw": "^7.0.0",
  1873. "hast-util-whitespace": "^2.0.0",
  1874. "html-void-elements": "^2.0.0",
  1875. "property-information": "^6.0.0",
  1876. "space-separated-tokens": "^2.0.0",
  1877. "stringify-entities": "^4.0.0",
  1878. "zwitch": "^2.0.4"
  1879. },
  1880. "funding": {
  1881. "type": "opencollective",
  1882. "url": "https://opencollective.com/unified"
  1883. }
  1884. },
  1885. "node_modules/hast-util-to-parse5": {
  1886. "version": "7.1.0",
  1887. "license": "MIT",
  1888. "dependencies": {
  1889. "@types/hast": "^2.0.0",
  1890. "comma-separated-tokens": "^2.0.0",
  1891. "property-information": "^6.0.0",
  1892. "space-separated-tokens": "^2.0.0",
  1893. "web-namespaces": "^2.0.0",
  1894. "zwitch": "^2.0.0"
  1895. },
  1896. "funding": {
  1897. "type": "opencollective",
  1898. "url": "https://opencollective.com/unified"
  1899. }
  1900. },
  1901. "node_modules/hast-util-whitespace": {
  1902. "version": "2.0.1",
  1903. "license": "MIT",
  1904. "funding": {
  1905. "type": "opencollective",
  1906. "url": "https://opencollective.com/unified"
  1907. }
  1908. },
  1909. "node_modules/hastscript": {
  1910. "version": "7.2.0",
  1911. "license": "MIT",
  1912. "dependencies": {
  1913. "@types/hast": "^2.0.0",
  1914. "comma-separated-tokens": "^2.0.0",
  1915. "hast-util-parse-selector": "^3.0.0",
  1916. "property-information": "^6.0.0",
  1917. "space-separated-tokens": "^2.0.0"
  1918. },
  1919. "funding": {
  1920. "type": "opencollective",
  1921. "url": "https://opencollective.com/unified"
  1922. }
  1923. },
  1924. "node_modules/html-escaper": {
  1925. "version": "3.0.3",
  1926. "license": "MIT"
  1927. },
  1928. "node_modules/html-void-elements": {
  1929. "version": "2.0.1",
  1930. "license": "MIT",
  1931. "funding": {
  1932. "type": "github",
  1933. "url": "https://github.com/sponsors/wooorm"
  1934. }
  1935. },
  1936. "node_modules/http-cache-semantics": {
  1937. "version": "4.1.1",
  1938. "license": "BSD-2-Clause"
  1939. },
  1940. "node_modules/human-signals": {
  1941. "version": "5.0.0",
  1942. "license": "Apache-2.0",
  1943. "engines": {
  1944. "node": ">=16.17.0"
  1945. }
  1946. },
  1947. "node_modules/ieee754": {
  1948. "version": "1.2.1",
  1949. "funding": [
  1950. {
  1951. "type": "github",
  1952. "url": "https://github.com/sponsors/feross"
  1953. },
  1954. {
  1955. "type": "patreon",
  1956. "url": "https://www.patreon.com/feross"
  1957. },
  1958. {
  1959. "type": "consulting",
  1960. "url": "https://feross.org/support"
  1961. }
  1962. ],
  1963. "license": "BSD-3-Clause"
  1964. },
  1965. "node_modules/import-meta-resolve": {
  1966. "version": "3.0.0",
  1967. "license": "MIT",
  1968. "funding": {
  1969. "type": "github",
  1970. "url": "https://github.com/sponsors/wooorm"
  1971. }
  1972. },
  1973. "node_modules/inflight": {
  1974. "version": "1.0.6",
  1975. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  1976. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  1977. "dependencies": {
  1978. "once": "^1.3.0",
  1979. "wrappy": "1"
  1980. }
  1981. },
  1982. "node_modules/inherits": {
  1983. "version": "2.0.4",
  1984. "license": "ISC"
  1985. },
  1986. "node_modules/ini": {
  1987. "version": "1.3.8",
  1988. "license": "ISC"
  1989. },
  1990. "node_modules/is-arrayish": {
  1991. "version": "0.3.2",
  1992. "license": "MIT"
  1993. },
  1994. "node_modules/is-binary-path": {
  1995. "version": "2.1.0",
  1996. "license": "MIT",
  1997. "dependencies": {
  1998. "binary-extensions": "^2.0.0"
  1999. },
  2000. "engines": {
  2001. "node": ">=8"
  2002. }
  2003. },
  2004. "node_modules/is-buffer": {
  2005. "version": "2.0.5",
  2006. "funding": [
  2007. {
  2008. "type": "github",
  2009. "url": "https://github.com/sponsors/feross"
  2010. },
  2011. {
  2012. "type": "patreon",
  2013. "url": "https://www.patreon.com/feross"
  2014. },
  2015. {
  2016. "type": "consulting",
  2017. "url": "https://feross.org/support"
  2018. }
  2019. ],
  2020. "license": "MIT",
  2021. "engines": {
  2022. "node": ">=4"
  2023. }
  2024. },
  2025. "node_modules/is-core-module": {
  2026. "version": "2.13.0",
  2027. "license": "MIT",
  2028. "dependencies": {
  2029. "has": "^1.0.3"
  2030. },
  2031. "funding": {
  2032. "url": "https://github.com/sponsors/ljharb"
  2033. }
  2034. },
  2035. "node_modules/is-docker": {
  2036. "version": "3.0.0",
  2037. "license": "MIT",
  2038. "bin": {
  2039. "is-docker": "cli.js"
  2040. },
  2041. "engines": {
  2042. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  2043. },
  2044. "funding": {
  2045. "url": "https://github.com/sponsors/sindresorhus"
  2046. }
  2047. },
  2048. "node_modules/is-extendable": {
  2049. "version": "0.1.1",
  2050. "license": "MIT",
  2051. "engines": {
  2052. "node": ">=0.10.0"
  2053. }
  2054. },
  2055. "node_modules/is-extglob": {
  2056. "version": "2.1.1",
  2057. "license": "MIT",
  2058. "engines": {
  2059. "node": ">=0.10.0"
  2060. }
  2061. },
  2062. "node_modules/is-fullwidth-code-point": {
  2063. "version": "3.0.0",
  2064. "license": "MIT",
  2065. "engines": {
  2066. "node": ">=8"
  2067. }
  2068. },
  2069. "node_modules/is-glob": {
  2070. "version": "4.0.3",
  2071. "license": "MIT",
  2072. "dependencies": {
  2073. "is-extglob": "^2.1.1"
  2074. },
  2075. "engines": {
  2076. "node": ">=0.10.0"
  2077. }
  2078. },
  2079. "node_modules/is-interactive": {
  2080. "version": "2.0.0",
  2081. "license": "MIT",
  2082. "engines": {
  2083. "node": ">=12"
  2084. },
  2085. "funding": {
  2086. "url": "https://github.com/sponsors/sindresorhus"
  2087. }
  2088. },
  2089. "node_modules/is-number": {
  2090. "version": "7.0.0",
  2091. "license": "MIT",
  2092. "engines": {
  2093. "node": ">=0.12.0"
  2094. }
  2095. },
  2096. "node_modules/is-plain-obj": {
  2097. "version": "4.1.0",
  2098. "license": "MIT",
  2099. "engines": {
  2100. "node": ">=12"
  2101. },
  2102. "funding": {
  2103. "url": "https://github.com/sponsors/sindresorhus"
  2104. }
  2105. },
  2106. "node_modules/is-reference": {
  2107. "version": "3.0.1",
  2108. "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz",
  2109. "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==",
  2110. "dependencies": {
  2111. "@types/estree": "*"
  2112. }
  2113. },
  2114. "node_modules/is-stream": {
  2115. "version": "3.0.0",
  2116. "license": "MIT",
  2117. "engines": {
  2118. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  2119. },
  2120. "funding": {
  2121. "url": "https://github.com/sponsors/sindresorhus"
  2122. }
  2123. },
  2124. "node_modules/is-unicode-supported": {
  2125. "version": "1.3.0",
  2126. "license": "MIT",
  2127. "engines": {
  2128. "node": ">=12"
  2129. },
  2130. "funding": {
  2131. "url": "https://github.com/sponsors/sindresorhus"
  2132. }
  2133. },
  2134. "node_modules/is-wsl": {
  2135. "version": "3.0.0",
  2136. "license": "MIT",
  2137. "dependencies": {
  2138. "is-docker": "^3.0.0"
  2139. },
  2140. "engines": {
  2141. "node": ">=16"
  2142. },
  2143. "funding": {
  2144. "url": "https://github.com/sponsors/sindresorhus"
  2145. }
  2146. },
  2147. "node_modules/isexe": {
  2148. "version": "2.0.0",
  2149. "license": "ISC"
  2150. },
  2151. "node_modules/jiti": {
  2152. "version": "1.19.3",
  2153. "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.3.tgz",
  2154. "integrity": "sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==",
  2155. "bin": {
  2156. "jiti": "bin/jiti.js"
  2157. }
  2158. },
  2159. "node_modules/js-tokens": {
  2160. "version": "4.0.0",
  2161. "license": "MIT"
  2162. },
  2163. "node_modules/js-yaml": {
  2164. "version": "4.1.0",
  2165. "license": "MIT",
  2166. "dependencies": {
  2167. "argparse": "^2.0.1"
  2168. },
  2169. "bin": {
  2170. "js-yaml": "bin/js-yaml.js"
  2171. }
  2172. },
  2173. "node_modules/jsesc": {
  2174. "version": "2.5.2",
  2175. "license": "MIT",
  2176. "bin": {
  2177. "jsesc": "bin/jsesc"
  2178. },
  2179. "engines": {
  2180. "node": ">=4"
  2181. }
  2182. },
  2183. "node_modules/json5": {
  2184. "version": "2.2.3",
  2185. "license": "MIT",
  2186. "bin": {
  2187. "json5": "lib/cli.js"
  2188. },
  2189. "engines": {
  2190. "node": ">=6"
  2191. }
  2192. },
  2193. "node_modules/jsonc-parser": {
  2194. "version": "3.2.0",
  2195. "license": "MIT"
  2196. },
  2197. "node_modules/kind-of": {
  2198. "version": "6.0.3",
  2199. "license": "MIT",
  2200. "engines": {
  2201. "node": ">=0.10.0"
  2202. }
  2203. },
  2204. "node_modules/kleur": {
  2205. "version": "4.1.5",
  2206. "license": "MIT",
  2207. "engines": {
  2208. "node": ">=6"
  2209. }
  2210. },
  2211. "node_modules/lilconfig": {
  2212. "version": "2.1.0",
  2213. "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
  2214. "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
  2215. "engines": {
  2216. "node": ">=10"
  2217. }
  2218. },
  2219. "node_modules/lines-and-columns": {
  2220. "version": "1.2.4",
  2221. "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
  2222. "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
  2223. },
  2224. "node_modules/load-yaml-file": {
  2225. "version": "0.2.0",
  2226. "license": "MIT",
  2227. "dependencies": {
  2228. "graceful-fs": "^4.1.5",
  2229. "js-yaml": "^3.13.0",
  2230. "pify": "^4.0.1",
  2231. "strip-bom": "^3.0.0"
  2232. },
  2233. "engines": {
  2234. "node": ">=6"
  2235. }
  2236. },
  2237. "node_modules/load-yaml-file/node_modules/js-yaml": {
  2238. "version": "3.14.1",
  2239. "license": "MIT",
  2240. "dependencies": {
  2241. "argparse": "^1.0.7",
  2242. "esprima": "^4.0.0"
  2243. },
  2244. "bin": {
  2245. "js-yaml": "bin/js-yaml.js"
  2246. }
  2247. },
  2248. "node_modules/load-yaml-file/node_modules/js-yaml/node_modules/argparse": {
  2249. "version": "1.0.10",
  2250. "license": "MIT",
  2251. "dependencies": {
  2252. "sprintf-js": "~1.0.2"
  2253. }
  2254. },
  2255. "node_modules/load-yaml-file/node_modules/strip-bom": {
  2256. "version": "3.0.0",
  2257. "license": "MIT",
  2258. "engines": {
  2259. "node": ">=4"
  2260. }
  2261. },
  2262. "node_modules/locate-character": {
  2263. "version": "3.0.0",
  2264. "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz",
  2265. "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA=="
  2266. },
  2267. "node_modules/locate-path": {
  2268. "version": "6.0.0",
  2269. "license": "MIT",
  2270. "dependencies": {
  2271. "p-locate": "^5.0.0"
  2272. },
  2273. "engines": {
  2274. "node": ">=10"
  2275. },
  2276. "funding": {
  2277. "url": "https://github.com/sponsors/sindresorhus"
  2278. }
  2279. },
  2280. "node_modules/log-symbols": {
  2281. "version": "5.1.0",
  2282. "license": "MIT",
  2283. "dependencies": {
  2284. "chalk": "^5.0.0",
  2285. "is-unicode-supported": "^1.1.0"
  2286. },
  2287. "engines": {
  2288. "node": ">=12"
  2289. },
  2290. "funding": {
  2291. "url": "https://github.com/sponsors/sindresorhus"
  2292. }
  2293. },
  2294. "node_modules/longest-streak": {
  2295. "version": "3.1.0",
  2296. "license": "MIT",
  2297. "funding": {
  2298. "type": "github",
  2299. "url": "https://github.com/sponsors/wooorm"
  2300. }
  2301. },
  2302. "node_modules/lower-case": {
  2303. "version": "2.0.2",
  2304. "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
  2305. "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
  2306. "dependencies": {
  2307. "tslib": "^2.0.3"
  2308. }
  2309. },
  2310. "node_modules/lru-cache": {
  2311. "version": "6.0.0",
  2312. "license": "ISC",
  2313. "dependencies": {
  2314. "yallist": "^4.0.0"
  2315. },
  2316. "engines": {
  2317. "node": ">=10"
  2318. }
  2319. },
  2320. "node_modules/magic-string": {
  2321. "version": "0.30.3",
  2322. "license": "MIT",
  2323. "dependencies": {
  2324. "@jridgewell/sourcemap-codec": "^1.4.15"
  2325. },
  2326. "engines": {
  2327. "node": ">=12"
  2328. }
  2329. },
  2330. "node_modules/markdown-table": {
  2331. "version": "3.0.3",
  2332. "license": "MIT",
  2333. "funding": {
  2334. "type": "github",
  2335. "url": "https://github.com/sponsors/wooorm"
  2336. }
  2337. },
  2338. "node_modules/mdast-util-definitions": {
  2339. "version": "5.1.2",
  2340. "license": "MIT",
  2341. "dependencies": {
  2342. "@types/mdast": "^3.0.0",
  2343. "@types/unist": "^2.0.0",
  2344. "unist-util-visit": "^4.0.0"
  2345. },
  2346. "funding": {
  2347. "type": "opencollective",
  2348. "url": "https://opencollective.com/unified"
  2349. }
  2350. },
  2351. "node_modules/mdast-util-find-and-replace": {
  2352. "version": "2.2.2",
  2353. "license": "MIT",
  2354. "dependencies": {
  2355. "@types/mdast": "^3.0.0",
  2356. "escape-string-regexp": "^5.0.0",
  2357. "unist-util-is": "^5.0.0",
  2358. "unist-util-visit-parents": "^5.0.0"
  2359. },
  2360. "funding": {
  2361. "type": "opencollective",
  2362. "url": "https://opencollective.com/unified"
  2363. }
  2364. },
  2365. "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
  2366. "version": "5.0.0",
  2367. "license": "MIT",
  2368. "engines": {
  2369. "node": ">=12"
  2370. },
  2371. "funding": {
  2372. "url": "https://github.com/sponsors/sindresorhus"
  2373. }
  2374. },
  2375. "node_modules/mdast-util-from-markdown": {
  2376. "version": "1.3.1",
  2377. "license": "MIT",
  2378. "dependencies": {
  2379. "@types/mdast": "^3.0.0",
  2380. "@types/unist": "^2.0.0",
  2381. "decode-named-character-reference": "^1.0.0",
  2382. "mdast-util-to-string": "^3.1.0",
  2383. "micromark": "^3.0.0",
  2384. "micromark-util-decode-numeric-character-reference": "^1.0.0",
  2385. "micromark-util-decode-string": "^1.0.0",
  2386. "micromark-util-normalize-identifier": "^1.0.0",
  2387. "micromark-util-symbol": "^1.0.0",
  2388. "micromark-util-types": "^1.0.0",
  2389. "unist-util-stringify-position": "^3.0.0",
  2390. "uvu": "^0.5.0"
  2391. },
  2392. "funding": {
  2393. "type": "opencollective",
  2394. "url": "https://opencollective.com/unified"
  2395. }
  2396. },
  2397. "node_modules/mdast-util-gfm": {
  2398. "version": "2.0.2",
  2399. "license": "MIT",
  2400. "dependencies": {
  2401. "mdast-util-from-markdown": "^1.0.0",
  2402. "mdast-util-gfm-autolink-literal": "^1.0.0",
  2403. "mdast-util-gfm-footnote": "^1.0.0",
  2404. "mdast-util-gfm-strikethrough": "^1.0.0",
  2405. "mdast-util-gfm-table": "^1.0.0",
  2406. "mdast-util-gfm-task-list-item": "^1.0.0",
  2407. "mdast-util-to-markdown": "^1.0.0"
  2408. },
  2409. "funding": {
  2410. "type": "opencollective",
  2411. "url": "https://opencollective.com/unified"
  2412. }
  2413. },
  2414. "node_modules/mdast-util-gfm-autolink-literal": {
  2415. "version": "1.0.3",
  2416. "license": "MIT",
  2417. "dependencies": {
  2418. "@types/mdast": "^3.0.0",
  2419. "ccount": "^2.0.0",
  2420. "mdast-util-find-and-replace": "^2.0.0",
  2421. "micromark-util-character": "^1.0.0"
  2422. },
  2423. "funding": {
  2424. "type": "opencollective",
  2425. "url": "https://opencollective.com/unified"
  2426. }
  2427. },
  2428. "node_modules/mdast-util-gfm-footnote": {
  2429. "version": "1.0.2",
  2430. "license": "MIT",
  2431. "dependencies": {
  2432. "@types/mdast": "^3.0.0",
  2433. "mdast-util-to-markdown": "^1.3.0",
  2434. "micromark-util-normalize-identifier": "^1.0.0"
  2435. },
  2436. "funding": {
  2437. "type": "opencollective",
  2438. "url": "https://opencollective.com/unified"
  2439. }
  2440. },
  2441. "node_modules/mdast-util-gfm-strikethrough": {
  2442. "version": "1.0.3",
  2443. "license": "MIT",
  2444. "dependencies": {
  2445. "@types/mdast": "^3.0.0",
  2446. "mdast-util-to-markdown": "^1.3.0"
  2447. },
  2448. "funding": {
  2449. "type": "opencollective",
  2450. "url": "https://opencollective.com/unified"
  2451. }
  2452. },
  2453. "node_modules/mdast-util-gfm-table": {
  2454. "version": "1.0.7",
  2455. "license": "MIT",
  2456. "dependencies": {
  2457. "@types/mdast": "^3.0.0",
  2458. "markdown-table": "^3.0.0",
  2459. "mdast-util-from-markdown": "^1.0.0",
  2460. "mdast-util-to-markdown": "^1.3.0"
  2461. },
  2462. "funding": {
  2463. "type": "opencollective",
  2464. "url": "https://opencollective.com/unified"
  2465. }
  2466. },
  2467. "node_modules/mdast-util-gfm-task-list-item": {
  2468. "version": "1.0.2",
  2469. "license": "MIT",
  2470. "dependencies": {
  2471. "@types/mdast": "^3.0.0",
  2472. "mdast-util-to-markdown": "^1.3.0"
  2473. },
  2474. "funding": {
  2475. "type": "opencollective",
  2476. "url": "https://opencollective.com/unified"
  2477. }
  2478. },
  2479. "node_modules/mdast-util-phrasing": {
  2480. "version": "3.0.1",
  2481. "license": "MIT",
  2482. "dependencies": {
  2483. "@types/mdast": "^3.0.0",
  2484. "unist-util-is": "^5.0.0"
  2485. },
  2486. "funding": {
  2487. "type": "opencollective",
  2488. "url": "https://opencollective.com/unified"
  2489. }
  2490. },
  2491. "node_modules/mdast-util-to-hast": {
  2492. "version": "12.3.0",
  2493. "license": "MIT",
  2494. "dependencies": {
  2495. "@types/hast": "^2.0.0",
  2496. "@types/mdast": "^3.0.0",
  2497. "mdast-util-definitions": "^5.0.0",
  2498. "micromark-util-sanitize-uri": "^1.1.0",
  2499. "trim-lines": "^3.0.0",
  2500. "unist-util-generated": "^2.0.0",
  2501. "unist-util-position": "^4.0.0",
  2502. "unist-util-visit": "^4.0.0"
  2503. },
  2504. "funding": {
  2505. "type": "opencollective",
  2506. "url": "https://opencollective.com/unified"
  2507. }
  2508. },
  2509. "node_modules/mdast-util-to-markdown": {
  2510. "version": "1.5.0",
  2511. "license": "MIT",
  2512. "dependencies": {
  2513. "@types/mdast": "^3.0.0",
  2514. "@types/unist": "^2.0.0",
  2515. "longest-streak": "^3.0.0",
  2516. "mdast-util-phrasing": "^3.0.0",
  2517. "mdast-util-to-string": "^3.0.0",
  2518. "micromark-util-decode-string": "^1.0.0",
  2519. "unist-util-visit": "^4.0.0",
  2520. "zwitch": "^2.0.0"
  2521. },
  2522. "funding": {
  2523. "type": "opencollective",
  2524. "url": "https://opencollective.com/unified"
  2525. }
  2526. },
  2527. "node_modules/mdast-util-to-string": {
  2528. "version": "3.2.0",
  2529. "license": "MIT",
  2530. "dependencies": {
  2531. "@types/mdast": "^3.0.0"
  2532. },
  2533. "funding": {
  2534. "type": "opencollective",
  2535. "url": "https://opencollective.com/unified"
  2536. }
  2537. },
  2538. "node_modules/mdn-data": {
  2539. "version": "2.0.30",
  2540. "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
  2541. "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
  2542. },
  2543. "node_modules/merge-stream": {
  2544. "version": "2.0.0",
  2545. "license": "MIT"
  2546. },
  2547. "node_modules/merge2": {
  2548. "version": "1.4.1",
  2549. "license": "MIT",
  2550. "engines": {
  2551. "node": ">= 8"
  2552. }
  2553. },
  2554. "node_modules/micromark": {
  2555. "version": "3.2.0",
  2556. "funding": [
  2557. {
  2558. "type": "GitHub Sponsors",
  2559. "url": "https://github.com/sponsors/unifiedjs"
  2560. },
  2561. {
  2562. "type": "OpenCollective",
  2563. "url": "https://opencollective.com/unified"
  2564. }
  2565. ],
  2566. "license": "MIT",
  2567. "dependencies": {
  2568. "@types/debug": "^4.0.0",
  2569. "debug": "^4.0.0",
  2570. "decode-named-character-reference": "^1.0.0",
  2571. "micromark-core-commonmark": "^1.0.1",
  2572. "micromark-factory-space": "^1.0.0",
  2573. "micromark-util-character": "^1.0.0",
  2574. "micromark-util-chunked": "^1.0.0",
  2575. "micromark-util-combine-extensions": "^1.0.0",
  2576. "micromark-util-decode-numeric-character-reference": "^1.0.0",
  2577. "micromark-util-encode": "^1.0.0",
  2578. "micromark-util-normalize-identifier": "^1.0.0",
  2579. "micromark-util-resolve-all": "^1.0.0",
  2580. "micromark-util-sanitize-uri": "^1.0.0",
  2581. "micromark-util-subtokenize": "^1.0.0",
  2582. "micromark-util-symbol": "^1.0.0",
  2583. "micromark-util-types": "^1.0.1",
  2584. "uvu": "^0.5.0"
  2585. }
  2586. },
  2587. "node_modules/micromark-core-commonmark": {
  2588. "version": "1.1.0",
  2589. "funding": [
  2590. {
  2591. "type": "GitHub Sponsors",
  2592. "url": "https://github.com/sponsors/unifiedjs"
  2593. },
  2594. {
  2595. "type": "OpenCollective",
  2596. "url": "https://opencollective.com/unified"
  2597. }
  2598. ],
  2599. "license": "MIT",
  2600. "dependencies": {
  2601. "decode-named-character-reference": "^1.0.0",
  2602. "micromark-factory-destination": "^1.0.0",
  2603. "micromark-factory-label": "^1.0.0",
  2604. "micromark-factory-space": "^1.0.0",
  2605. "micromark-factory-title": "^1.0.0",
  2606. "micromark-factory-whitespace": "^1.0.0",
  2607. "micromark-util-character": "^1.0.0",
  2608. "micromark-util-chunked": "^1.0.0",
  2609. "micromark-util-classify-character": "^1.0.0",
  2610. "micromark-util-html-tag-name": "^1.0.0",
  2611. "micromark-util-normalize-identifier": "^1.0.0",
  2612. "micromark-util-resolve-all": "^1.0.0",
  2613. "micromark-util-subtokenize": "^1.0.0",
  2614. "micromark-util-symbol": "^1.0.0",
  2615. "micromark-util-types": "^1.0.1",
  2616. "uvu": "^0.5.0"
  2617. }
  2618. },
  2619. "node_modules/micromark-extension-gfm": {
  2620. "version": "2.0.3",
  2621. "license": "MIT",
  2622. "dependencies": {
  2623. "micromark-extension-gfm-autolink-literal": "^1.0.0",
  2624. "micromark-extension-gfm-footnote": "^1.0.0",
  2625. "micromark-extension-gfm-strikethrough": "^1.0.0",
  2626. "micromark-extension-gfm-table": "^1.0.0",
  2627. "micromark-extension-gfm-tagfilter": "^1.0.0",
  2628. "micromark-extension-gfm-task-list-item": "^1.0.0",
  2629. "micromark-util-combine-extensions": "^1.0.0",
  2630. "micromark-util-types": "^1.0.0"
  2631. },
  2632. "funding": {
  2633. "type": "opencollective",
  2634. "url": "https://opencollective.com/unified"
  2635. }
  2636. },
  2637. "node_modules/micromark-extension-gfm-autolink-literal": {
  2638. "version": "1.0.5",
  2639. "license": "MIT",
  2640. "dependencies": {
  2641. "micromark-util-character": "^1.0.0",
  2642. "micromark-util-sanitize-uri": "^1.0.0",
  2643. "micromark-util-symbol": "^1.0.0",
  2644. "micromark-util-types": "^1.0.0"
  2645. },
  2646. "funding": {
  2647. "type": "opencollective",
  2648. "url": "https://opencollective.com/unified"
  2649. }
  2650. },
  2651. "node_modules/micromark-extension-gfm-footnote": {
  2652. "version": "1.1.2",
  2653. "license": "MIT",
  2654. "dependencies": {
  2655. "micromark-core-commonmark": "^1.0.0",
  2656. "micromark-factory-space": "^1.0.0",
  2657. "micromark-util-character": "^1.0.0",
  2658. "micromark-util-normalize-identifier": "^1.0.0",
  2659. "micromark-util-sanitize-uri": "^1.0.0",
  2660. "micromark-util-symbol": "^1.0.0",
  2661. "micromark-util-types": "^1.0.0",
  2662. "uvu": "^0.5.0"
  2663. },
  2664. "funding": {
  2665. "type": "opencollective",
  2666. "url": "https://opencollective.com/unified"
  2667. }
  2668. },
  2669. "node_modules/micromark-extension-gfm-strikethrough": {
  2670. "version": "1.0.7",
  2671. "license": "MIT",
  2672. "dependencies": {
  2673. "micromark-util-chunked": "^1.0.0",
  2674. "micromark-util-classify-character": "^1.0.0",
  2675. "micromark-util-resolve-all": "^1.0.0",
  2676. "micromark-util-symbol": "^1.0.0",
  2677. "micromark-util-types": "^1.0.0",
  2678. "uvu": "^0.5.0"
  2679. },
  2680. "funding": {
  2681. "type": "opencollective",
  2682. "url": "https://opencollective.com/unified"
  2683. }
  2684. },
  2685. "node_modules/micromark-extension-gfm-table": {
  2686. "version": "1.0.7",
  2687. "license": "MIT",
  2688. "dependencies": {
  2689. "micromark-factory-space": "^1.0.0",
  2690. "micromark-util-character": "^1.0.0",
  2691. "micromark-util-symbol": "^1.0.0",
  2692. "micromark-util-types": "^1.0.0",
  2693. "uvu": "^0.5.0"
  2694. },
  2695. "funding": {
  2696. "type": "opencollective",
  2697. "url": "https://opencollective.com/unified"
  2698. }
  2699. },
  2700. "node_modules/micromark-extension-gfm-tagfilter": {
  2701. "version": "1.0.2",
  2702. "license": "MIT",
  2703. "dependencies": {
  2704. "micromark-util-types": "^1.0.0"
  2705. },
  2706. "funding": {
  2707. "type": "opencollective",
  2708. "url": "https://opencollective.com/unified"
  2709. }
  2710. },
  2711. "node_modules/micromark-extension-gfm-task-list-item": {
  2712. "version": "1.0.5",
  2713. "license": "MIT",
  2714. "dependencies": {
  2715. "micromark-factory-space": "^1.0.0",
  2716. "micromark-util-character": "^1.0.0",
  2717. "micromark-util-symbol": "^1.0.0",
  2718. "micromark-util-types": "^1.0.0",
  2719. "uvu": "^0.5.0"
  2720. },
  2721. "funding": {
  2722. "type": "opencollective",
  2723. "url": "https://opencollective.com/unified"
  2724. }
  2725. },
  2726. "node_modules/micromark-factory-destination": {
  2727. "version": "1.1.0",
  2728. "funding": [
  2729. {
  2730. "type": "GitHub Sponsors",
  2731. "url": "https://github.com/sponsors/unifiedjs"
  2732. },
  2733. {
  2734. "type": "OpenCollective",
  2735. "url": "https://opencollective.com/unified"
  2736. }
  2737. ],
  2738. "license": "MIT",
  2739. "dependencies": {
  2740. "micromark-util-character": "^1.0.0",
  2741. "micromark-util-symbol": "^1.0.0",
  2742. "micromark-util-types": "^1.0.0"
  2743. }
  2744. },
  2745. "node_modules/micromark-factory-label": {
  2746. "version": "1.1.0",
  2747. "funding": [
  2748. {
  2749. "type": "GitHub Sponsors",
  2750. "url": "https://github.com/sponsors/unifiedjs"
  2751. },
  2752. {
  2753. "type": "OpenCollective",
  2754. "url": "https://opencollective.com/unified"
  2755. }
  2756. ],
  2757. "license": "MIT",
  2758. "dependencies": {
  2759. "micromark-util-character": "^1.0.0",
  2760. "micromark-util-symbol": "^1.0.0",
  2761. "micromark-util-types": "^1.0.0",
  2762. "uvu": "^0.5.0"
  2763. }
  2764. },
  2765. "node_modules/micromark-factory-space": {
  2766. "version": "1.1.0",
  2767. "funding": [
  2768. {
  2769. "type": "GitHub Sponsors",
  2770. "url": "https://github.com/sponsors/unifiedjs"
  2771. },
  2772. {
  2773. "type": "OpenCollective",
  2774. "url": "https://opencollective.com/unified"
  2775. }
  2776. ],
  2777. "license": "MIT",
  2778. "dependencies": {
  2779. "micromark-util-character": "^1.0.0",
  2780. "micromark-util-types": "^1.0.0"
  2781. }
  2782. },
  2783. "node_modules/micromark-factory-title": {
  2784. "version": "1.1.0",
  2785. "funding": [
  2786. {
  2787. "type": "GitHub Sponsors",
  2788. "url": "https://github.com/sponsors/unifiedjs"
  2789. },
  2790. {
  2791. "type": "OpenCollective",
  2792. "url": "https://opencollective.com/unified"
  2793. }
  2794. ],
  2795. "license": "MIT",
  2796. "dependencies": {
  2797. "micromark-factory-space": "^1.0.0",
  2798. "micromark-util-character": "^1.0.0",
  2799. "micromark-util-symbol": "^1.0.0",
  2800. "micromark-util-types": "^1.0.0"
  2801. }
  2802. },
  2803. "node_modules/micromark-factory-whitespace": {
  2804. "version": "1.1.0",
  2805. "funding": [
  2806. {
  2807. "type": "GitHub Sponsors",
  2808. "url": "https://github.com/sponsors/unifiedjs"
  2809. },
  2810. {
  2811. "type": "OpenCollective",
  2812. "url": "https://opencollective.com/unified"
  2813. }
  2814. ],
  2815. "license": "MIT",
  2816. "dependencies": {
  2817. "micromark-factory-space": "^1.0.0",
  2818. "micromark-util-character": "^1.0.0",
  2819. "micromark-util-symbol": "^1.0.0",
  2820. "micromark-util-types": "^1.0.0"
  2821. }
  2822. },
  2823. "node_modules/micromark-util-character": {
  2824. "version": "1.2.0",
  2825. "funding": [
  2826. {
  2827. "type": "GitHub Sponsors",
  2828. "url": "https://github.com/sponsors/unifiedjs"
  2829. },
  2830. {
  2831. "type": "OpenCollective",
  2832. "url": "https://opencollective.com/unified"
  2833. }
  2834. ],
  2835. "license": "MIT",
  2836. "dependencies": {
  2837. "micromark-util-symbol": "^1.0.0",
  2838. "micromark-util-types": "^1.0.0"
  2839. }
  2840. },
  2841. "node_modules/micromark-util-chunked": {
  2842. "version": "1.1.0",
  2843. "funding": [
  2844. {
  2845. "type": "GitHub Sponsors",
  2846. "url": "https://github.com/sponsors/unifiedjs"
  2847. },
  2848. {
  2849. "type": "OpenCollective",
  2850. "url": "https://opencollective.com/unified"
  2851. }
  2852. ],
  2853. "license": "MIT",
  2854. "dependencies": {
  2855. "micromark-util-symbol": "^1.0.0"
  2856. }
  2857. },
  2858. "node_modules/micromark-util-classify-character": {
  2859. "version": "1.1.0",
  2860. "funding": [
  2861. {
  2862. "type": "GitHub Sponsors",
  2863. "url": "https://github.com/sponsors/unifiedjs"
  2864. },
  2865. {
  2866. "type": "OpenCollective",
  2867. "url": "https://opencollective.com/unified"
  2868. }
  2869. ],
  2870. "license": "MIT",
  2871. "dependencies": {
  2872. "micromark-util-character": "^1.0.0",
  2873. "micromark-util-symbol": "^1.0.0",
  2874. "micromark-util-types": "^1.0.0"
  2875. }
  2876. },
  2877. "node_modules/micromark-util-combine-extensions": {
  2878. "version": "1.1.0",
  2879. "funding": [
  2880. {
  2881. "type": "GitHub Sponsors",
  2882. "url": "https://github.com/sponsors/unifiedjs"
  2883. },
  2884. {
  2885. "type": "OpenCollective",
  2886. "url": "https://opencollective.com/unified"
  2887. }
  2888. ],
  2889. "license": "MIT",
  2890. "dependencies": {
  2891. "micromark-util-chunked": "^1.0.0",
  2892. "micromark-util-types": "^1.0.0"
  2893. }
  2894. },
  2895. "node_modules/micromark-util-decode-numeric-character-reference": {
  2896. "version": "1.1.0",
  2897. "funding": [
  2898. {
  2899. "type": "GitHub Sponsors",
  2900. "url": "https://github.com/sponsors/unifiedjs"
  2901. },
  2902. {
  2903. "type": "OpenCollective",
  2904. "url": "https://opencollective.com/unified"
  2905. }
  2906. ],
  2907. "license": "MIT",
  2908. "dependencies": {
  2909. "micromark-util-symbol": "^1.0.0"
  2910. }
  2911. },
  2912. "node_modules/micromark-util-decode-string": {
  2913. "version": "1.1.0",
  2914. "funding": [
  2915. {
  2916. "type": "GitHub Sponsors",
  2917. "url": "https://github.com/sponsors/unifiedjs"
  2918. },
  2919. {
  2920. "type": "OpenCollective",
  2921. "url": "https://opencollective.com/unified"
  2922. }
  2923. ],
  2924. "license": "MIT",
  2925. "dependencies": {
  2926. "decode-named-character-reference": "^1.0.0",
  2927. "micromark-util-character": "^1.0.0",
  2928. "micromark-util-decode-numeric-character-reference": "^1.0.0",
  2929. "micromark-util-symbol": "^1.0.0"
  2930. }
  2931. },
  2932. "node_modules/micromark-util-encode": {
  2933. "version": "1.1.0",
  2934. "funding": [
  2935. {
  2936. "type": "GitHub Sponsors",
  2937. "url": "https://github.com/sponsors/unifiedjs"
  2938. },
  2939. {
  2940. "type": "OpenCollective",
  2941. "url": "https://opencollective.com/unified"
  2942. }
  2943. ],
  2944. "license": "MIT"
  2945. },
  2946. "node_modules/micromark-util-html-tag-name": {
  2947. "version": "1.2.0",
  2948. "funding": [
  2949. {
  2950. "type": "GitHub Sponsors",
  2951. "url": "https://github.com/sponsors/unifiedjs"
  2952. },
  2953. {
  2954. "type": "OpenCollective",
  2955. "url": "https://opencollective.com/unified"
  2956. }
  2957. ],
  2958. "license": "MIT"
  2959. },
  2960. "node_modules/micromark-util-normalize-identifier": {
  2961. "version": "1.1.0",
  2962. "funding": [
  2963. {
  2964. "type": "GitHub Sponsors",
  2965. "url": "https://github.com/sponsors/unifiedjs"
  2966. },
  2967. {
  2968. "type": "OpenCollective",
  2969. "url": "https://opencollective.com/unified"
  2970. }
  2971. ],
  2972. "license": "MIT",
  2973. "dependencies": {
  2974. "micromark-util-symbol": "^1.0.0"
  2975. }
  2976. },
  2977. "node_modules/micromark-util-resolve-all": {
  2978. "version": "1.1.0",
  2979. "funding": [
  2980. {
  2981. "type": "GitHub Sponsors",
  2982. "url": "https://github.com/sponsors/unifiedjs"
  2983. },
  2984. {
  2985. "type": "OpenCollective",
  2986. "url": "https://opencollective.com/unified"
  2987. }
  2988. ],
  2989. "license": "MIT",
  2990. "dependencies": {
  2991. "micromark-util-types": "^1.0.0"
  2992. }
  2993. },
  2994. "node_modules/micromark-util-sanitize-uri": {
  2995. "version": "1.2.0",
  2996. "funding": [
  2997. {
  2998. "type": "GitHub Sponsors",
  2999. "url": "https://github.com/sponsors/unifiedjs"
  3000. },
  3001. {
  3002. "type": "OpenCollective",
  3003. "url": "https://opencollective.com/unified"
  3004. }
  3005. ],
  3006. "license": "MIT",
  3007. "dependencies": {
  3008. "micromark-util-character": "^1.0.0",
  3009. "micromark-util-encode": "^1.0.0",
  3010. "micromark-util-symbol": "^1.0.0"
  3011. }
  3012. },
  3013. "node_modules/micromark-util-subtokenize": {
  3014. "version": "1.1.0",
  3015. "funding": [
  3016. {
  3017. "type": "GitHub Sponsors",
  3018. "url": "https://github.com/sponsors/unifiedjs"
  3019. },
  3020. {
  3021. "type": "OpenCollective",
  3022. "url": "https://opencollective.com/unified"
  3023. }
  3024. ],
  3025. "license": "MIT",
  3026. "dependencies": {
  3027. "micromark-util-chunked": "^1.0.0",
  3028. "micromark-util-symbol": "^1.0.0",
  3029. "micromark-util-types": "^1.0.0",
  3030. "uvu": "^0.5.0"
  3031. }
  3032. },
  3033. "node_modules/micromark-util-symbol": {
  3034. "version": "1.1.0",
  3035. "funding": [
  3036. {
  3037. "type": "GitHub Sponsors",
  3038. "url": "https://github.com/sponsors/unifiedjs"
  3039. },
  3040. {
  3041. "type": "OpenCollective",
  3042. "url": "https://opencollective.com/unified"
  3043. }
  3044. ],
  3045. "license": "MIT"
  3046. },
  3047. "node_modules/micromark-util-types": {
  3048. "version": "1.1.0",
  3049. "funding": [
  3050. {
  3051. "type": "GitHub Sponsors",
  3052. "url": "https://github.com/sponsors/unifiedjs"
  3053. },
  3054. {
  3055. "type": "OpenCollective",
  3056. "url": "https://opencollective.com/unified"
  3057. }
  3058. ],
  3059. "license": "MIT"
  3060. },
  3061. "node_modules/micromatch": {
  3062. "version": "4.0.5",
  3063. "license": "MIT",
  3064. "dependencies": {
  3065. "braces": "^3.0.2",
  3066. "picomatch": "^2.3.1"
  3067. },
  3068. "engines": {
  3069. "node": ">=8.6"
  3070. }
  3071. },
  3072. "node_modules/mime": {
  3073. "version": "3.0.0",
  3074. "license": "MIT",
  3075. "bin": {
  3076. "mime": "cli.js"
  3077. },
  3078. "engines": {
  3079. "node": ">=10.0.0"
  3080. }
  3081. },
  3082. "node_modules/mimic-fn": {
  3083. "version": "4.0.0",
  3084. "license": "MIT",
  3085. "engines": {
  3086. "node": ">=12"
  3087. },
  3088. "funding": {
  3089. "url": "https://github.com/sponsors/sindresorhus"
  3090. }
  3091. },
  3092. "node_modules/mimic-response": {
  3093. "version": "3.1.0",
  3094. "license": "MIT",
  3095. "engines": {
  3096. "node": ">=10"
  3097. },
  3098. "funding": {
  3099. "url": "https://github.com/sponsors/sindresorhus"
  3100. }
  3101. },
  3102. "node_modules/minimatch": {
  3103. "version": "3.1.2",
  3104. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
  3105. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  3106. "dependencies": {
  3107. "brace-expansion": "^1.1.7"
  3108. },
  3109. "engines": {
  3110. "node": "*"
  3111. }
  3112. },
  3113. "node_modules/minimist": {
  3114. "version": "1.2.8",
  3115. "license": "MIT",
  3116. "funding": {
  3117. "url": "https://github.com/sponsors/ljharb"
  3118. }
  3119. },
  3120. "node_modules/mkdirp-classic": {
  3121. "version": "0.5.3",
  3122. "license": "MIT"
  3123. },
  3124. "node_modules/mri": {
  3125. "version": "1.2.0",
  3126. "license": "MIT",
  3127. "engines": {
  3128. "node": ">=4"
  3129. }
  3130. },
  3131. "node_modules/ms": {
  3132. "version": "2.1.2",
  3133. "license": "MIT"
  3134. },
  3135. "node_modules/mz": {
  3136. "version": "2.7.0",
  3137. "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
  3138. "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
  3139. "dependencies": {
  3140. "any-promise": "^1.0.0",
  3141. "object-assign": "^4.0.1",
  3142. "thenify-all": "^1.0.0"
  3143. }
  3144. },
  3145. "node_modules/nanoid": {
  3146. "version": "3.3.6",
  3147. "funding": [
  3148. {
  3149. "type": "github",
  3150. "url": "https://github.com/sponsors/ai"
  3151. }
  3152. ],
  3153. "license": "MIT",
  3154. "bin": {
  3155. "nanoid": "bin/nanoid.cjs"
  3156. },
  3157. "engines": {
  3158. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  3159. }
  3160. },
  3161. "node_modules/napi-build-utils": {
  3162. "version": "1.0.2",
  3163. "license": "MIT"
  3164. },
  3165. "node_modules/nlcst-to-string": {
  3166. "version": "3.1.1",
  3167. "license": "MIT",
  3168. "dependencies": {
  3169. "@types/nlcst": "^1.0.0"
  3170. },
  3171. "funding": {
  3172. "type": "opencollective",
  3173. "url": "https://opencollective.com/unified"
  3174. }
  3175. },
  3176. "node_modules/no-case": {
  3177. "version": "3.0.4",
  3178. "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
  3179. "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
  3180. "dependencies": {
  3181. "lower-case": "^2.0.2",
  3182. "tslib": "^2.0.3"
  3183. }
  3184. },
  3185. "node_modules/node-abi": {
  3186. "version": "3.47.0",
  3187. "license": "MIT",
  3188. "dependencies": {
  3189. "semver": "^7.3.5"
  3190. },
  3191. "engines": {
  3192. "node": ">=10"
  3193. }
  3194. },
  3195. "node_modules/node-addon-api": {
  3196. "version": "6.1.0",
  3197. "license": "MIT"
  3198. },
  3199. "node_modules/node-releases": {
  3200. "version": "2.0.13",
  3201. "license": "MIT"
  3202. },
  3203. "node_modules/normalize-path": {
  3204. "version": "3.0.0",
  3205. "license": "MIT",
  3206. "engines": {
  3207. "node": ">=0.10.0"
  3208. }
  3209. },
  3210. "node_modules/normalize-range": {
  3211. "version": "0.1.2",
  3212. "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
  3213. "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
  3214. "engines": {
  3215. "node": ">=0.10.0"
  3216. }
  3217. },
  3218. "node_modules/npm-run-path": {
  3219. "version": "5.1.0",
  3220. "license": "MIT",
  3221. "dependencies": {
  3222. "path-key": "^4.0.0"
  3223. },
  3224. "engines": {
  3225. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  3226. },
  3227. "funding": {
  3228. "url": "https://github.com/sponsors/sindresorhus"
  3229. }
  3230. },
  3231. "node_modules/npm-run-path/node_modules/path-key": {
  3232. "version": "4.0.0",
  3233. "license": "MIT",
  3234. "engines": {
  3235. "node": ">=12"
  3236. },
  3237. "funding": {
  3238. "url": "https://github.com/sponsors/sindresorhus"
  3239. }
  3240. },
  3241. "node_modules/object-assign": {
  3242. "version": "4.1.1",
  3243. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  3244. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  3245. "engines": {
  3246. "node": ">=0.10.0"
  3247. }
  3248. },
  3249. "node_modules/object-hash": {
  3250. "version": "3.0.0",
  3251. "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
  3252. "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
  3253. "engines": {
  3254. "node": ">= 6"
  3255. }
  3256. },
  3257. "node_modules/once": {
  3258. "version": "1.4.0",
  3259. "license": "ISC",
  3260. "dependencies": {
  3261. "wrappy": "1"
  3262. }
  3263. },
  3264. "node_modules/onetime": {
  3265. "version": "6.0.0",
  3266. "license": "MIT",
  3267. "dependencies": {
  3268. "mimic-fn": "^4.0.0"
  3269. },
  3270. "engines": {
  3271. "node": ">=12"
  3272. },
  3273. "funding": {
  3274. "url": "https://github.com/sponsors/sindresorhus"
  3275. }
  3276. },
  3277. "node_modules/ora": {
  3278. "version": "7.0.1",
  3279. "license": "MIT",
  3280. "dependencies": {
  3281. "chalk": "^5.3.0",
  3282. "cli-cursor": "^4.0.0",
  3283. "cli-spinners": "^2.9.0",
  3284. "is-interactive": "^2.0.0",
  3285. "is-unicode-supported": "^1.3.0",
  3286. "log-symbols": "^5.1.0",
  3287. "stdin-discarder": "^0.1.0",
  3288. "string-width": "^6.1.0",
  3289. "strip-ansi": "^7.1.0"
  3290. },
  3291. "engines": {
  3292. "node": ">=16"
  3293. },
  3294. "funding": {
  3295. "url": "https://github.com/sponsors/sindresorhus"
  3296. }
  3297. },
  3298. "node_modules/p-limit": {
  3299. "version": "4.0.0",
  3300. "license": "MIT",
  3301. "dependencies": {
  3302. "yocto-queue": "^1.0.0"
  3303. },
  3304. "engines": {
  3305. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  3306. },
  3307. "funding": {
  3308. "url": "https://github.com/sponsors/sindresorhus"
  3309. }
  3310. },
  3311. "node_modules/p-locate": {
  3312. "version": "5.0.0",
  3313. "license": "MIT",
  3314. "dependencies": {
  3315. "p-limit": "^3.0.2"
  3316. },
  3317. "engines": {
  3318. "node": ">=10"
  3319. },
  3320. "funding": {
  3321. "url": "https://github.com/sponsors/sindresorhus"
  3322. }
  3323. },
  3324. "node_modules/p-locate/node_modules/p-limit": {
  3325. "version": "3.1.0",
  3326. "license": "MIT",
  3327. "dependencies": {
  3328. "yocto-queue": "^0.1.0"
  3329. },
  3330. "engines": {
  3331. "node": ">=10"
  3332. },
  3333. "funding": {
  3334. "url": "https://github.com/sponsors/sindresorhus"
  3335. }
  3336. },
  3337. "node_modules/p-locate/node_modules/p-limit/node_modules/yocto-queue": {
  3338. "version": "0.1.0",
  3339. "license": "MIT",
  3340. "engines": {
  3341. "node": ">=10"
  3342. },
  3343. "funding": {
  3344. "url": "https://github.com/sponsors/sindresorhus"
  3345. }
  3346. },
  3347. "node_modules/p-try": {
  3348. "version": "2.2.0",
  3349. "license": "MIT",
  3350. "engines": {
  3351. "node": ">=6"
  3352. }
  3353. },
  3354. "node_modules/parse-latin": {
  3355. "version": "5.0.1",
  3356. "license": "MIT",
  3357. "dependencies": {
  3358. "nlcst-to-string": "^3.0.0",
  3359. "unist-util-modify-children": "^3.0.0",
  3360. "unist-util-visit-children": "^2.0.0"
  3361. },
  3362. "funding": {
  3363. "type": "github",
  3364. "url": "https://github.com/sponsors/wooorm"
  3365. }
  3366. },
  3367. "node_modules/parse5": {
  3368. "version": "6.0.1",
  3369. "license": "MIT"
  3370. },
  3371. "node_modules/pascal-case": {
  3372. "version": "3.1.2",
  3373. "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
  3374. "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
  3375. "dependencies": {
  3376. "no-case": "^3.0.4",
  3377. "tslib": "^2.0.3"
  3378. }
  3379. },
  3380. "node_modules/path-exists": {
  3381. "version": "4.0.0",
  3382. "license": "MIT",
  3383. "engines": {
  3384. "node": ">=8"
  3385. }
  3386. },
  3387. "node_modules/path-is-absolute": {
  3388. "version": "1.0.1",
  3389. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  3390. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  3391. "engines": {
  3392. "node": ">=0.10.0"
  3393. }
  3394. },
  3395. "node_modules/path-key": {
  3396. "version": "3.1.1",
  3397. "license": "MIT",
  3398. "engines": {
  3399. "node": ">=8"
  3400. }
  3401. },
  3402. "node_modules/path-parse": {
  3403. "version": "1.0.7",
  3404. "license": "MIT"
  3405. },
  3406. "node_modules/path-to-regexp": {
  3407. "version": "6.2.1",
  3408. "license": "MIT"
  3409. },
  3410. "node_modules/periscopic": {
  3411. "version": "3.1.0",
  3412. "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz",
  3413. "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==",
  3414. "dependencies": {
  3415. "@types/estree": "^1.0.0",
  3416. "estree-walker": "^3.0.0",
  3417. "is-reference": "^3.0.0"
  3418. }
  3419. },
  3420. "node_modules/picocolors": {
  3421. "version": "1.0.0",
  3422. "license": "ISC"
  3423. },
  3424. "node_modules/picomatch": {
  3425. "version": "2.3.1",
  3426. "license": "MIT",
  3427. "engines": {
  3428. "node": ">=8.6"
  3429. },
  3430. "funding": {
  3431. "url": "https://github.com/sponsors/jonschlinkert"
  3432. }
  3433. },
  3434. "node_modules/pify": {
  3435. "version": "4.0.1",
  3436. "license": "MIT",
  3437. "engines": {
  3438. "node": ">=6"
  3439. }
  3440. },
  3441. "node_modules/pirates": {
  3442. "version": "4.0.6",
  3443. "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
  3444. "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
  3445. "engines": {
  3446. "node": ">= 6"
  3447. }
  3448. },
  3449. "node_modules/pkg-dir": {
  3450. "version": "4.2.0",
  3451. "license": "MIT",
  3452. "dependencies": {
  3453. "find-up": "^4.0.0"
  3454. },
  3455. "engines": {
  3456. "node": ">=8"
  3457. }
  3458. },
  3459. "node_modules/pkg-dir/node_modules/find-up": {
  3460. "version": "4.1.0",
  3461. "license": "MIT",
  3462. "dependencies": {
  3463. "locate-path": "^5.0.0",
  3464. "path-exists": "^4.0.0"
  3465. },
  3466. "engines": {
  3467. "node": ">=8"
  3468. }
  3469. },
  3470. "node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path": {
  3471. "version": "5.0.0",
  3472. "license": "MIT",
  3473. "dependencies": {
  3474. "p-locate": "^4.1.0"
  3475. },
  3476. "engines": {
  3477. "node": ">=8"
  3478. }
  3479. },
  3480. "node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate": {
  3481. "version": "4.1.0",
  3482. "license": "MIT",
  3483. "dependencies": {
  3484. "p-limit": "^2.2.0"
  3485. },
  3486. "engines": {
  3487. "node": ">=8"
  3488. }
  3489. },
  3490. "node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/node_modules/p-limit": {
  3491. "version": "2.3.0",
  3492. "license": "MIT",
  3493. "dependencies": {
  3494. "p-try": "^2.0.0"
  3495. },
  3496. "engines": {
  3497. "node": ">=6"
  3498. },
  3499. "funding": {
  3500. "url": "https://github.com/sponsors/sindresorhus"
  3501. }
  3502. },
  3503. "node_modules/postcss": {
  3504. "version": "8.4.29",
  3505. "funding": [
  3506. {
  3507. "type": "opencollective",
  3508. "url": "https://opencollective.com/postcss/"
  3509. },
  3510. {
  3511. "type": "tidelift",
  3512. "url": "https://tidelift.com/funding/github/npm/postcss"
  3513. },
  3514. {
  3515. "type": "github",
  3516. "url": "https://github.com/sponsors/ai"
  3517. }
  3518. ],
  3519. "license": "MIT",
  3520. "dependencies": {
  3521. "nanoid": "^3.3.6",
  3522. "picocolors": "^1.0.0",
  3523. "source-map-js": "^1.0.2"
  3524. },
  3525. "engines": {
  3526. "node": "^10 || ^12 || >=14"
  3527. }
  3528. },
  3529. "node_modules/postcss-import": {
  3530. "version": "15.1.0",
  3531. "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
  3532. "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
  3533. "dependencies": {
  3534. "postcss-value-parser": "^4.0.0",
  3535. "read-cache": "^1.0.0",
  3536. "resolve": "^1.1.7"
  3537. },
  3538. "engines": {
  3539. "node": ">=14.0.0"
  3540. },
  3541. "peerDependencies": {
  3542. "postcss": "^8.0.0"
  3543. }
  3544. },
  3545. "node_modules/postcss-js": {
  3546. "version": "4.0.1",
  3547. "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
  3548. "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
  3549. "dependencies": {
  3550. "camelcase-css": "^2.0.1"
  3551. },
  3552. "engines": {
  3553. "node": "^12 || ^14 || >= 16"
  3554. },
  3555. "funding": {
  3556. "type": "opencollective",
  3557. "url": "https://opencollective.com/postcss/"
  3558. },
  3559. "peerDependencies": {
  3560. "postcss": "^8.4.21"
  3561. }
  3562. },
  3563. "node_modules/postcss-load-config": {
  3564. "version": "4.0.1",
  3565. "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz",
  3566. "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
  3567. "dependencies": {
  3568. "lilconfig": "^2.0.5",
  3569. "yaml": "^2.1.1"
  3570. },
  3571. "engines": {
  3572. "node": ">= 14"
  3573. },
  3574. "funding": {
  3575. "type": "opencollective",
  3576. "url": "https://opencollective.com/postcss/"
  3577. },
  3578. "peerDependencies": {
  3579. "postcss": ">=8.0.9",
  3580. "ts-node": ">=9.0.0"
  3581. },
  3582. "peerDependenciesMeta": {
  3583. "postcss": {
  3584. "optional": true
  3585. },
  3586. "ts-node": {
  3587. "optional": true
  3588. }
  3589. }
  3590. },
  3591. "node_modules/postcss-nested": {
  3592. "version": "6.0.1",
  3593. "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz",
  3594. "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
  3595. "dependencies": {
  3596. "postcss-selector-parser": "^6.0.11"
  3597. },
  3598. "engines": {
  3599. "node": ">=12.0"
  3600. },
  3601. "funding": {
  3602. "type": "opencollective",
  3603. "url": "https://opencollective.com/postcss/"
  3604. },
  3605. "peerDependencies": {
  3606. "postcss": "^8.2.14"
  3607. }
  3608. },
  3609. "node_modules/postcss-selector-parser": {
  3610. "version": "6.0.13",
  3611. "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz",
  3612. "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==",
  3613. "dependencies": {
  3614. "cssesc": "^3.0.0",
  3615. "util-deprecate": "^1.0.2"
  3616. },
  3617. "engines": {
  3618. "node": ">=4"
  3619. }
  3620. },
  3621. "node_modules/postcss-value-parser": {
  3622. "version": "4.2.0",
  3623. "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  3624. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
  3625. },
  3626. "node_modules/prebuild-install": {
  3627. "version": "7.1.1",
  3628. "license": "MIT",
  3629. "dependencies": {
  3630. "detect-libc": "^2.0.0",
  3631. "expand-template": "^2.0.3",
  3632. "github-from-package": "0.0.0",
  3633. "minimist": "^1.2.3",
  3634. "mkdirp-classic": "^0.5.3",
  3635. "napi-build-utils": "^1.0.1",
  3636. "node-abi": "^3.3.0",
  3637. "pump": "^3.0.0",
  3638. "rc": "^1.2.7",
  3639. "simple-get": "^4.0.0",
  3640. "tar-fs": "^2.0.0",
  3641. "tunnel-agent": "^0.6.0"
  3642. },
  3643. "bin": {
  3644. "prebuild-install": "bin.js"
  3645. },
  3646. "engines": {
  3647. "node": ">=10"
  3648. }
  3649. },
  3650. "node_modules/prebuild-install/node_modules/tar-fs": {
  3651. "version": "2.1.1",
  3652. "license": "MIT",
  3653. "dependencies": {
  3654. "chownr": "^1.1.1",
  3655. "mkdirp-classic": "^0.5.2",
  3656. "pump": "^3.0.0",
  3657. "tar-stream": "^2.1.4"
  3658. }
  3659. },
  3660. "node_modules/prebuild-install/node_modules/tar-fs/node_modules/tar-stream": {
  3661. "version": "2.2.0",
  3662. "license": "MIT",
  3663. "dependencies": {
  3664. "bl": "^4.0.3",
  3665. "end-of-stream": "^1.4.1",
  3666. "fs-constants": "^1.0.0",
  3667. "inherits": "^2.0.3",
  3668. "readable-stream": "^3.1.1"
  3669. },
  3670. "engines": {
  3671. "node": ">=6"
  3672. }
  3673. },
  3674. "node_modules/prebuild-install/node_modules/tar-fs/node_modules/tar-stream/node_modules/bl": {
  3675. "version": "4.1.0",
  3676. "license": "MIT",
  3677. "dependencies": {
  3678. "buffer": "^5.5.0",
  3679. "inherits": "^2.0.4",
  3680. "readable-stream": "^3.4.0"
  3681. }
  3682. },
  3683. "node_modules/prebuild-install/node_modules/tar-fs/node_modules/tar-stream/node_modules/bl/node_modules/buffer": {
  3684. "version": "5.7.1",
  3685. "funding": [
  3686. {
  3687. "type": "github",
  3688. "url": "https://github.com/sponsors/feross"
  3689. },
  3690. {
  3691. "type": "patreon",
  3692. "url": "https://www.patreon.com/feross"
  3693. },
  3694. {
  3695. "type": "consulting",
  3696. "url": "https://feross.org/support"
  3697. }
  3698. ],
  3699. "license": "MIT",
  3700. "dependencies": {
  3701. "base64-js": "^1.3.1",
  3702. "ieee754": "^1.1.13"
  3703. }
  3704. },
  3705. "node_modules/preferred-pm": {
  3706. "version": "3.0.3",
  3707. "license": "MIT",
  3708. "dependencies": {
  3709. "find-up": "^5.0.0",
  3710. "find-yarn-workspace-root2": "1.2.16",
  3711. "path-exists": "^4.0.0",
  3712. "which-pm": "2.0.0"
  3713. },
  3714. "engines": {
  3715. "node": ">=10"
  3716. }
  3717. },
  3718. "node_modules/prismjs": {
  3719. "version": "1.29.0",
  3720. "license": "MIT",
  3721. "engines": {
  3722. "node": ">=6"
  3723. }
  3724. },
  3725. "node_modules/prompts": {
  3726. "version": "2.4.2",
  3727. "license": "MIT",
  3728. "dependencies": {
  3729. "kleur": "^3.0.3",
  3730. "sisteransi": "^1.0.5"
  3731. },
  3732. "engines": {
  3733. "node": ">= 6"
  3734. }
  3735. },
  3736. "node_modules/prompts/node_modules/kleur": {
  3737. "version": "3.0.3",
  3738. "license": "MIT",
  3739. "engines": {
  3740. "node": ">=6"
  3741. }
  3742. },
  3743. "node_modules/property-information": {
  3744. "version": "6.2.0",
  3745. "license": "MIT",
  3746. "funding": {
  3747. "type": "github",
  3748. "url": "https://github.com/sponsors/wooorm"
  3749. }
  3750. },
  3751. "node_modules/pump": {
  3752. "version": "3.0.0",
  3753. "license": "MIT",
  3754. "dependencies": {
  3755. "end-of-stream": "^1.1.0",
  3756. "once": "^1.3.1"
  3757. }
  3758. },
  3759. "node_modules/queue-microtask": {
  3760. "version": "1.2.3",
  3761. "funding": [
  3762. {
  3763. "type": "github",
  3764. "url": "https://github.com/sponsors/feross"
  3765. },
  3766. {
  3767. "type": "patreon",
  3768. "url": "https://www.patreon.com/feross"
  3769. },
  3770. {
  3771. "type": "consulting",
  3772. "url": "https://feross.org/support"
  3773. }
  3774. ],
  3775. "license": "MIT"
  3776. },
  3777. "node_modules/queue-tick": {
  3778. "version": "1.0.1",
  3779. "license": "MIT"
  3780. },
  3781. "node_modules/rc": {
  3782. "version": "1.2.8",
  3783. "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
  3784. "dependencies": {
  3785. "deep-extend": "^0.6.0",
  3786. "ini": "~1.3.0",
  3787. "minimist": "^1.2.0",
  3788. "strip-json-comments": "~2.0.1"
  3789. },
  3790. "bin": {
  3791. "rc": "cli.js"
  3792. }
  3793. },
  3794. "node_modules/read-cache": {
  3795. "version": "1.0.0",
  3796. "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
  3797. "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
  3798. "dependencies": {
  3799. "pify": "^2.3.0"
  3800. }
  3801. },
  3802. "node_modules/read-cache/node_modules/pify": {
  3803. "version": "2.3.0",
  3804. "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
  3805. "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
  3806. "engines": {
  3807. "node": ">=0.10.0"
  3808. }
  3809. },
  3810. "node_modules/readable-stream": {
  3811. "version": "3.6.2",
  3812. "license": "MIT",
  3813. "dependencies": {
  3814. "inherits": "^2.0.3",
  3815. "string_decoder": "^1.1.1",
  3816. "util-deprecate": "^1.0.1"
  3817. },
  3818. "engines": {
  3819. "node": ">= 6"
  3820. }
  3821. },
  3822. "node_modules/readdirp": {
  3823. "version": "3.6.0",
  3824. "license": "MIT",
  3825. "dependencies": {
  3826. "picomatch": "^2.2.1"
  3827. },
  3828. "engines": {
  3829. "node": ">=8.10.0"
  3830. }
  3831. },
  3832. "node_modules/rehype": {
  3833. "version": "12.0.1",
  3834. "license": "MIT",
  3835. "dependencies": {
  3836. "@types/hast": "^2.0.0",
  3837. "rehype-parse": "^8.0.0",
  3838. "rehype-stringify": "^9.0.0",
  3839. "unified": "^10.0.0"
  3840. },
  3841. "funding": {
  3842. "type": "opencollective",
  3843. "url": "https://opencollective.com/unified"
  3844. }
  3845. },
  3846. "node_modules/rehype-parse": {
  3847. "version": "8.0.5",
  3848. "license": "MIT",
  3849. "dependencies": {
  3850. "@types/hast": "^2.0.0",
  3851. "hast-util-from-parse5": "^7.0.0",
  3852. "parse5": "^6.0.0",
  3853. "unified": "^10.0.0"
  3854. },
  3855. "funding": {
  3856. "type": "opencollective",
  3857. "url": "https://opencollective.com/unified"
  3858. }
  3859. },
  3860. "node_modules/rehype-raw": {
  3861. "version": "6.1.1",
  3862. "license": "MIT",
  3863. "dependencies": {
  3864. "@types/hast": "^2.0.0",
  3865. "hast-util-raw": "^7.2.0",
  3866. "unified": "^10.0.0"
  3867. },
  3868. "funding": {
  3869. "type": "opencollective",
  3870. "url": "https://opencollective.com/unified"
  3871. }
  3872. },
  3873. "node_modules/rehype-stringify": {
  3874. "version": "9.0.4",
  3875. "license": "MIT",
  3876. "dependencies": {
  3877. "@types/hast": "^2.0.0",
  3878. "hast-util-to-html": "^8.0.0",
  3879. "unified": "^10.0.0"
  3880. },
  3881. "funding": {
  3882. "type": "opencollective",
  3883. "url": "https://opencollective.com/unified"
  3884. }
  3885. },
  3886. "node_modules/remark-gfm": {
  3887. "version": "3.0.1",
  3888. "license": "MIT",
  3889. "dependencies": {
  3890. "@types/mdast": "^3.0.0",
  3891. "mdast-util-gfm": "^2.0.0",
  3892. "micromark-extension-gfm": "^2.0.0",
  3893. "unified": "^10.0.0"
  3894. },
  3895. "funding": {
  3896. "type": "opencollective",
  3897. "url": "https://opencollective.com/unified"
  3898. }
  3899. },
  3900. "node_modules/remark-parse": {
  3901. "version": "10.0.2",
  3902. "license": "MIT",
  3903. "dependencies": {
  3904. "@types/mdast": "^3.0.0",
  3905. "mdast-util-from-markdown": "^1.0.0",
  3906. "unified": "^10.0.0"
  3907. },
  3908. "funding": {
  3909. "type": "opencollective",
  3910. "url": "https://opencollective.com/unified"
  3911. }
  3912. },
  3913. "node_modules/remark-rehype": {
  3914. "version": "10.1.0",
  3915. "license": "MIT",
  3916. "dependencies": {
  3917. "@types/hast": "^2.0.0",
  3918. "@types/mdast": "^3.0.0",
  3919. "mdast-util-to-hast": "^12.1.0",
  3920. "unified": "^10.0.0"
  3921. },
  3922. "funding": {
  3923. "type": "opencollective",
  3924. "url": "https://opencollective.com/unified"
  3925. }
  3926. },
  3927. "node_modules/remark-smartypants": {
  3928. "version": "2.0.0",
  3929. "license": "MIT",
  3930. "dependencies": {
  3931. "retext": "^8.1.0",
  3932. "retext-smartypants": "^5.1.0",
  3933. "unist-util-visit": "^4.1.0"
  3934. },
  3935. "engines": {
  3936. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  3937. }
  3938. },
  3939. "node_modules/resolve": {
  3940. "version": "1.22.4",
  3941. "license": "MIT",
  3942. "dependencies": {
  3943. "is-core-module": "^2.13.0",
  3944. "path-parse": "^1.0.7",
  3945. "supports-preserve-symlinks-flag": "^1.0.0"
  3946. },
  3947. "bin": {
  3948. "resolve": "bin/resolve"
  3949. },
  3950. "funding": {
  3951. "url": "https://github.com/sponsors/ljharb"
  3952. }
  3953. },
  3954. "node_modules/restore-cursor": {
  3955. "version": "4.0.0",
  3956. "license": "MIT",
  3957. "dependencies": {
  3958. "onetime": "^5.1.0",
  3959. "signal-exit": "^3.0.2"
  3960. },
  3961. "engines": {
  3962. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  3963. },
  3964. "funding": {
  3965. "url": "https://github.com/sponsors/sindresorhus"
  3966. }
  3967. },
  3968. "node_modules/restore-cursor/node_modules/onetime": {
  3969. "version": "5.1.2",
  3970. "license": "MIT",
  3971. "dependencies": {
  3972. "mimic-fn": "^2.1.0"
  3973. },
  3974. "engines": {
  3975. "node": ">=6"
  3976. },
  3977. "funding": {
  3978. "url": "https://github.com/sponsors/sindresorhus"
  3979. }
  3980. },
  3981. "node_modules/restore-cursor/node_modules/onetime/node_modules/mimic-fn": {
  3982. "version": "2.1.0",
  3983. "license": "MIT",
  3984. "engines": {
  3985. "node": ">=6"
  3986. }
  3987. },
  3988. "node_modules/restore-cursor/node_modules/signal-exit": {
  3989. "version": "3.0.7",
  3990. "license": "ISC"
  3991. },
  3992. "node_modules/retext": {
  3993. "version": "8.1.0",
  3994. "license": "MIT",
  3995. "dependencies": {
  3996. "@types/nlcst": "^1.0.0",
  3997. "retext-latin": "^3.0.0",
  3998. "retext-stringify": "^3.0.0",
  3999. "unified": "^10.0.0"
  4000. },
  4001. "funding": {
  4002. "type": "opencollective",
  4003. "url": "https://opencollective.com/unified"
  4004. }
  4005. },
  4006. "node_modules/retext-latin": {
  4007. "version": "3.1.0",
  4008. "license": "MIT",
  4009. "dependencies": {
  4010. "@types/nlcst": "^1.0.0",
  4011. "parse-latin": "^5.0.0",
  4012. "unherit": "^3.0.0",
  4013. "unified": "^10.0.0"
  4014. },
  4015. "funding": {
  4016. "type": "opencollective",
  4017. "url": "https://opencollective.com/unified"
  4018. }
  4019. },
  4020. "node_modules/retext-smartypants": {
  4021. "version": "5.2.0",
  4022. "license": "MIT",
  4023. "dependencies": {
  4024. "@types/nlcst": "^1.0.0",
  4025. "nlcst-to-string": "^3.0.0",
  4026. "unified": "^10.0.0",
  4027. "unist-util-visit": "^4.0.0"
  4028. },
  4029. "funding": {
  4030. "type": "opencollective",
  4031. "url": "https://opencollective.com/unified"
  4032. }
  4033. },
  4034. "node_modules/retext-stringify": {
  4035. "version": "3.1.0",
  4036. "license": "MIT",
  4037. "dependencies": {
  4038. "@types/nlcst": "^1.0.0",
  4039. "nlcst-to-string": "^3.0.0",
  4040. "unified": "^10.0.0"
  4041. },
  4042. "funding": {
  4043. "type": "opencollective",
  4044. "url": "https://opencollective.com/unified"
  4045. }
  4046. },
  4047. "node_modules/reusify": {
  4048. "version": "1.0.4",
  4049. "license": "MIT",
  4050. "engines": {
  4051. "iojs": ">=1.0.0",
  4052. "node": ">=0.10.0"
  4053. }
  4054. },
  4055. "node_modules/rollup": {
  4056. "version": "3.28.1",
  4057. "license": "MIT",
  4058. "bin": {
  4059. "rollup": "dist/bin/rollup"
  4060. },
  4061. "engines": {
  4062. "node": ">=14.18.0",
  4063. "npm": ">=8.0.0"
  4064. },
  4065. "optionalDependencies": {
  4066. "fsevents": "~2.3.2"
  4067. }
  4068. },
  4069. "node_modules/run-parallel": {
  4070. "version": "1.2.0",
  4071. "funding": [
  4072. {
  4073. "type": "github",
  4074. "url": "https://github.com/sponsors/feross"
  4075. },
  4076. {
  4077. "type": "patreon",
  4078. "url": "https://www.patreon.com/feross"
  4079. },
  4080. {
  4081. "type": "consulting",
  4082. "url": "https://feross.org/support"
  4083. }
  4084. ],
  4085. "license": "MIT",
  4086. "dependencies": {
  4087. "queue-microtask": "^1.2.2"
  4088. }
  4089. },
  4090. "node_modules/sade": {
  4091. "version": "1.8.1",
  4092. "license": "MIT",
  4093. "dependencies": {
  4094. "mri": "^1.1.0"
  4095. },
  4096. "engines": {
  4097. "node": ">=6"
  4098. }
  4099. },
  4100. "node_modules/safe-buffer": {
  4101. "version": "5.2.1",
  4102. "funding": [
  4103. {
  4104. "type": "github",
  4105. "url": "https://github.com/sponsors/feross"
  4106. },
  4107. {
  4108. "type": "patreon",
  4109. "url": "https://www.patreon.com/feross"
  4110. },
  4111. {
  4112. "type": "consulting",
  4113. "url": "https://feross.org/support"
  4114. }
  4115. ],
  4116. "license": "MIT"
  4117. },
  4118. "node_modules/section-matter": {
  4119. "version": "1.0.0",
  4120. "license": "MIT",
  4121. "dependencies": {
  4122. "extend-shallow": "^2.0.1",
  4123. "kind-of": "^6.0.0"
  4124. },
  4125. "engines": {
  4126. "node": ">=4"
  4127. }
  4128. },
  4129. "node_modules/semver": {
  4130. "version": "7.5.4",
  4131. "license": "ISC",
  4132. "dependencies": {
  4133. "lru-cache": "^6.0.0"
  4134. },
  4135. "bin": {
  4136. "semver": "bin/semver.js"
  4137. },
  4138. "engines": {
  4139. "node": ">=10"
  4140. }
  4141. },
  4142. "node_modules/server-destroy": {
  4143. "version": "1.0.1",
  4144. "license": "ISC"
  4145. },
  4146. "node_modules/sharp": {
  4147. "version": "0.32.5",
  4148. "hasInstallScript": true,
  4149. "license": "Apache-2.0",
  4150. "dependencies": {
  4151. "color": "^4.2.3",
  4152. "detect-libc": "^2.0.2",
  4153. "node-addon-api": "^6.1.0",
  4154. "prebuild-install": "^7.1.1",
  4155. "semver": "^7.5.4",
  4156. "simple-get": "^4.0.1",
  4157. "tar-fs": "^3.0.4",
  4158. "tunnel-agent": "^0.6.0"
  4159. },
  4160. "engines": {
  4161. "node": ">=14.15.0"
  4162. },
  4163. "funding": {
  4164. "url": "https://opencollective.com/libvips"
  4165. }
  4166. },
  4167. "node_modules/shebang-command": {
  4168. "version": "2.0.0",
  4169. "license": "MIT",
  4170. "dependencies": {
  4171. "shebang-regex": "^3.0.0"
  4172. },
  4173. "engines": {
  4174. "node": ">=8"
  4175. }
  4176. },
  4177. "node_modules/shebang-regex": {
  4178. "version": "3.0.0",
  4179. "license": "MIT",
  4180. "engines": {
  4181. "node": ">=8"
  4182. }
  4183. },
  4184. "node_modules/shiki": {
  4185. "version": "0.14.3",
  4186. "license": "MIT",
  4187. "dependencies": {
  4188. "ansi-sequence-parser": "^1.1.0",
  4189. "jsonc-parser": "^3.2.0",
  4190. "vscode-oniguruma": "^1.7.0",
  4191. "vscode-textmate": "^8.0.0"
  4192. }
  4193. },
  4194. "node_modules/signal-exit": {
  4195. "version": "4.1.0",
  4196. "license": "ISC",
  4197. "engines": {
  4198. "node": ">=14"
  4199. },
  4200. "funding": {
  4201. "url": "https://github.com/sponsors/isaacs"
  4202. }
  4203. },
  4204. "node_modules/simple-concat": {
  4205. "version": "1.0.1",
  4206. "funding": [
  4207. {
  4208. "type": "github",
  4209. "url": "https://github.com/sponsors/feross"
  4210. },
  4211. {
  4212. "type": "patreon",
  4213. "url": "https://www.patreon.com/feross"
  4214. },
  4215. {
  4216. "type": "consulting",
  4217. "url": "https://feross.org/support"
  4218. }
  4219. ],
  4220. "license": "MIT"
  4221. },
  4222. "node_modules/simple-get": {
  4223. "version": "4.0.1",
  4224. "funding": [
  4225. {
  4226. "type": "github",
  4227. "url": "https://github.com/sponsors/feross"
  4228. },
  4229. {
  4230. "type": "patreon",
  4231. "url": "https://www.patreon.com/feross"
  4232. },
  4233. {
  4234. "type": "consulting",
  4235. "url": "https://feross.org/support"
  4236. }
  4237. ],
  4238. "license": "MIT",
  4239. "dependencies": {
  4240. "decompress-response": "^6.0.0",
  4241. "once": "^1.3.1",
  4242. "simple-concat": "^1.0.0"
  4243. }
  4244. },
  4245. "node_modules/simple-swizzle": {
  4246. "version": "0.2.2",
  4247. "license": "MIT",
  4248. "dependencies": {
  4249. "is-arrayish": "^0.3.1"
  4250. }
  4251. },
  4252. "node_modules/sisteransi": {
  4253. "version": "1.0.5",
  4254. "license": "MIT"
  4255. },
  4256. "node_modules/source-map-js": {
  4257. "version": "1.0.2",
  4258. "license": "BSD-3-Clause",
  4259. "engines": {
  4260. "node": ">=0.10.0"
  4261. }
  4262. },
  4263. "node_modules/space-separated-tokens": {
  4264. "version": "2.0.2",
  4265. "license": "MIT",
  4266. "funding": {
  4267. "type": "github",
  4268. "url": "https://github.com/sponsors/wooorm"
  4269. }
  4270. },
  4271. "node_modules/sprintf-js": {
  4272. "version": "1.0.3",
  4273. "license": "BSD-3-Clause"
  4274. },
  4275. "node_modules/stdin-discarder": {
  4276. "version": "0.1.0",
  4277. "license": "MIT",
  4278. "dependencies": {
  4279. "bl": "^5.0.0"
  4280. },
  4281. "engines": {
  4282. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  4283. },
  4284. "funding": {
  4285. "url": "https://github.com/sponsors/sindresorhus"
  4286. }
  4287. },
  4288. "node_modules/streamsearch": {
  4289. "version": "1.1.0",
  4290. "engines": {
  4291. "node": ">=10.0.0"
  4292. }
  4293. },
  4294. "node_modules/streamx": {
  4295. "version": "2.15.1",
  4296. "license": "MIT",
  4297. "dependencies": {
  4298. "fast-fifo": "^1.1.0",
  4299. "queue-tick": "^1.0.1"
  4300. }
  4301. },
  4302. "node_modules/string_decoder": {
  4303. "version": "1.3.0",
  4304. "license": "MIT",
  4305. "dependencies": {
  4306. "safe-buffer": "~5.2.0"
  4307. }
  4308. },
  4309. "node_modules/string-width": {
  4310. "version": "6.1.0",
  4311. "license": "MIT",
  4312. "dependencies": {
  4313. "eastasianwidth": "^0.2.0",
  4314. "emoji-regex": "^10.2.1",
  4315. "strip-ansi": "^7.0.1"
  4316. },
  4317. "engines": {
  4318. "node": ">=16"
  4319. },
  4320. "funding": {
  4321. "url": "https://github.com/sponsors/sindresorhus"
  4322. }
  4323. },
  4324. "node_modules/stringify-entities": {
  4325. "version": "4.0.3",
  4326. "license": "MIT",
  4327. "dependencies": {
  4328. "character-entities-html4": "^2.0.0",
  4329. "character-entities-legacy": "^3.0.0"
  4330. },
  4331. "funding": {
  4332. "type": "github",
  4333. "url": "https://github.com/sponsors/wooorm"
  4334. }
  4335. },
  4336. "node_modules/strip-ansi": {
  4337. "version": "7.1.0",
  4338. "license": "MIT",
  4339. "dependencies": {
  4340. "ansi-regex": "^6.0.1"
  4341. },
  4342. "engines": {
  4343. "node": ">=12"
  4344. },
  4345. "funding": {
  4346. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  4347. }
  4348. },
  4349. "node_modules/strip-bom": {
  4350. "version": "4.0.0",
  4351. "license": "MIT",
  4352. "engines": {
  4353. "node": ">=8"
  4354. }
  4355. },
  4356. "node_modules/strip-bom-string": {
  4357. "version": "1.0.0",
  4358. "license": "MIT",
  4359. "engines": {
  4360. "node": ">=0.10.0"
  4361. }
  4362. },
  4363. "node_modules/strip-final-newline": {
  4364. "version": "3.0.0",
  4365. "license": "MIT",
  4366. "engines": {
  4367. "node": ">=12"
  4368. },
  4369. "funding": {
  4370. "url": "https://github.com/sponsors/sindresorhus"
  4371. }
  4372. },
  4373. "node_modules/strip-json-comments": {
  4374. "version": "2.0.1",
  4375. "license": "MIT",
  4376. "engines": {
  4377. "node": ">=0.10.0"
  4378. }
  4379. },
  4380. "node_modules/sucrase": {
  4381. "version": "3.34.0",
  4382. "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz",
  4383. "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==",
  4384. "dependencies": {
  4385. "@jridgewell/gen-mapping": "^0.3.2",
  4386. "commander": "^4.0.0",
  4387. "glob": "7.1.6",
  4388. "lines-and-columns": "^1.1.6",
  4389. "mz": "^2.7.0",
  4390. "pirates": "^4.0.1",
  4391. "ts-interface-checker": "^0.1.9"
  4392. },
  4393. "bin": {
  4394. "sucrase": "bin/sucrase",
  4395. "sucrase-node": "bin/sucrase-node"
  4396. },
  4397. "engines": {
  4398. "node": ">=8"
  4399. }
  4400. },
  4401. "node_modules/supports-color": {
  4402. "version": "5.5.0",
  4403. "license": "MIT",
  4404. "dependencies": {
  4405. "has-flag": "^3.0.0"
  4406. },
  4407. "engines": {
  4408. "node": ">=4"
  4409. }
  4410. },
  4411. "node_modules/supports-preserve-symlinks-flag": {
  4412. "version": "1.0.0",
  4413. "license": "MIT",
  4414. "engines": {
  4415. "node": ">= 0.4"
  4416. },
  4417. "funding": {
  4418. "url": "https://github.com/sponsors/ljharb"
  4419. }
  4420. },
  4421. "node_modules/svelte": {
  4422. "version": "4.2.0",
  4423. "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.0.tgz",
  4424. "integrity": "sha512-kVsdPjDbLrv74SmLSUzAsBGquMs4MPgWGkGLpH+PjOYnFOziAvENVzgJmyOCV2gntxE32aNm8/sqNKD6LbIpeQ==",
  4425. "dependencies": {
  4426. "@ampproject/remapping": "^2.2.1",
  4427. "@jridgewell/sourcemap-codec": "^1.4.15",
  4428. "@jridgewell/trace-mapping": "^0.3.18",
  4429. "acorn": "^8.9.0",
  4430. "aria-query": "^5.3.0",
  4431. "axobject-query": "^3.2.1",
  4432. "code-red": "^1.0.3",
  4433. "css-tree": "^2.3.1",
  4434. "estree-walker": "^3.0.3",
  4435. "is-reference": "^3.0.1",
  4436. "locate-character": "^3.0.0",
  4437. "magic-string": "^0.30.0",
  4438. "periscopic": "^3.1.0"
  4439. },
  4440. "engines": {
  4441. "node": ">=16"
  4442. }
  4443. },
  4444. "node_modules/svelte-hmr": {
  4445. "version": "0.15.3",
  4446. "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.3.tgz",
  4447. "integrity": "sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==",
  4448. "engines": {
  4449. "node": "^12.20 || ^14.13.1 || >= 16"
  4450. },
  4451. "peerDependencies": {
  4452. "svelte": "^3.19.0 || ^4.0.0"
  4453. }
  4454. },
  4455. "node_modules/svelte2tsx": {
  4456. "version": "0.6.21",
  4457. "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.6.21.tgz",
  4458. "integrity": "sha512-v+vvbiy6WDmEQdIkJpvHYxJYG/obALfH0P6CTreYO350q/9+QmFTNCOJvx0O1o59Zpzx1Bqe+qlDxP/KtJSZEA==",
  4459. "dependencies": {
  4460. "dedent-js": "^1.0.1",
  4461. "pascal-case": "^3.1.1"
  4462. },
  4463. "peerDependencies": {
  4464. "svelte": "^3.55 || ^4.0.0-next.0 || ^4.0",
  4465. "typescript": "^4.9.4 || ^5.0.0"
  4466. }
  4467. },
  4468. "node_modules/tailwindcss": {
  4469. "version": "3.3.3",
  4470. "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz",
  4471. "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==",
  4472. "dependencies": {
  4473. "@alloc/quick-lru": "^5.2.0",
  4474. "arg": "^5.0.2",
  4475. "chokidar": "^3.5.3",
  4476. "didyoumean": "^1.2.2",
  4477. "dlv": "^1.1.3",
  4478. "fast-glob": "^3.2.12",
  4479. "glob-parent": "^6.0.2",
  4480. "is-glob": "^4.0.3",
  4481. "jiti": "^1.18.2",
  4482. "lilconfig": "^2.1.0",
  4483. "micromatch": "^4.0.5",
  4484. "normalize-path": "^3.0.0",
  4485. "object-hash": "^3.0.0",
  4486. "picocolors": "^1.0.0",
  4487. "postcss": "^8.4.23",
  4488. "postcss-import": "^15.1.0",
  4489. "postcss-js": "^4.0.1",
  4490. "postcss-load-config": "^4.0.1",
  4491. "postcss-nested": "^6.0.1",
  4492. "postcss-selector-parser": "^6.0.11",
  4493. "resolve": "^1.22.2",
  4494. "sucrase": "^3.32.0"
  4495. },
  4496. "bin": {
  4497. "tailwind": "lib/cli.js",
  4498. "tailwindcss": "lib/cli.js"
  4499. },
  4500. "engines": {
  4501. "node": ">=14.0.0"
  4502. }
  4503. },
  4504. "node_modules/tailwindcss/node_modules/glob-parent": {
  4505. "version": "6.0.2",
  4506. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
  4507. "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
  4508. "dependencies": {
  4509. "is-glob": "^4.0.3"
  4510. },
  4511. "engines": {
  4512. "node": ">=10.13.0"
  4513. }
  4514. },
  4515. "node_modules/tar-fs": {
  4516. "version": "3.0.4",
  4517. "license": "MIT",
  4518. "dependencies": {
  4519. "mkdirp-classic": "^0.5.2",
  4520. "pump": "^3.0.0",
  4521. "tar-stream": "^3.1.5"
  4522. }
  4523. },
  4524. "node_modules/tar-stream": {
  4525. "version": "3.1.6",
  4526. "license": "MIT",
  4527. "dependencies": {
  4528. "b4a": "^1.6.4",
  4529. "fast-fifo": "^1.2.0",
  4530. "streamx": "^2.15.0"
  4531. }
  4532. },
  4533. "node_modules/thenify": {
  4534. "version": "3.3.1",
  4535. "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
  4536. "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
  4537. "dependencies": {
  4538. "any-promise": "^1.0.0"
  4539. }
  4540. },
  4541. "node_modules/thenify-all": {
  4542. "version": "1.6.0",
  4543. "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
  4544. "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
  4545. "dependencies": {
  4546. "thenify": ">= 3.1.0 < 4"
  4547. },
  4548. "engines": {
  4549. "node": ">=0.8"
  4550. }
  4551. },
  4552. "node_modules/to-fast-properties": {
  4553. "version": "2.0.0",
  4554. "license": "MIT",
  4555. "engines": {
  4556. "node": ">=4"
  4557. }
  4558. },
  4559. "node_modules/to-regex-range": {
  4560. "version": "5.0.1",
  4561. "license": "MIT",
  4562. "dependencies": {
  4563. "is-number": "^7.0.0"
  4564. },
  4565. "engines": {
  4566. "node": ">=8.0"
  4567. }
  4568. },
  4569. "node_modules/trim-lines": {
  4570. "version": "3.0.1",
  4571. "license": "MIT",
  4572. "funding": {
  4573. "type": "github",
  4574. "url": "https://github.com/sponsors/wooorm"
  4575. }
  4576. },
  4577. "node_modules/trough": {
  4578. "version": "2.1.0",
  4579. "license": "MIT",
  4580. "funding": {
  4581. "type": "github",
  4582. "url": "https://github.com/sponsors/wooorm"
  4583. }
  4584. },
  4585. "node_modules/ts-interface-checker": {
  4586. "version": "0.1.13",
  4587. "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
  4588. "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
  4589. },
  4590. "node_modules/tsconfig-resolver": {
  4591. "version": "3.0.1",
  4592. "license": "MIT",
  4593. "dependencies": {
  4594. "@types/json5": "^0.0.30",
  4595. "@types/resolve": "^1.17.0",
  4596. "json5": "^2.1.3",
  4597. "resolve": "^1.17.0",
  4598. "strip-bom": "^4.0.0",
  4599. "type-fest": "^0.13.1"
  4600. },
  4601. "funding": {
  4602. "url": "https://github.com/sponsors/ifiokjr"
  4603. }
  4604. },
  4605. "node_modules/tsconfig-resolver/node_modules/type-fest": {
  4606. "version": "0.13.1",
  4607. "license": "(MIT OR CC0-1.0)",
  4608. "engines": {
  4609. "node": ">=10"
  4610. },
  4611. "funding": {
  4612. "url": "https://github.com/sponsors/sindresorhus"
  4613. }
  4614. },
  4615. "node_modules/tslib": {
  4616. "version": "2.6.2",
  4617. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
  4618. "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
  4619. },
  4620. "node_modules/tunnel-agent": {
  4621. "version": "0.6.0",
  4622. "license": "Apache-2.0",
  4623. "dependencies": {
  4624. "safe-buffer": "^5.0.1"
  4625. },
  4626. "engines": {
  4627. "node": "*"
  4628. }
  4629. },
  4630. "node_modules/type-fest": {
  4631. "version": "2.19.0",
  4632. "license": "(MIT OR CC0-1.0)",
  4633. "engines": {
  4634. "node": ">=12.20"
  4635. },
  4636. "funding": {
  4637. "url": "https://github.com/sponsors/sindresorhus"
  4638. }
  4639. },
  4640. "node_modules/typescript": {
  4641. "version": "5.2.2",
  4642. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz",
  4643. "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==",
  4644. "peer": true,
  4645. "bin": {
  4646. "tsc": "bin/tsc",
  4647. "tsserver": "bin/tsserver"
  4648. },
  4649. "engines": {
  4650. "node": ">=14.17"
  4651. }
  4652. },
  4653. "node_modules/undici": {
  4654. "version": "5.23.0",
  4655. "license": "MIT",
  4656. "dependencies": {
  4657. "busboy": "^1.6.0"
  4658. },
  4659. "engines": {
  4660. "node": ">=14.0"
  4661. }
  4662. },
  4663. "node_modules/unherit": {
  4664. "version": "3.0.1",
  4665. "license": "MIT",
  4666. "funding": {
  4667. "type": "github",
  4668. "url": "https://github.com/sponsors/wooorm"
  4669. }
  4670. },
  4671. "node_modules/unified": {
  4672. "version": "10.1.2",
  4673. "license": "MIT",
  4674. "dependencies": {
  4675. "@types/unist": "^2.0.0",
  4676. "bail": "^2.0.0",
  4677. "extend": "^3.0.0",
  4678. "is-buffer": "^2.0.0",
  4679. "is-plain-obj": "^4.0.0",
  4680. "trough": "^2.0.0",
  4681. "vfile": "^5.0.0"
  4682. },
  4683. "funding": {
  4684. "type": "opencollective",
  4685. "url": "https://opencollective.com/unified"
  4686. }
  4687. },
  4688. "node_modules/unist-util-generated": {
  4689. "version": "2.0.1",
  4690. "license": "MIT",
  4691. "funding": {
  4692. "type": "opencollective",
  4693. "url": "https://opencollective.com/unified"
  4694. }
  4695. },
  4696. "node_modules/unist-util-is": {
  4697. "version": "5.2.1",
  4698. "license": "MIT",
  4699. "dependencies": {
  4700. "@types/unist": "^2.0.0"
  4701. },
  4702. "funding": {
  4703. "type": "opencollective",
  4704. "url": "https://opencollective.com/unified"
  4705. }
  4706. },
  4707. "node_modules/unist-util-modify-children": {
  4708. "version": "3.1.1",
  4709. "license": "MIT",
  4710. "dependencies": {
  4711. "@types/unist": "^2.0.0",
  4712. "array-iterate": "^2.0.0"
  4713. },
  4714. "funding": {
  4715. "type": "opencollective",
  4716. "url": "https://opencollective.com/unified"
  4717. }
  4718. },
  4719. "node_modules/unist-util-position": {
  4720. "version": "4.0.4",
  4721. "license": "MIT",
  4722. "dependencies": {
  4723. "@types/unist": "^2.0.0"
  4724. },
  4725. "funding": {
  4726. "type": "opencollective",
  4727. "url": "https://opencollective.com/unified"
  4728. }
  4729. },
  4730. "node_modules/unist-util-stringify-position": {
  4731. "version": "3.0.3",
  4732. "license": "MIT",
  4733. "dependencies": {
  4734. "@types/unist": "^2.0.0"
  4735. },
  4736. "funding": {
  4737. "type": "opencollective",
  4738. "url": "https://opencollective.com/unified"
  4739. }
  4740. },
  4741. "node_modules/unist-util-visit": {
  4742. "version": "4.1.2",
  4743. "license": "MIT",
  4744. "dependencies": {
  4745. "@types/unist": "^2.0.0",
  4746. "unist-util-is": "^5.0.0",
  4747. "unist-util-visit-parents": "^5.1.1"
  4748. },
  4749. "funding": {
  4750. "type": "opencollective",
  4751. "url": "https://opencollective.com/unified"
  4752. }
  4753. },
  4754. "node_modules/unist-util-visit-children": {
  4755. "version": "2.0.2",
  4756. "license": "MIT",
  4757. "dependencies": {
  4758. "@types/unist": "^2.0.0"
  4759. },
  4760. "funding": {
  4761. "type": "opencollective",
  4762. "url": "https://opencollective.com/unified"
  4763. }
  4764. },
  4765. "node_modules/unist-util-visit-parents": {
  4766. "version": "5.1.3",
  4767. "license": "MIT",
  4768. "dependencies": {
  4769. "@types/unist": "^2.0.0",
  4770. "unist-util-is": "^5.0.0"
  4771. },
  4772. "funding": {
  4773. "type": "opencollective",
  4774. "url": "https://opencollective.com/unified"
  4775. }
  4776. },
  4777. "node_modules/update-browserslist-db": {
  4778. "version": "1.0.11",
  4779. "funding": [
  4780. {
  4781. "type": "opencollective",
  4782. "url": "https://opencollective.com/browserslist"
  4783. },
  4784. {
  4785. "type": "tidelift",
  4786. "url": "https://tidelift.com/funding/github/npm/browserslist"
  4787. },
  4788. {
  4789. "type": "github",
  4790. "url": "https://github.com/sponsors/ai"
  4791. }
  4792. ],
  4793. "license": "MIT",
  4794. "dependencies": {
  4795. "escalade": "^3.1.1",
  4796. "picocolors": "^1.0.0"
  4797. },
  4798. "bin": {
  4799. "update-browserslist-db": "cli.js"
  4800. },
  4801. "peerDependencies": {
  4802. "browserslist": ">= 4.21.0"
  4803. }
  4804. },
  4805. "node_modules/util-deprecate": {
  4806. "version": "1.0.2",
  4807. "license": "MIT"
  4808. },
  4809. "node_modules/uvu": {
  4810. "version": "0.5.6",
  4811. "license": "MIT",
  4812. "dependencies": {
  4813. "dequal": "^2.0.0",
  4814. "diff": "^5.0.0",
  4815. "kleur": "^4.0.3",
  4816. "sade": "^1.7.3"
  4817. },
  4818. "bin": {
  4819. "uvu": "bin.js"
  4820. },
  4821. "engines": {
  4822. "node": ">=8"
  4823. }
  4824. },
  4825. "node_modules/vfile": {
  4826. "version": "5.3.7",
  4827. "license": "MIT",
  4828. "dependencies": {
  4829. "@types/unist": "^2.0.0",
  4830. "is-buffer": "^2.0.0",
  4831. "unist-util-stringify-position": "^3.0.0",
  4832. "vfile-message": "^3.0.0"
  4833. },
  4834. "funding": {
  4835. "type": "opencollective",
  4836. "url": "https://opencollective.com/unified"
  4837. }
  4838. },
  4839. "node_modules/vfile-location": {
  4840. "version": "4.1.0",
  4841. "license": "MIT",
  4842. "dependencies": {
  4843. "@types/unist": "^2.0.0",
  4844. "vfile": "^5.0.0"
  4845. },
  4846. "funding": {
  4847. "type": "opencollective",
  4848. "url": "https://opencollective.com/unified"
  4849. }
  4850. },
  4851. "node_modules/vfile-message": {
  4852. "version": "3.1.4",
  4853. "license": "MIT",
  4854. "dependencies": {
  4855. "@types/unist": "^2.0.0",
  4856. "unist-util-stringify-position": "^3.0.0"
  4857. },
  4858. "funding": {
  4859. "type": "opencollective",
  4860. "url": "https://opencollective.com/unified"
  4861. }
  4862. },
  4863. "node_modules/vite": {
  4864. "version": "4.4.9",
  4865. "license": "MIT",
  4866. "dependencies": {
  4867. "esbuild": "^0.18.10",
  4868. "postcss": "^8.4.27",
  4869. "rollup": "^3.27.1"
  4870. },
  4871. "bin": {
  4872. "vite": "bin/vite.js"
  4873. },
  4874. "engines": {
  4875. "node": "^14.18.0 || >=16.0.0"
  4876. },
  4877. "funding": {
  4878. "url": "https://github.com/vitejs/vite?sponsor=1"
  4879. },
  4880. "optionalDependencies": {
  4881. "fsevents": "~2.3.2"
  4882. },
  4883. "peerDependencies": {
  4884. "@types/node": ">= 14",
  4885. "less": "*",
  4886. "lightningcss": "^1.21.0",
  4887. "sass": "*",
  4888. "stylus": "*",
  4889. "sugarss": "*",
  4890. "terser": "^5.4.0"
  4891. },
  4892. "peerDependenciesMeta": {
  4893. "@types/node": {
  4894. "optional": true
  4895. },
  4896. "less": {
  4897. "optional": true
  4898. },
  4899. "lightningcss": {
  4900. "optional": true
  4901. },
  4902. "sass": {
  4903. "optional": true
  4904. },
  4905. "stylus": {
  4906. "optional": true
  4907. },
  4908. "sugarss": {
  4909. "optional": true
  4910. },
  4911. "terser": {
  4912. "optional": true
  4913. }
  4914. }
  4915. },
  4916. "node_modules/vite/node_modules/esbuild": {
  4917. "version": "0.18.20",
  4918. "hasInstallScript": true,
  4919. "license": "MIT",
  4920. "bin": {
  4921. "esbuild": "bin/esbuild"
  4922. },
  4923. "engines": {
  4924. "node": ">=12"
  4925. },
  4926. "optionalDependencies": {
  4927. "@esbuild/android-arm": "0.18.20",
  4928. "@esbuild/android-arm64": "0.18.20",
  4929. "@esbuild/android-x64": "0.18.20",
  4930. "@esbuild/darwin-arm64": "0.18.20",
  4931. "@esbuild/darwin-x64": "0.18.20",
  4932. "@esbuild/freebsd-arm64": "0.18.20",
  4933. "@esbuild/freebsd-x64": "0.18.20",
  4934. "@esbuild/linux-arm": "0.18.20",
  4935. "@esbuild/linux-arm64": "0.18.20",
  4936. "@esbuild/linux-ia32": "0.18.20",
  4937. "@esbuild/linux-loong64": "0.18.20",
  4938. "@esbuild/linux-mips64el": "0.18.20",
  4939. "@esbuild/linux-ppc64": "0.18.20",
  4940. "@esbuild/linux-riscv64": "0.18.20",
  4941. "@esbuild/linux-s390x": "0.18.20",
  4942. "@esbuild/linux-x64": "0.18.20",
  4943. "@esbuild/netbsd-x64": "0.18.20",
  4944. "@esbuild/openbsd-x64": "0.18.20",
  4945. "@esbuild/sunos-x64": "0.18.20",
  4946. "@esbuild/win32-arm64": "0.18.20",
  4947. "@esbuild/win32-ia32": "0.18.20",
  4948. "@esbuild/win32-x64": "0.18.20"
  4949. }
  4950. },
  4951. "node_modules/vite/node_modules/esbuild/node_modules/@esbuild/linux-x64": {
  4952. "version": "0.18.20",
  4953. "cpu": [
  4954. "x64"
  4955. ],
  4956. "license": "MIT",
  4957. "optional": true,
  4958. "os": [
  4959. "linux"
  4960. ],
  4961. "engines": {
  4962. "node": ">=12"
  4963. }
  4964. },
  4965. "node_modules/vitefu": {
  4966. "version": "0.2.4",
  4967. "license": "MIT",
  4968. "peerDependencies": {
  4969. "vite": "^3.0.0 || ^4.0.0"
  4970. },
  4971. "peerDependenciesMeta": {
  4972. "vite": {
  4973. "optional": true
  4974. }
  4975. }
  4976. },
  4977. "node_modules/vscode-oniguruma": {
  4978. "version": "1.7.0",
  4979. "license": "MIT"
  4980. },
  4981. "node_modules/vscode-textmate": {
  4982. "version": "8.0.0",
  4983. "license": "MIT"
  4984. },
  4985. "node_modules/web-namespaces": {
  4986. "version": "2.0.1",
  4987. "license": "MIT",
  4988. "funding": {
  4989. "type": "github",
  4990. "url": "https://github.com/sponsors/wooorm"
  4991. }
  4992. },
  4993. "node_modules/which": {
  4994. "version": "2.0.2",
  4995. "license": "ISC",
  4996. "dependencies": {
  4997. "isexe": "^2.0.0"
  4998. },
  4999. "bin": {
  5000. "node-which": "bin/node-which"
  5001. },
  5002. "engines": {
  5003. "node": ">= 8"
  5004. }
  5005. },
  5006. "node_modules/which-pm": {
  5007. "version": "2.0.0",
  5008. "license": "MIT",
  5009. "dependencies": {
  5010. "load-yaml-file": "^0.2.0",
  5011. "path-exists": "^4.0.0"
  5012. },
  5013. "engines": {
  5014. "node": ">=8.15"
  5015. }
  5016. },
  5017. "node_modules/which-pm-runs": {
  5018. "version": "1.1.0",
  5019. "license": "MIT",
  5020. "engines": {
  5021. "node": ">=4"
  5022. }
  5023. },
  5024. "node_modules/widest-line": {
  5025. "version": "4.0.1",
  5026. "license": "MIT",
  5027. "dependencies": {
  5028. "string-width": "^5.0.1"
  5029. },
  5030. "engines": {
  5031. "node": ">=12"
  5032. },
  5033. "funding": {
  5034. "url": "https://github.com/sponsors/sindresorhus"
  5035. }
  5036. },
  5037. "node_modules/widest-line/node_modules/string-width": {
  5038. "version": "5.1.2",
  5039. "license": "MIT",
  5040. "dependencies": {
  5041. "eastasianwidth": "^0.2.0",
  5042. "emoji-regex": "^9.2.2",
  5043. "strip-ansi": "^7.0.1"
  5044. },
  5045. "engines": {
  5046. "node": ">=12"
  5047. },
  5048. "funding": {
  5049. "url": "https://github.com/sponsors/sindresorhus"
  5050. }
  5051. },
  5052. "node_modules/widest-line/node_modules/string-width/node_modules/emoji-regex": {
  5053. "version": "9.2.2",
  5054. "license": "MIT"
  5055. },
  5056. "node_modules/wrap-ansi": {
  5057. "version": "8.1.0",
  5058. "license": "MIT",
  5059. "dependencies": {
  5060. "ansi-styles": "^6.1.0",
  5061. "string-width": "^5.0.1",
  5062. "strip-ansi": "^7.0.1"
  5063. },
  5064. "engines": {
  5065. "node": ">=12"
  5066. },
  5067. "funding": {
  5068. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  5069. }
  5070. },
  5071. "node_modules/wrap-ansi/node_modules/string-width": {
  5072. "version": "5.1.2",
  5073. "license": "MIT",
  5074. "dependencies": {
  5075. "eastasianwidth": "^0.2.0",
  5076. "emoji-regex": "^9.2.2",
  5077. "strip-ansi": "^7.0.1"
  5078. },
  5079. "engines": {
  5080. "node": ">=12"
  5081. },
  5082. "funding": {
  5083. "url": "https://github.com/sponsors/sindresorhus"
  5084. }
  5085. },
  5086. "node_modules/wrap-ansi/node_modules/string-width/node_modules/emoji-regex": {
  5087. "version": "9.2.2",
  5088. "license": "MIT"
  5089. },
  5090. "node_modules/wrappy": {
  5091. "version": "1.0.2",
  5092. "license": "ISC"
  5093. },
  5094. "node_modules/yallist": {
  5095. "version": "4.0.0",
  5096. "license": "ISC"
  5097. },
  5098. "node_modules/yaml": {
  5099. "version": "2.3.2",
  5100. "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.2.tgz",
  5101. "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==",
  5102. "engines": {
  5103. "node": ">= 14"
  5104. }
  5105. },
  5106. "node_modules/yargs-parser": {
  5107. "version": "21.1.1",
  5108. "license": "ISC",
  5109. "engines": {
  5110. "node": ">=12"
  5111. }
  5112. },
  5113. "node_modules/yocto-queue": {
  5114. "version": "1.0.0",
  5115. "license": "MIT",
  5116. "engines": {
  5117. "node": ">=12.20"
  5118. },
  5119. "funding": {
  5120. "url": "https://github.com/sponsors/sindresorhus"
  5121. }
  5122. },
  5123. "node_modules/zod": {
  5124. "version": "3.21.1",
  5125. "license": "MIT",
  5126. "funding": {
  5127. "url": "https://github.com/sponsors/colinhacks"
  5128. }
  5129. },
  5130. "node_modules/zwitch": {
  5131. "version": "2.0.4",
  5132. "license": "MIT",
  5133. "funding": {
  5134. "type": "github",
  5135. "url": "https://github.com/sponsors/wooorm"
  5136. }
  5137. }
  5138. }
  5139. }