.package-lock.json 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834
  1. {
  2. "name": "knowmathbot-frontend",
  3. "version": "0.1.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "node_modules/@babel/code-frame": {
  8. "version": "7.29.0",
  9. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
  10. "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
  11. "dev": true,
  12. "license": "MIT",
  13. "dependencies": {
  14. "@babel/helper-validator-identifier": "^7.28.5",
  15. "js-tokens": "^4.0.0",
  16. "picocolors": "^1.1.1"
  17. },
  18. "engines": {
  19. "node": ">=6.9.0"
  20. }
  21. },
  22. "node_modules/@babel/compat-data": {
  23. "version": "7.29.0",
  24. "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
  25. "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
  26. "dev": true,
  27. "license": "MIT",
  28. "engines": {
  29. "node": ">=6.9.0"
  30. }
  31. },
  32. "node_modules/@babel/core": {
  33. "version": "7.29.0",
  34. "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
  35. "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
  36. "dev": true,
  37. "license": "MIT",
  38. "dependencies": {
  39. "@babel/code-frame": "^7.29.0",
  40. "@babel/generator": "^7.29.0",
  41. "@babel/helper-compilation-targets": "^7.28.6",
  42. "@babel/helper-module-transforms": "^7.28.6",
  43. "@babel/helpers": "^7.28.6",
  44. "@babel/parser": "^7.29.0",
  45. "@babel/template": "^7.28.6",
  46. "@babel/traverse": "^7.29.0",
  47. "@babel/types": "^7.29.0",
  48. "@jridgewell/remapping": "^2.3.5",
  49. "convert-source-map": "^2.0.0",
  50. "debug": "^4.1.0",
  51. "gensync": "^1.0.0-beta.2",
  52. "json5": "^2.2.3",
  53. "semver": "^6.3.1"
  54. },
  55. "engines": {
  56. "node": ">=6.9.0"
  57. },
  58. "funding": {
  59. "type": "opencollective",
  60. "url": "https://opencollective.com/babel"
  61. }
  62. },
  63. "node_modules/@babel/generator": {
  64. "version": "7.29.1",
  65. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
  66. "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
  67. "dev": true,
  68. "license": "MIT",
  69. "dependencies": {
  70. "@babel/parser": "^7.29.0",
  71. "@babel/types": "^7.29.0",
  72. "@jridgewell/gen-mapping": "^0.3.12",
  73. "@jridgewell/trace-mapping": "^0.3.28",
  74. "jsesc": "^3.0.2"
  75. },
  76. "engines": {
  77. "node": ">=6.9.0"
  78. }
  79. },
  80. "node_modules/@babel/helper-compilation-targets": {
  81. "version": "7.28.6",
  82. "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
  83. "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
  84. "dev": true,
  85. "license": "MIT",
  86. "dependencies": {
  87. "@babel/compat-data": "^7.28.6",
  88. "@babel/helper-validator-option": "^7.27.1",
  89. "browserslist": "^4.24.0",
  90. "lru-cache": "^5.1.1",
  91. "semver": "^6.3.1"
  92. },
  93. "engines": {
  94. "node": ">=6.9.0"
  95. }
  96. },
  97. "node_modules/@babel/helper-globals": {
  98. "version": "7.28.0",
  99. "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
  100. "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
  101. "dev": true,
  102. "license": "MIT",
  103. "engines": {
  104. "node": ">=6.9.0"
  105. }
  106. },
  107. "node_modules/@babel/helper-module-imports": {
  108. "version": "7.28.6",
  109. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
  110. "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
  111. "dev": true,
  112. "license": "MIT",
  113. "dependencies": {
  114. "@babel/traverse": "^7.28.6",
  115. "@babel/types": "^7.28.6"
  116. },
  117. "engines": {
  118. "node": ">=6.9.0"
  119. }
  120. },
  121. "node_modules/@babel/helper-module-transforms": {
  122. "version": "7.28.6",
  123. "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
  124. "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
  125. "dev": true,
  126. "license": "MIT",
  127. "dependencies": {
  128. "@babel/helper-module-imports": "^7.28.6",
  129. "@babel/helper-validator-identifier": "^7.28.5",
  130. "@babel/traverse": "^7.28.6"
  131. },
  132. "engines": {
  133. "node": ">=6.9.0"
  134. },
  135. "peerDependencies": {
  136. "@babel/core": "^7.0.0"
  137. }
  138. },
  139. "node_modules/@babel/helper-plugin-utils": {
  140. "version": "7.28.6",
  141. "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
  142. "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
  143. "dev": true,
  144. "license": "MIT",
  145. "engines": {
  146. "node": ">=6.9.0"
  147. }
  148. },
  149. "node_modules/@babel/helper-string-parser": {
  150. "version": "7.27.1",
  151. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  152. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  153. "dev": true,
  154. "license": "MIT",
  155. "engines": {
  156. "node": ">=6.9.0"
  157. }
  158. },
  159. "node_modules/@babel/helper-validator-identifier": {
  160. "version": "7.28.5",
  161. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  162. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  163. "dev": true,
  164. "license": "MIT",
  165. "engines": {
  166. "node": ">=6.9.0"
  167. }
  168. },
  169. "node_modules/@babel/helper-validator-option": {
  170. "version": "7.27.1",
  171. "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
  172. "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
  173. "dev": true,
  174. "license": "MIT",
  175. "engines": {
  176. "node": ">=6.9.0"
  177. }
  178. },
  179. "node_modules/@babel/helpers": {
  180. "version": "7.28.6",
  181. "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
  182. "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
  183. "dev": true,
  184. "license": "MIT",
  185. "dependencies": {
  186. "@babel/template": "^7.28.6",
  187. "@babel/types": "^7.28.6"
  188. },
  189. "engines": {
  190. "node": ">=6.9.0"
  191. }
  192. },
  193. "node_modules/@babel/parser": {
  194. "version": "7.29.0",
  195. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
  196. "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
  197. "dev": true,
  198. "license": "MIT",
  199. "dependencies": {
  200. "@babel/types": "^7.29.0"
  201. },
  202. "bin": {
  203. "parser": "bin/babel-parser.js"
  204. },
  205. "engines": {
  206. "node": ">=6.0.0"
  207. }
  208. },
  209. "node_modules/@babel/plugin-transform-react-jsx-self": {
  210. "version": "7.27.1",
  211. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
  212. "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
  213. "dev": true,
  214. "license": "MIT",
  215. "dependencies": {
  216. "@babel/helper-plugin-utils": "^7.27.1"
  217. },
  218. "engines": {
  219. "node": ">=6.9.0"
  220. },
  221. "peerDependencies": {
  222. "@babel/core": "^7.0.0-0"
  223. }
  224. },
  225. "node_modules/@babel/plugin-transform-react-jsx-source": {
  226. "version": "7.27.1",
  227. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
  228. "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
  229. "dev": true,
  230. "license": "MIT",
  231. "dependencies": {
  232. "@babel/helper-plugin-utils": "^7.27.1"
  233. },
  234. "engines": {
  235. "node": ">=6.9.0"
  236. },
  237. "peerDependencies": {
  238. "@babel/core": "^7.0.0-0"
  239. }
  240. },
  241. "node_modules/@babel/template": {
  242. "version": "7.28.6",
  243. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
  244. "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
  245. "dev": true,
  246. "license": "MIT",
  247. "dependencies": {
  248. "@babel/code-frame": "^7.28.6",
  249. "@babel/parser": "^7.28.6",
  250. "@babel/types": "^7.28.6"
  251. },
  252. "engines": {
  253. "node": ">=6.9.0"
  254. }
  255. },
  256. "node_modules/@babel/traverse": {
  257. "version": "7.29.0",
  258. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
  259. "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
  260. "dev": true,
  261. "license": "MIT",
  262. "dependencies": {
  263. "@babel/code-frame": "^7.29.0",
  264. "@babel/generator": "^7.29.0",
  265. "@babel/helper-globals": "^7.28.0",
  266. "@babel/parser": "^7.29.0",
  267. "@babel/template": "^7.28.6",
  268. "@babel/types": "^7.29.0",
  269. "debug": "^4.3.1"
  270. },
  271. "engines": {
  272. "node": ">=6.9.0"
  273. }
  274. },
  275. "node_modules/@babel/types": {
  276. "version": "7.29.0",
  277. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  278. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  279. "dev": true,
  280. "license": "MIT",
  281. "dependencies": {
  282. "@babel/helper-string-parser": "^7.27.1",
  283. "@babel/helper-validator-identifier": "^7.28.5"
  284. },
  285. "engines": {
  286. "node": ">=6.9.0"
  287. }
  288. },
  289. "node_modules/@esbuild/win32-x64": {
  290. "version": "0.25.12",
  291. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
  292. "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
  293. "cpu": [
  294. "x64"
  295. ],
  296. "dev": true,
  297. "license": "MIT",
  298. "optional": true,
  299. "os": [
  300. "win32"
  301. ],
  302. "engines": {
  303. "node": ">=18"
  304. }
  305. },
  306. "node_modules/@jridgewell/gen-mapping": {
  307. "version": "0.3.13",
  308. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  309. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  310. "dev": true,
  311. "license": "MIT",
  312. "dependencies": {
  313. "@jridgewell/sourcemap-codec": "^1.5.0",
  314. "@jridgewell/trace-mapping": "^0.3.24"
  315. }
  316. },
  317. "node_modules/@jridgewell/remapping": {
  318. "version": "2.3.5",
  319. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  320. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  321. "dev": true,
  322. "license": "MIT",
  323. "dependencies": {
  324. "@jridgewell/gen-mapping": "^0.3.5",
  325. "@jridgewell/trace-mapping": "^0.3.24"
  326. }
  327. },
  328. "node_modules/@jridgewell/resolve-uri": {
  329. "version": "3.1.2",
  330. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  331. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  332. "dev": true,
  333. "license": "MIT",
  334. "engines": {
  335. "node": ">=6.0.0"
  336. }
  337. },
  338. "node_modules/@jridgewell/sourcemap-codec": {
  339. "version": "1.5.5",
  340. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  341. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  342. "dev": true,
  343. "license": "MIT"
  344. },
  345. "node_modules/@jridgewell/trace-mapping": {
  346. "version": "0.3.31",
  347. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  348. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  349. "dev": true,
  350. "license": "MIT",
  351. "dependencies": {
  352. "@jridgewell/resolve-uri": "^3.1.0",
  353. "@jridgewell/sourcemap-codec": "^1.4.14"
  354. }
  355. },
  356. "node_modules/@pixi/accessibility": {
  357. "version": "6.5.10",
  358. "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-6.5.10.tgz",
  359. "integrity": "sha512-URrI1H+1kjjHSyhY1QXcUZ8S3omdVTrXg5y0gndtpOhIelErBTC9NWjJfw6s0Rlmv5+x5VAitQTgw9mRiatDgw==",
  360. "license": "MIT",
  361. "peerDependencies": {
  362. "@pixi/core": "6.5.10",
  363. "@pixi/display": "6.5.10",
  364. "@pixi/utils": "6.5.10"
  365. }
  366. },
  367. "node_modules/@pixi/app": {
  368. "version": "6.5.10",
  369. "resolved": "https://registry.npmjs.org/@pixi/app/-/app-6.5.10.tgz",
  370. "integrity": "sha512-VsNHLajZ5Dbc/Zrj7iWmIl3eu6Fec+afjW/NXXezD8Sp3nTDF0bv5F+GDgN/zSc2gqIvPHyundImT7hQGBDghg==",
  371. "license": "MIT",
  372. "peerDependencies": {
  373. "@pixi/core": "6.5.10",
  374. "@pixi/display": "6.5.10",
  375. "@pixi/math": "6.5.10",
  376. "@pixi/utils": "6.5.10"
  377. }
  378. },
  379. "node_modules/@pixi/compressed-textures": {
  380. "version": "6.5.10",
  381. "resolved": "https://registry.npmjs.org/@pixi/compressed-textures/-/compressed-textures-6.5.10.tgz",
  382. "integrity": "sha512-41NT5mkfam47DrkB8xMp3HUZDt7139JMB6rVNOmb3u2vm+2mdy9tzi5s9nN7bG9xgXlchxcFzytTURk+jwXVJA==",
  383. "license": "MIT",
  384. "peerDependencies": {
  385. "@pixi/constants": "6.5.10",
  386. "@pixi/core": "6.5.10",
  387. "@pixi/loaders": "6.5.10",
  388. "@pixi/settings": "6.5.10",
  389. "@pixi/utils": "6.5.10"
  390. }
  391. },
  392. "node_modules/@pixi/constants": {
  393. "version": "6.5.10",
  394. "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-6.5.10.tgz",
  395. "integrity": "sha512-PUF2Y9YISRu5eVrVVHhHCWpc/KmxQTg3UH8rIUs8UI9dCK41/wsPd3pEahzf7H47v7x1HCohVZcFO3XQc1bUDw==",
  396. "license": "MIT"
  397. },
  398. "node_modules/@pixi/core": {
  399. "version": "6.5.10",
  400. "resolved": "https://registry.npmjs.org/@pixi/core/-/core-6.5.10.tgz",
  401. "integrity": "sha512-Gdzp5ENypyglvsh5Gv3teUZnZnmizo4xOsL+QqmWALdFlJXJwLJMVhKVThV/q/095XR6i4Ou54oshn+m4EkuFw==",
  402. "license": "MIT",
  403. "dependencies": {
  404. "@types/offscreencanvas": "^2019.6.4"
  405. },
  406. "funding": {
  407. "type": "opencollective",
  408. "url": "https://opencollective.com/pixijs"
  409. },
  410. "peerDependencies": {
  411. "@pixi/constants": "6.5.10",
  412. "@pixi/extensions": "6.5.10",
  413. "@pixi/math": "6.5.10",
  414. "@pixi/runner": "6.5.10",
  415. "@pixi/settings": "6.5.10",
  416. "@pixi/ticker": "6.5.10",
  417. "@pixi/utils": "6.5.10"
  418. }
  419. },
  420. "node_modules/@pixi/display": {
  421. "version": "6.5.10",
  422. "resolved": "https://registry.npmjs.org/@pixi/display/-/display-6.5.10.tgz",
  423. "integrity": "sha512-NxFdDDxlbH5fQkzGHraLGoTMucW9pVgXqQm13TSmkA3NWIi/SItHL4qT2SI8nmclT9Vid1VDEBCJFAbdeuQw1Q==",
  424. "license": "MIT",
  425. "peerDependencies": {
  426. "@pixi/constants": "6.5.10",
  427. "@pixi/math": "6.5.10",
  428. "@pixi/settings": "6.5.10",
  429. "@pixi/utils": "6.5.10"
  430. }
  431. },
  432. "node_modules/@pixi/extensions": {
  433. "version": "6.5.10",
  434. "resolved": "https://registry.npmjs.org/@pixi/extensions/-/extensions-6.5.10.tgz",
  435. "integrity": "sha512-EIUGza+E+sCy3dupuIjvRK/WyVyfSzHb5XsxRaxNrPwvG1iIUIqNqZ3owLYCo4h17fJWrj/yXVufNNtUKQccWQ==",
  436. "license": "MIT"
  437. },
  438. "node_modules/@pixi/extract": {
  439. "version": "6.5.10",
  440. "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-6.5.10.tgz",
  441. "integrity": "sha512-hXFIc4EGs14GFfXAjT1+6mzopzCMWeXeai38/Yod3vuBXkkp8+ksen6kE09vTnB9l1IpcIaCM+XZEokuqoGX2A==",
  442. "license": "MIT",
  443. "peerDependencies": {
  444. "@pixi/constants": "6.5.10",
  445. "@pixi/core": "6.5.10",
  446. "@pixi/math": "6.5.10",
  447. "@pixi/utils": "6.5.10"
  448. }
  449. },
  450. "node_modules/@pixi/filter-alpha": {
  451. "version": "6.5.10",
  452. "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-6.5.10.tgz",
  453. "integrity": "sha512-GWHLJvY0QOIDRjVx0hdUff6nl/PePQg84i8XXPmANrvA+gJ/eSRTQRmQcdgInQfawENADB/oRqpcCct6IAcKpQ==",
  454. "license": "MIT",
  455. "peerDependencies": {
  456. "@pixi/core": "6.5.10"
  457. }
  458. },
  459. "node_modules/@pixi/filter-blur": {
  460. "version": "6.5.10",
  461. "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-6.5.10.tgz",
  462. "integrity": "sha512-LJsRocVOdM9hTzZKjP+jmkfoL1nrJi5XpR0ItgRN8fflOC7A7Ln4iPe7nukbbq3H7QhZSunbygMubbO6xhThZw==",
  463. "license": "MIT",
  464. "peerDependencies": {
  465. "@pixi/constants": "6.5.10",
  466. "@pixi/core": "6.5.10",
  467. "@pixi/settings": "6.5.10"
  468. }
  469. },
  470. "node_modules/@pixi/filter-color-matrix": {
  471. "version": "6.5.10",
  472. "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-6.5.10.tgz",
  473. "integrity": "sha512-C2S44/EoWTrhqedLWOZTq9GZV5loEq1+MhyK9AUzEubWGMHhou1Juhn2mRZ7R6flKPCRQNKrXpStUwCAouud3Q==",
  474. "license": "MIT",
  475. "peerDependencies": {
  476. "@pixi/core": "6.5.10"
  477. }
  478. },
  479. "node_modules/@pixi/filter-displacement": {
  480. "version": "6.5.10",
  481. "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-6.5.10.tgz",
  482. "integrity": "sha512-fbblMYyPX/hO3Tpoaa4tOBYxqp4TxjNrz6xyt15tKSVxWQElk+Tx98GJ+aaBoiHOKt8ezzHplStWoHG++JIv/w==",
  483. "license": "MIT",
  484. "peerDependencies": {
  485. "@pixi/core": "6.5.10",
  486. "@pixi/math": "6.5.10"
  487. }
  488. },
  489. "node_modules/@pixi/filter-fxaa": {
  490. "version": "6.5.10",
  491. "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-6.5.10.tgz",
  492. "integrity": "sha512-wbHL9UtY3g7jTyvO8JaZks6DqV8AO5c96Hfu0zfndWBPs79Ul6/sq3LD2eE+yq5vK5T2R9Sr4s54ls1JT3Sppg==",
  493. "license": "MIT",
  494. "peerDependencies": {
  495. "@pixi/core": "6.5.10"
  496. }
  497. },
  498. "node_modules/@pixi/filter-noise": {
  499. "version": "6.5.10",
  500. "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-6.5.10.tgz",
  501. "integrity": "sha512-CX+/06NVaw3HsjipZVb7aemkca0TC8I6qfKI4lx2ugxS/6G6zkY5zqd8+nVSXW4DpUXB6eT0emwfRv6N00NvuA==",
  502. "license": "MIT",
  503. "peerDependencies": {
  504. "@pixi/core": "6.5.10"
  505. }
  506. },
  507. "node_modules/@pixi/graphics": {
  508. "version": "6.5.10",
  509. "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-6.5.10.tgz",
  510. "integrity": "sha512-KPHGJ910fi8bRQQ+VcTIgrK+bKIm8yAQaZKPqMtm14HzHPGcES6HkgeNY1sd7m8J4aS9btm5wOSyFu0p5IzTpA==",
  511. "license": "MIT",
  512. "peerDependencies": {
  513. "@pixi/constants": "6.5.10",
  514. "@pixi/core": "6.5.10",
  515. "@pixi/display": "6.5.10",
  516. "@pixi/math": "6.5.10",
  517. "@pixi/sprite": "6.5.10",
  518. "@pixi/utils": "6.5.10"
  519. }
  520. },
  521. "node_modules/@pixi/interaction": {
  522. "version": "6.5.10",
  523. "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-6.5.10.tgz",
  524. "integrity": "sha512-v809pJmXA2B9dV/vdrDMUqJT+fBB/ARZli2YRmI2dPbEbkaYr8FNmxCAJnwT8o+ymTx044Ie820hn9tVrtMtfA==",
  525. "license": "MIT",
  526. "peerDependencies": {
  527. "@pixi/core": "6.5.10",
  528. "@pixi/display": "6.5.10",
  529. "@pixi/math": "6.5.10",
  530. "@pixi/ticker": "6.5.10",
  531. "@pixi/utils": "6.5.10"
  532. }
  533. },
  534. "node_modules/@pixi/loaders": {
  535. "version": "6.5.10",
  536. "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-6.5.10.tgz",
  537. "integrity": "sha512-AuK7mXBmyVsDFL9DDFPB8sqP8fwQ2NOktvu98bQuJl0/p/UeK/0OAQnF3wcf3FeBv5YGXfNHL21c2DCisjKfTg==",
  538. "license": "MIT",
  539. "peerDependencies": {
  540. "@pixi/constants": "6.5.10",
  541. "@pixi/core": "6.5.10",
  542. "@pixi/utils": "6.5.10"
  543. }
  544. },
  545. "node_modules/@pixi/math": {
  546. "version": "6.5.10",
  547. "resolved": "https://registry.npmjs.org/@pixi/math/-/math-6.5.10.tgz",
  548. "integrity": "sha512-fxeu7ykVbMGxGV2S3qRTupHToeo1hdWBm8ihyURn3BMqJZe2SkZEECPd5RyvIuuNUtjRnmhkZRnF3Jsz2S+L0g==",
  549. "license": "MIT"
  550. },
  551. "node_modules/@pixi/mesh": {
  552. "version": "6.5.10",
  553. "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-6.5.10.tgz",
  554. "integrity": "sha512-tUNPsdp5/t/yRsCmfxIcufIfbQVzgAlMNgQ1igWOkSxzhB7vlEbZ8ZLLW5tQcNyM/r7Nhjz+RoB+RD+/BCtvlA==",
  555. "license": "MIT",
  556. "peerDependencies": {
  557. "@pixi/constants": "6.5.10",
  558. "@pixi/core": "6.5.10",
  559. "@pixi/display": "6.5.10",
  560. "@pixi/math": "6.5.10",
  561. "@pixi/settings": "6.5.10",
  562. "@pixi/utils": "6.5.10"
  563. }
  564. },
  565. "node_modules/@pixi/mesh-extras": {
  566. "version": "6.5.10",
  567. "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-6.5.10.tgz",
  568. "integrity": "sha512-UCG7OOPPFeikrX09haCibCMR0jPQ4UJ+4HiYiAv/3dahq5eEzBx+yAwVtxcVCjonkTf/lu5SzmHdzpsbHLx5aw==",
  569. "license": "MIT",
  570. "peerDependencies": {
  571. "@pixi/constants": "6.5.10",
  572. "@pixi/core": "6.5.10",
  573. "@pixi/math": "6.5.10",
  574. "@pixi/mesh": "6.5.10",
  575. "@pixi/utils": "6.5.10"
  576. }
  577. },
  578. "node_modules/@pixi/mixin-cache-as-bitmap": {
  579. "version": "6.5.10",
  580. "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-6.5.10.tgz",
  581. "integrity": "sha512-HV4qPZt8R7uuPZf1XE5S0e3jbN4+/EqgAIkueIyK3Em+0IO1rCmIbzzYxFPxkElMUu5VvN1r4hXK846z9ITnhw==",
  582. "license": "MIT",
  583. "peerDependencies": {
  584. "@pixi/constants": "6.5.10",
  585. "@pixi/core": "6.5.10",
  586. "@pixi/display": "6.5.10",
  587. "@pixi/math": "6.5.10",
  588. "@pixi/settings": "6.5.10",
  589. "@pixi/sprite": "6.5.10",
  590. "@pixi/utils": "6.5.10"
  591. }
  592. },
  593. "node_modules/@pixi/mixin-get-child-by-name": {
  594. "version": "6.5.10",
  595. "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-6.5.10.tgz",
  596. "integrity": "sha512-YYd9wjnI/4aKY0H5Ij413UppVZn3YE1No2CZrNevV6WbhylsJucowY3hJihtl9mxkpwtaUIyWMjmphkbOinbzA==",
  597. "license": "MIT",
  598. "peerDependencies": {
  599. "@pixi/display": "6.5.10"
  600. }
  601. },
  602. "node_modules/@pixi/mixin-get-global-position": {
  603. "version": "6.5.10",
  604. "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-6.5.10.tgz",
  605. "integrity": "sha512-A83gTZP9CdQAyrAvOZl1P707Q0QvIC0V8UnBAMd4GxuhMOXJtXVPCdmfPVXUrfoywgnH+/Bgimq5xhsXTf8Hzg==",
  606. "license": "MIT",
  607. "peerDependencies": {
  608. "@pixi/display": "6.5.10",
  609. "@pixi/math": "6.5.10"
  610. }
  611. },
  612. "node_modules/@pixi/particle-container": {
  613. "version": "6.5.10",
  614. "resolved": "https://registry.npmjs.org/@pixi/particle-container/-/particle-container-6.5.10.tgz",
  615. "integrity": "sha512-CCNAdYGzKoOc3FtK2kyWCNjygdHppeOEqqK189yhg3yRSsvby+HMms/cM6bLK/4Vf6mFoAy1na3w/oXpqTR2Ag==",
  616. "license": "MIT",
  617. "peerDependencies": {
  618. "@pixi/constants": "6.5.10",
  619. "@pixi/core": "6.5.10",
  620. "@pixi/display": "6.5.10",
  621. "@pixi/math": "6.5.10",
  622. "@pixi/sprite": "6.5.10",
  623. "@pixi/utils": "6.5.10"
  624. }
  625. },
  626. "node_modules/@pixi/polyfill": {
  627. "version": "6.5.10",
  628. "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-6.5.10.tgz",
  629. "integrity": "sha512-KDTWyr285VvPM8GGTVIZAhmxGrOlTznUGK/9kWS3GtrogwLWn41S/86Yej1gYvotVyUomCcOok33Jzahb+vX1w==",
  630. "license": "MIT",
  631. "dependencies": {
  632. "object-assign": "^4.1.1",
  633. "promise-polyfill": "^8.2.0"
  634. }
  635. },
  636. "node_modules/@pixi/prepare": {
  637. "version": "6.5.10",
  638. "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-6.5.10.tgz",
  639. "integrity": "sha512-PHMApz/GPg7IX/7+2S98criN2+Mp+fgiKpojV9cnl0SlW2zMxfAHBBi8zik9rHBgjx8X6d6bR0MG1rPtb6vSxQ==",
  640. "license": "MIT",
  641. "peerDependencies": {
  642. "@pixi/core": "6.5.10",
  643. "@pixi/display": "6.5.10",
  644. "@pixi/graphics": "6.5.10",
  645. "@pixi/settings": "6.5.10",
  646. "@pixi/text": "6.5.10",
  647. "@pixi/ticker": "6.5.10",
  648. "@pixi/utils": "6.5.10"
  649. }
  650. },
  651. "node_modules/@pixi/runner": {
  652. "version": "6.5.10",
  653. "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-6.5.10.tgz",
  654. "integrity": "sha512-4HiHp6diCmigJT/DSbnqQP62OfWKmZB7zPWMdV1AEdr4YT1QxzXAW1wHg7dkoEfyTHqZKl0tm/zcqKq/iH7tMA==",
  655. "license": "MIT"
  656. },
  657. "node_modules/@pixi/settings": {
  658. "version": "6.5.10",
  659. "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-6.5.10.tgz",
  660. "integrity": "sha512-ypAS5L7pQ2Qb88yQK72bXtc7sD8OrtLWNXdZ/gnw5kwSWCFaOSoqhKqJCXrR5DQtN98+RQefwbEAmMvqobhFyw==",
  661. "license": "MIT",
  662. "peerDependencies": {
  663. "@pixi/constants": "6.5.10"
  664. }
  665. },
  666. "node_modules/@pixi/sprite": {
  667. "version": "6.5.10",
  668. "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-6.5.10.tgz",
  669. "integrity": "sha512-UiK+8LgM9XQ/SBDKjRgZ8WggdOSlFRXqiWjEZVmNkiyU8HvXeFzWPRhpc8RR1zDwAUhZWKtMhF8X/ba9m+z2lg==",
  670. "license": "MIT",
  671. "peerDependencies": {
  672. "@pixi/constants": "6.5.10",
  673. "@pixi/core": "6.5.10",
  674. "@pixi/display": "6.5.10",
  675. "@pixi/math": "6.5.10",
  676. "@pixi/settings": "6.5.10",
  677. "@pixi/utils": "6.5.10"
  678. }
  679. },
  680. "node_modules/@pixi/sprite-animated": {
  681. "version": "6.5.10",
  682. "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-6.5.10.tgz",
  683. "integrity": "sha512-x1kayucAqpVbNk+j+diC/7sQGQsAl6NCH1J2/EEaiQjlV3GOx1MXS9Tft1N1Y1y7otbg1XsnBd60/Yzcp05pxA==",
  684. "license": "MIT",
  685. "peerDependencies": {
  686. "@pixi/core": "6.5.10",
  687. "@pixi/sprite": "6.5.10",
  688. "@pixi/ticker": "6.5.10"
  689. }
  690. },
  691. "node_modules/@pixi/sprite-tiling": {
  692. "version": "6.5.10",
  693. "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-6.5.10.tgz",
  694. "integrity": "sha512-lDFcPuwExrdJhli+WmjPivChjeCG6NiRl36iQ8n2zVi/MYVv9qfKCA6IdU7HBWk1AZdsg6KUTpwfmVLUI+qz3w==",
  695. "license": "MIT",
  696. "peerDependencies": {
  697. "@pixi/constants": "6.5.10",
  698. "@pixi/core": "6.5.10",
  699. "@pixi/display": "6.5.10",
  700. "@pixi/math": "6.5.10",
  701. "@pixi/sprite": "6.5.10",
  702. "@pixi/utils": "6.5.10"
  703. }
  704. },
  705. "node_modules/@pixi/spritesheet": {
  706. "version": "6.5.10",
  707. "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-6.5.10.tgz",
  708. "integrity": "sha512-7uOZ1cYyYtPb0ZEgXV1SZ8ujtluZNY0TL5z3+Qc8cgGGZK/MaWG7N6Wf+uR4BR2x8FLNwcyN5IjbQDKCpblrmg==",
  709. "license": "MIT",
  710. "peerDependencies": {
  711. "@pixi/core": "6.5.10",
  712. "@pixi/loaders": "6.5.10",
  713. "@pixi/math": "6.5.10",
  714. "@pixi/utils": "6.5.10"
  715. }
  716. },
  717. "node_modules/@pixi/text": {
  718. "version": "6.5.10",
  719. "resolved": "https://registry.npmjs.org/@pixi/text/-/text-6.5.10.tgz",
  720. "integrity": "sha512-ikwkonLJ+6QmEVW8Ji9fS5CjrKNbU4mHzYuwRQas/VJQuSWgd0myCcaw6ZbF1oSfQe70HgbNOR0sH8Q3Com0qg==",
  721. "license": "MIT",
  722. "peerDependencies": {
  723. "@pixi/core": "6.5.10",
  724. "@pixi/math": "6.5.10",
  725. "@pixi/settings": "6.5.10",
  726. "@pixi/sprite": "6.5.10",
  727. "@pixi/utils": "6.5.10"
  728. }
  729. },
  730. "node_modules/@pixi/text-bitmap": {
  731. "version": "6.5.10",
  732. "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-6.5.10.tgz",
  733. "integrity": "sha512-g/iFIMGp6Pfi0BvX6Ykp48Z6JXVgKOrc7UCIR9CM21wYcCiQGqtdFwstV236xk6/D8NToUtSOcifhtQ28dVTdQ==",
  734. "license": "MIT",
  735. "peerDependencies": {
  736. "@pixi/constants": "6.5.10",
  737. "@pixi/core": "6.5.10",
  738. "@pixi/display": "6.5.10",
  739. "@pixi/loaders": "6.5.10",
  740. "@pixi/math": "6.5.10",
  741. "@pixi/mesh": "6.5.10",
  742. "@pixi/settings": "6.5.10",
  743. "@pixi/text": "6.5.10",
  744. "@pixi/utils": "6.5.10"
  745. }
  746. },
  747. "node_modules/@pixi/ticker": {
  748. "version": "6.5.10",
  749. "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-6.5.10.tgz",
  750. "integrity": "sha512-UqX1XYtzqFSirmTOy8QAK4Ccg4KkIZztrBdRPKwFSOEiKAJoGDCSBmyQBo/9aYQKGObbNnrJ7Hxv3/ucg3/1GA==",
  751. "license": "MIT",
  752. "peerDependencies": {
  753. "@pixi/extensions": "6.5.10",
  754. "@pixi/settings": "6.5.10"
  755. }
  756. },
  757. "node_modules/@pixi/utils": {
  758. "version": "6.5.10",
  759. "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-6.5.10.tgz",
  760. "integrity": "sha512-4f4qDMmAz9IoSAe08G2LAxUcEtG9jSdudfsMQT2MG+OpfToirboE6cNoO0KnLCvLzDVE/mfisiQ9uJbVA9Ssdw==",
  761. "license": "MIT",
  762. "dependencies": {
  763. "@types/earcut": "^2.1.0",
  764. "earcut": "^2.2.4",
  765. "eventemitter3": "^3.1.0",
  766. "url": "^0.11.0"
  767. },
  768. "peerDependencies": {
  769. "@pixi/constants": "6.5.10",
  770. "@pixi/settings": "6.5.10"
  771. }
  772. },
  773. "node_modules/@remix-run/router": {
  774. "version": "1.23.2",
  775. "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.2.tgz",
  776. "integrity": "sha512-Ic6m2U/rMjTkhERIa/0ZtXJP17QUi2CbWE7cqx4J58M8aA3QTfW+2UlQ4psvTX9IO1RfNVhK3pcpdjej7L+t2w==",
  777. "license": "MIT",
  778. "engines": {
  779. "node": ">=14.0.0"
  780. }
  781. },
  782. "node_modules/@rolldown/pluginutils": {
  783. "version": "1.0.0-beta.27",
  784. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
  785. "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
  786. "dev": true,
  787. "license": "MIT"
  788. },
  789. "node_modules/@rollup/rollup-win32-x64-gnu": {
  790. "version": "4.59.0",
  791. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
  792. "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
  793. "cpu": [
  794. "x64"
  795. ],
  796. "dev": true,
  797. "license": "MIT",
  798. "optional": true,
  799. "os": [
  800. "win32"
  801. ]
  802. },
  803. "node_modules/@rollup/rollup-win32-x64-msvc": {
  804. "version": "4.59.0",
  805. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
  806. "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
  807. "cpu": [
  808. "x64"
  809. ],
  810. "dev": true,
  811. "license": "MIT",
  812. "optional": true,
  813. "os": [
  814. "win32"
  815. ]
  816. },
  817. "node_modules/@types/babel__core": {
  818. "version": "7.20.5",
  819. "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
  820. "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
  821. "dev": true,
  822. "license": "MIT",
  823. "dependencies": {
  824. "@babel/parser": "^7.20.7",
  825. "@babel/types": "^7.20.7",
  826. "@types/babel__generator": "*",
  827. "@types/babel__template": "*",
  828. "@types/babel__traverse": "*"
  829. }
  830. },
  831. "node_modules/@types/babel__generator": {
  832. "version": "7.27.0",
  833. "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
  834. "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
  835. "dev": true,
  836. "license": "MIT",
  837. "dependencies": {
  838. "@babel/types": "^7.0.0"
  839. }
  840. },
  841. "node_modules/@types/babel__template": {
  842. "version": "7.4.4",
  843. "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
  844. "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
  845. "dev": true,
  846. "license": "MIT",
  847. "dependencies": {
  848. "@babel/parser": "^7.1.0",
  849. "@babel/types": "^7.0.0"
  850. }
  851. },
  852. "node_modules/@types/babel__traverse": {
  853. "version": "7.28.0",
  854. "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
  855. "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
  856. "dev": true,
  857. "license": "MIT",
  858. "dependencies": {
  859. "@babel/types": "^7.28.2"
  860. }
  861. },
  862. "node_modules/@types/debug": {
  863. "version": "4.1.13",
  864. "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
  865. "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
  866. "license": "MIT",
  867. "dependencies": {
  868. "@types/ms": "*"
  869. }
  870. },
  871. "node_modules/@types/earcut": {
  872. "version": "2.1.4",
  873. "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-2.1.4.tgz",
  874. "integrity": "sha512-qp3m9PPz4gULB9MhjGID7wpo3gJ4bTGXm7ltNDsmOvsPduTeHp8wSW9YckBj3mljeOh4F0m2z/0JKAALRKbmLQ==",
  875. "license": "MIT"
  876. },
  877. "node_modules/@types/estree": {
  878. "version": "1.0.8",
  879. "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
  880. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  881. "license": "MIT"
  882. },
  883. "node_modules/@types/estree-jsx": {
  884. "version": "1.0.5",
  885. "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
  886. "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
  887. "license": "MIT",
  888. "dependencies": {
  889. "@types/estree": "*"
  890. }
  891. },
  892. "node_modules/@types/hast": {
  893. "version": "3.0.4",
  894. "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
  895. "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
  896. "license": "MIT",
  897. "dependencies": {
  898. "@types/unist": "*"
  899. }
  900. },
  901. "node_modules/@types/katex": {
  902. "version": "0.16.8",
  903. "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.8.tgz",
  904. "integrity": "sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==",
  905. "license": "MIT"
  906. },
  907. "node_modules/@types/mdast": {
  908. "version": "4.0.4",
  909. "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
  910. "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
  911. "license": "MIT",
  912. "dependencies": {
  913. "@types/unist": "*"
  914. }
  915. },
  916. "node_modules/@types/ms": {
  917. "version": "2.1.0",
  918. "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
  919. "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
  920. "license": "MIT"
  921. },
  922. "node_modules/@types/offscreencanvas": {
  923. "version": "2019.7.3",
  924. "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz",
  925. "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==",
  926. "license": "MIT"
  927. },
  928. "node_modules/@types/react": {
  929. "version": "19.2.14",
  930. "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
  931. "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
  932. "license": "MIT",
  933. "dependencies": {
  934. "csstype": "^3.2.2"
  935. }
  936. },
  937. "node_modules/@types/react-dom": {
  938. "version": "19.2.3",
  939. "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
  940. "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
  941. "dev": true,
  942. "license": "MIT",
  943. "peerDependencies": {
  944. "@types/react": "^19.2.0"
  945. }
  946. },
  947. "node_modules/@types/unist": {
  948. "version": "3.0.3",
  949. "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
  950. "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
  951. "license": "MIT"
  952. },
  953. "node_modules/@ungap/structured-clone": {
  954. "version": "1.3.0",
  955. "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
  956. "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
  957. "license": "ISC"
  958. },
  959. "node_modules/@vitejs/plugin-react": {
  960. "version": "4.7.0",
  961. "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
  962. "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
  963. "dev": true,
  964. "license": "MIT",
  965. "dependencies": {
  966. "@babel/core": "^7.28.0",
  967. "@babel/plugin-transform-react-jsx-self": "^7.27.1",
  968. "@babel/plugin-transform-react-jsx-source": "^7.27.1",
  969. "@rolldown/pluginutils": "1.0.0-beta.27",
  970. "@types/babel__core": "^7.20.5",
  971. "react-refresh": "^0.17.0"
  972. },
  973. "engines": {
  974. "node": "^14.18.0 || >=16.0.0"
  975. },
  976. "peerDependencies": {
  977. "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
  978. }
  979. },
  980. "node_modules/array-union": {
  981. "version": "1.0.2",
  982. "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
  983. "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==",
  984. "license": "MIT",
  985. "dependencies": {
  986. "array-uniq": "^1.0.1"
  987. },
  988. "engines": {
  989. "node": ">=0.10.0"
  990. }
  991. },
  992. "node_modules/array-uniq": {
  993. "version": "1.0.3",
  994. "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
  995. "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==",
  996. "license": "MIT",
  997. "engines": {
  998. "node": ">=0.10.0"
  999. }
  1000. },
  1001. "node_modules/async": {
  1002. "version": "2.6.4",
  1003. "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
  1004. "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
  1005. "license": "MIT",
  1006. "dependencies": {
  1007. "lodash": "^4.17.14"
  1008. }
  1009. },
  1010. "node_modules/bail": {
  1011. "version": "2.0.2",
  1012. "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
  1013. "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
  1014. "license": "MIT",
  1015. "funding": {
  1016. "type": "github",
  1017. "url": "https://github.com/sponsors/wooorm"
  1018. }
  1019. },
  1020. "node_modules/balanced-match": {
  1021. "version": "1.0.2",
  1022. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  1023. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1024. "license": "MIT"
  1025. },
  1026. "node_modules/baseline-browser-mapping": {
  1027. "version": "2.10.8",
  1028. "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.8.tgz",
  1029. "integrity": "sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==",
  1030. "dev": true,
  1031. "license": "Apache-2.0",
  1032. "bin": {
  1033. "baseline-browser-mapping": "dist/cli.cjs"
  1034. },
  1035. "engines": {
  1036. "node": ">=6.0.0"
  1037. }
  1038. },
  1039. "node_modules/brace-expansion": {
  1040. "version": "1.1.12",
  1041. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
  1042. "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
  1043. "license": "MIT",
  1044. "dependencies": {
  1045. "balanced-match": "^1.0.0",
  1046. "concat-map": "0.0.1"
  1047. }
  1048. },
  1049. "node_modules/browserslist": {
  1050. "version": "4.28.1",
  1051. "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
  1052. "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
  1053. "dev": true,
  1054. "funding": [
  1055. {
  1056. "type": "opencollective",
  1057. "url": "https://opencollective.com/browserslist"
  1058. },
  1059. {
  1060. "type": "tidelift",
  1061. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1062. },
  1063. {
  1064. "type": "github",
  1065. "url": "https://github.com/sponsors/ai"
  1066. }
  1067. ],
  1068. "license": "MIT",
  1069. "dependencies": {
  1070. "baseline-browser-mapping": "^2.9.0",
  1071. "caniuse-lite": "^1.0.30001759",
  1072. "electron-to-chromium": "^1.5.263",
  1073. "node-releases": "^2.0.27",
  1074. "update-browserslist-db": "^1.2.0"
  1075. },
  1076. "bin": {
  1077. "browserslist": "cli.js"
  1078. },
  1079. "engines": {
  1080. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1081. }
  1082. },
  1083. "node_modules/call-bind-apply-helpers": {
  1084. "version": "1.0.2",
  1085. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1086. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1087. "license": "MIT",
  1088. "dependencies": {
  1089. "es-errors": "^1.3.0",
  1090. "function-bind": "^1.1.2"
  1091. },
  1092. "engines": {
  1093. "node": ">= 0.4"
  1094. }
  1095. },
  1096. "node_modules/call-bound": {
  1097. "version": "1.0.4",
  1098. "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
  1099. "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
  1100. "license": "MIT",
  1101. "dependencies": {
  1102. "call-bind-apply-helpers": "^1.0.2",
  1103. "get-intrinsic": "^1.3.0"
  1104. },
  1105. "engines": {
  1106. "node": ">= 0.4"
  1107. },
  1108. "funding": {
  1109. "url": "https://github.com/sponsors/ljharb"
  1110. }
  1111. },
  1112. "node_modules/caniuse-lite": {
  1113. "version": "1.0.30001779",
  1114. "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001779.tgz",
  1115. "integrity": "sha512-U5og2PN7V4DMgF50YPNtnZJGWVLFjjsN3zb6uMT5VGYIewieDj1upwfuVNXf4Kor+89c3iCRJnSzMD5LmTvsfA==",
  1116. "dev": true,
  1117. "funding": [
  1118. {
  1119. "type": "opencollective",
  1120. "url": "https://opencollective.com/browserslist"
  1121. },
  1122. {
  1123. "type": "tidelift",
  1124. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1125. },
  1126. {
  1127. "type": "github",
  1128. "url": "https://github.com/sponsors/ai"
  1129. }
  1130. ],
  1131. "license": "CC-BY-4.0"
  1132. },
  1133. "node_modules/ccount": {
  1134. "version": "2.0.1",
  1135. "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
  1136. "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
  1137. "license": "MIT",
  1138. "funding": {
  1139. "type": "github",
  1140. "url": "https://github.com/sponsors/wooorm"
  1141. }
  1142. },
  1143. "node_modules/character-entities": {
  1144. "version": "2.0.2",
  1145. "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
  1146. "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
  1147. "license": "MIT",
  1148. "funding": {
  1149. "type": "github",
  1150. "url": "https://github.com/sponsors/wooorm"
  1151. }
  1152. },
  1153. "node_modules/character-entities-html4": {
  1154. "version": "2.1.0",
  1155. "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
  1156. "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
  1157. "license": "MIT",
  1158. "funding": {
  1159. "type": "github",
  1160. "url": "https://github.com/sponsors/wooorm"
  1161. }
  1162. },
  1163. "node_modules/character-entities-legacy": {
  1164. "version": "3.0.0",
  1165. "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
  1166. "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
  1167. "license": "MIT",
  1168. "funding": {
  1169. "type": "github",
  1170. "url": "https://github.com/sponsors/wooorm"
  1171. }
  1172. },
  1173. "node_modules/character-reference-invalid": {
  1174. "version": "2.0.1",
  1175. "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
  1176. "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
  1177. "license": "MIT",
  1178. "funding": {
  1179. "type": "github",
  1180. "url": "https://github.com/sponsors/wooorm"
  1181. }
  1182. },
  1183. "node_modules/comma-separated-tokens": {
  1184. "version": "2.0.3",
  1185. "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
  1186. "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
  1187. "license": "MIT",
  1188. "funding": {
  1189. "type": "github",
  1190. "url": "https://github.com/sponsors/wooorm"
  1191. }
  1192. },
  1193. "node_modules/commander": {
  1194. "version": "2.20.3",
  1195. "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
  1196. "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
  1197. "license": "MIT"
  1198. },
  1199. "node_modules/commondir": {
  1200. "version": "1.0.1",
  1201. "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
  1202. "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
  1203. "license": "MIT"
  1204. },
  1205. "node_modules/concat-map": {
  1206. "version": "0.0.1",
  1207. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  1208. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  1209. "license": "MIT"
  1210. },
  1211. "node_modules/convert-source-map": {
  1212. "version": "2.0.0",
  1213. "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
  1214. "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
  1215. "dev": true,
  1216. "license": "MIT"
  1217. },
  1218. "node_modules/cose-base": {
  1219. "version": "1.0.3",
  1220. "resolved": "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz",
  1221. "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==",
  1222. "license": "MIT",
  1223. "dependencies": {
  1224. "layout-base": "^1.0.0"
  1225. }
  1226. },
  1227. "node_modules/csstype": {
  1228. "version": "3.2.3",
  1229. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1230. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1231. "license": "MIT"
  1232. },
  1233. "node_modules/cytoscape": {
  1234. "version": "3.33.2",
  1235. "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.33.2.tgz",
  1236. "integrity": "sha512-sj4HXd3DokGhzZAdjDejGvTPLqlt84vNFN8m7bGsOzDY5DyVcxIb2ejIXat2Iy7HxWhdT/N1oKyheJ5YdpsGuw==",
  1237. "license": "MIT",
  1238. "engines": {
  1239. "node": ">=0.10"
  1240. }
  1241. },
  1242. "node_modules/cytoscape-cose-bilkent": {
  1243. "version": "4.1.0",
  1244. "resolved": "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz",
  1245. "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==",
  1246. "license": "MIT",
  1247. "dependencies": {
  1248. "cose-base": "^1.0.0"
  1249. },
  1250. "peerDependencies": {
  1251. "cytoscape": "^3.2.0"
  1252. }
  1253. },
  1254. "node_modules/debug": {
  1255. "version": "4.4.3",
  1256. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  1257. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1258. "license": "MIT",
  1259. "dependencies": {
  1260. "ms": "^2.1.3"
  1261. },
  1262. "engines": {
  1263. "node": ">=6.0"
  1264. },
  1265. "peerDependenciesMeta": {
  1266. "supports-color": {
  1267. "optional": true
  1268. }
  1269. }
  1270. },
  1271. "node_modules/decode-named-character-reference": {
  1272. "version": "1.3.0",
  1273. "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
  1274. "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
  1275. "license": "MIT",
  1276. "dependencies": {
  1277. "character-entities": "^2.0.0"
  1278. },
  1279. "funding": {
  1280. "type": "github",
  1281. "url": "https://github.com/sponsors/wooorm"
  1282. }
  1283. },
  1284. "node_modules/dequal": {
  1285. "version": "2.0.3",
  1286. "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
  1287. "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
  1288. "license": "MIT",
  1289. "engines": {
  1290. "node": ">=6"
  1291. }
  1292. },
  1293. "node_modules/devlop": {
  1294. "version": "1.1.0",
  1295. "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
  1296. "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
  1297. "license": "MIT",
  1298. "dependencies": {
  1299. "dequal": "^2.0.0"
  1300. },
  1301. "funding": {
  1302. "type": "github",
  1303. "url": "https://github.com/sponsors/wooorm"
  1304. }
  1305. },
  1306. "node_modules/dunder-proto": {
  1307. "version": "1.0.1",
  1308. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1309. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1310. "license": "MIT",
  1311. "dependencies": {
  1312. "call-bind-apply-helpers": "^1.0.1",
  1313. "es-errors": "^1.3.0",
  1314. "gopd": "^1.2.0"
  1315. },
  1316. "engines": {
  1317. "node": ">= 0.4"
  1318. }
  1319. },
  1320. "node_modules/earcut": {
  1321. "version": "2.2.4",
  1322. "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz",
  1323. "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==",
  1324. "license": "ISC"
  1325. },
  1326. "node_modules/electron-to-chromium": {
  1327. "version": "1.5.313",
  1328. "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.313.tgz",
  1329. "integrity": "sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==",
  1330. "dev": true,
  1331. "license": "ISC"
  1332. },
  1333. "node_modules/email-addresses": {
  1334. "version": "3.1.0",
  1335. "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-3.1.0.tgz",
  1336. "integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==",
  1337. "license": "MIT"
  1338. },
  1339. "node_modules/entities": {
  1340. "version": "6.0.1",
  1341. "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
  1342. "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
  1343. "license": "BSD-2-Clause",
  1344. "engines": {
  1345. "node": ">=0.12"
  1346. },
  1347. "funding": {
  1348. "url": "https://github.com/fb55/entities?sponsor=1"
  1349. }
  1350. },
  1351. "node_modules/es-define-property": {
  1352. "version": "1.0.1",
  1353. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  1354. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1355. "license": "MIT",
  1356. "engines": {
  1357. "node": ">= 0.4"
  1358. }
  1359. },
  1360. "node_modules/es-errors": {
  1361. "version": "1.3.0",
  1362. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  1363. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1364. "license": "MIT",
  1365. "engines": {
  1366. "node": ">= 0.4"
  1367. }
  1368. },
  1369. "node_modules/es-object-atoms": {
  1370. "version": "1.1.1",
  1371. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1372. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1373. "license": "MIT",
  1374. "dependencies": {
  1375. "es-errors": "^1.3.0"
  1376. },
  1377. "engines": {
  1378. "node": ">= 0.4"
  1379. }
  1380. },
  1381. "node_modules/esbuild": {
  1382. "version": "0.25.12",
  1383. "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
  1384. "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
  1385. "dev": true,
  1386. "hasInstallScript": true,
  1387. "license": "MIT",
  1388. "bin": {
  1389. "esbuild": "bin/esbuild"
  1390. },
  1391. "engines": {
  1392. "node": ">=18"
  1393. },
  1394. "optionalDependencies": {
  1395. "@esbuild/aix-ppc64": "0.25.12",
  1396. "@esbuild/android-arm": "0.25.12",
  1397. "@esbuild/android-arm64": "0.25.12",
  1398. "@esbuild/android-x64": "0.25.12",
  1399. "@esbuild/darwin-arm64": "0.25.12",
  1400. "@esbuild/darwin-x64": "0.25.12",
  1401. "@esbuild/freebsd-arm64": "0.25.12",
  1402. "@esbuild/freebsd-x64": "0.25.12",
  1403. "@esbuild/linux-arm": "0.25.12",
  1404. "@esbuild/linux-arm64": "0.25.12",
  1405. "@esbuild/linux-ia32": "0.25.12",
  1406. "@esbuild/linux-loong64": "0.25.12",
  1407. "@esbuild/linux-mips64el": "0.25.12",
  1408. "@esbuild/linux-ppc64": "0.25.12",
  1409. "@esbuild/linux-riscv64": "0.25.12",
  1410. "@esbuild/linux-s390x": "0.25.12",
  1411. "@esbuild/linux-x64": "0.25.12",
  1412. "@esbuild/netbsd-arm64": "0.25.12",
  1413. "@esbuild/netbsd-x64": "0.25.12",
  1414. "@esbuild/openbsd-arm64": "0.25.12",
  1415. "@esbuild/openbsd-x64": "0.25.12",
  1416. "@esbuild/openharmony-arm64": "0.25.12",
  1417. "@esbuild/sunos-x64": "0.25.12",
  1418. "@esbuild/win32-arm64": "0.25.12",
  1419. "@esbuild/win32-ia32": "0.25.12",
  1420. "@esbuild/win32-x64": "0.25.12"
  1421. }
  1422. },
  1423. "node_modules/escalade": {
  1424. "version": "3.2.0",
  1425. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  1426. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  1427. "dev": true,
  1428. "license": "MIT",
  1429. "engines": {
  1430. "node": ">=6"
  1431. }
  1432. },
  1433. "node_modules/escape-string-regexp": {
  1434. "version": "1.0.5",
  1435. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
  1436. "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
  1437. "license": "MIT",
  1438. "engines": {
  1439. "node": ">=0.8.0"
  1440. }
  1441. },
  1442. "node_modules/estree-util-is-identifier-name": {
  1443. "version": "3.0.0",
  1444. "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
  1445. "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
  1446. "license": "MIT",
  1447. "funding": {
  1448. "type": "opencollective",
  1449. "url": "https://opencollective.com/unified"
  1450. }
  1451. },
  1452. "node_modules/eventemitter3": {
  1453. "version": "3.1.2",
  1454. "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz",
  1455. "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==",
  1456. "license": "MIT"
  1457. },
  1458. "node_modules/extend": {
  1459. "version": "3.0.2",
  1460. "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
  1461. "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
  1462. "license": "MIT"
  1463. },
  1464. "node_modules/fdir": {
  1465. "version": "6.5.0",
  1466. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1467. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1468. "dev": true,
  1469. "license": "MIT",
  1470. "engines": {
  1471. "node": ">=12.0.0"
  1472. },
  1473. "peerDependencies": {
  1474. "picomatch": "^3 || ^4"
  1475. },
  1476. "peerDependenciesMeta": {
  1477. "picomatch": {
  1478. "optional": true
  1479. }
  1480. }
  1481. },
  1482. "node_modules/filename-reserved-regex": {
  1483. "version": "2.0.0",
  1484. "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
  1485. "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==",
  1486. "license": "MIT",
  1487. "engines": {
  1488. "node": ">=4"
  1489. }
  1490. },
  1491. "node_modules/filenamify": {
  1492. "version": "4.3.0",
  1493. "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz",
  1494. "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==",
  1495. "license": "MIT",
  1496. "dependencies": {
  1497. "filename-reserved-regex": "^2.0.0",
  1498. "strip-outer": "^1.0.1",
  1499. "trim-repeated": "^1.0.0"
  1500. },
  1501. "engines": {
  1502. "node": ">=8"
  1503. },
  1504. "funding": {
  1505. "url": "https://github.com/sponsors/sindresorhus"
  1506. }
  1507. },
  1508. "node_modules/find-cache-dir": {
  1509. "version": "3.3.2",
  1510. "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
  1511. "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
  1512. "license": "MIT",
  1513. "dependencies": {
  1514. "commondir": "^1.0.1",
  1515. "make-dir": "^3.0.2",
  1516. "pkg-dir": "^4.1.0"
  1517. },
  1518. "engines": {
  1519. "node": ">=8"
  1520. },
  1521. "funding": {
  1522. "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
  1523. }
  1524. },
  1525. "node_modules/find-up": {
  1526. "version": "4.1.0",
  1527. "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
  1528. "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
  1529. "license": "MIT",
  1530. "dependencies": {
  1531. "locate-path": "^5.0.0",
  1532. "path-exists": "^4.0.0"
  1533. },
  1534. "engines": {
  1535. "node": ">=8"
  1536. }
  1537. },
  1538. "node_modules/fs-extra": {
  1539. "version": "8.1.0",
  1540. "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
  1541. "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
  1542. "license": "MIT",
  1543. "dependencies": {
  1544. "graceful-fs": "^4.2.0",
  1545. "jsonfile": "^4.0.0",
  1546. "universalify": "^0.1.0"
  1547. },
  1548. "engines": {
  1549. "node": ">=6 <7 || >=8"
  1550. }
  1551. },
  1552. "node_modules/fs.realpath": {
  1553. "version": "1.0.0",
  1554. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  1555. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
  1556. "license": "ISC"
  1557. },
  1558. "node_modules/function-bind": {
  1559. "version": "1.1.2",
  1560. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1561. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1562. "license": "MIT",
  1563. "funding": {
  1564. "url": "https://github.com/sponsors/ljharb"
  1565. }
  1566. },
  1567. "node_modules/gensync": {
  1568. "version": "1.0.0-beta.2",
  1569. "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
  1570. "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
  1571. "dev": true,
  1572. "license": "MIT",
  1573. "engines": {
  1574. "node": ">=6.9.0"
  1575. }
  1576. },
  1577. "node_modules/get-intrinsic": {
  1578. "version": "1.3.0",
  1579. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1580. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1581. "license": "MIT",
  1582. "dependencies": {
  1583. "call-bind-apply-helpers": "^1.0.2",
  1584. "es-define-property": "^1.0.1",
  1585. "es-errors": "^1.3.0",
  1586. "es-object-atoms": "^1.1.1",
  1587. "function-bind": "^1.1.2",
  1588. "get-proto": "^1.0.1",
  1589. "gopd": "^1.2.0",
  1590. "has-symbols": "^1.1.0",
  1591. "hasown": "^2.0.2",
  1592. "math-intrinsics": "^1.1.0"
  1593. },
  1594. "engines": {
  1595. "node": ">= 0.4"
  1596. },
  1597. "funding": {
  1598. "url": "https://github.com/sponsors/ljharb"
  1599. }
  1600. },
  1601. "node_modules/get-proto": {
  1602. "version": "1.0.1",
  1603. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1604. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1605. "license": "MIT",
  1606. "dependencies": {
  1607. "dunder-proto": "^1.0.1",
  1608. "es-object-atoms": "^1.0.0"
  1609. },
  1610. "engines": {
  1611. "node": ">= 0.4"
  1612. }
  1613. },
  1614. "node_modules/gh-pages": {
  1615. "version": "4.0.0",
  1616. "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-4.0.0.tgz",
  1617. "integrity": "sha512-p8S0T3aGJc68MtwOcZusul5qPSNZCalap3NWbhRUZYu1YOdp+EjZ+4kPmRM8h3NNRdqw00yuevRjlkuSzCn7iQ==",
  1618. "license": "MIT",
  1619. "dependencies": {
  1620. "async": "^2.6.1",
  1621. "commander": "^2.18.0",
  1622. "email-addresses": "^3.0.1",
  1623. "filenamify": "^4.3.0",
  1624. "find-cache-dir": "^3.3.1",
  1625. "fs-extra": "^8.1.0",
  1626. "globby": "^6.1.0"
  1627. },
  1628. "bin": {
  1629. "gh-pages": "bin/gh-pages.js",
  1630. "gh-pages-clean": "bin/gh-pages-clean.js"
  1631. },
  1632. "engines": {
  1633. "node": ">=10"
  1634. }
  1635. },
  1636. "node_modules/glob": {
  1637. "version": "7.2.3",
  1638. "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
  1639. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  1640. "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
  1641. "license": "ISC",
  1642. "dependencies": {
  1643. "fs.realpath": "^1.0.0",
  1644. "inflight": "^1.0.4",
  1645. "inherits": "2",
  1646. "minimatch": "^3.1.1",
  1647. "once": "^1.3.0",
  1648. "path-is-absolute": "^1.0.0"
  1649. },
  1650. "engines": {
  1651. "node": "*"
  1652. },
  1653. "funding": {
  1654. "url": "https://github.com/sponsors/isaacs"
  1655. }
  1656. },
  1657. "node_modules/globby": {
  1658. "version": "6.1.0",
  1659. "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
  1660. "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==",
  1661. "license": "MIT",
  1662. "dependencies": {
  1663. "array-union": "^1.0.1",
  1664. "glob": "^7.0.3",
  1665. "object-assign": "^4.0.1",
  1666. "pify": "^2.0.0",
  1667. "pinkie-promise": "^2.0.0"
  1668. },
  1669. "engines": {
  1670. "node": ">=0.10.0"
  1671. }
  1672. },
  1673. "node_modules/gopd": {
  1674. "version": "1.2.0",
  1675. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1676. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1677. "license": "MIT",
  1678. "engines": {
  1679. "node": ">= 0.4"
  1680. },
  1681. "funding": {
  1682. "url": "https://github.com/sponsors/ljharb"
  1683. }
  1684. },
  1685. "node_modules/graceful-fs": {
  1686. "version": "4.2.11",
  1687. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  1688. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  1689. "license": "ISC"
  1690. },
  1691. "node_modules/has-symbols": {
  1692. "version": "1.1.0",
  1693. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1694. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1695. "license": "MIT",
  1696. "engines": {
  1697. "node": ">= 0.4"
  1698. },
  1699. "funding": {
  1700. "url": "https://github.com/sponsors/ljharb"
  1701. }
  1702. },
  1703. "node_modules/hasown": {
  1704. "version": "2.0.2",
  1705. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  1706. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1707. "license": "MIT",
  1708. "dependencies": {
  1709. "function-bind": "^1.1.2"
  1710. },
  1711. "engines": {
  1712. "node": ">= 0.4"
  1713. }
  1714. },
  1715. "node_modules/hast-util-from-dom": {
  1716. "version": "5.0.1",
  1717. "resolved": "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz",
  1718. "integrity": "sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==",
  1719. "license": "ISC",
  1720. "dependencies": {
  1721. "@types/hast": "^3.0.0",
  1722. "hastscript": "^9.0.0",
  1723. "web-namespaces": "^2.0.0"
  1724. },
  1725. "funding": {
  1726. "type": "opencollective",
  1727. "url": "https://opencollective.com/unified"
  1728. }
  1729. },
  1730. "node_modules/hast-util-from-html": {
  1731. "version": "2.0.3",
  1732. "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
  1733. "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
  1734. "license": "MIT",
  1735. "dependencies": {
  1736. "@types/hast": "^3.0.0",
  1737. "devlop": "^1.1.0",
  1738. "hast-util-from-parse5": "^8.0.0",
  1739. "parse5": "^7.0.0",
  1740. "vfile": "^6.0.0",
  1741. "vfile-message": "^4.0.0"
  1742. },
  1743. "funding": {
  1744. "type": "opencollective",
  1745. "url": "https://opencollective.com/unified"
  1746. }
  1747. },
  1748. "node_modules/hast-util-from-html-isomorphic": {
  1749. "version": "2.0.0",
  1750. "resolved": "https://registry.npmjs.org/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-2.0.0.tgz",
  1751. "integrity": "sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==",
  1752. "license": "MIT",
  1753. "dependencies": {
  1754. "@types/hast": "^3.0.0",
  1755. "hast-util-from-dom": "^5.0.0",
  1756. "hast-util-from-html": "^2.0.0",
  1757. "unist-util-remove-position": "^5.0.0"
  1758. },
  1759. "funding": {
  1760. "type": "opencollective",
  1761. "url": "https://opencollective.com/unified"
  1762. }
  1763. },
  1764. "node_modules/hast-util-from-parse5": {
  1765. "version": "8.0.3",
  1766. "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
  1767. "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
  1768. "license": "MIT",
  1769. "dependencies": {
  1770. "@types/hast": "^3.0.0",
  1771. "@types/unist": "^3.0.0",
  1772. "devlop": "^1.0.0",
  1773. "hastscript": "^9.0.0",
  1774. "property-information": "^7.0.0",
  1775. "vfile": "^6.0.0",
  1776. "vfile-location": "^5.0.0",
  1777. "web-namespaces": "^2.0.0"
  1778. },
  1779. "funding": {
  1780. "type": "opencollective",
  1781. "url": "https://opencollective.com/unified"
  1782. }
  1783. },
  1784. "node_modules/hast-util-is-element": {
  1785. "version": "3.0.0",
  1786. "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
  1787. "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
  1788. "license": "MIT",
  1789. "dependencies": {
  1790. "@types/hast": "^3.0.0"
  1791. },
  1792. "funding": {
  1793. "type": "opencollective",
  1794. "url": "https://opencollective.com/unified"
  1795. }
  1796. },
  1797. "node_modules/hast-util-parse-selector": {
  1798. "version": "4.0.0",
  1799. "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
  1800. "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
  1801. "license": "MIT",
  1802. "dependencies": {
  1803. "@types/hast": "^3.0.0"
  1804. },
  1805. "funding": {
  1806. "type": "opencollective",
  1807. "url": "https://opencollective.com/unified"
  1808. }
  1809. },
  1810. "node_modules/hast-util-to-jsx-runtime": {
  1811. "version": "2.3.6",
  1812. "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
  1813. "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
  1814. "license": "MIT",
  1815. "dependencies": {
  1816. "@types/estree": "^1.0.0",
  1817. "@types/hast": "^3.0.0",
  1818. "@types/unist": "^3.0.0",
  1819. "comma-separated-tokens": "^2.0.0",
  1820. "devlop": "^1.0.0",
  1821. "estree-util-is-identifier-name": "^3.0.0",
  1822. "hast-util-whitespace": "^3.0.0",
  1823. "mdast-util-mdx-expression": "^2.0.0",
  1824. "mdast-util-mdx-jsx": "^3.0.0",
  1825. "mdast-util-mdxjs-esm": "^2.0.0",
  1826. "property-information": "^7.0.0",
  1827. "space-separated-tokens": "^2.0.0",
  1828. "style-to-js": "^1.0.0",
  1829. "unist-util-position": "^5.0.0",
  1830. "vfile-message": "^4.0.0"
  1831. },
  1832. "funding": {
  1833. "type": "opencollective",
  1834. "url": "https://opencollective.com/unified"
  1835. }
  1836. },
  1837. "node_modules/hast-util-to-text": {
  1838. "version": "4.0.2",
  1839. "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
  1840. "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
  1841. "license": "MIT",
  1842. "dependencies": {
  1843. "@types/hast": "^3.0.0",
  1844. "@types/unist": "^3.0.0",
  1845. "hast-util-is-element": "^3.0.0",
  1846. "unist-util-find-after": "^5.0.0"
  1847. },
  1848. "funding": {
  1849. "type": "opencollective",
  1850. "url": "https://opencollective.com/unified"
  1851. }
  1852. },
  1853. "node_modules/hast-util-whitespace": {
  1854. "version": "3.0.0",
  1855. "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
  1856. "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
  1857. "license": "MIT",
  1858. "dependencies": {
  1859. "@types/hast": "^3.0.0"
  1860. },
  1861. "funding": {
  1862. "type": "opencollective",
  1863. "url": "https://opencollective.com/unified"
  1864. }
  1865. },
  1866. "node_modules/hastscript": {
  1867. "version": "9.0.1",
  1868. "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
  1869. "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
  1870. "license": "MIT",
  1871. "dependencies": {
  1872. "@types/hast": "^3.0.0",
  1873. "comma-separated-tokens": "^2.0.0",
  1874. "hast-util-parse-selector": "^4.0.0",
  1875. "property-information": "^7.0.0",
  1876. "space-separated-tokens": "^2.0.0"
  1877. },
  1878. "funding": {
  1879. "type": "opencollective",
  1880. "url": "https://opencollective.com/unified"
  1881. }
  1882. },
  1883. "node_modules/html-url-attributes": {
  1884. "version": "3.0.1",
  1885. "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
  1886. "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
  1887. "license": "MIT",
  1888. "funding": {
  1889. "type": "opencollective",
  1890. "url": "https://opencollective.com/unified"
  1891. }
  1892. },
  1893. "node_modules/inflight": {
  1894. "version": "1.0.6",
  1895. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  1896. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  1897. "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
  1898. "license": "ISC",
  1899. "dependencies": {
  1900. "once": "^1.3.0",
  1901. "wrappy": "1"
  1902. }
  1903. },
  1904. "node_modules/inherits": {
  1905. "version": "2.0.4",
  1906. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  1907. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  1908. "license": "ISC"
  1909. },
  1910. "node_modules/inline-style-parser": {
  1911. "version": "0.2.7",
  1912. "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
  1913. "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
  1914. "license": "MIT"
  1915. },
  1916. "node_modules/is-alphabetical": {
  1917. "version": "2.0.1",
  1918. "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
  1919. "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
  1920. "license": "MIT",
  1921. "funding": {
  1922. "type": "github",
  1923. "url": "https://github.com/sponsors/wooorm"
  1924. }
  1925. },
  1926. "node_modules/is-alphanumerical": {
  1927. "version": "2.0.1",
  1928. "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
  1929. "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
  1930. "license": "MIT",
  1931. "dependencies": {
  1932. "is-alphabetical": "^2.0.0",
  1933. "is-decimal": "^2.0.0"
  1934. },
  1935. "funding": {
  1936. "type": "github",
  1937. "url": "https://github.com/sponsors/wooorm"
  1938. }
  1939. },
  1940. "node_modules/is-decimal": {
  1941. "version": "2.0.1",
  1942. "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
  1943. "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
  1944. "license": "MIT",
  1945. "funding": {
  1946. "type": "github",
  1947. "url": "https://github.com/sponsors/wooorm"
  1948. }
  1949. },
  1950. "node_modules/is-hexadecimal": {
  1951. "version": "2.0.1",
  1952. "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
  1953. "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
  1954. "license": "MIT",
  1955. "funding": {
  1956. "type": "github",
  1957. "url": "https://github.com/sponsors/wooorm"
  1958. }
  1959. },
  1960. "node_modules/is-plain-obj": {
  1961. "version": "4.1.0",
  1962. "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
  1963. "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
  1964. "license": "MIT",
  1965. "engines": {
  1966. "node": ">=12"
  1967. },
  1968. "funding": {
  1969. "url": "https://github.com/sponsors/sindresorhus"
  1970. }
  1971. },
  1972. "node_modules/js-tokens": {
  1973. "version": "4.0.0",
  1974. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  1975. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  1976. "dev": true,
  1977. "license": "MIT"
  1978. },
  1979. "node_modules/jsesc": {
  1980. "version": "3.1.0",
  1981. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  1982. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  1983. "dev": true,
  1984. "license": "MIT",
  1985. "bin": {
  1986. "jsesc": "bin/jsesc"
  1987. },
  1988. "engines": {
  1989. "node": ">=6"
  1990. }
  1991. },
  1992. "node_modules/json5": {
  1993. "version": "2.2.3",
  1994. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  1995. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  1996. "dev": true,
  1997. "license": "MIT",
  1998. "bin": {
  1999. "json5": "lib/cli.js"
  2000. },
  2001. "engines": {
  2002. "node": ">=6"
  2003. }
  2004. },
  2005. "node_modules/jsonfile": {
  2006. "version": "4.0.0",
  2007. "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
  2008. "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
  2009. "license": "MIT",
  2010. "optionalDependencies": {
  2011. "graceful-fs": "^4.1.6"
  2012. }
  2013. },
  2014. "node_modules/katex": {
  2015. "version": "0.16.44",
  2016. "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.44.tgz",
  2017. "integrity": "sha512-EkxoDTk8ufHqHlf9QxGwcxeLkWRR3iOuYfRpfORgYfqc8s13bgb+YtRY59NK5ZpRaCwq1kqA6a5lpX8C/eLphQ==",
  2018. "funding": [
  2019. "https://opencollective.com/katex",
  2020. "https://github.com/sponsors/katex"
  2021. ],
  2022. "license": "MIT",
  2023. "dependencies": {
  2024. "commander": "^8.3.0"
  2025. },
  2026. "bin": {
  2027. "katex": "cli.js"
  2028. }
  2029. },
  2030. "node_modules/katex/node_modules/commander": {
  2031. "version": "8.3.0",
  2032. "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
  2033. "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
  2034. "license": "MIT",
  2035. "engines": {
  2036. "node": ">= 12"
  2037. }
  2038. },
  2039. "node_modules/layout-base": {
  2040. "version": "1.0.2",
  2041. "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz",
  2042. "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==",
  2043. "license": "MIT"
  2044. },
  2045. "node_modules/locate-path": {
  2046. "version": "5.0.0",
  2047. "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
  2048. "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
  2049. "license": "MIT",
  2050. "dependencies": {
  2051. "p-locate": "^4.1.0"
  2052. },
  2053. "engines": {
  2054. "node": ">=8"
  2055. }
  2056. },
  2057. "node_modules/lodash": {
  2058. "version": "4.17.23",
  2059. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
  2060. "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
  2061. "license": "MIT"
  2062. },
  2063. "node_modules/longest-streak": {
  2064. "version": "3.1.0",
  2065. "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
  2066. "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
  2067. "license": "MIT",
  2068. "funding": {
  2069. "type": "github",
  2070. "url": "https://github.com/sponsors/wooorm"
  2071. }
  2072. },
  2073. "node_modules/lru-cache": {
  2074. "version": "5.1.1",
  2075. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
  2076. "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
  2077. "dev": true,
  2078. "license": "ISC",
  2079. "dependencies": {
  2080. "yallist": "^3.0.2"
  2081. }
  2082. },
  2083. "node_modules/make-dir": {
  2084. "version": "3.1.0",
  2085. "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
  2086. "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
  2087. "license": "MIT",
  2088. "dependencies": {
  2089. "semver": "^6.0.0"
  2090. },
  2091. "engines": {
  2092. "node": ">=8"
  2093. },
  2094. "funding": {
  2095. "url": "https://github.com/sponsors/sindresorhus"
  2096. }
  2097. },
  2098. "node_modules/math-intrinsics": {
  2099. "version": "1.1.0",
  2100. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2101. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2102. "license": "MIT",
  2103. "engines": {
  2104. "node": ">= 0.4"
  2105. }
  2106. },
  2107. "node_modules/mdast-util-from-markdown": {
  2108. "version": "2.0.3",
  2109. "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
  2110. "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
  2111. "license": "MIT",
  2112. "dependencies": {
  2113. "@types/mdast": "^4.0.0",
  2114. "@types/unist": "^3.0.0",
  2115. "decode-named-character-reference": "^1.0.0",
  2116. "devlop": "^1.0.0",
  2117. "mdast-util-to-string": "^4.0.0",
  2118. "micromark": "^4.0.0",
  2119. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  2120. "micromark-util-decode-string": "^2.0.0",
  2121. "micromark-util-normalize-identifier": "^2.0.0",
  2122. "micromark-util-symbol": "^2.0.0",
  2123. "micromark-util-types": "^2.0.0",
  2124. "unist-util-stringify-position": "^4.0.0"
  2125. },
  2126. "funding": {
  2127. "type": "opencollective",
  2128. "url": "https://opencollective.com/unified"
  2129. }
  2130. },
  2131. "node_modules/mdast-util-math": {
  2132. "version": "3.0.0",
  2133. "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-3.0.0.tgz",
  2134. "integrity": "sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==",
  2135. "license": "MIT",
  2136. "dependencies": {
  2137. "@types/hast": "^3.0.0",
  2138. "@types/mdast": "^4.0.0",
  2139. "devlop": "^1.0.0",
  2140. "longest-streak": "^3.0.0",
  2141. "mdast-util-from-markdown": "^2.0.0",
  2142. "mdast-util-to-markdown": "^2.1.0",
  2143. "unist-util-remove-position": "^5.0.0"
  2144. },
  2145. "funding": {
  2146. "type": "opencollective",
  2147. "url": "https://opencollective.com/unified"
  2148. }
  2149. },
  2150. "node_modules/mdast-util-mdx-expression": {
  2151. "version": "2.0.1",
  2152. "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
  2153. "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
  2154. "license": "MIT",
  2155. "dependencies": {
  2156. "@types/estree-jsx": "^1.0.0",
  2157. "@types/hast": "^3.0.0",
  2158. "@types/mdast": "^4.0.0",
  2159. "devlop": "^1.0.0",
  2160. "mdast-util-from-markdown": "^2.0.0",
  2161. "mdast-util-to-markdown": "^2.0.0"
  2162. },
  2163. "funding": {
  2164. "type": "opencollective",
  2165. "url": "https://opencollective.com/unified"
  2166. }
  2167. },
  2168. "node_modules/mdast-util-mdx-jsx": {
  2169. "version": "3.2.0",
  2170. "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
  2171. "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
  2172. "license": "MIT",
  2173. "dependencies": {
  2174. "@types/estree-jsx": "^1.0.0",
  2175. "@types/hast": "^3.0.0",
  2176. "@types/mdast": "^4.0.0",
  2177. "@types/unist": "^3.0.0",
  2178. "ccount": "^2.0.0",
  2179. "devlop": "^1.1.0",
  2180. "mdast-util-from-markdown": "^2.0.0",
  2181. "mdast-util-to-markdown": "^2.0.0",
  2182. "parse-entities": "^4.0.0",
  2183. "stringify-entities": "^4.0.0",
  2184. "unist-util-stringify-position": "^4.0.0",
  2185. "vfile-message": "^4.0.0"
  2186. },
  2187. "funding": {
  2188. "type": "opencollective",
  2189. "url": "https://opencollective.com/unified"
  2190. }
  2191. },
  2192. "node_modules/mdast-util-mdxjs-esm": {
  2193. "version": "2.0.1",
  2194. "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
  2195. "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
  2196. "license": "MIT",
  2197. "dependencies": {
  2198. "@types/estree-jsx": "^1.0.0",
  2199. "@types/hast": "^3.0.0",
  2200. "@types/mdast": "^4.0.0",
  2201. "devlop": "^1.0.0",
  2202. "mdast-util-from-markdown": "^2.0.0",
  2203. "mdast-util-to-markdown": "^2.0.0"
  2204. },
  2205. "funding": {
  2206. "type": "opencollective",
  2207. "url": "https://opencollective.com/unified"
  2208. }
  2209. },
  2210. "node_modules/mdast-util-phrasing": {
  2211. "version": "4.1.0",
  2212. "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
  2213. "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
  2214. "license": "MIT",
  2215. "dependencies": {
  2216. "@types/mdast": "^4.0.0",
  2217. "unist-util-is": "^6.0.0"
  2218. },
  2219. "funding": {
  2220. "type": "opencollective",
  2221. "url": "https://opencollective.com/unified"
  2222. }
  2223. },
  2224. "node_modules/mdast-util-to-hast": {
  2225. "version": "13.2.1",
  2226. "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
  2227. "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
  2228. "license": "MIT",
  2229. "dependencies": {
  2230. "@types/hast": "^3.0.0",
  2231. "@types/mdast": "^4.0.0",
  2232. "@ungap/structured-clone": "^1.0.0",
  2233. "devlop": "^1.0.0",
  2234. "micromark-util-sanitize-uri": "^2.0.0",
  2235. "trim-lines": "^3.0.0",
  2236. "unist-util-position": "^5.0.0",
  2237. "unist-util-visit": "^5.0.0",
  2238. "vfile": "^6.0.0"
  2239. },
  2240. "funding": {
  2241. "type": "opencollective",
  2242. "url": "https://opencollective.com/unified"
  2243. }
  2244. },
  2245. "node_modules/mdast-util-to-markdown": {
  2246. "version": "2.1.2",
  2247. "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
  2248. "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
  2249. "license": "MIT",
  2250. "dependencies": {
  2251. "@types/mdast": "^4.0.0",
  2252. "@types/unist": "^3.0.0",
  2253. "longest-streak": "^3.0.0",
  2254. "mdast-util-phrasing": "^4.0.0",
  2255. "mdast-util-to-string": "^4.0.0",
  2256. "micromark-util-classify-character": "^2.0.0",
  2257. "micromark-util-decode-string": "^2.0.0",
  2258. "unist-util-visit": "^5.0.0",
  2259. "zwitch": "^2.0.0"
  2260. },
  2261. "funding": {
  2262. "type": "opencollective",
  2263. "url": "https://opencollective.com/unified"
  2264. }
  2265. },
  2266. "node_modules/mdast-util-to-string": {
  2267. "version": "4.0.0",
  2268. "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
  2269. "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
  2270. "license": "MIT",
  2271. "dependencies": {
  2272. "@types/mdast": "^4.0.0"
  2273. },
  2274. "funding": {
  2275. "type": "opencollective",
  2276. "url": "https://opencollective.com/unified"
  2277. }
  2278. },
  2279. "node_modules/micromark": {
  2280. "version": "4.0.2",
  2281. "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
  2282. "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
  2283. "funding": [
  2284. {
  2285. "type": "GitHub Sponsors",
  2286. "url": "https://github.com/sponsors/unifiedjs"
  2287. },
  2288. {
  2289. "type": "OpenCollective",
  2290. "url": "https://opencollective.com/unified"
  2291. }
  2292. ],
  2293. "license": "MIT",
  2294. "dependencies": {
  2295. "@types/debug": "^4.0.0",
  2296. "debug": "^4.0.0",
  2297. "decode-named-character-reference": "^1.0.0",
  2298. "devlop": "^1.0.0",
  2299. "micromark-core-commonmark": "^2.0.0",
  2300. "micromark-factory-space": "^2.0.0",
  2301. "micromark-util-character": "^2.0.0",
  2302. "micromark-util-chunked": "^2.0.0",
  2303. "micromark-util-combine-extensions": "^2.0.0",
  2304. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  2305. "micromark-util-encode": "^2.0.0",
  2306. "micromark-util-normalize-identifier": "^2.0.0",
  2307. "micromark-util-resolve-all": "^2.0.0",
  2308. "micromark-util-sanitize-uri": "^2.0.0",
  2309. "micromark-util-subtokenize": "^2.0.0",
  2310. "micromark-util-symbol": "^2.0.0",
  2311. "micromark-util-types": "^2.0.0"
  2312. }
  2313. },
  2314. "node_modules/micromark-core-commonmark": {
  2315. "version": "2.0.3",
  2316. "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
  2317. "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
  2318. "funding": [
  2319. {
  2320. "type": "GitHub Sponsors",
  2321. "url": "https://github.com/sponsors/unifiedjs"
  2322. },
  2323. {
  2324. "type": "OpenCollective",
  2325. "url": "https://opencollective.com/unified"
  2326. }
  2327. ],
  2328. "license": "MIT",
  2329. "dependencies": {
  2330. "decode-named-character-reference": "^1.0.0",
  2331. "devlop": "^1.0.0",
  2332. "micromark-factory-destination": "^2.0.0",
  2333. "micromark-factory-label": "^2.0.0",
  2334. "micromark-factory-space": "^2.0.0",
  2335. "micromark-factory-title": "^2.0.0",
  2336. "micromark-factory-whitespace": "^2.0.0",
  2337. "micromark-util-character": "^2.0.0",
  2338. "micromark-util-chunked": "^2.0.0",
  2339. "micromark-util-classify-character": "^2.0.0",
  2340. "micromark-util-html-tag-name": "^2.0.0",
  2341. "micromark-util-normalize-identifier": "^2.0.0",
  2342. "micromark-util-resolve-all": "^2.0.0",
  2343. "micromark-util-subtokenize": "^2.0.0",
  2344. "micromark-util-symbol": "^2.0.0",
  2345. "micromark-util-types": "^2.0.0"
  2346. }
  2347. },
  2348. "node_modules/micromark-extension-math": {
  2349. "version": "3.1.0",
  2350. "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz",
  2351. "integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==",
  2352. "license": "MIT",
  2353. "dependencies": {
  2354. "@types/katex": "^0.16.0",
  2355. "devlop": "^1.0.0",
  2356. "katex": "^0.16.0",
  2357. "micromark-factory-space": "^2.0.0",
  2358. "micromark-util-character": "^2.0.0",
  2359. "micromark-util-symbol": "^2.0.0",
  2360. "micromark-util-types": "^2.0.0"
  2361. },
  2362. "funding": {
  2363. "type": "opencollective",
  2364. "url": "https://opencollective.com/unified"
  2365. }
  2366. },
  2367. "node_modules/micromark-factory-destination": {
  2368. "version": "2.0.1",
  2369. "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
  2370. "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
  2371. "funding": [
  2372. {
  2373. "type": "GitHub Sponsors",
  2374. "url": "https://github.com/sponsors/unifiedjs"
  2375. },
  2376. {
  2377. "type": "OpenCollective",
  2378. "url": "https://opencollective.com/unified"
  2379. }
  2380. ],
  2381. "license": "MIT",
  2382. "dependencies": {
  2383. "micromark-util-character": "^2.0.0",
  2384. "micromark-util-symbol": "^2.0.0",
  2385. "micromark-util-types": "^2.0.0"
  2386. }
  2387. },
  2388. "node_modules/micromark-factory-label": {
  2389. "version": "2.0.1",
  2390. "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
  2391. "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
  2392. "funding": [
  2393. {
  2394. "type": "GitHub Sponsors",
  2395. "url": "https://github.com/sponsors/unifiedjs"
  2396. },
  2397. {
  2398. "type": "OpenCollective",
  2399. "url": "https://opencollective.com/unified"
  2400. }
  2401. ],
  2402. "license": "MIT",
  2403. "dependencies": {
  2404. "devlop": "^1.0.0",
  2405. "micromark-util-character": "^2.0.0",
  2406. "micromark-util-symbol": "^2.0.0",
  2407. "micromark-util-types": "^2.0.0"
  2408. }
  2409. },
  2410. "node_modules/micromark-factory-space": {
  2411. "version": "2.0.1",
  2412. "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
  2413. "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
  2414. "funding": [
  2415. {
  2416. "type": "GitHub Sponsors",
  2417. "url": "https://github.com/sponsors/unifiedjs"
  2418. },
  2419. {
  2420. "type": "OpenCollective",
  2421. "url": "https://opencollective.com/unified"
  2422. }
  2423. ],
  2424. "license": "MIT",
  2425. "dependencies": {
  2426. "micromark-util-character": "^2.0.0",
  2427. "micromark-util-types": "^2.0.0"
  2428. }
  2429. },
  2430. "node_modules/micromark-factory-title": {
  2431. "version": "2.0.1",
  2432. "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
  2433. "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
  2434. "funding": [
  2435. {
  2436. "type": "GitHub Sponsors",
  2437. "url": "https://github.com/sponsors/unifiedjs"
  2438. },
  2439. {
  2440. "type": "OpenCollective",
  2441. "url": "https://opencollective.com/unified"
  2442. }
  2443. ],
  2444. "license": "MIT",
  2445. "dependencies": {
  2446. "micromark-factory-space": "^2.0.0",
  2447. "micromark-util-character": "^2.0.0",
  2448. "micromark-util-symbol": "^2.0.0",
  2449. "micromark-util-types": "^2.0.0"
  2450. }
  2451. },
  2452. "node_modules/micromark-factory-whitespace": {
  2453. "version": "2.0.1",
  2454. "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
  2455. "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
  2456. "funding": [
  2457. {
  2458. "type": "GitHub Sponsors",
  2459. "url": "https://github.com/sponsors/unifiedjs"
  2460. },
  2461. {
  2462. "type": "OpenCollective",
  2463. "url": "https://opencollective.com/unified"
  2464. }
  2465. ],
  2466. "license": "MIT",
  2467. "dependencies": {
  2468. "micromark-factory-space": "^2.0.0",
  2469. "micromark-util-character": "^2.0.0",
  2470. "micromark-util-symbol": "^2.0.0",
  2471. "micromark-util-types": "^2.0.0"
  2472. }
  2473. },
  2474. "node_modules/micromark-util-character": {
  2475. "version": "2.1.1",
  2476. "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
  2477. "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
  2478. "funding": [
  2479. {
  2480. "type": "GitHub Sponsors",
  2481. "url": "https://github.com/sponsors/unifiedjs"
  2482. },
  2483. {
  2484. "type": "OpenCollective",
  2485. "url": "https://opencollective.com/unified"
  2486. }
  2487. ],
  2488. "license": "MIT",
  2489. "dependencies": {
  2490. "micromark-util-symbol": "^2.0.0",
  2491. "micromark-util-types": "^2.0.0"
  2492. }
  2493. },
  2494. "node_modules/micromark-util-chunked": {
  2495. "version": "2.0.1",
  2496. "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
  2497. "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
  2498. "funding": [
  2499. {
  2500. "type": "GitHub Sponsors",
  2501. "url": "https://github.com/sponsors/unifiedjs"
  2502. },
  2503. {
  2504. "type": "OpenCollective",
  2505. "url": "https://opencollective.com/unified"
  2506. }
  2507. ],
  2508. "license": "MIT",
  2509. "dependencies": {
  2510. "micromark-util-symbol": "^2.0.0"
  2511. }
  2512. },
  2513. "node_modules/micromark-util-classify-character": {
  2514. "version": "2.0.1",
  2515. "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
  2516. "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
  2517. "funding": [
  2518. {
  2519. "type": "GitHub Sponsors",
  2520. "url": "https://github.com/sponsors/unifiedjs"
  2521. },
  2522. {
  2523. "type": "OpenCollective",
  2524. "url": "https://opencollective.com/unified"
  2525. }
  2526. ],
  2527. "license": "MIT",
  2528. "dependencies": {
  2529. "micromark-util-character": "^2.0.0",
  2530. "micromark-util-symbol": "^2.0.0",
  2531. "micromark-util-types": "^2.0.0"
  2532. }
  2533. },
  2534. "node_modules/micromark-util-combine-extensions": {
  2535. "version": "2.0.1",
  2536. "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
  2537. "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
  2538. "funding": [
  2539. {
  2540. "type": "GitHub Sponsors",
  2541. "url": "https://github.com/sponsors/unifiedjs"
  2542. },
  2543. {
  2544. "type": "OpenCollective",
  2545. "url": "https://opencollective.com/unified"
  2546. }
  2547. ],
  2548. "license": "MIT",
  2549. "dependencies": {
  2550. "micromark-util-chunked": "^2.0.0",
  2551. "micromark-util-types": "^2.0.0"
  2552. }
  2553. },
  2554. "node_modules/micromark-util-decode-numeric-character-reference": {
  2555. "version": "2.0.2",
  2556. "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
  2557. "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
  2558. "funding": [
  2559. {
  2560. "type": "GitHub Sponsors",
  2561. "url": "https://github.com/sponsors/unifiedjs"
  2562. },
  2563. {
  2564. "type": "OpenCollective",
  2565. "url": "https://opencollective.com/unified"
  2566. }
  2567. ],
  2568. "license": "MIT",
  2569. "dependencies": {
  2570. "micromark-util-symbol": "^2.0.0"
  2571. }
  2572. },
  2573. "node_modules/micromark-util-decode-string": {
  2574. "version": "2.0.1",
  2575. "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
  2576. "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
  2577. "funding": [
  2578. {
  2579. "type": "GitHub Sponsors",
  2580. "url": "https://github.com/sponsors/unifiedjs"
  2581. },
  2582. {
  2583. "type": "OpenCollective",
  2584. "url": "https://opencollective.com/unified"
  2585. }
  2586. ],
  2587. "license": "MIT",
  2588. "dependencies": {
  2589. "decode-named-character-reference": "^1.0.0",
  2590. "micromark-util-character": "^2.0.0",
  2591. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  2592. "micromark-util-symbol": "^2.0.0"
  2593. }
  2594. },
  2595. "node_modules/micromark-util-encode": {
  2596. "version": "2.0.1",
  2597. "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
  2598. "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
  2599. "funding": [
  2600. {
  2601. "type": "GitHub Sponsors",
  2602. "url": "https://github.com/sponsors/unifiedjs"
  2603. },
  2604. {
  2605. "type": "OpenCollective",
  2606. "url": "https://opencollective.com/unified"
  2607. }
  2608. ],
  2609. "license": "MIT"
  2610. },
  2611. "node_modules/micromark-util-html-tag-name": {
  2612. "version": "2.0.1",
  2613. "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
  2614. "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
  2615. "funding": [
  2616. {
  2617. "type": "GitHub Sponsors",
  2618. "url": "https://github.com/sponsors/unifiedjs"
  2619. },
  2620. {
  2621. "type": "OpenCollective",
  2622. "url": "https://opencollective.com/unified"
  2623. }
  2624. ],
  2625. "license": "MIT"
  2626. },
  2627. "node_modules/micromark-util-normalize-identifier": {
  2628. "version": "2.0.1",
  2629. "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
  2630. "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
  2631. "funding": [
  2632. {
  2633. "type": "GitHub Sponsors",
  2634. "url": "https://github.com/sponsors/unifiedjs"
  2635. },
  2636. {
  2637. "type": "OpenCollective",
  2638. "url": "https://opencollective.com/unified"
  2639. }
  2640. ],
  2641. "license": "MIT",
  2642. "dependencies": {
  2643. "micromark-util-symbol": "^2.0.0"
  2644. }
  2645. },
  2646. "node_modules/micromark-util-resolve-all": {
  2647. "version": "2.0.1",
  2648. "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
  2649. "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
  2650. "funding": [
  2651. {
  2652. "type": "GitHub Sponsors",
  2653. "url": "https://github.com/sponsors/unifiedjs"
  2654. },
  2655. {
  2656. "type": "OpenCollective",
  2657. "url": "https://opencollective.com/unified"
  2658. }
  2659. ],
  2660. "license": "MIT",
  2661. "dependencies": {
  2662. "micromark-util-types": "^2.0.0"
  2663. }
  2664. },
  2665. "node_modules/micromark-util-sanitize-uri": {
  2666. "version": "2.0.1",
  2667. "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
  2668. "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
  2669. "funding": [
  2670. {
  2671. "type": "GitHub Sponsors",
  2672. "url": "https://github.com/sponsors/unifiedjs"
  2673. },
  2674. {
  2675. "type": "OpenCollective",
  2676. "url": "https://opencollective.com/unified"
  2677. }
  2678. ],
  2679. "license": "MIT",
  2680. "dependencies": {
  2681. "micromark-util-character": "^2.0.0",
  2682. "micromark-util-encode": "^2.0.0",
  2683. "micromark-util-symbol": "^2.0.0"
  2684. }
  2685. },
  2686. "node_modules/micromark-util-subtokenize": {
  2687. "version": "2.1.0",
  2688. "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
  2689. "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
  2690. "funding": [
  2691. {
  2692. "type": "GitHub Sponsors",
  2693. "url": "https://github.com/sponsors/unifiedjs"
  2694. },
  2695. {
  2696. "type": "OpenCollective",
  2697. "url": "https://opencollective.com/unified"
  2698. }
  2699. ],
  2700. "license": "MIT",
  2701. "dependencies": {
  2702. "devlop": "^1.0.0",
  2703. "micromark-util-chunked": "^2.0.0",
  2704. "micromark-util-symbol": "^2.0.0",
  2705. "micromark-util-types": "^2.0.0"
  2706. }
  2707. },
  2708. "node_modules/micromark-util-symbol": {
  2709. "version": "2.0.1",
  2710. "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
  2711. "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
  2712. "funding": [
  2713. {
  2714. "type": "GitHub Sponsors",
  2715. "url": "https://github.com/sponsors/unifiedjs"
  2716. },
  2717. {
  2718. "type": "OpenCollective",
  2719. "url": "https://opencollective.com/unified"
  2720. }
  2721. ],
  2722. "license": "MIT"
  2723. },
  2724. "node_modules/micromark-util-types": {
  2725. "version": "2.0.2",
  2726. "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
  2727. "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
  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. },
  2740. "node_modules/minimatch": {
  2741. "version": "3.1.5",
  2742. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
  2743. "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
  2744. "license": "ISC",
  2745. "dependencies": {
  2746. "brace-expansion": "^1.1.7"
  2747. },
  2748. "engines": {
  2749. "node": "*"
  2750. }
  2751. },
  2752. "node_modules/ms": {
  2753. "version": "2.1.3",
  2754. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  2755. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2756. "license": "MIT"
  2757. },
  2758. "node_modules/nanoid": {
  2759. "version": "3.3.11",
  2760. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  2761. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2762. "dev": true,
  2763. "funding": [
  2764. {
  2765. "type": "github",
  2766. "url": "https://github.com/sponsors/ai"
  2767. }
  2768. ],
  2769. "license": "MIT",
  2770. "bin": {
  2771. "nanoid": "bin/nanoid.cjs"
  2772. },
  2773. "engines": {
  2774. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2775. }
  2776. },
  2777. "node_modules/node-releases": {
  2778. "version": "2.0.36",
  2779. "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
  2780. "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
  2781. "dev": true,
  2782. "license": "MIT"
  2783. },
  2784. "node_modules/object-assign": {
  2785. "version": "4.1.1",
  2786. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  2787. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  2788. "license": "MIT",
  2789. "engines": {
  2790. "node": ">=0.10.0"
  2791. }
  2792. },
  2793. "node_modules/object-inspect": {
  2794. "version": "1.13.4",
  2795. "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
  2796. "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
  2797. "license": "MIT",
  2798. "engines": {
  2799. "node": ">= 0.4"
  2800. },
  2801. "funding": {
  2802. "url": "https://github.com/sponsors/ljharb"
  2803. }
  2804. },
  2805. "node_modules/once": {
  2806. "version": "1.4.0",
  2807. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  2808. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  2809. "license": "ISC",
  2810. "dependencies": {
  2811. "wrappy": "1"
  2812. }
  2813. },
  2814. "node_modules/p-limit": {
  2815. "version": "2.3.0",
  2816. "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
  2817. "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
  2818. "license": "MIT",
  2819. "dependencies": {
  2820. "p-try": "^2.0.0"
  2821. },
  2822. "engines": {
  2823. "node": ">=6"
  2824. },
  2825. "funding": {
  2826. "url": "https://github.com/sponsors/sindresorhus"
  2827. }
  2828. },
  2829. "node_modules/p-locate": {
  2830. "version": "4.1.0",
  2831. "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
  2832. "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
  2833. "license": "MIT",
  2834. "dependencies": {
  2835. "p-limit": "^2.2.0"
  2836. },
  2837. "engines": {
  2838. "node": ">=8"
  2839. }
  2840. },
  2841. "node_modules/p-try": {
  2842. "version": "2.2.0",
  2843. "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
  2844. "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
  2845. "license": "MIT",
  2846. "engines": {
  2847. "node": ">=6"
  2848. }
  2849. },
  2850. "node_modules/parse-entities": {
  2851. "version": "4.0.2",
  2852. "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
  2853. "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
  2854. "license": "MIT",
  2855. "dependencies": {
  2856. "@types/unist": "^2.0.0",
  2857. "character-entities-legacy": "^3.0.0",
  2858. "character-reference-invalid": "^2.0.0",
  2859. "decode-named-character-reference": "^1.0.0",
  2860. "is-alphanumerical": "^2.0.0",
  2861. "is-decimal": "^2.0.0",
  2862. "is-hexadecimal": "^2.0.0"
  2863. },
  2864. "funding": {
  2865. "type": "github",
  2866. "url": "https://github.com/sponsors/wooorm"
  2867. }
  2868. },
  2869. "node_modules/parse-entities/node_modules/@types/unist": {
  2870. "version": "2.0.11",
  2871. "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
  2872. "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
  2873. "license": "MIT"
  2874. },
  2875. "node_modules/parse5": {
  2876. "version": "7.3.0",
  2877. "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
  2878. "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
  2879. "license": "MIT",
  2880. "dependencies": {
  2881. "entities": "^6.0.0"
  2882. },
  2883. "funding": {
  2884. "url": "https://github.com/inikulin/parse5?sponsor=1"
  2885. }
  2886. },
  2887. "node_modules/path-exists": {
  2888. "version": "4.0.0",
  2889. "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
  2890. "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
  2891. "license": "MIT",
  2892. "engines": {
  2893. "node": ">=8"
  2894. }
  2895. },
  2896. "node_modules/path-is-absolute": {
  2897. "version": "1.0.1",
  2898. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  2899. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  2900. "license": "MIT",
  2901. "engines": {
  2902. "node": ">=0.10.0"
  2903. }
  2904. },
  2905. "node_modules/picocolors": {
  2906. "version": "1.1.1",
  2907. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  2908. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2909. "dev": true,
  2910. "license": "ISC"
  2911. },
  2912. "node_modules/picomatch": {
  2913. "version": "4.0.3",
  2914. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
  2915. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  2916. "dev": true,
  2917. "license": "MIT",
  2918. "engines": {
  2919. "node": ">=12"
  2920. },
  2921. "funding": {
  2922. "url": "https://github.com/sponsors/jonschlinkert"
  2923. }
  2924. },
  2925. "node_modules/pify": {
  2926. "version": "2.3.0",
  2927. "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
  2928. "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
  2929. "license": "MIT",
  2930. "engines": {
  2931. "node": ">=0.10.0"
  2932. }
  2933. },
  2934. "node_modules/pinkie": {
  2935. "version": "2.0.4",
  2936. "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
  2937. "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
  2938. "license": "MIT",
  2939. "engines": {
  2940. "node": ">=0.10.0"
  2941. }
  2942. },
  2943. "node_modules/pinkie-promise": {
  2944. "version": "2.0.1",
  2945. "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
  2946. "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
  2947. "license": "MIT",
  2948. "dependencies": {
  2949. "pinkie": "^2.0.0"
  2950. },
  2951. "engines": {
  2952. "node": ">=0.10.0"
  2953. }
  2954. },
  2955. "node_modules/pixi-live2d-display": {
  2956. "version": "0.4.0",
  2957. "resolved": "https://registry.npmjs.org/pixi-live2d-display/-/pixi-live2d-display-0.4.0.tgz",
  2958. "integrity": "sha512-xeYC6y4Y0Bxe9ksWNlGFZC1rII/MPrzPQK7t1c3ubA8RhkOISIqHJl38fNumXqhGEs+yItmgDOkFT+9dsyGDjA==",
  2959. "license": "MIT",
  2960. "dependencies": {
  2961. "gh-pages": "^4.0.0"
  2962. },
  2963. "peerDependencies": {
  2964. "@pixi/core": "^6",
  2965. "@pixi/display": "^6",
  2966. "@pixi/loaders": "^6",
  2967. "@pixi/math": "^6",
  2968. "@pixi/sprite": "^6",
  2969. "@pixi/utils": "^6"
  2970. }
  2971. },
  2972. "node_modules/pixi.js": {
  2973. "version": "6.5.10",
  2974. "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-6.5.10.tgz",
  2975. "integrity": "sha512-Z2mjeoISml2iuVwT1e/BQwERYM2yKoiR08ZdGrg8y5JjeuVptfTrve4DbPMRN/kEDodesgQZGV/pFv0fE9Q2SA==",
  2976. "license": "MIT",
  2977. "dependencies": {
  2978. "@pixi/accessibility": "6.5.10",
  2979. "@pixi/app": "6.5.10",
  2980. "@pixi/compressed-textures": "6.5.10",
  2981. "@pixi/constants": "6.5.10",
  2982. "@pixi/core": "6.5.10",
  2983. "@pixi/display": "6.5.10",
  2984. "@pixi/extensions": "6.5.10",
  2985. "@pixi/extract": "6.5.10",
  2986. "@pixi/filter-alpha": "6.5.10",
  2987. "@pixi/filter-blur": "6.5.10",
  2988. "@pixi/filter-color-matrix": "6.5.10",
  2989. "@pixi/filter-displacement": "6.5.10",
  2990. "@pixi/filter-fxaa": "6.5.10",
  2991. "@pixi/filter-noise": "6.5.10",
  2992. "@pixi/graphics": "6.5.10",
  2993. "@pixi/interaction": "6.5.10",
  2994. "@pixi/loaders": "6.5.10",
  2995. "@pixi/math": "6.5.10",
  2996. "@pixi/mesh": "6.5.10",
  2997. "@pixi/mesh-extras": "6.5.10",
  2998. "@pixi/mixin-cache-as-bitmap": "6.5.10",
  2999. "@pixi/mixin-get-child-by-name": "6.5.10",
  3000. "@pixi/mixin-get-global-position": "6.5.10",
  3001. "@pixi/particle-container": "6.5.10",
  3002. "@pixi/polyfill": "6.5.10",
  3003. "@pixi/prepare": "6.5.10",
  3004. "@pixi/runner": "6.5.10",
  3005. "@pixi/settings": "6.5.10",
  3006. "@pixi/sprite": "6.5.10",
  3007. "@pixi/sprite-animated": "6.5.10",
  3008. "@pixi/sprite-tiling": "6.5.10",
  3009. "@pixi/spritesheet": "6.5.10",
  3010. "@pixi/text": "6.5.10",
  3011. "@pixi/text-bitmap": "6.5.10",
  3012. "@pixi/ticker": "6.5.10",
  3013. "@pixi/utils": "6.5.10"
  3014. },
  3015. "funding": {
  3016. "type": "opencollective",
  3017. "url": "https://opencollective.com/pixijs"
  3018. }
  3019. },
  3020. "node_modules/pkg-dir": {
  3021. "version": "4.2.0",
  3022. "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
  3023. "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
  3024. "license": "MIT",
  3025. "dependencies": {
  3026. "find-up": "^4.0.0"
  3027. },
  3028. "engines": {
  3029. "node": ">=8"
  3030. }
  3031. },
  3032. "node_modules/postcss": {
  3033. "version": "8.5.8",
  3034. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
  3035. "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
  3036. "dev": true,
  3037. "funding": [
  3038. {
  3039. "type": "opencollective",
  3040. "url": "https://opencollective.com/postcss/"
  3041. },
  3042. {
  3043. "type": "tidelift",
  3044. "url": "https://tidelift.com/funding/github/npm/postcss"
  3045. },
  3046. {
  3047. "type": "github",
  3048. "url": "https://github.com/sponsors/ai"
  3049. }
  3050. ],
  3051. "license": "MIT",
  3052. "dependencies": {
  3053. "nanoid": "^3.3.11",
  3054. "picocolors": "^1.1.1",
  3055. "source-map-js": "^1.2.1"
  3056. },
  3057. "engines": {
  3058. "node": "^10 || ^12 || >=14"
  3059. }
  3060. },
  3061. "node_modules/promise-polyfill": {
  3062. "version": "8.3.0",
  3063. "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-8.3.0.tgz",
  3064. "integrity": "sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==",
  3065. "license": "MIT"
  3066. },
  3067. "node_modules/property-information": {
  3068. "version": "7.1.0",
  3069. "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
  3070. "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
  3071. "license": "MIT",
  3072. "funding": {
  3073. "type": "github",
  3074. "url": "https://github.com/sponsors/wooorm"
  3075. }
  3076. },
  3077. "node_modules/punycode": {
  3078. "version": "1.4.1",
  3079. "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
  3080. "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
  3081. "license": "MIT"
  3082. },
  3083. "node_modules/qs": {
  3084. "version": "6.15.0",
  3085. "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz",
  3086. "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
  3087. "license": "BSD-3-Clause",
  3088. "dependencies": {
  3089. "side-channel": "^1.1.0"
  3090. },
  3091. "engines": {
  3092. "node": ">=0.6"
  3093. },
  3094. "funding": {
  3095. "url": "https://github.com/sponsors/ljharb"
  3096. }
  3097. },
  3098. "node_modules/react": {
  3099. "version": "19.2.4",
  3100. "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
  3101. "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
  3102. "license": "MIT",
  3103. "engines": {
  3104. "node": ">=0.10.0"
  3105. }
  3106. },
  3107. "node_modules/react-dom": {
  3108. "version": "19.2.4",
  3109. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
  3110. "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
  3111. "license": "MIT",
  3112. "dependencies": {
  3113. "scheduler": "^0.27.0"
  3114. },
  3115. "peerDependencies": {
  3116. "react": "^19.2.4"
  3117. }
  3118. },
  3119. "node_modules/react-markdown": {
  3120. "version": "10.1.0",
  3121. "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
  3122. "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
  3123. "license": "MIT",
  3124. "dependencies": {
  3125. "@types/hast": "^3.0.0",
  3126. "@types/mdast": "^4.0.0",
  3127. "devlop": "^1.0.0",
  3128. "hast-util-to-jsx-runtime": "^2.0.0",
  3129. "html-url-attributes": "^3.0.0",
  3130. "mdast-util-to-hast": "^13.0.0",
  3131. "remark-parse": "^11.0.0",
  3132. "remark-rehype": "^11.0.0",
  3133. "unified": "^11.0.0",
  3134. "unist-util-visit": "^5.0.0",
  3135. "vfile": "^6.0.0"
  3136. },
  3137. "funding": {
  3138. "type": "opencollective",
  3139. "url": "https://opencollective.com/unified"
  3140. },
  3141. "peerDependencies": {
  3142. "@types/react": ">=18",
  3143. "react": ">=18"
  3144. }
  3145. },
  3146. "node_modules/react-refresh": {
  3147. "version": "0.17.0",
  3148. "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
  3149. "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
  3150. "dev": true,
  3151. "license": "MIT",
  3152. "engines": {
  3153. "node": ">=0.10.0"
  3154. }
  3155. },
  3156. "node_modules/react-router": {
  3157. "version": "6.30.3",
  3158. "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.3.tgz",
  3159. "integrity": "sha512-XRnlbKMTmktBkjCLE8/XcZFlnHvr2Ltdr1eJX4idL55/9BbORzyZEaIkBFDhFGCEWBBItsVrDxwx3gnisMitdw==",
  3160. "license": "MIT",
  3161. "dependencies": {
  3162. "@remix-run/router": "1.23.2"
  3163. },
  3164. "engines": {
  3165. "node": ">=14.0.0"
  3166. },
  3167. "peerDependencies": {
  3168. "react": ">=16.8"
  3169. }
  3170. },
  3171. "node_modules/react-router-dom": {
  3172. "version": "6.30.3",
  3173. "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.3.tgz",
  3174. "integrity": "sha512-pxPcv1AczD4vso7G4Z3TKcvlxK7g7TNt3/FNGMhfqyntocvYKj+GCatfigGDjbLozC4baguJ0ReCigoDJXb0ag==",
  3175. "license": "MIT",
  3176. "dependencies": {
  3177. "@remix-run/router": "1.23.2",
  3178. "react-router": "6.30.3"
  3179. },
  3180. "engines": {
  3181. "node": ">=14.0.0"
  3182. },
  3183. "peerDependencies": {
  3184. "react": ">=16.8",
  3185. "react-dom": ">=16.8"
  3186. }
  3187. },
  3188. "node_modules/rehype-katex": {
  3189. "version": "7.0.1",
  3190. "resolved": "https://registry.npmjs.org/rehype-katex/-/rehype-katex-7.0.1.tgz",
  3191. "integrity": "sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==",
  3192. "license": "MIT",
  3193. "dependencies": {
  3194. "@types/hast": "^3.0.0",
  3195. "@types/katex": "^0.16.0",
  3196. "hast-util-from-html-isomorphic": "^2.0.0",
  3197. "hast-util-to-text": "^4.0.0",
  3198. "katex": "^0.16.0",
  3199. "unist-util-visit-parents": "^6.0.0",
  3200. "vfile": "^6.0.0"
  3201. },
  3202. "funding": {
  3203. "type": "opencollective",
  3204. "url": "https://opencollective.com/unified"
  3205. }
  3206. },
  3207. "node_modules/remark-math": {
  3208. "version": "6.0.0",
  3209. "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-6.0.0.tgz",
  3210. "integrity": "sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==",
  3211. "license": "MIT",
  3212. "dependencies": {
  3213. "@types/mdast": "^4.0.0",
  3214. "mdast-util-math": "^3.0.0",
  3215. "micromark-extension-math": "^3.0.0",
  3216. "unified": "^11.0.0"
  3217. },
  3218. "funding": {
  3219. "type": "opencollective",
  3220. "url": "https://opencollective.com/unified"
  3221. }
  3222. },
  3223. "node_modules/remark-parse": {
  3224. "version": "11.0.0",
  3225. "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
  3226. "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
  3227. "license": "MIT",
  3228. "dependencies": {
  3229. "@types/mdast": "^4.0.0",
  3230. "mdast-util-from-markdown": "^2.0.0",
  3231. "micromark-util-types": "^2.0.0",
  3232. "unified": "^11.0.0"
  3233. },
  3234. "funding": {
  3235. "type": "opencollective",
  3236. "url": "https://opencollective.com/unified"
  3237. }
  3238. },
  3239. "node_modules/remark-rehype": {
  3240. "version": "11.1.2",
  3241. "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
  3242. "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
  3243. "license": "MIT",
  3244. "dependencies": {
  3245. "@types/hast": "^3.0.0",
  3246. "@types/mdast": "^4.0.0",
  3247. "mdast-util-to-hast": "^13.0.0",
  3248. "unified": "^11.0.0",
  3249. "vfile": "^6.0.0"
  3250. },
  3251. "funding": {
  3252. "type": "opencollective",
  3253. "url": "https://opencollective.com/unified"
  3254. }
  3255. },
  3256. "node_modules/rollup": {
  3257. "version": "4.59.0",
  3258. "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
  3259. "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
  3260. "dev": true,
  3261. "license": "MIT",
  3262. "dependencies": {
  3263. "@types/estree": "1.0.8"
  3264. },
  3265. "bin": {
  3266. "rollup": "dist/bin/rollup"
  3267. },
  3268. "engines": {
  3269. "node": ">=18.0.0",
  3270. "npm": ">=8.0.0"
  3271. },
  3272. "optionalDependencies": {
  3273. "@rollup/rollup-android-arm-eabi": "4.59.0",
  3274. "@rollup/rollup-android-arm64": "4.59.0",
  3275. "@rollup/rollup-darwin-arm64": "4.59.0",
  3276. "@rollup/rollup-darwin-x64": "4.59.0",
  3277. "@rollup/rollup-freebsd-arm64": "4.59.0",
  3278. "@rollup/rollup-freebsd-x64": "4.59.0",
  3279. "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
  3280. "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
  3281. "@rollup/rollup-linux-arm64-gnu": "4.59.0",
  3282. "@rollup/rollup-linux-arm64-musl": "4.59.0",
  3283. "@rollup/rollup-linux-loong64-gnu": "4.59.0",
  3284. "@rollup/rollup-linux-loong64-musl": "4.59.0",
  3285. "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
  3286. "@rollup/rollup-linux-ppc64-musl": "4.59.0",
  3287. "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
  3288. "@rollup/rollup-linux-riscv64-musl": "4.59.0",
  3289. "@rollup/rollup-linux-s390x-gnu": "4.59.0",
  3290. "@rollup/rollup-linux-x64-gnu": "4.59.0",
  3291. "@rollup/rollup-linux-x64-musl": "4.59.0",
  3292. "@rollup/rollup-openbsd-x64": "4.59.0",
  3293. "@rollup/rollup-openharmony-arm64": "4.59.0",
  3294. "@rollup/rollup-win32-arm64-msvc": "4.59.0",
  3295. "@rollup/rollup-win32-ia32-msvc": "4.59.0",
  3296. "@rollup/rollup-win32-x64-gnu": "4.59.0",
  3297. "@rollup/rollup-win32-x64-msvc": "4.59.0",
  3298. "fsevents": "~2.3.2"
  3299. }
  3300. },
  3301. "node_modules/scheduler": {
  3302. "version": "0.27.0",
  3303. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
  3304. "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
  3305. "license": "MIT"
  3306. },
  3307. "node_modules/semver": {
  3308. "version": "6.3.1",
  3309. "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
  3310. "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
  3311. "license": "ISC",
  3312. "bin": {
  3313. "semver": "bin/semver.js"
  3314. }
  3315. },
  3316. "node_modules/side-channel": {
  3317. "version": "1.1.0",
  3318. "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
  3319. "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
  3320. "license": "MIT",
  3321. "dependencies": {
  3322. "es-errors": "^1.3.0",
  3323. "object-inspect": "^1.13.3",
  3324. "side-channel-list": "^1.0.0",
  3325. "side-channel-map": "^1.0.1",
  3326. "side-channel-weakmap": "^1.0.2"
  3327. },
  3328. "engines": {
  3329. "node": ">= 0.4"
  3330. },
  3331. "funding": {
  3332. "url": "https://github.com/sponsors/ljharb"
  3333. }
  3334. },
  3335. "node_modules/side-channel-list": {
  3336. "version": "1.0.0",
  3337. "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
  3338. "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
  3339. "license": "MIT",
  3340. "dependencies": {
  3341. "es-errors": "^1.3.0",
  3342. "object-inspect": "^1.13.3"
  3343. },
  3344. "engines": {
  3345. "node": ">= 0.4"
  3346. },
  3347. "funding": {
  3348. "url": "https://github.com/sponsors/ljharb"
  3349. }
  3350. },
  3351. "node_modules/side-channel-map": {
  3352. "version": "1.0.1",
  3353. "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
  3354. "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
  3355. "license": "MIT",
  3356. "dependencies": {
  3357. "call-bound": "^1.0.2",
  3358. "es-errors": "^1.3.0",
  3359. "get-intrinsic": "^1.2.5",
  3360. "object-inspect": "^1.13.3"
  3361. },
  3362. "engines": {
  3363. "node": ">= 0.4"
  3364. },
  3365. "funding": {
  3366. "url": "https://github.com/sponsors/ljharb"
  3367. }
  3368. },
  3369. "node_modules/side-channel-weakmap": {
  3370. "version": "1.0.2",
  3371. "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
  3372. "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
  3373. "license": "MIT",
  3374. "dependencies": {
  3375. "call-bound": "^1.0.2",
  3376. "es-errors": "^1.3.0",
  3377. "get-intrinsic": "^1.2.5",
  3378. "object-inspect": "^1.13.3",
  3379. "side-channel-map": "^1.0.1"
  3380. },
  3381. "engines": {
  3382. "node": ">= 0.4"
  3383. },
  3384. "funding": {
  3385. "url": "https://github.com/sponsors/ljharb"
  3386. }
  3387. },
  3388. "node_modules/source-map-js": {
  3389. "version": "1.2.1",
  3390. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  3391. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  3392. "dev": true,
  3393. "license": "BSD-3-Clause",
  3394. "engines": {
  3395. "node": ">=0.10.0"
  3396. }
  3397. },
  3398. "node_modules/space-separated-tokens": {
  3399. "version": "2.0.2",
  3400. "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
  3401. "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
  3402. "license": "MIT",
  3403. "funding": {
  3404. "type": "github",
  3405. "url": "https://github.com/sponsors/wooorm"
  3406. }
  3407. },
  3408. "node_modules/stringify-entities": {
  3409. "version": "4.0.4",
  3410. "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
  3411. "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
  3412. "license": "MIT",
  3413. "dependencies": {
  3414. "character-entities-html4": "^2.0.0",
  3415. "character-entities-legacy": "^3.0.0"
  3416. },
  3417. "funding": {
  3418. "type": "github",
  3419. "url": "https://github.com/sponsors/wooorm"
  3420. }
  3421. },
  3422. "node_modules/strip-outer": {
  3423. "version": "1.0.1",
  3424. "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
  3425. "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
  3426. "license": "MIT",
  3427. "dependencies": {
  3428. "escape-string-regexp": "^1.0.2"
  3429. },
  3430. "engines": {
  3431. "node": ">=0.10.0"
  3432. }
  3433. },
  3434. "node_modules/style-to-js": {
  3435. "version": "1.1.21",
  3436. "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
  3437. "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
  3438. "license": "MIT",
  3439. "dependencies": {
  3440. "style-to-object": "1.0.14"
  3441. }
  3442. },
  3443. "node_modules/style-to-object": {
  3444. "version": "1.0.14",
  3445. "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
  3446. "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
  3447. "license": "MIT",
  3448. "dependencies": {
  3449. "inline-style-parser": "0.2.7"
  3450. }
  3451. },
  3452. "node_modules/tinyglobby": {
  3453. "version": "0.2.15",
  3454. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
  3455. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  3456. "dev": true,
  3457. "license": "MIT",
  3458. "dependencies": {
  3459. "fdir": "^6.5.0",
  3460. "picomatch": "^4.0.3"
  3461. },
  3462. "engines": {
  3463. "node": ">=12.0.0"
  3464. },
  3465. "funding": {
  3466. "url": "https://github.com/sponsors/SuperchupuDev"
  3467. }
  3468. },
  3469. "node_modules/trim-lines": {
  3470. "version": "3.0.1",
  3471. "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
  3472. "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
  3473. "license": "MIT",
  3474. "funding": {
  3475. "type": "github",
  3476. "url": "https://github.com/sponsors/wooorm"
  3477. }
  3478. },
  3479. "node_modules/trim-repeated": {
  3480. "version": "1.0.0",
  3481. "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
  3482. "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==",
  3483. "license": "MIT",
  3484. "dependencies": {
  3485. "escape-string-regexp": "^1.0.2"
  3486. },
  3487. "engines": {
  3488. "node": ">=0.10.0"
  3489. }
  3490. },
  3491. "node_modules/trough": {
  3492. "version": "2.2.0",
  3493. "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
  3494. "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
  3495. "license": "MIT",
  3496. "funding": {
  3497. "type": "github",
  3498. "url": "https://github.com/sponsors/wooorm"
  3499. }
  3500. },
  3501. "node_modules/typescript": {
  3502. "version": "5.9.3",
  3503. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  3504. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  3505. "dev": true,
  3506. "license": "Apache-2.0",
  3507. "bin": {
  3508. "tsc": "bin/tsc",
  3509. "tsserver": "bin/tsserver"
  3510. },
  3511. "engines": {
  3512. "node": ">=14.17"
  3513. }
  3514. },
  3515. "node_modules/unified": {
  3516. "version": "11.0.5",
  3517. "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
  3518. "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
  3519. "license": "MIT",
  3520. "dependencies": {
  3521. "@types/unist": "^3.0.0",
  3522. "bail": "^2.0.0",
  3523. "devlop": "^1.0.0",
  3524. "extend": "^3.0.0",
  3525. "is-plain-obj": "^4.0.0",
  3526. "trough": "^2.0.0",
  3527. "vfile": "^6.0.0"
  3528. },
  3529. "funding": {
  3530. "type": "opencollective",
  3531. "url": "https://opencollective.com/unified"
  3532. }
  3533. },
  3534. "node_modules/unist-util-find-after": {
  3535. "version": "5.0.0",
  3536. "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
  3537. "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
  3538. "license": "MIT",
  3539. "dependencies": {
  3540. "@types/unist": "^3.0.0",
  3541. "unist-util-is": "^6.0.0"
  3542. },
  3543. "funding": {
  3544. "type": "opencollective",
  3545. "url": "https://opencollective.com/unified"
  3546. }
  3547. },
  3548. "node_modules/unist-util-is": {
  3549. "version": "6.0.1",
  3550. "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
  3551. "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
  3552. "license": "MIT",
  3553. "dependencies": {
  3554. "@types/unist": "^3.0.0"
  3555. },
  3556. "funding": {
  3557. "type": "opencollective",
  3558. "url": "https://opencollective.com/unified"
  3559. }
  3560. },
  3561. "node_modules/unist-util-position": {
  3562. "version": "5.0.0",
  3563. "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
  3564. "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
  3565. "license": "MIT",
  3566. "dependencies": {
  3567. "@types/unist": "^3.0.0"
  3568. },
  3569. "funding": {
  3570. "type": "opencollective",
  3571. "url": "https://opencollective.com/unified"
  3572. }
  3573. },
  3574. "node_modules/unist-util-remove-position": {
  3575. "version": "5.0.0",
  3576. "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
  3577. "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
  3578. "license": "MIT",
  3579. "dependencies": {
  3580. "@types/unist": "^3.0.0",
  3581. "unist-util-visit": "^5.0.0"
  3582. },
  3583. "funding": {
  3584. "type": "opencollective",
  3585. "url": "https://opencollective.com/unified"
  3586. }
  3587. },
  3588. "node_modules/unist-util-stringify-position": {
  3589. "version": "4.0.0",
  3590. "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
  3591. "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
  3592. "license": "MIT",
  3593. "dependencies": {
  3594. "@types/unist": "^3.0.0"
  3595. },
  3596. "funding": {
  3597. "type": "opencollective",
  3598. "url": "https://opencollective.com/unified"
  3599. }
  3600. },
  3601. "node_modules/unist-util-visit": {
  3602. "version": "5.1.0",
  3603. "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
  3604. "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
  3605. "license": "MIT",
  3606. "dependencies": {
  3607. "@types/unist": "^3.0.0",
  3608. "unist-util-is": "^6.0.0",
  3609. "unist-util-visit-parents": "^6.0.0"
  3610. },
  3611. "funding": {
  3612. "type": "opencollective",
  3613. "url": "https://opencollective.com/unified"
  3614. }
  3615. },
  3616. "node_modules/unist-util-visit-parents": {
  3617. "version": "6.0.2",
  3618. "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
  3619. "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
  3620. "license": "MIT",
  3621. "dependencies": {
  3622. "@types/unist": "^3.0.0",
  3623. "unist-util-is": "^6.0.0"
  3624. },
  3625. "funding": {
  3626. "type": "opencollective",
  3627. "url": "https://opencollective.com/unified"
  3628. }
  3629. },
  3630. "node_modules/universalify": {
  3631. "version": "0.1.2",
  3632. "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
  3633. "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
  3634. "license": "MIT",
  3635. "engines": {
  3636. "node": ">= 4.0.0"
  3637. }
  3638. },
  3639. "node_modules/update-browserslist-db": {
  3640. "version": "1.2.3",
  3641. "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
  3642. "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
  3643. "dev": true,
  3644. "funding": [
  3645. {
  3646. "type": "opencollective",
  3647. "url": "https://opencollective.com/browserslist"
  3648. },
  3649. {
  3650. "type": "tidelift",
  3651. "url": "https://tidelift.com/funding/github/npm/browserslist"
  3652. },
  3653. {
  3654. "type": "github",
  3655. "url": "https://github.com/sponsors/ai"
  3656. }
  3657. ],
  3658. "license": "MIT",
  3659. "dependencies": {
  3660. "escalade": "^3.2.0",
  3661. "picocolors": "^1.1.1"
  3662. },
  3663. "bin": {
  3664. "update-browserslist-db": "cli.js"
  3665. },
  3666. "peerDependencies": {
  3667. "browserslist": ">= 4.21.0"
  3668. }
  3669. },
  3670. "node_modules/url": {
  3671. "version": "0.11.4",
  3672. "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz",
  3673. "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
  3674. "license": "MIT",
  3675. "dependencies": {
  3676. "punycode": "^1.4.1",
  3677. "qs": "^6.12.3"
  3678. },
  3679. "engines": {
  3680. "node": ">= 0.4"
  3681. }
  3682. },
  3683. "node_modules/vfile": {
  3684. "version": "6.0.3",
  3685. "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
  3686. "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
  3687. "license": "MIT",
  3688. "dependencies": {
  3689. "@types/unist": "^3.0.0",
  3690. "vfile-message": "^4.0.0"
  3691. },
  3692. "funding": {
  3693. "type": "opencollective",
  3694. "url": "https://opencollective.com/unified"
  3695. }
  3696. },
  3697. "node_modules/vfile-location": {
  3698. "version": "5.0.3",
  3699. "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
  3700. "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
  3701. "license": "MIT",
  3702. "dependencies": {
  3703. "@types/unist": "^3.0.0",
  3704. "vfile": "^6.0.0"
  3705. },
  3706. "funding": {
  3707. "type": "opencollective",
  3708. "url": "https://opencollective.com/unified"
  3709. }
  3710. },
  3711. "node_modules/vfile-message": {
  3712. "version": "4.0.3",
  3713. "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
  3714. "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
  3715. "license": "MIT",
  3716. "dependencies": {
  3717. "@types/unist": "^3.0.0",
  3718. "unist-util-stringify-position": "^4.0.0"
  3719. },
  3720. "funding": {
  3721. "type": "opencollective",
  3722. "url": "https://opencollective.com/unified"
  3723. }
  3724. },
  3725. "node_modules/vite": {
  3726. "version": "6.4.1",
  3727. "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
  3728. "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
  3729. "dev": true,
  3730. "license": "MIT",
  3731. "dependencies": {
  3732. "esbuild": "^0.25.0",
  3733. "fdir": "^6.4.4",
  3734. "picomatch": "^4.0.2",
  3735. "postcss": "^8.5.3",
  3736. "rollup": "^4.34.9",
  3737. "tinyglobby": "^0.2.13"
  3738. },
  3739. "bin": {
  3740. "vite": "bin/vite.js"
  3741. },
  3742. "engines": {
  3743. "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  3744. },
  3745. "funding": {
  3746. "url": "https://github.com/vitejs/vite?sponsor=1"
  3747. },
  3748. "optionalDependencies": {
  3749. "fsevents": "~2.3.3"
  3750. },
  3751. "peerDependencies": {
  3752. "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
  3753. "jiti": ">=1.21.0",
  3754. "less": "*",
  3755. "lightningcss": "^1.21.0",
  3756. "sass": "*",
  3757. "sass-embedded": "*",
  3758. "stylus": "*",
  3759. "sugarss": "*",
  3760. "terser": "^5.16.0",
  3761. "tsx": "^4.8.1",
  3762. "yaml": "^2.4.2"
  3763. },
  3764. "peerDependenciesMeta": {
  3765. "@types/node": {
  3766. "optional": true
  3767. },
  3768. "jiti": {
  3769. "optional": true
  3770. },
  3771. "less": {
  3772. "optional": true
  3773. },
  3774. "lightningcss": {
  3775. "optional": true
  3776. },
  3777. "sass": {
  3778. "optional": true
  3779. },
  3780. "sass-embedded": {
  3781. "optional": true
  3782. },
  3783. "stylus": {
  3784. "optional": true
  3785. },
  3786. "sugarss": {
  3787. "optional": true
  3788. },
  3789. "terser": {
  3790. "optional": true
  3791. },
  3792. "tsx": {
  3793. "optional": true
  3794. },
  3795. "yaml": {
  3796. "optional": true
  3797. }
  3798. }
  3799. },
  3800. "node_modules/web-namespaces": {
  3801. "version": "2.0.1",
  3802. "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
  3803. "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
  3804. "license": "MIT",
  3805. "funding": {
  3806. "type": "github",
  3807. "url": "https://github.com/sponsors/wooorm"
  3808. }
  3809. },
  3810. "node_modules/wrappy": {
  3811. "version": "1.0.2",
  3812. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  3813. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  3814. "license": "ISC"
  3815. },
  3816. "node_modules/yallist": {
  3817. "version": "3.1.1",
  3818. "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
  3819. "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
  3820. "dev": true,
  3821. "license": "ISC"
  3822. },
  3823. "node_modules/zwitch": {
  3824. "version": "2.0.4",
  3825. "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
  3826. "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
  3827. "license": "MIT",
  3828. "funding": {
  3829. "type": "github",
  3830. "url": "https://github.com/sponsors/wooorm"
  3831. }
  3832. }
  3833. }
  3834. }