package-lock.json 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309
  1. {
  2. "name": "webui",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "webui",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@sec-ant/readable-stream": "^0.6.0",
  12. "@vscode/markdown-it-katex": "^1.1.1",
  13. "autoprefixer": "^10.4.20",
  14. "daisyui": "^4.12.14",
  15. "highlight.js": "^11.10.0",
  16. "katex": "^0.16.15",
  17. "markdown-it": "^14.1.0",
  18. "postcss": "^8.4.49",
  19. "tailwindcss": "^3.4.15",
  20. "textlinestream": "^1.1.1",
  21. "vite-plugin-singlefile": "^2.0.3",
  22. "vue": "^3.5.13"
  23. },
  24. "devDependencies": {
  25. "sass-embedded": "^1.83.0",
  26. "vite": "^5.4.10"
  27. }
  28. },
  29. "node_modules/@alloc/quick-lru": {
  30. "version": "5.2.0",
  31. "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
  32. "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
  33. "license": "MIT",
  34. "engines": {
  35. "node": ">=10"
  36. },
  37. "funding": {
  38. "url": "https://github.com/sponsors/sindresorhus"
  39. }
  40. },
  41. "node_modules/@bufbuild/protobuf": {
  42. "version": "2.2.3",
  43. "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.2.3.tgz",
  44. "integrity": "sha512-tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg==",
  45. "devOptional": true,
  46. "license": "(Apache-2.0 AND BSD-3-Clause)"
  47. },
  48. "node_modules/@esbuild/aix-ppc64": {
  49. "version": "0.21.5",
  50. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
  51. "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
  52. "cpu": [
  53. "ppc64"
  54. ],
  55. "license": "MIT",
  56. "optional": true,
  57. "os": [
  58. "aix"
  59. ],
  60. "engines": {
  61. "node": ">=12"
  62. }
  63. },
  64. "node_modules/@esbuild/android-arm": {
  65. "version": "0.21.5",
  66. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
  67. "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
  68. "cpu": [
  69. "arm"
  70. ],
  71. "license": "MIT",
  72. "optional": true,
  73. "os": [
  74. "android"
  75. ],
  76. "engines": {
  77. "node": ">=12"
  78. }
  79. },
  80. "node_modules/@esbuild/android-arm64": {
  81. "version": "0.21.5",
  82. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
  83. "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
  84. "cpu": [
  85. "arm64"
  86. ],
  87. "license": "MIT",
  88. "optional": true,
  89. "os": [
  90. "android"
  91. ],
  92. "engines": {
  93. "node": ">=12"
  94. }
  95. },
  96. "node_modules/@esbuild/android-x64": {
  97. "version": "0.21.5",
  98. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
  99. "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
  100. "cpu": [
  101. "x64"
  102. ],
  103. "license": "MIT",
  104. "optional": true,
  105. "os": [
  106. "android"
  107. ],
  108. "engines": {
  109. "node": ">=12"
  110. }
  111. },
  112. "node_modules/@esbuild/darwin-x64": {
  113. "version": "0.21.5",
  114. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
  115. "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
  116. "cpu": [
  117. "x64"
  118. ],
  119. "license": "MIT",
  120. "optional": true,
  121. "os": [
  122. "darwin"
  123. ],
  124. "engines": {
  125. "node": ">=12"
  126. }
  127. },
  128. "node_modules/@esbuild/freebsd-arm64": {
  129. "version": "0.21.5",
  130. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
  131. "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
  132. "cpu": [
  133. "arm64"
  134. ],
  135. "license": "MIT",
  136. "optional": true,
  137. "os": [
  138. "freebsd"
  139. ],
  140. "engines": {
  141. "node": ">=12"
  142. }
  143. },
  144. "node_modules/@esbuild/freebsd-x64": {
  145. "version": "0.21.5",
  146. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
  147. "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
  148. "cpu": [
  149. "x64"
  150. ],
  151. "license": "MIT",
  152. "optional": true,
  153. "os": [
  154. "freebsd"
  155. ],
  156. "engines": {
  157. "node": ">=12"
  158. }
  159. },
  160. "node_modules/@esbuild/linux-arm": {
  161. "version": "0.21.5",
  162. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
  163. "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
  164. "cpu": [
  165. "arm"
  166. ],
  167. "license": "MIT",
  168. "optional": true,
  169. "os": [
  170. "linux"
  171. ],
  172. "engines": {
  173. "node": ">=12"
  174. }
  175. },
  176. "node_modules/@esbuild/linux-arm64": {
  177. "version": "0.21.5",
  178. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
  179. "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
  180. "cpu": [
  181. "arm64"
  182. ],
  183. "license": "MIT",
  184. "optional": true,
  185. "os": [
  186. "linux"
  187. ],
  188. "engines": {
  189. "node": ">=12"
  190. }
  191. },
  192. "node_modules/@esbuild/linux-ia32": {
  193. "version": "0.21.5",
  194. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
  195. "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
  196. "cpu": [
  197. "ia32"
  198. ],
  199. "license": "MIT",
  200. "optional": true,
  201. "os": [
  202. "linux"
  203. ],
  204. "engines": {
  205. "node": ">=12"
  206. }
  207. },
  208. "node_modules/@esbuild/linux-loong64": {
  209. "version": "0.21.5",
  210. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
  211. "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
  212. "cpu": [
  213. "loong64"
  214. ],
  215. "license": "MIT",
  216. "optional": true,
  217. "os": [
  218. "linux"
  219. ],
  220. "engines": {
  221. "node": ">=12"
  222. }
  223. },
  224. "node_modules/@esbuild/linux-mips64el": {
  225. "version": "0.21.5",
  226. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
  227. "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
  228. "cpu": [
  229. "mips64el"
  230. ],
  231. "license": "MIT",
  232. "optional": true,
  233. "os": [
  234. "linux"
  235. ],
  236. "engines": {
  237. "node": ">=12"
  238. }
  239. },
  240. "node_modules/@esbuild/linux-ppc64": {
  241. "version": "0.21.5",
  242. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
  243. "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
  244. "cpu": [
  245. "ppc64"
  246. ],
  247. "license": "MIT",
  248. "optional": true,
  249. "os": [
  250. "linux"
  251. ],
  252. "engines": {
  253. "node": ">=12"
  254. }
  255. },
  256. "node_modules/@esbuild/linux-riscv64": {
  257. "version": "0.21.5",
  258. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
  259. "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
  260. "cpu": [
  261. "riscv64"
  262. ],
  263. "license": "MIT",
  264. "optional": true,
  265. "os": [
  266. "linux"
  267. ],
  268. "engines": {
  269. "node": ">=12"
  270. }
  271. },
  272. "node_modules/@esbuild/linux-s390x": {
  273. "version": "0.21.5",
  274. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
  275. "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
  276. "cpu": [
  277. "s390x"
  278. ],
  279. "license": "MIT",
  280. "optional": true,
  281. "os": [
  282. "linux"
  283. ],
  284. "engines": {
  285. "node": ">=12"
  286. }
  287. },
  288. "node_modules/@esbuild/linux-x64": {
  289. "version": "0.21.5",
  290. "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
  291. "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
  292. "cpu": [
  293. "x64"
  294. ],
  295. "license": "MIT",
  296. "optional": true,
  297. "os": [
  298. "linux"
  299. ],
  300. "engines": {
  301. "node": ">=12"
  302. }
  303. },
  304. "node_modules/@esbuild/netbsd-x64": {
  305. "version": "0.21.5",
  306. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
  307. "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
  308. "cpu": [
  309. "x64"
  310. ],
  311. "license": "MIT",
  312. "optional": true,
  313. "os": [
  314. "netbsd"
  315. ],
  316. "engines": {
  317. "node": ">=12"
  318. }
  319. },
  320. "node_modules/@esbuild/openbsd-x64": {
  321. "version": "0.21.5",
  322. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
  323. "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
  324. "cpu": [
  325. "x64"
  326. ],
  327. "license": "MIT",
  328. "optional": true,
  329. "os": [
  330. "openbsd"
  331. ],
  332. "engines": {
  333. "node": ">=12"
  334. }
  335. },
  336. "node_modules/@esbuild/sunos-x64": {
  337. "version": "0.21.5",
  338. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
  339. "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
  340. "cpu": [
  341. "x64"
  342. ],
  343. "license": "MIT",
  344. "optional": true,
  345. "os": [
  346. "sunos"
  347. ],
  348. "engines": {
  349. "node": ">=12"
  350. }
  351. },
  352. "node_modules/@esbuild/win32-arm64": {
  353. "version": "0.21.5",
  354. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
  355. "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
  356. "cpu": [
  357. "arm64"
  358. ],
  359. "license": "MIT",
  360. "optional": true,
  361. "os": [
  362. "win32"
  363. ],
  364. "engines": {
  365. "node": ">=12"
  366. }
  367. },
  368. "node_modules/@esbuild/win32-ia32": {
  369. "version": "0.21.5",
  370. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
  371. "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
  372. "cpu": [
  373. "ia32"
  374. ],
  375. "license": "MIT",
  376. "optional": true,
  377. "os": [
  378. "win32"
  379. ],
  380. "engines": {
  381. "node": ">=12"
  382. }
  383. },
  384. "node_modules/@esbuild/win32-x64": {
  385. "version": "0.21.5",
  386. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
  387. "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
  388. "cpu": [
  389. "x64"
  390. ],
  391. "license": "MIT",
  392. "optional": true,
  393. "os": [
  394. "win32"
  395. ],
  396. "engines": {
  397. "node": ">=12"
  398. }
  399. },
  400. "node_modules/@rollup/rollup-android-arm-eabi": {
  401. "version": "4.28.0",
  402. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz",
  403. "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==",
  404. "cpu": [
  405. "arm"
  406. ],
  407. "license": "MIT",
  408. "optional": true,
  409. "os": [
  410. "android"
  411. ]
  412. },
  413. "node_modules/@rollup/rollup-android-arm64": {
  414. "version": "4.28.0",
  415. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz",
  416. "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==",
  417. "cpu": [
  418. "arm64"
  419. ],
  420. "license": "MIT",
  421. "optional": true,
  422. "os": [
  423. "android"
  424. ]
  425. },
  426. "node_modules/@rollup/rollup-darwin-x64": {
  427. "version": "4.28.0",
  428. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz",
  429. "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==",
  430. "cpu": [
  431. "x64"
  432. ],
  433. "license": "MIT",
  434. "optional": true,
  435. "os": [
  436. "darwin"
  437. ]
  438. },
  439. "node_modules/@rollup/rollup-freebsd-arm64": {
  440. "version": "4.28.0",
  441. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz",
  442. "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==",
  443. "cpu": [
  444. "arm64"
  445. ],
  446. "license": "MIT",
  447. "optional": true,
  448. "os": [
  449. "freebsd"
  450. ]
  451. },
  452. "node_modules/@rollup/rollup-freebsd-x64": {
  453. "version": "4.28.0",
  454. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz",
  455. "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==",
  456. "cpu": [
  457. "x64"
  458. ],
  459. "license": "MIT",
  460. "optional": true,
  461. "os": [
  462. "freebsd"
  463. ]
  464. },
  465. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  466. "version": "4.28.0",
  467. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz",
  468. "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==",
  469. "cpu": [
  470. "arm"
  471. ],
  472. "license": "MIT",
  473. "optional": true,
  474. "os": [
  475. "linux"
  476. ]
  477. },
  478. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  479. "version": "4.28.0",
  480. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz",
  481. "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==",
  482. "cpu": [
  483. "arm"
  484. ],
  485. "license": "MIT",
  486. "optional": true,
  487. "os": [
  488. "linux"
  489. ]
  490. },
  491. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  492. "version": "4.28.0",
  493. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz",
  494. "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==",
  495. "cpu": [
  496. "arm64"
  497. ],
  498. "license": "MIT",
  499. "optional": true,
  500. "os": [
  501. "linux"
  502. ]
  503. },
  504. "node_modules/@rollup/rollup-linux-arm64-musl": {
  505. "version": "4.28.0",
  506. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz",
  507. "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==",
  508. "cpu": [
  509. "arm64"
  510. ],
  511. "license": "MIT",
  512. "optional": true,
  513. "os": [
  514. "linux"
  515. ]
  516. },
  517. "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
  518. "version": "4.28.0",
  519. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz",
  520. "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==",
  521. "cpu": [
  522. "ppc64"
  523. ],
  524. "license": "MIT",
  525. "optional": true,
  526. "os": [
  527. "linux"
  528. ]
  529. },
  530. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  531. "version": "4.28.0",
  532. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz",
  533. "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==",
  534. "cpu": [
  535. "riscv64"
  536. ],
  537. "license": "MIT",
  538. "optional": true,
  539. "os": [
  540. "linux"
  541. ]
  542. },
  543. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  544. "version": "4.28.0",
  545. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz",
  546. "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==",
  547. "cpu": [
  548. "s390x"
  549. ],
  550. "license": "MIT",
  551. "optional": true,
  552. "os": [
  553. "linux"
  554. ]
  555. },
  556. "node_modules/@rollup/rollup-linux-x64-gnu": {
  557. "version": "4.28.0",
  558. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz",
  559. "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==",
  560. "cpu": [
  561. "x64"
  562. ],
  563. "license": "MIT",
  564. "optional": true,
  565. "os": [
  566. "linux"
  567. ]
  568. },
  569. "node_modules/@rollup/rollup-linux-x64-musl": {
  570. "version": "4.28.0",
  571. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz",
  572. "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==",
  573. "cpu": [
  574. "x64"
  575. ],
  576. "license": "MIT",
  577. "optional": true,
  578. "os": [
  579. "linux"
  580. ]
  581. },
  582. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  583. "version": "4.28.0",
  584. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz",
  585. "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==",
  586. "cpu": [
  587. "arm64"
  588. ],
  589. "license": "MIT",
  590. "optional": true,
  591. "os": [
  592. "win32"
  593. ]
  594. },
  595. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  596. "version": "4.28.0",
  597. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz",
  598. "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==",
  599. "cpu": [
  600. "ia32"
  601. ],
  602. "license": "MIT",
  603. "optional": true,
  604. "os": [
  605. "win32"
  606. ]
  607. },
  608. "node_modules/@rollup/rollup-win32-x64-msvc": {
  609. "version": "4.28.0",
  610. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz",
  611. "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==",
  612. "cpu": [
  613. "x64"
  614. ],
  615. "license": "MIT",
  616. "optional": true,
  617. "os": [
  618. "win32"
  619. ]
  620. },
  621. "node_modules/@sec-ant/readable-stream": {
  622. "version": "0.6.0",
  623. "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.6.0.tgz",
  624. "integrity": "sha512-uiBh8DrB5FN35gP6/o8JEhEQ7/ci1jUsOZO/VMUjyvTpjtV54VstOXVj1TvTj/wsT23pfX6butxxh3qufsW3+g==",
  625. "license": "MIT"
  626. },
  627. "node_modules/@vscode/markdown-it-katex": {
  628. "version": "1.1.1",
  629. "resolved": "https://registry.npmjs.org/@vscode/markdown-it-katex/-/markdown-it-katex-1.1.1.tgz",
  630. "integrity": "sha512-3KTlbsRBPJQLE2YmLL7K6nunTlU+W9T5+FjfNdWuIUKgxSS6HWLQHaO3L4MkJi7z7MpIPpY+g4N+cWNBPE/MSA==",
  631. "license": "MIT",
  632. "dependencies": {
  633. "katex": "^0.16.4"
  634. }
  635. },
  636. "node_modules/@vue/compiler-dom": {
  637. "version": "3.5.13",
  638. "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz",
  639. "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==",
  640. "license": "MIT",
  641. "dependencies": {
  642. "@vue/compiler-core": "3.5.13",
  643. "@vue/shared": "3.5.13"
  644. }
  645. },
  646. "node_modules/@vue/compiler-dom/node_modules/@babel/helper-string-parser": {
  647. "version": "7.25.9",
  648. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
  649. "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
  650. "license": "MIT",
  651. "engines": {
  652. "node": ">=6.9.0"
  653. }
  654. },
  655. "node_modules/@vue/compiler-dom/node_modules/@babel/helper-validator-identifier": {
  656. "version": "7.25.9",
  657. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
  658. "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
  659. "license": "MIT",
  660. "engines": {
  661. "node": ">=6.9.0"
  662. }
  663. },
  664. "node_modules/@vue/compiler-dom/node_modules/@babel/parser": {
  665. "version": "7.26.2",
  666. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
  667. "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
  668. "license": "MIT",
  669. "dependencies": {
  670. "@babel/types": "^7.26.0"
  671. },
  672. "bin": {
  673. "parser": "bin/babel-parser.js"
  674. },
  675. "engines": {
  676. "node": ">=6.0.0"
  677. }
  678. },
  679. "node_modules/@vue/compiler-dom/node_modules/@babel/types": {
  680. "version": "7.26.0",
  681. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
  682. "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
  683. "license": "MIT",
  684. "dependencies": {
  685. "@babel/helper-string-parser": "^7.25.9",
  686. "@babel/helper-validator-identifier": "^7.25.9"
  687. },
  688. "engines": {
  689. "node": ">=6.9.0"
  690. }
  691. },
  692. "node_modules/@vue/compiler-dom/node_modules/@vue/compiler-core": {
  693. "version": "3.5.13",
  694. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
  695. "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
  696. "license": "MIT",
  697. "dependencies": {
  698. "@babel/parser": "^7.25.3",
  699. "@vue/shared": "3.5.13",
  700. "entities": "^4.5.0",
  701. "estree-walker": "^2.0.2",
  702. "source-map-js": "^1.2.0"
  703. }
  704. },
  705. "node_modules/@vue/compiler-dom/node_modules/estree-walker": {
  706. "version": "2.0.2",
  707. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  708. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  709. "license": "MIT"
  710. },
  711. "node_modules/@vue/compiler-dom/node_modules/source-map-js": {
  712. "version": "1.2.1",
  713. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  714. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  715. "license": "BSD-3-Clause",
  716. "engines": {
  717. "node": ">=0.10.0"
  718. }
  719. },
  720. "node_modules/@vue/compiler-sfc": {
  721. "version": "3.5.13",
  722. "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz",
  723. "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==",
  724. "license": "MIT",
  725. "dependencies": {
  726. "@babel/parser": "^7.25.3",
  727. "@vue/compiler-core": "3.5.13",
  728. "@vue/compiler-dom": "3.5.13",
  729. "@vue/compiler-ssr": "3.5.13",
  730. "@vue/shared": "3.5.13",
  731. "estree-walker": "^2.0.2",
  732. "magic-string": "^0.30.11",
  733. "postcss": "^8.4.48",
  734. "source-map-js": "^1.2.0"
  735. }
  736. },
  737. "node_modules/@vue/compiler-sfc/node_modules/@babel/helper-string-parser": {
  738. "version": "7.25.9",
  739. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
  740. "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
  741. "license": "MIT",
  742. "engines": {
  743. "node": ">=6.9.0"
  744. }
  745. },
  746. "node_modules/@vue/compiler-sfc/node_modules/@babel/helper-validator-identifier": {
  747. "version": "7.25.9",
  748. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
  749. "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
  750. "license": "MIT",
  751. "engines": {
  752. "node": ">=6.9.0"
  753. }
  754. },
  755. "node_modules/@vue/compiler-sfc/node_modules/@babel/parser": {
  756. "version": "7.26.2",
  757. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
  758. "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
  759. "license": "MIT",
  760. "dependencies": {
  761. "@babel/types": "^7.26.0"
  762. },
  763. "bin": {
  764. "parser": "bin/babel-parser.js"
  765. },
  766. "engines": {
  767. "node": ">=6.0.0"
  768. }
  769. },
  770. "node_modules/@vue/compiler-sfc/node_modules/@babel/types": {
  771. "version": "7.26.0",
  772. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
  773. "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
  774. "license": "MIT",
  775. "dependencies": {
  776. "@babel/helper-string-parser": "^7.25.9",
  777. "@babel/helper-validator-identifier": "^7.25.9"
  778. },
  779. "engines": {
  780. "node": ">=6.9.0"
  781. }
  782. },
  783. "node_modules/@vue/compiler-sfc/node_modules/@jridgewell/sourcemap-codec": {
  784. "version": "1.5.0",
  785. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
  786. "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
  787. "license": "MIT"
  788. },
  789. "node_modules/@vue/compiler-sfc/node_modules/@vue/compiler-core": {
  790. "version": "3.5.13",
  791. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
  792. "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
  793. "license": "MIT",
  794. "dependencies": {
  795. "@babel/parser": "^7.25.3",
  796. "@vue/shared": "3.5.13",
  797. "entities": "^4.5.0",
  798. "estree-walker": "^2.0.2",
  799. "source-map-js": "^1.2.0"
  800. }
  801. },
  802. "node_modules/@vue/compiler-sfc/node_modules/@vue/compiler-ssr": {
  803. "version": "3.5.13",
  804. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
  805. "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
  806. "license": "MIT",
  807. "dependencies": {
  808. "@vue/compiler-dom": "3.5.13",
  809. "@vue/shared": "3.5.13"
  810. }
  811. },
  812. "node_modules/@vue/compiler-sfc/node_modules/estree-walker": {
  813. "version": "2.0.2",
  814. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  815. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  816. "license": "MIT"
  817. },
  818. "node_modules/@vue/compiler-sfc/node_modules/magic-string": {
  819. "version": "0.30.14",
  820. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz",
  821. "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==",
  822. "license": "MIT",
  823. "dependencies": {
  824. "@jridgewell/sourcemap-codec": "^1.5.0"
  825. }
  826. },
  827. "node_modules/@vue/compiler-sfc/node_modules/source-map-js": {
  828. "version": "1.2.1",
  829. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  830. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  831. "license": "BSD-3-Clause",
  832. "engines": {
  833. "node": ">=0.10.0"
  834. }
  835. },
  836. "node_modules/@vue/runtime-dom": {
  837. "version": "3.5.13",
  838. "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz",
  839. "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==",
  840. "license": "MIT",
  841. "dependencies": {
  842. "@vue/reactivity": "3.5.13",
  843. "@vue/runtime-core": "3.5.13",
  844. "@vue/shared": "3.5.13",
  845. "csstype": "^3.1.3"
  846. }
  847. },
  848. "node_modules/@vue/runtime-dom/node_modules/@vue/reactivity": {
  849. "version": "3.5.13",
  850. "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz",
  851. "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==",
  852. "license": "MIT",
  853. "dependencies": {
  854. "@vue/shared": "3.5.13"
  855. }
  856. },
  857. "node_modules/@vue/runtime-dom/node_modules/@vue/runtime-core": {
  858. "version": "3.5.13",
  859. "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz",
  860. "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==",
  861. "license": "MIT",
  862. "dependencies": {
  863. "@vue/reactivity": "3.5.13",
  864. "@vue/shared": "3.5.13"
  865. }
  866. },
  867. "node_modules/@vue/runtime-dom/node_modules/csstype": {
  868. "version": "3.1.3",
  869. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
  870. "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
  871. "license": "MIT"
  872. },
  873. "node_modules/@vue/server-renderer": {
  874. "version": "3.5.13",
  875. "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz",
  876. "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==",
  877. "license": "MIT",
  878. "dependencies": {
  879. "@vue/compiler-ssr": "3.5.13",
  880. "@vue/shared": "3.5.13"
  881. },
  882. "peerDependencies": {
  883. "vue": "3.5.13"
  884. }
  885. },
  886. "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": {
  887. "version": "3.5.13",
  888. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
  889. "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
  890. "license": "MIT",
  891. "dependencies": {
  892. "@vue/compiler-dom": "3.5.13",
  893. "@vue/shared": "3.5.13"
  894. }
  895. },
  896. "node_modules/@vue/shared": {
  897. "version": "3.5.13",
  898. "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz",
  899. "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==",
  900. "license": "MIT"
  901. },
  902. "node_modules/arg": {
  903. "version": "5.0.2",
  904. "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
  905. "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
  906. "license": "MIT"
  907. },
  908. "node_modules/argparse": {
  909. "version": "2.0.1",
  910. "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
  911. "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
  912. "license": "Python-2.0"
  913. },
  914. "node_modules/autoprefixer": {
  915. "version": "10.4.20",
  916. "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
  917. "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
  918. "funding": [
  919. {
  920. "type": "opencollective",
  921. "url": "https://opencollective.com/postcss/"
  922. },
  923. {
  924. "type": "tidelift",
  925. "url": "https://tidelift.com/funding/github/npm/autoprefixer"
  926. },
  927. {
  928. "type": "github",
  929. "url": "https://github.com/sponsors/ai"
  930. }
  931. ],
  932. "license": "MIT",
  933. "dependencies": {
  934. "browserslist": "^4.23.3",
  935. "caniuse-lite": "^1.0.30001646",
  936. "fraction.js": "^4.3.7",
  937. "normalize-range": "^0.1.2",
  938. "picocolors": "^1.0.1",
  939. "postcss-value-parser": "^4.2.0"
  940. },
  941. "bin": {
  942. "autoprefixer": "bin/autoprefixer"
  943. },
  944. "engines": {
  945. "node": "^10 || ^12 || >=14"
  946. },
  947. "peerDependencies": {
  948. "postcss": "^8.1.0"
  949. }
  950. },
  951. "node_modules/browserslist": {
  952. "version": "4.24.2",
  953. "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz",
  954. "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==",
  955. "funding": [
  956. {
  957. "type": "opencollective",
  958. "url": "https://opencollective.com/browserslist"
  959. },
  960. {
  961. "type": "tidelift",
  962. "url": "https://tidelift.com/funding/github/npm/browserslist"
  963. },
  964. {
  965. "type": "github",
  966. "url": "https://github.com/sponsors/ai"
  967. }
  968. ],
  969. "license": "MIT",
  970. "dependencies": {
  971. "caniuse-lite": "^1.0.30001669",
  972. "electron-to-chromium": "^1.5.41",
  973. "node-releases": "^2.0.18",
  974. "update-browserslist-db": "^1.1.1"
  975. },
  976. "bin": {
  977. "browserslist": "cli.js"
  978. },
  979. "engines": {
  980. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  981. }
  982. },
  983. "node_modules/browserslist/node_modules/electron-to-chromium": {
  984. "version": "1.5.67",
  985. "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz",
  986. "integrity": "sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==",
  987. "license": "ISC"
  988. },
  989. "node_modules/browserslist/node_modules/escalade": {
  990. "version": "3.2.0",
  991. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  992. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  993. "license": "MIT",
  994. "engines": {
  995. "node": ">=6"
  996. }
  997. },
  998. "node_modules/browserslist/node_modules/node-releases": {
  999. "version": "2.0.18",
  1000. "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz",
  1001. "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==",
  1002. "license": "MIT"
  1003. },
  1004. "node_modules/browserslist/node_modules/update-browserslist-db": {
  1005. "version": "1.1.1",
  1006. "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
  1007. "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
  1008. "funding": [
  1009. {
  1010. "type": "opencollective",
  1011. "url": "https://opencollective.com/browserslist"
  1012. },
  1013. {
  1014. "type": "tidelift",
  1015. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1016. },
  1017. {
  1018. "type": "github",
  1019. "url": "https://github.com/sponsors/ai"
  1020. }
  1021. ],
  1022. "license": "MIT",
  1023. "dependencies": {
  1024. "escalade": "^3.2.0",
  1025. "picocolors": "^1.1.0"
  1026. },
  1027. "bin": {
  1028. "update-browserslist-db": "cli.js"
  1029. },
  1030. "peerDependencies": {
  1031. "browserslist": ">= 4.21.0"
  1032. }
  1033. },
  1034. "node_modules/buffer-builder": {
  1035. "version": "0.2.0",
  1036. "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz",
  1037. "integrity": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==",
  1038. "devOptional": true,
  1039. "license": "MIT/X11"
  1040. },
  1041. "node_modules/caniuse-lite": {
  1042. "version": "1.0.30001684",
  1043. "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz",
  1044. "integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==",
  1045. "funding": [
  1046. {
  1047. "type": "opencollective",
  1048. "url": "https://opencollective.com/browserslist"
  1049. },
  1050. {
  1051. "type": "tidelift",
  1052. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1053. },
  1054. {
  1055. "type": "github",
  1056. "url": "https://github.com/sponsors/ai"
  1057. }
  1058. ],
  1059. "license": "CC-BY-4.0"
  1060. },
  1061. "node_modules/chokidar": {
  1062. "version": "3.6.0",
  1063. "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
  1064. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  1065. "license": "MIT",
  1066. "dependencies": {
  1067. "anymatch": "~3.1.2",
  1068. "braces": "~3.0.2",
  1069. "glob-parent": "~5.1.2",
  1070. "is-binary-path": "~2.1.0",
  1071. "is-glob": "~4.0.1",
  1072. "normalize-path": "~3.0.0",
  1073. "readdirp": "~3.6.0"
  1074. },
  1075. "engines": {
  1076. "node": ">= 8.10.0"
  1077. },
  1078. "funding": {
  1079. "url": "https://paulmillr.com/funding/"
  1080. },
  1081. "optionalDependencies": {
  1082. "fsevents": "~2.3.2"
  1083. }
  1084. },
  1085. "node_modules/chokidar/node_modules/anymatch": {
  1086. "version": "3.1.3",
  1087. "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
  1088. "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
  1089. "license": "ISC",
  1090. "dependencies": {
  1091. "normalize-path": "^3.0.0",
  1092. "picomatch": "^2.0.4"
  1093. },
  1094. "engines": {
  1095. "node": ">= 8"
  1096. }
  1097. },
  1098. "node_modules/chokidar/node_modules/binary-extensions": {
  1099. "version": "2.3.0",
  1100. "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
  1101. "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
  1102. "license": "MIT",
  1103. "engines": {
  1104. "node": ">=8"
  1105. },
  1106. "funding": {
  1107. "url": "https://github.com/sponsors/sindresorhus"
  1108. }
  1109. },
  1110. "node_modules/chokidar/node_modules/braces": {
  1111. "version": "3.0.3",
  1112. "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
  1113. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1114. "license": "MIT",
  1115. "dependencies": {
  1116. "fill-range": "^7.1.1"
  1117. },
  1118. "engines": {
  1119. "node": ">=8"
  1120. }
  1121. },
  1122. "node_modules/chokidar/node_modules/fill-range": {
  1123. "version": "7.1.1",
  1124. "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
  1125. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1126. "license": "MIT",
  1127. "dependencies": {
  1128. "to-regex-range": "^5.0.1"
  1129. },
  1130. "engines": {
  1131. "node": ">=8"
  1132. }
  1133. },
  1134. "node_modules/chokidar/node_modules/glob-parent": {
  1135. "version": "5.1.2",
  1136. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
  1137. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  1138. "license": "ISC",
  1139. "dependencies": {
  1140. "is-glob": "^4.0.1"
  1141. },
  1142. "engines": {
  1143. "node": ">= 6"
  1144. }
  1145. },
  1146. "node_modules/chokidar/node_modules/is-binary-path": {
  1147. "version": "2.1.0",
  1148. "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
  1149. "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
  1150. "license": "MIT",
  1151. "dependencies": {
  1152. "binary-extensions": "^2.0.0"
  1153. },
  1154. "engines": {
  1155. "node": ">=8"
  1156. }
  1157. },
  1158. "node_modules/chokidar/node_modules/is-number": {
  1159. "version": "7.0.0",
  1160. "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
  1161. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  1162. "license": "MIT",
  1163. "engines": {
  1164. "node": ">=0.12.0"
  1165. }
  1166. },
  1167. "node_modules/chokidar/node_modules/picomatch": {
  1168. "version": "2.3.1",
  1169. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
  1170. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  1171. "license": "MIT",
  1172. "engines": {
  1173. "node": ">=8.6"
  1174. },
  1175. "funding": {
  1176. "url": "https://github.com/sponsors/jonschlinkert"
  1177. }
  1178. },
  1179. "node_modules/chokidar/node_modules/readdirp": {
  1180. "version": "3.6.0",
  1181. "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
  1182. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  1183. "license": "MIT",
  1184. "dependencies": {
  1185. "picomatch": "^2.2.1"
  1186. },
  1187. "engines": {
  1188. "node": ">=8.10.0"
  1189. }
  1190. },
  1191. "node_modules/chokidar/node_modules/to-regex-range": {
  1192. "version": "5.0.1",
  1193. "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
  1194. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  1195. "license": "MIT",
  1196. "dependencies": {
  1197. "is-number": "^7.0.0"
  1198. },
  1199. "engines": {
  1200. "node": ">=8.0"
  1201. }
  1202. },
  1203. "node_modules/colorjs.io": {
  1204. "version": "0.5.2",
  1205. "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz",
  1206. "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==",
  1207. "devOptional": true,
  1208. "license": "MIT"
  1209. },
  1210. "node_modules/commander": {
  1211. "version": "8.3.0",
  1212. "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
  1213. "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
  1214. "license": "MIT",
  1215. "engines": {
  1216. "node": ">= 12"
  1217. }
  1218. },
  1219. "node_modules/css-selector-tokenizer": {
  1220. "version": "0.8.0",
  1221. "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.8.0.tgz",
  1222. "integrity": "sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==",
  1223. "license": "MIT",
  1224. "dependencies": {
  1225. "cssesc": "^3.0.0",
  1226. "fastparse": "^1.1.2"
  1227. }
  1228. },
  1229. "node_modules/css-selector-tokenizer/node_modules/cssesc": {
  1230. "version": "3.0.0",
  1231. "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
  1232. "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
  1233. "license": "MIT",
  1234. "bin": {
  1235. "cssesc": "bin/cssesc"
  1236. },
  1237. "engines": {
  1238. "node": ">=4"
  1239. }
  1240. },
  1241. "node_modules/css-selector-tokenizer/node_modules/fastparse": {
  1242. "version": "1.1.2",
  1243. "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
  1244. "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
  1245. "license": "MIT"
  1246. },
  1247. "node_modules/culori": {
  1248. "version": "3.3.0",
  1249. "resolved": "https://registry.npmjs.org/culori/-/culori-3.3.0.tgz",
  1250. "integrity": "sha512-pHJg+jbuFsCjz9iclQBqyL3B2HLCBF71BwVNujUYEvCeQMvV97R59MNK3R2+jgJ3a1fcZgI9B3vYgz8lzr/BFQ==",
  1251. "license": "MIT",
  1252. "engines": {
  1253. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  1254. }
  1255. },
  1256. "node_modules/daisyui": {
  1257. "version": "4.12.14",
  1258. "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-4.12.14.tgz",
  1259. "integrity": "sha512-hA27cdBasdwd4/iEjn+aidoCrRroDuo3G5W9NDKaVCJI437Mm/3eSL/2u7MkZ0pt8a+TrYF3aT2pFVemTS3how==",
  1260. "license": "MIT",
  1261. "dependencies": {
  1262. "css-selector-tokenizer": "^0.8",
  1263. "culori": "^3",
  1264. "picocolors": "^1",
  1265. "postcss-js": "^4"
  1266. },
  1267. "engines": {
  1268. "node": ">=16.9.0"
  1269. },
  1270. "funding": {
  1271. "type": "opencollective",
  1272. "url": "https://opencollective.com/daisyui"
  1273. }
  1274. },
  1275. "node_modules/didyoumean": {
  1276. "version": "1.2.2",
  1277. "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
  1278. "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
  1279. "license": "Apache-2.0"
  1280. },
  1281. "node_modules/dlv": {
  1282. "version": "1.1.3",
  1283. "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
  1284. "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
  1285. "license": "MIT"
  1286. },
  1287. "node_modules/entities": {
  1288. "version": "4.5.0",
  1289. "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
  1290. "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
  1291. "license": "BSD-2-Clause",
  1292. "engines": {
  1293. "node": ">=0.12"
  1294. },
  1295. "funding": {
  1296. "url": "https://github.com/fb55/entities?sponsor=1"
  1297. }
  1298. },
  1299. "node_modules/esbuild": {
  1300. "version": "0.21.5",
  1301. "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
  1302. "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
  1303. "hasInstallScript": true,
  1304. "license": "MIT",
  1305. "bin": {
  1306. "esbuild": "bin/esbuild"
  1307. },
  1308. "engines": {
  1309. "node": ">=12"
  1310. },
  1311. "optionalDependencies": {
  1312. "@esbuild/aix-ppc64": "0.21.5",
  1313. "@esbuild/android-arm": "0.21.5",
  1314. "@esbuild/android-arm64": "0.21.5",
  1315. "@esbuild/android-x64": "0.21.5",
  1316. "@esbuild/darwin-arm64": "0.21.5",
  1317. "@esbuild/darwin-x64": "0.21.5",
  1318. "@esbuild/freebsd-arm64": "0.21.5",
  1319. "@esbuild/freebsd-x64": "0.21.5",
  1320. "@esbuild/linux-arm": "0.21.5",
  1321. "@esbuild/linux-arm64": "0.21.5",
  1322. "@esbuild/linux-ia32": "0.21.5",
  1323. "@esbuild/linux-loong64": "0.21.5",
  1324. "@esbuild/linux-mips64el": "0.21.5",
  1325. "@esbuild/linux-ppc64": "0.21.5",
  1326. "@esbuild/linux-riscv64": "0.21.5",
  1327. "@esbuild/linux-s390x": "0.21.5",
  1328. "@esbuild/linux-x64": "0.21.5",
  1329. "@esbuild/netbsd-x64": "0.21.5",
  1330. "@esbuild/openbsd-x64": "0.21.5",
  1331. "@esbuild/sunos-x64": "0.21.5",
  1332. "@esbuild/win32-arm64": "0.21.5",
  1333. "@esbuild/win32-ia32": "0.21.5",
  1334. "@esbuild/win32-x64": "0.21.5"
  1335. }
  1336. },
  1337. "node_modules/esbuild/node_modules/@esbuild/darwin-arm64": {
  1338. "version": "0.21.5",
  1339. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
  1340. "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
  1341. "cpu": [
  1342. "arm64"
  1343. ],
  1344. "license": "MIT",
  1345. "optional": true,
  1346. "os": [
  1347. "darwin"
  1348. ],
  1349. "engines": {
  1350. "node": ">=12"
  1351. }
  1352. },
  1353. "node_modules/fast-glob": {
  1354. "version": "3.3.2",
  1355. "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
  1356. "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
  1357. "license": "MIT",
  1358. "dependencies": {
  1359. "@nodelib/fs.stat": "^2.0.2",
  1360. "@nodelib/fs.walk": "^1.2.3",
  1361. "glob-parent": "^5.1.2",
  1362. "merge2": "^1.3.0",
  1363. "micromatch": "^4.0.4"
  1364. },
  1365. "engines": {
  1366. "node": ">=8.6.0"
  1367. }
  1368. },
  1369. "node_modules/fast-glob/node_modules/@nodelib/fs.scandir": {
  1370. "version": "2.1.5",
  1371. "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
  1372. "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
  1373. "license": "MIT",
  1374. "dependencies": {
  1375. "@nodelib/fs.stat": "2.0.5",
  1376. "run-parallel": "^1.1.9"
  1377. },
  1378. "engines": {
  1379. "node": ">= 8"
  1380. }
  1381. },
  1382. "node_modules/fast-glob/node_modules/@nodelib/fs.stat": {
  1383. "version": "2.0.5",
  1384. "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
  1385. "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
  1386. "license": "MIT",
  1387. "engines": {
  1388. "node": ">= 8"
  1389. }
  1390. },
  1391. "node_modules/fast-glob/node_modules/@nodelib/fs.walk": {
  1392. "version": "1.2.8",
  1393. "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
  1394. "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
  1395. "license": "MIT",
  1396. "dependencies": {
  1397. "@nodelib/fs.scandir": "2.1.5",
  1398. "fastq": "^1.6.0"
  1399. },
  1400. "engines": {
  1401. "node": ">= 8"
  1402. }
  1403. },
  1404. "node_modules/fast-glob/node_modules/fastq": {
  1405. "version": "1.17.1",
  1406. "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
  1407. "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
  1408. "license": "ISC",
  1409. "dependencies": {
  1410. "reusify": "^1.0.4"
  1411. }
  1412. },
  1413. "node_modules/fast-glob/node_modules/glob-parent": {
  1414. "version": "5.1.2",
  1415. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
  1416. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  1417. "license": "ISC",
  1418. "dependencies": {
  1419. "is-glob": "^4.0.1"
  1420. },
  1421. "engines": {
  1422. "node": ">= 6"
  1423. }
  1424. },
  1425. "node_modules/fast-glob/node_modules/merge2": {
  1426. "version": "1.4.1",
  1427. "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
  1428. "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
  1429. "license": "MIT",
  1430. "engines": {
  1431. "node": ">= 8"
  1432. }
  1433. },
  1434. "node_modules/fast-glob/node_modules/queue-microtask": {
  1435. "version": "1.2.3",
  1436. "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
  1437. "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
  1438. "funding": [
  1439. {
  1440. "type": "github",
  1441. "url": "https://github.com/sponsors/feross"
  1442. },
  1443. {
  1444. "type": "patreon",
  1445. "url": "https://www.patreon.com/feross"
  1446. },
  1447. {
  1448. "type": "consulting",
  1449. "url": "https://feross.org/support"
  1450. }
  1451. ],
  1452. "license": "MIT"
  1453. },
  1454. "node_modules/fast-glob/node_modules/reusify": {
  1455. "version": "1.0.4",
  1456. "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
  1457. "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
  1458. "license": "MIT",
  1459. "engines": {
  1460. "iojs": ">=1.0.0",
  1461. "node": ">=0.10.0"
  1462. }
  1463. },
  1464. "node_modules/fast-glob/node_modules/run-parallel": {
  1465. "version": "1.2.0",
  1466. "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
  1467. "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
  1468. "funding": [
  1469. {
  1470. "type": "github",
  1471. "url": "https://github.com/sponsors/feross"
  1472. },
  1473. {
  1474. "type": "patreon",
  1475. "url": "https://www.patreon.com/feross"
  1476. },
  1477. {
  1478. "type": "consulting",
  1479. "url": "https://feross.org/support"
  1480. }
  1481. ],
  1482. "license": "MIT",
  1483. "dependencies": {
  1484. "queue-microtask": "^1.2.2"
  1485. }
  1486. },
  1487. "node_modules/fraction.js": {
  1488. "version": "4.3.7",
  1489. "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
  1490. "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
  1491. "license": "MIT",
  1492. "engines": {
  1493. "node": "*"
  1494. },
  1495. "funding": {
  1496. "type": "patreon",
  1497. "url": "https://github.com/sponsors/rawify"
  1498. }
  1499. },
  1500. "node_modules/fsevents": {
  1501. "version": "2.3.3",
  1502. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1503. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1504. "hasInstallScript": true,
  1505. "license": "MIT",
  1506. "optional": true,
  1507. "os": [
  1508. "darwin"
  1509. ],
  1510. "engines": {
  1511. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1512. }
  1513. },
  1514. "node_modules/glob-parent": {
  1515. "version": "6.0.2",
  1516. "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
  1517. "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
  1518. "license": "ISC",
  1519. "dependencies": {
  1520. "is-glob": "^4.0.3"
  1521. },
  1522. "engines": {
  1523. "node": ">=10.13.0"
  1524. }
  1525. },
  1526. "node_modules/has-flag": {
  1527. "version": "4.0.0",
  1528. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
  1529. "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
  1530. "devOptional": true,
  1531. "license": "MIT",
  1532. "engines": {
  1533. "node": ">=8"
  1534. }
  1535. },
  1536. "node_modules/highlight.js": {
  1537. "version": "11.10.0",
  1538. "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.10.0.tgz",
  1539. "integrity": "sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==",
  1540. "engines": {
  1541. "node": ">=12.0.0"
  1542. }
  1543. },
  1544. "node_modules/immutable": {
  1545. "version": "5.0.3",
  1546. "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz",
  1547. "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==",
  1548. "devOptional": true,
  1549. "license": "MIT"
  1550. },
  1551. "node_modules/is-glob": {
  1552. "version": "4.0.3",
  1553. "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
  1554. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1555. "license": "MIT",
  1556. "dependencies": {
  1557. "is-extglob": "^2.1.1"
  1558. },
  1559. "engines": {
  1560. "node": ">=0.10.0"
  1561. }
  1562. },
  1563. "node_modules/is-glob/node_modules/is-extglob": {
  1564. "version": "2.1.1",
  1565. "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
  1566. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1567. "license": "MIT",
  1568. "engines": {
  1569. "node": ">=0.10.0"
  1570. }
  1571. },
  1572. "node_modules/jiti": {
  1573. "version": "1.21.6",
  1574. "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz",
  1575. "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==",
  1576. "license": "MIT",
  1577. "bin": {
  1578. "jiti": "bin/jiti.js"
  1579. }
  1580. },
  1581. "node_modules/katex": {
  1582. "version": "0.16.15",
  1583. "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.15.tgz",
  1584. "integrity": "sha512-yE9YJIEAk2aZ+FL/G8r+UGw0CTUzEA8ZFy6E+8tc3spHUKq3qBnzCkI1CQwGoI9atJhVyFPEypQsTY7mJ1Pi9w==",
  1585. "funding": [
  1586. "https://opencollective.com/katex",
  1587. "https://github.com/sponsors/katex"
  1588. ],
  1589. "license": "MIT",
  1590. "dependencies": {
  1591. "commander": "^8.3.0"
  1592. },
  1593. "bin": {
  1594. "katex": "cli.js"
  1595. }
  1596. },
  1597. "node_modules/lilconfig": {
  1598. "version": "2.1.0",
  1599. "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
  1600. "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
  1601. "license": "MIT",
  1602. "engines": {
  1603. "node": ">=10"
  1604. }
  1605. },
  1606. "node_modules/linkify-it": {
  1607. "version": "5.0.0",
  1608. "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
  1609. "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
  1610. "license": "MIT",
  1611. "dependencies": {
  1612. "uc.micro": "^2.0.0"
  1613. }
  1614. },
  1615. "node_modules/markdown-it": {
  1616. "version": "14.1.0",
  1617. "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
  1618. "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
  1619. "license": "MIT",
  1620. "dependencies": {
  1621. "argparse": "^2.0.1",
  1622. "entities": "^4.4.0",
  1623. "linkify-it": "^5.0.0",
  1624. "mdurl": "^2.0.0",
  1625. "punycode.js": "^2.3.1",
  1626. "uc.micro": "^2.1.0"
  1627. },
  1628. "bin": {
  1629. "markdown-it": "bin/markdown-it.mjs"
  1630. }
  1631. },
  1632. "node_modules/mdurl": {
  1633. "version": "2.0.0",
  1634. "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
  1635. "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
  1636. "license": "MIT"
  1637. },
  1638. "node_modules/micromatch": {
  1639. "version": "4.0.8",
  1640. "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
  1641. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  1642. "license": "MIT",
  1643. "dependencies": {
  1644. "braces": "^3.0.3",
  1645. "picomatch": "^2.3.1"
  1646. },
  1647. "engines": {
  1648. "node": ">=8.6"
  1649. }
  1650. },
  1651. "node_modules/micromatch/node_modules/braces": {
  1652. "version": "3.0.3",
  1653. "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
  1654. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1655. "license": "MIT",
  1656. "dependencies": {
  1657. "fill-range": "^7.1.1"
  1658. },
  1659. "engines": {
  1660. "node": ">=8"
  1661. }
  1662. },
  1663. "node_modules/micromatch/node_modules/fill-range": {
  1664. "version": "7.1.1",
  1665. "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
  1666. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1667. "license": "MIT",
  1668. "dependencies": {
  1669. "to-regex-range": "^5.0.1"
  1670. },
  1671. "engines": {
  1672. "node": ">=8"
  1673. }
  1674. },
  1675. "node_modules/micromatch/node_modules/is-number": {
  1676. "version": "7.0.0",
  1677. "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
  1678. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  1679. "license": "MIT",
  1680. "engines": {
  1681. "node": ">=0.12.0"
  1682. }
  1683. },
  1684. "node_modules/micromatch/node_modules/picomatch": {
  1685. "version": "2.3.1",
  1686. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
  1687. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  1688. "license": "MIT",
  1689. "engines": {
  1690. "node": ">=8.6"
  1691. },
  1692. "funding": {
  1693. "url": "https://github.com/sponsors/jonschlinkert"
  1694. }
  1695. },
  1696. "node_modules/micromatch/node_modules/to-regex-range": {
  1697. "version": "5.0.1",
  1698. "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
  1699. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  1700. "license": "MIT",
  1701. "dependencies": {
  1702. "is-number": "^7.0.0"
  1703. },
  1704. "engines": {
  1705. "node": ">=8.0"
  1706. }
  1707. },
  1708. "node_modules/normalize-path": {
  1709. "version": "3.0.0",
  1710. "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
  1711. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  1712. "license": "MIT",
  1713. "engines": {
  1714. "node": ">=0.10.0"
  1715. }
  1716. },
  1717. "node_modules/normalize-range": {
  1718. "version": "0.1.2",
  1719. "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
  1720. "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
  1721. "license": "MIT",
  1722. "engines": {
  1723. "node": ">=0.10.0"
  1724. }
  1725. },
  1726. "node_modules/object-hash": {
  1727. "version": "3.0.0",
  1728. "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
  1729. "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
  1730. "license": "MIT",
  1731. "engines": {
  1732. "node": ">= 6"
  1733. }
  1734. },
  1735. "node_modules/picocolors": {
  1736. "version": "1.1.1",
  1737. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  1738. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1739. "license": "ISC"
  1740. },
  1741. "node_modules/postcss": {
  1742. "version": "8.4.49",
  1743. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
  1744. "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
  1745. "funding": [
  1746. {
  1747. "type": "opencollective",
  1748. "url": "https://opencollective.com/postcss/"
  1749. },
  1750. {
  1751. "type": "tidelift",
  1752. "url": "https://tidelift.com/funding/github/npm/postcss"
  1753. },
  1754. {
  1755. "type": "github",
  1756. "url": "https://github.com/sponsors/ai"
  1757. }
  1758. ],
  1759. "license": "MIT",
  1760. "dependencies": {
  1761. "nanoid": "^3.3.7",
  1762. "picocolors": "^1.1.1",
  1763. "source-map-js": "^1.2.1"
  1764. },
  1765. "engines": {
  1766. "node": "^10 || ^12 || >=14"
  1767. }
  1768. },
  1769. "node_modules/postcss-import": {
  1770. "version": "15.1.0",
  1771. "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
  1772. "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
  1773. "license": "MIT",
  1774. "dependencies": {
  1775. "postcss-value-parser": "^4.0.0",
  1776. "read-cache": "^1.0.0",
  1777. "resolve": "^1.1.7"
  1778. },
  1779. "engines": {
  1780. "node": ">=14.0.0"
  1781. },
  1782. "peerDependencies": {
  1783. "postcss": "^8.0.0"
  1784. }
  1785. },
  1786. "node_modules/postcss-import/node_modules/pify": {
  1787. "version": "2.3.0",
  1788. "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
  1789. "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
  1790. "license": "MIT",
  1791. "engines": {
  1792. "node": ">=0.10.0"
  1793. }
  1794. },
  1795. "node_modules/postcss-import/node_modules/read-cache": {
  1796. "version": "1.0.0",
  1797. "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
  1798. "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
  1799. "license": "MIT",
  1800. "dependencies": {
  1801. "pify": "^2.3.0"
  1802. }
  1803. },
  1804. "node_modules/postcss-js": {
  1805. "version": "4.0.1",
  1806. "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
  1807. "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
  1808. "license": "MIT",
  1809. "dependencies": {
  1810. "camelcase-css": "^2.0.1"
  1811. },
  1812. "engines": {
  1813. "node": "^12 || ^14 || >= 16"
  1814. },
  1815. "funding": {
  1816. "type": "opencollective",
  1817. "url": "https://opencollective.com/postcss/"
  1818. },
  1819. "peerDependencies": {
  1820. "postcss": "^8.4.21"
  1821. }
  1822. },
  1823. "node_modules/postcss-js/node_modules/camelcase-css": {
  1824. "version": "2.0.1",
  1825. "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
  1826. "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
  1827. "license": "MIT",
  1828. "engines": {
  1829. "node": ">= 6"
  1830. }
  1831. },
  1832. "node_modules/postcss-load-config": {
  1833. "version": "4.0.2",
  1834. "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
  1835. "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
  1836. "funding": [
  1837. {
  1838. "type": "opencollective",
  1839. "url": "https://opencollective.com/postcss/"
  1840. },
  1841. {
  1842. "type": "github",
  1843. "url": "https://github.com/sponsors/ai"
  1844. }
  1845. ],
  1846. "license": "MIT",
  1847. "dependencies": {
  1848. "lilconfig": "^3.0.0",
  1849. "yaml": "^2.3.4"
  1850. },
  1851. "engines": {
  1852. "node": ">= 14"
  1853. },
  1854. "peerDependencies": {
  1855. "postcss": ">=8.0.9",
  1856. "ts-node": ">=9.0.0"
  1857. },
  1858. "peerDependenciesMeta": {
  1859. "postcss": {
  1860. "optional": true
  1861. },
  1862. "ts-node": {
  1863. "optional": true
  1864. }
  1865. }
  1866. },
  1867. "node_modules/postcss-load-config/node_modules/lilconfig": {
  1868. "version": "3.1.2",
  1869. "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz",
  1870. "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==",
  1871. "license": "MIT",
  1872. "engines": {
  1873. "node": ">=14"
  1874. },
  1875. "funding": {
  1876. "url": "https://github.com/sponsors/antonk52"
  1877. }
  1878. },
  1879. "node_modules/postcss-load-config/node_modules/yaml": {
  1880. "version": "2.6.1",
  1881. "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
  1882. "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
  1883. "license": "ISC",
  1884. "bin": {
  1885. "yaml": "bin.mjs"
  1886. },
  1887. "engines": {
  1888. "node": ">= 14"
  1889. }
  1890. },
  1891. "node_modules/postcss-nested": {
  1892. "version": "6.2.0",
  1893. "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
  1894. "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
  1895. "funding": [
  1896. {
  1897. "type": "opencollective",
  1898. "url": "https://opencollective.com/postcss/"
  1899. },
  1900. {
  1901. "type": "github",
  1902. "url": "https://github.com/sponsors/ai"
  1903. }
  1904. ],
  1905. "license": "MIT",
  1906. "dependencies": {
  1907. "postcss-selector-parser": "^6.1.1"
  1908. },
  1909. "engines": {
  1910. "node": ">=12.0"
  1911. },
  1912. "peerDependencies": {
  1913. "postcss": "^8.2.14"
  1914. }
  1915. },
  1916. "node_modules/postcss-selector-parser": {
  1917. "version": "6.1.2",
  1918. "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
  1919. "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
  1920. "license": "MIT",
  1921. "dependencies": {
  1922. "cssesc": "^3.0.0",
  1923. "util-deprecate": "^1.0.2"
  1924. },
  1925. "engines": {
  1926. "node": ">=4"
  1927. }
  1928. },
  1929. "node_modules/postcss-selector-parser/node_modules/cssesc": {
  1930. "version": "3.0.0",
  1931. "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
  1932. "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
  1933. "license": "MIT",
  1934. "bin": {
  1935. "cssesc": "bin/cssesc"
  1936. },
  1937. "engines": {
  1938. "node": ">=4"
  1939. }
  1940. },
  1941. "node_modules/postcss-selector-parser/node_modules/util-deprecate": {
  1942. "version": "1.0.2",
  1943. "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
  1944. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  1945. "license": "MIT"
  1946. },
  1947. "node_modules/postcss-value-parser": {
  1948. "version": "4.2.0",
  1949. "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  1950. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
  1951. "license": "MIT"
  1952. },
  1953. "node_modules/postcss/node_modules/nanoid": {
  1954. "version": "3.3.8",
  1955. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
  1956. "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
  1957. "funding": [
  1958. {
  1959. "type": "github",
  1960. "url": "https://github.com/sponsors/ai"
  1961. }
  1962. ],
  1963. "license": "MIT",
  1964. "bin": {
  1965. "nanoid": "bin/nanoid.cjs"
  1966. },
  1967. "engines": {
  1968. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1969. }
  1970. },
  1971. "node_modules/postcss/node_modules/source-map-js": {
  1972. "version": "1.2.1",
  1973. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  1974. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  1975. "license": "BSD-3-Clause",
  1976. "engines": {
  1977. "node": ">=0.10.0"
  1978. }
  1979. },
  1980. "node_modules/punycode.js": {
  1981. "version": "2.3.1",
  1982. "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
  1983. "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
  1984. "license": "MIT",
  1985. "engines": {
  1986. "node": ">=6"
  1987. }
  1988. },
  1989. "node_modules/resolve": {
  1990. "version": "1.22.8",
  1991. "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
  1992. "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
  1993. "license": "MIT",
  1994. "dependencies": {
  1995. "is-core-module": "^2.13.0",
  1996. "path-parse": "^1.0.7",
  1997. "supports-preserve-symlinks-flag": "^1.0.0"
  1998. },
  1999. "bin": {
  2000. "resolve": "bin/resolve"
  2001. },
  2002. "funding": {
  2003. "url": "https://github.com/sponsors/ljharb"
  2004. }
  2005. },
  2006. "node_modules/resolve/node_modules/function-bind": {
  2007. "version": "1.1.2",
  2008. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  2009. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  2010. "license": "MIT",
  2011. "funding": {
  2012. "url": "https://github.com/sponsors/ljharb"
  2013. }
  2014. },
  2015. "node_modules/resolve/node_modules/hasown": {
  2016. "version": "2.0.2",
  2017. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  2018. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  2019. "license": "MIT",
  2020. "dependencies": {
  2021. "function-bind": "^1.1.2"
  2022. },
  2023. "engines": {
  2024. "node": ">= 0.4"
  2025. }
  2026. },
  2027. "node_modules/resolve/node_modules/is-core-module": {
  2028. "version": "2.15.1",
  2029. "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
  2030. "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
  2031. "license": "MIT",
  2032. "dependencies": {
  2033. "hasown": "^2.0.2"
  2034. },
  2035. "engines": {
  2036. "node": ">= 0.4"
  2037. },
  2038. "funding": {
  2039. "url": "https://github.com/sponsors/ljharb"
  2040. }
  2041. },
  2042. "node_modules/resolve/node_modules/path-parse": {
  2043. "version": "1.0.7",
  2044. "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
  2045. "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
  2046. "license": "MIT"
  2047. },
  2048. "node_modules/resolve/node_modules/supports-preserve-symlinks-flag": {
  2049. "version": "1.0.0",
  2050. "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
  2051. "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
  2052. "license": "MIT",
  2053. "engines": {
  2054. "node": ">= 0.4"
  2055. },
  2056. "funding": {
  2057. "url": "https://github.com/sponsors/ljharb"
  2058. }
  2059. },
  2060. "node_modules/rollup": {
  2061. "version": "4.28.0",
  2062. "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz",
  2063. "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==",
  2064. "license": "MIT",
  2065. "dependencies": {
  2066. "@types/estree": "1.0.6"
  2067. },
  2068. "bin": {
  2069. "rollup": "dist/bin/rollup"
  2070. },
  2071. "engines": {
  2072. "node": ">=18.0.0",
  2073. "npm": ">=8.0.0"
  2074. },
  2075. "optionalDependencies": {
  2076. "@rollup/rollup-android-arm-eabi": "4.28.0",
  2077. "@rollup/rollup-android-arm64": "4.28.0",
  2078. "@rollup/rollup-darwin-arm64": "4.28.0",
  2079. "@rollup/rollup-darwin-x64": "4.28.0",
  2080. "@rollup/rollup-freebsd-arm64": "4.28.0",
  2081. "@rollup/rollup-freebsd-x64": "4.28.0",
  2082. "@rollup/rollup-linux-arm-gnueabihf": "4.28.0",
  2083. "@rollup/rollup-linux-arm-musleabihf": "4.28.0",
  2084. "@rollup/rollup-linux-arm64-gnu": "4.28.0",
  2085. "@rollup/rollup-linux-arm64-musl": "4.28.0",
  2086. "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0",
  2087. "@rollup/rollup-linux-riscv64-gnu": "4.28.0",
  2088. "@rollup/rollup-linux-s390x-gnu": "4.28.0",
  2089. "@rollup/rollup-linux-x64-gnu": "4.28.0",
  2090. "@rollup/rollup-linux-x64-musl": "4.28.0",
  2091. "@rollup/rollup-win32-arm64-msvc": "4.28.0",
  2092. "@rollup/rollup-win32-ia32-msvc": "4.28.0",
  2093. "@rollup/rollup-win32-x64-msvc": "4.28.0",
  2094. "fsevents": "~2.3.2"
  2095. }
  2096. },
  2097. "node_modules/rollup/node_modules/@rollup/rollup-darwin-arm64": {
  2098. "version": "4.28.0",
  2099. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz",
  2100. "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==",
  2101. "cpu": [
  2102. "arm64"
  2103. ],
  2104. "license": "MIT",
  2105. "optional": true,
  2106. "os": [
  2107. "darwin"
  2108. ]
  2109. },
  2110. "node_modules/rollup/node_modules/@types/estree": {
  2111. "version": "1.0.6",
  2112. "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
  2113. "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
  2114. "license": "MIT"
  2115. },
  2116. "node_modules/rxjs": {
  2117. "version": "7.8.1",
  2118. "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
  2119. "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
  2120. "devOptional": true,
  2121. "license": "Apache-2.0",
  2122. "dependencies": {
  2123. "tslib": "^2.1.0"
  2124. }
  2125. },
  2126. "node_modules/sass-embedded": {
  2127. "version": "1.83.0",
  2128. "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.83.0.tgz",
  2129. "integrity": "sha512-/8cYZeL39evUqe0o//193na51Q1VWZ61qhxioQvLJwOtWIrX+PgNhCyD8RSuTtmzc4+6+waFZf899bfp/MCUwA==",
  2130. "devOptional": true,
  2131. "license": "MIT",
  2132. "dependencies": {
  2133. "@bufbuild/protobuf": "^2.0.0",
  2134. "buffer-builder": "^0.2.0",
  2135. "colorjs.io": "^0.5.0",
  2136. "immutable": "^5.0.2",
  2137. "rxjs": "^7.4.0",
  2138. "supports-color": "^8.1.1",
  2139. "sync-child-process": "^1.0.2",
  2140. "varint": "^6.0.0"
  2141. },
  2142. "bin": {
  2143. "sass": "dist/bin/sass.js"
  2144. },
  2145. "engines": {
  2146. "node": ">=16.0.0"
  2147. },
  2148. "optionalDependencies": {
  2149. "sass-embedded-android-arm": "1.83.0",
  2150. "sass-embedded-android-arm64": "1.83.0",
  2151. "sass-embedded-android-ia32": "1.83.0",
  2152. "sass-embedded-android-riscv64": "1.83.0",
  2153. "sass-embedded-android-x64": "1.83.0",
  2154. "sass-embedded-darwin-arm64": "1.83.0",
  2155. "sass-embedded-darwin-x64": "1.83.0",
  2156. "sass-embedded-linux-arm": "1.83.0",
  2157. "sass-embedded-linux-arm64": "1.83.0",
  2158. "sass-embedded-linux-ia32": "1.83.0",
  2159. "sass-embedded-linux-musl-arm": "1.83.0",
  2160. "sass-embedded-linux-musl-arm64": "1.83.0",
  2161. "sass-embedded-linux-musl-ia32": "1.83.0",
  2162. "sass-embedded-linux-musl-riscv64": "1.83.0",
  2163. "sass-embedded-linux-musl-x64": "1.83.0",
  2164. "sass-embedded-linux-riscv64": "1.83.0",
  2165. "sass-embedded-linux-x64": "1.83.0",
  2166. "sass-embedded-win32-arm64": "1.83.0",
  2167. "sass-embedded-win32-ia32": "1.83.0",
  2168. "sass-embedded-win32-x64": "1.83.0"
  2169. }
  2170. },
  2171. "node_modules/sass-embedded-android-arm": {
  2172. "version": "1.83.0",
  2173. "resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.83.0.tgz",
  2174. "integrity": "sha512-uwFSXzJlfbd4Px189xE5l+cxN8+TQpXdQgJec7TIrb4HEY7imabtpYufpVdqUVwT1/uiis5V4+qIEC4Vl5XObQ==",
  2175. "cpu": [
  2176. "arm"
  2177. ],
  2178. "license": "MIT",
  2179. "optional": true,
  2180. "os": [
  2181. "android"
  2182. ],
  2183. "engines": {
  2184. "node": ">=14.0.0"
  2185. }
  2186. },
  2187. "node_modules/sass-embedded-android-arm64": {
  2188. "version": "1.83.0",
  2189. "resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.83.0.tgz",
  2190. "integrity": "sha512-GBiCvM4a2rkWBLdYDxI6XYnprfk5U5c81g69RC2X6kqPuzxzx8qTArQ9M6keFK4+iDQ5N9QTwFCr0KbZTn+ZNQ==",
  2191. "cpu": [
  2192. "arm64"
  2193. ],
  2194. "license": "MIT",
  2195. "optional": true,
  2196. "os": [
  2197. "android"
  2198. ],
  2199. "engines": {
  2200. "node": ">=14.0.0"
  2201. }
  2202. },
  2203. "node_modules/sass-embedded-android-ia32": {
  2204. "version": "1.83.0",
  2205. "resolved": "https://registry.npmjs.org/sass-embedded-android-ia32/-/sass-embedded-android-ia32-1.83.0.tgz",
  2206. "integrity": "sha512-5ATPdGo2SICqAhiJl/Z8KQ23zH4sGgobGgux0TnrNtt83uHZ+r+To/ubVJ7xTkZxed+KJZnIpolGD8dQyQqoTg==",
  2207. "cpu": [
  2208. "ia32"
  2209. ],
  2210. "license": "MIT",
  2211. "optional": true,
  2212. "os": [
  2213. "android"
  2214. ],
  2215. "engines": {
  2216. "node": ">=14.0.0"
  2217. }
  2218. },
  2219. "node_modules/sass-embedded-android-riscv64": {
  2220. "version": "1.83.0",
  2221. "resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.83.0.tgz",
  2222. "integrity": "sha512-aveknUOB8GZewOzVn2Uwk+DKcncTR50Q6vtzslNMGbYnxtgQNHzy8A1qVEviNUruex+pHofppeMK4iMPFAbiEQ==",
  2223. "cpu": [
  2224. "riscv64"
  2225. ],
  2226. "license": "MIT",
  2227. "optional": true,
  2228. "os": [
  2229. "android"
  2230. ],
  2231. "engines": {
  2232. "node": ">=14.0.0"
  2233. }
  2234. },
  2235. "node_modules/sass-embedded-android-x64": {
  2236. "version": "1.83.0",
  2237. "resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.83.0.tgz",
  2238. "integrity": "sha512-WqIay/72ncyf9Ph4vS742J3a73wZihWmzFUwpn1OD6lme1Aj4eWzWIve5IVnlTEJgcZcDHu6ECID9IZgehJKoA==",
  2239. "cpu": [
  2240. "x64"
  2241. ],
  2242. "license": "MIT",
  2243. "optional": true,
  2244. "os": [
  2245. "android"
  2246. ],
  2247. "engines": {
  2248. "node": ">=14.0.0"
  2249. }
  2250. },
  2251. "node_modules/sass-embedded-darwin-arm64": {
  2252. "version": "1.83.0",
  2253. "resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.83.0.tgz",
  2254. "integrity": "sha512-XQl9QqgxFFIPm/CzHhmppse5o9ocxrbaAdC2/DAnlAqvYWBBtgFqPjGoYlej13h9SzfvNoogx+y9r+Ap+e+hYg==",
  2255. "cpu": [
  2256. "arm64"
  2257. ],
  2258. "license": "MIT",
  2259. "optional": true,
  2260. "os": [
  2261. "darwin"
  2262. ],
  2263. "engines": {
  2264. "node": ">=14.0.0"
  2265. }
  2266. },
  2267. "node_modules/sass-embedded-darwin-x64": {
  2268. "version": "1.83.0",
  2269. "resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.83.0.tgz",
  2270. "integrity": "sha512-ERQ7Tvp1kFOW3ux4VDFIxb7tkYXHYc+zJpcrbs0hzcIO5ilIRU2tIOK1OrNwrFO6Qxyf7AUuBwYKLAtIU/Nz7g==",
  2271. "cpu": [
  2272. "x64"
  2273. ],
  2274. "license": "MIT",
  2275. "optional": true,
  2276. "os": [
  2277. "darwin"
  2278. ],
  2279. "engines": {
  2280. "node": ">=14.0.0"
  2281. }
  2282. },
  2283. "node_modules/sass-embedded-linux-arm": {
  2284. "version": "1.83.0",
  2285. "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.83.0.tgz",
  2286. "integrity": "sha512-baG9RYBJxUFmqwDNC9h9ZFElgJoyO3jgHGjzEZ1wHhIS9anpG+zZQvO8bHx3dBpKEImX+DBeLX+CxsFR9n81gQ==",
  2287. "cpu": [
  2288. "arm"
  2289. ],
  2290. "license": "MIT",
  2291. "optional": true,
  2292. "os": [
  2293. "linux"
  2294. ],
  2295. "engines": {
  2296. "node": ">=14.0.0"
  2297. }
  2298. },
  2299. "node_modules/sass-embedded-linux-arm64": {
  2300. "version": "1.83.0",
  2301. "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.83.0.tgz",
  2302. "integrity": "sha512-syEAVTJt4qhaMLxrSwOWa46zdqHJdnqJkLUK+t9aCr8xqBZLPxSUeIGji76uOehQZ1C+KGFj6n9xstHN6wzOJw==",
  2303. "cpu": [
  2304. "arm64"
  2305. ],
  2306. "license": "MIT",
  2307. "optional": true,
  2308. "os": [
  2309. "linux"
  2310. ],
  2311. "engines": {
  2312. "node": ">=14.0.0"
  2313. }
  2314. },
  2315. "node_modules/sass-embedded-linux-ia32": {
  2316. "version": "1.83.0",
  2317. "resolved": "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.83.0.tgz",
  2318. "integrity": "sha512-RRBxQxMpoxu5+XcSSc6QR/o9asEwUzR8AbCS83RaXcdTIHTa/CccQsiAoDDoPlRsMTLqnzs0LKL4CfOsf7zBbA==",
  2319. "cpu": [
  2320. "ia32"
  2321. ],
  2322. "license": "MIT",
  2323. "optional": true,
  2324. "os": [
  2325. "linux"
  2326. ],
  2327. "engines": {
  2328. "node": ">=14.0.0"
  2329. }
  2330. },
  2331. "node_modules/sass-embedded-linux-musl-arm": {
  2332. "version": "1.83.0",
  2333. "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.83.0.tgz",
  2334. "integrity": "sha512-Yc7u2TelCfBab+PRob9/MNJFh3EooMiz4urvhejXkihTiKSHGCv5YqDdtWzvyb9tY2Jb7YtYREVuHwfdVn3dTQ==",
  2335. "cpu": [
  2336. "arm"
  2337. ],
  2338. "license": "MIT",
  2339. "optional": true,
  2340. "os": [
  2341. "linux"
  2342. ],
  2343. "engines": {
  2344. "node": ">=14.0.0"
  2345. }
  2346. },
  2347. "node_modules/sass-embedded-linux-musl-arm64": {
  2348. "version": "1.83.0",
  2349. "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.83.0.tgz",
  2350. "integrity": "sha512-Y7juhPHClUO2H5O+u+StRy6SEAcwZ+hTEk5WJdEmo1Bb1gDtfHvJaWB/iFZJ2tW0W1e865AZeUrC4OcOFjyAQA==",
  2351. "cpu": [
  2352. "arm64"
  2353. ],
  2354. "license": "MIT",
  2355. "optional": true,
  2356. "os": [
  2357. "linux"
  2358. ],
  2359. "engines": {
  2360. "node": ">=14.0.0"
  2361. }
  2362. },
  2363. "node_modules/sass-embedded-linux-musl-ia32": {
  2364. "version": "1.83.0",
  2365. "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-ia32/-/sass-embedded-linux-musl-ia32-1.83.0.tgz",
  2366. "integrity": "sha512-arQeYwGmwXV8byx5G1PtSzZWW1jbkfR5qrIHMEbTFSAvAxpqjgSvCvrHMOFd73FcMxVaYh4BX9LQNbKinkbEdg==",
  2367. "cpu": [
  2368. "ia32"
  2369. ],
  2370. "license": "MIT",
  2371. "optional": true,
  2372. "os": [
  2373. "linux"
  2374. ],
  2375. "engines": {
  2376. "node": ">=14.0.0"
  2377. }
  2378. },
  2379. "node_modules/sass-embedded-linux-musl-riscv64": {
  2380. "version": "1.83.0",
  2381. "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.83.0.tgz",
  2382. "integrity": "sha512-E6uzlIWz59rut+Z3XR6mLG915zNzv07ISvj3GUNZENdHM7dF8GQ//ANoIpl5PljMQKp89GnYdvo6kj2gnaBf/g==",
  2383. "cpu": [
  2384. "riscv64"
  2385. ],
  2386. "license": "MIT",
  2387. "optional": true,
  2388. "os": [
  2389. "linux"
  2390. ],
  2391. "engines": {
  2392. "node": ">=14.0.0"
  2393. }
  2394. },
  2395. "node_modules/sass-embedded-linux-musl-x64": {
  2396. "version": "1.83.0",
  2397. "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.83.0.tgz",
  2398. "integrity": "sha512-eAMK6tyGqvqr21r9g8BnR3fQc1rYFj85RGduSQ3xkITZ6jOAnOhuU94N5fwRS852Hpws0lXhET+7JHXgg3U18w==",
  2399. "cpu": [
  2400. "x64"
  2401. ],
  2402. "license": "MIT",
  2403. "optional": true,
  2404. "os": [
  2405. "linux"
  2406. ],
  2407. "engines": {
  2408. "node": ">=14.0.0"
  2409. }
  2410. },
  2411. "node_modules/sass-embedded-linux-riscv64": {
  2412. "version": "1.83.0",
  2413. "resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.83.0.tgz",
  2414. "integrity": "sha512-Ojpi78pTv02sy2fUYirRGXHLY3fPnV/bvwuC2i5LwPQw2LpCcFyFTtN0c5h4LJDk9P6wr+/ZB/JXU8tHIOlK+Q==",
  2415. "cpu": [
  2416. "riscv64"
  2417. ],
  2418. "license": "MIT",
  2419. "optional": true,
  2420. "os": [
  2421. "linux"
  2422. ],
  2423. "engines": {
  2424. "node": ">=14.0.0"
  2425. }
  2426. },
  2427. "node_modules/sass-embedded-linux-x64": {
  2428. "version": "1.83.0",
  2429. "resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.83.0.tgz",
  2430. "integrity": "sha512-3iLjlXdoPfgZRtX4odhRvka1BQs5mAXqfCtDIQBgh/o0JnGPzJIWWl9bYLpHxK8qb+uyVBxXYgXpI0sCzArBOw==",
  2431. "cpu": [
  2432. "x64"
  2433. ],
  2434. "license": "MIT",
  2435. "optional": true,
  2436. "os": [
  2437. "linux"
  2438. ],
  2439. "engines": {
  2440. "node": ">=14.0.0"
  2441. }
  2442. },
  2443. "node_modules/sass-embedded-win32-arm64": {
  2444. "version": "1.83.0",
  2445. "resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.83.0.tgz",
  2446. "integrity": "sha512-iOHw/8/t2dlTW3lOFwG5eUbiwhEyGWawivlKWJ8lkXH7fjMpVx2VO9zCFAm8RvY9xOHJ9sf1L7g5bx3EnNP9BQ==",
  2447. "cpu": [
  2448. "arm64"
  2449. ],
  2450. "license": "MIT",
  2451. "optional": true,
  2452. "os": [
  2453. "win32"
  2454. ],
  2455. "engines": {
  2456. "node": ">=14.0.0"
  2457. }
  2458. },
  2459. "node_modules/sass-embedded-win32-ia32": {
  2460. "version": "1.83.0",
  2461. "resolved": "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.83.0.tgz",
  2462. "integrity": "sha512-2PxNXJ8Pad4geVcTXY4rkyTr5AwbF8nfrCTDv0ulbTvPhzX2mMKEGcBZUXWn5BeHZTBc6whNMfS7d5fQXR9dDQ==",
  2463. "cpu": [
  2464. "ia32"
  2465. ],
  2466. "license": "MIT",
  2467. "optional": true,
  2468. "os": [
  2469. "win32"
  2470. ],
  2471. "engines": {
  2472. "node": ">=14.0.0"
  2473. }
  2474. },
  2475. "node_modules/sass-embedded-win32-x64": {
  2476. "version": "1.83.0",
  2477. "resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.83.0.tgz",
  2478. "integrity": "sha512-muBXkFngM6eLTNqOV0FQi7Dv9s+YRQ42Yem26mosdan/GmJQc81deto6uDTgrYn+bzFNmiXcOdfm+0MkTWK3OQ==",
  2479. "cpu": [
  2480. "x64"
  2481. ],
  2482. "license": "MIT",
  2483. "optional": true,
  2484. "os": [
  2485. "win32"
  2486. ],
  2487. "engines": {
  2488. "node": ">=14.0.0"
  2489. }
  2490. },
  2491. "node_modules/sucrase": {
  2492. "version": "3.35.0",
  2493. "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
  2494. "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
  2495. "license": "MIT",
  2496. "dependencies": {
  2497. "@jridgewell/gen-mapping": "^0.3.2",
  2498. "commander": "^4.0.0",
  2499. "glob": "^10.3.10",
  2500. "lines-and-columns": "^1.1.6",
  2501. "mz": "^2.7.0",
  2502. "pirates": "^4.0.1",
  2503. "ts-interface-checker": "^0.1.9"
  2504. },
  2505. "bin": {
  2506. "sucrase": "bin/sucrase",
  2507. "sucrase-node": "bin/sucrase-node"
  2508. },
  2509. "engines": {
  2510. "node": ">=16 || 14 >=14.17"
  2511. }
  2512. },
  2513. "node_modules/sucrase/node_modules/@isaacs/cliui": {
  2514. "version": "8.0.2",
  2515. "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
  2516. "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
  2517. "license": "ISC",
  2518. "dependencies": {
  2519. "string-width": "^5.1.2",
  2520. "string-width-cjs": "npm:string-width@^4.2.0",
  2521. "strip-ansi": "^7.0.1",
  2522. "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
  2523. "wrap-ansi": "^8.1.0",
  2524. "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
  2525. },
  2526. "engines": {
  2527. "node": ">=12"
  2528. }
  2529. },
  2530. "node_modules/sucrase/node_modules/@jridgewell/gen-mapping": {
  2531. "version": "0.3.5",
  2532. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
  2533. "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
  2534. "license": "MIT",
  2535. "dependencies": {
  2536. "@jridgewell/set-array": "^1.2.1",
  2537. "@jridgewell/sourcemap-codec": "^1.4.10",
  2538. "@jridgewell/trace-mapping": "^0.3.24"
  2539. },
  2540. "engines": {
  2541. "node": ">=6.0.0"
  2542. }
  2543. },
  2544. "node_modules/sucrase/node_modules/@jridgewell/resolve-uri": {
  2545. "version": "3.1.2",
  2546. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  2547. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  2548. "license": "MIT",
  2549. "engines": {
  2550. "node": ">=6.0.0"
  2551. }
  2552. },
  2553. "node_modules/sucrase/node_modules/@jridgewell/set-array": {
  2554. "version": "1.2.1",
  2555. "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
  2556. "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
  2557. "license": "MIT",
  2558. "engines": {
  2559. "node": ">=6.0.0"
  2560. }
  2561. },
  2562. "node_modules/sucrase/node_modules/@jridgewell/sourcemap-codec": {
  2563. "version": "1.5.0",
  2564. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
  2565. "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
  2566. "license": "MIT"
  2567. },
  2568. "node_modules/sucrase/node_modules/@jridgewell/trace-mapping": {
  2569. "version": "0.3.25",
  2570. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
  2571. "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
  2572. "license": "MIT",
  2573. "dependencies": {
  2574. "@jridgewell/resolve-uri": "^3.1.0",
  2575. "@jridgewell/sourcemap-codec": "^1.4.14"
  2576. }
  2577. },
  2578. "node_modules/sucrase/node_modules/@pkgjs/parseargs": {
  2579. "version": "0.11.0",
  2580. "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
  2581. "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
  2582. "license": "MIT",
  2583. "optional": true,
  2584. "engines": {
  2585. "node": ">=14"
  2586. }
  2587. },
  2588. "node_modules/sucrase/node_modules/ansi-regex": {
  2589. "version": "6.1.0",
  2590. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
  2591. "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
  2592. "license": "MIT",
  2593. "engines": {
  2594. "node": ">=12"
  2595. },
  2596. "funding": {
  2597. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  2598. }
  2599. },
  2600. "node_modules/sucrase/node_modules/ansi-styles": {
  2601. "version": "6.2.1",
  2602. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
  2603. "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
  2604. "license": "MIT",
  2605. "engines": {
  2606. "node": ">=12"
  2607. },
  2608. "funding": {
  2609. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  2610. }
  2611. },
  2612. "node_modules/sucrase/node_modules/any-promise": {
  2613. "version": "1.3.0",
  2614. "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
  2615. "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
  2616. "license": "MIT"
  2617. },
  2618. "node_modules/sucrase/node_modules/balanced-match": {
  2619. "version": "1.0.2",
  2620. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  2621. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  2622. "license": "MIT"
  2623. },
  2624. "node_modules/sucrase/node_modules/brace-expansion": {
  2625. "version": "2.0.1",
  2626. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
  2627. "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
  2628. "license": "MIT",
  2629. "dependencies": {
  2630. "balanced-match": "^1.0.0"
  2631. }
  2632. },
  2633. "node_modules/sucrase/node_modules/color-convert": {
  2634. "version": "2.0.1",
  2635. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
  2636. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  2637. "license": "MIT",
  2638. "dependencies": {
  2639. "color-name": "~1.1.4"
  2640. },
  2641. "engines": {
  2642. "node": ">=7.0.0"
  2643. }
  2644. },
  2645. "node_modules/sucrase/node_modules/color-name": {
  2646. "version": "1.1.4",
  2647. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  2648. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  2649. "license": "MIT"
  2650. },
  2651. "node_modules/sucrase/node_modules/commander": {
  2652. "version": "4.1.1",
  2653. "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
  2654. "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
  2655. "license": "MIT",
  2656. "engines": {
  2657. "node": ">= 6"
  2658. }
  2659. },
  2660. "node_modules/sucrase/node_modules/cross-spawn": {
  2661. "version": "7.0.6",
  2662. "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
  2663. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  2664. "license": "MIT",
  2665. "dependencies": {
  2666. "path-key": "^3.1.0",
  2667. "shebang-command": "^2.0.0",
  2668. "which": "^2.0.1"
  2669. },
  2670. "engines": {
  2671. "node": ">= 8"
  2672. }
  2673. },
  2674. "node_modules/sucrase/node_modules/eastasianwidth": {
  2675. "version": "0.2.0",
  2676. "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
  2677. "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
  2678. "license": "MIT"
  2679. },
  2680. "node_modules/sucrase/node_modules/emoji-regex": {
  2681. "version": "9.2.2",
  2682. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
  2683. "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
  2684. "license": "MIT"
  2685. },
  2686. "node_modules/sucrase/node_modules/foreground-child": {
  2687. "version": "3.3.0",
  2688. "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
  2689. "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
  2690. "license": "ISC",
  2691. "dependencies": {
  2692. "cross-spawn": "^7.0.0",
  2693. "signal-exit": "^4.0.1"
  2694. },
  2695. "engines": {
  2696. "node": ">=14"
  2697. },
  2698. "funding": {
  2699. "url": "https://github.com/sponsors/isaacs"
  2700. }
  2701. },
  2702. "node_modules/sucrase/node_modules/glob": {
  2703. "version": "10.4.5",
  2704. "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
  2705. "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
  2706. "license": "ISC",
  2707. "dependencies": {
  2708. "foreground-child": "^3.1.0",
  2709. "jackspeak": "^3.1.2",
  2710. "minimatch": "^9.0.4",
  2711. "minipass": "^7.1.2",
  2712. "package-json-from-dist": "^1.0.0",
  2713. "path-scurry": "^1.11.1"
  2714. },
  2715. "bin": {
  2716. "glob": "dist/esm/bin.mjs"
  2717. },
  2718. "funding": {
  2719. "url": "https://github.com/sponsors/isaacs"
  2720. }
  2721. },
  2722. "node_modules/sucrase/node_modules/is-fullwidth-code-point": {
  2723. "version": "3.0.0",
  2724. "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  2725. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  2726. "license": "MIT",
  2727. "engines": {
  2728. "node": ">=8"
  2729. }
  2730. },
  2731. "node_modules/sucrase/node_modules/isexe": {
  2732. "version": "2.0.0",
  2733. "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
  2734. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  2735. "license": "ISC"
  2736. },
  2737. "node_modules/sucrase/node_modules/jackspeak": {
  2738. "version": "3.4.3",
  2739. "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
  2740. "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
  2741. "license": "BlueOak-1.0.0",
  2742. "dependencies": {
  2743. "@isaacs/cliui": "^8.0.2"
  2744. },
  2745. "funding": {
  2746. "url": "https://github.com/sponsors/isaacs"
  2747. },
  2748. "optionalDependencies": {
  2749. "@pkgjs/parseargs": "^0.11.0"
  2750. }
  2751. },
  2752. "node_modules/sucrase/node_modules/lines-and-columns": {
  2753. "version": "1.2.4",
  2754. "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
  2755. "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
  2756. "license": "MIT"
  2757. },
  2758. "node_modules/sucrase/node_modules/lru-cache": {
  2759. "version": "10.4.3",
  2760. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
  2761. "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
  2762. "license": "ISC"
  2763. },
  2764. "node_modules/sucrase/node_modules/minimatch": {
  2765. "version": "9.0.5",
  2766. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
  2767. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  2768. "license": "ISC",
  2769. "dependencies": {
  2770. "brace-expansion": "^2.0.1"
  2771. },
  2772. "engines": {
  2773. "node": ">=16 || 14 >=14.17"
  2774. },
  2775. "funding": {
  2776. "url": "https://github.com/sponsors/isaacs"
  2777. }
  2778. },
  2779. "node_modules/sucrase/node_modules/minipass": {
  2780. "version": "7.1.2",
  2781. "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
  2782. "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
  2783. "license": "ISC",
  2784. "engines": {
  2785. "node": ">=16 || 14 >=14.17"
  2786. }
  2787. },
  2788. "node_modules/sucrase/node_modules/mz": {
  2789. "version": "2.7.0",
  2790. "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
  2791. "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
  2792. "license": "MIT",
  2793. "dependencies": {
  2794. "any-promise": "^1.0.0",
  2795. "object-assign": "^4.0.1",
  2796. "thenify-all": "^1.0.0"
  2797. }
  2798. },
  2799. "node_modules/sucrase/node_modules/object-assign": {
  2800. "version": "4.1.1",
  2801. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  2802. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  2803. "license": "MIT",
  2804. "engines": {
  2805. "node": ">=0.10.0"
  2806. }
  2807. },
  2808. "node_modules/sucrase/node_modules/package-json-from-dist": {
  2809. "version": "1.0.1",
  2810. "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
  2811. "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
  2812. "license": "BlueOak-1.0.0"
  2813. },
  2814. "node_modules/sucrase/node_modules/path-key": {
  2815. "version": "3.1.1",
  2816. "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
  2817. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  2818. "license": "MIT",
  2819. "engines": {
  2820. "node": ">=8"
  2821. }
  2822. },
  2823. "node_modules/sucrase/node_modules/path-scurry": {
  2824. "version": "1.11.1",
  2825. "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
  2826. "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
  2827. "license": "BlueOak-1.0.0",
  2828. "dependencies": {
  2829. "lru-cache": "^10.2.0",
  2830. "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
  2831. },
  2832. "engines": {
  2833. "node": ">=16 || 14 >=14.18"
  2834. },
  2835. "funding": {
  2836. "url": "https://github.com/sponsors/isaacs"
  2837. }
  2838. },
  2839. "node_modules/sucrase/node_modules/pirates": {
  2840. "version": "4.0.6",
  2841. "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
  2842. "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
  2843. "license": "MIT",
  2844. "engines": {
  2845. "node": ">= 6"
  2846. }
  2847. },
  2848. "node_modules/sucrase/node_modules/shebang-command": {
  2849. "version": "2.0.0",
  2850. "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
  2851. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  2852. "license": "MIT",
  2853. "dependencies": {
  2854. "shebang-regex": "^3.0.0"
  2855. },
  2856. "engines": {
  2857. "node": ">=8"
  2858. }
  2859. },
  2860. "node_modules/sucrase/node_modules/shebang-regex": {
  2861. "version": "3.0.0",
  2862. "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
  2863. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  2864. "license": "MIT",
  2865. "engines": {
  2866. "node": ">=8"
  2867. }
  2868. },
  2869. "node_modules/sucrase/node_modules/signal-exit": {
  2870. "version": "4.1.0",
  2871. "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
  2872. "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
  2873. "license": "ISC",
  2874. "engines": {
  2875. "node": ">=14"
  2876. },
  2877. "funding": {
  2878. "url": "https://github.com/sponsors/isaacs"
  2879. }
  2880. },
  2881. "node_modules/sucrase/node_modules/string-width": {
  2882. "version": "5.1.2",
  2883. "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
  2884. "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
  2885. "license": "MIT",
  2886. "dependencies": {
  2887. "eastasianwidth": "^0.2.0",
  2888. "emoji-regex": "^9.2.2",
  2889. "strip-ansi": "^7.0.1"
  2890. },
  2891. "engines": {
  2892. "node": ">=12"
  2893. },
  2894. "funding": {
  2895. "url": "https://github.com/sponsors/sindresorhus"
  2896. }
  2897. },
  2898. "node_modules/sucrase/node_modules/string-width-cjs": {
  2899. "name": "string-width",
  2900. "version": "4.2.3",
  2901. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  2902. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  2903. "license": "MIT",
  2904. "dependencies": {
  2905. "emoji-regex": "^8.0.0",
  2906. "is-fullwidth-code-point": "^3.0.0",
  2907. "strip-ansi": "^6.0.1"
  2908. },
  2909. "engines": {
  2910. "node": ">=8"
  2911. }
  2912. },
  2913. "node_modules/sucrase/node_modules/string-width-cjs/node_modules/ansi-regex": {
  2914. "version": "5.0.1",
  2915. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  2916. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  2917. "license": "MIT",
  2918. "engines": {
  2919. "node": ">=8"
  2920. }
  2921. },
  2922. "node_modules/sucrase/node_modules/string-width-cjs/node_modules/emoji-regex": {
  2923. "version": "8.0.0",
  2924. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  2925. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  2926. "license": "MIT"
  2927. },
  2928. "node_modules/sucrase/node_modules/string-width-cjs/node_modules/strip-ansi": {
  2929. "version": "6.0.1",
  2930. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2931. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2932. "license": "MIT",
  2933. "dependencies": {
  2934. "ansi-regex": "^5.0.1"
  2935. },
  2936. "engines": {
  2937. "node": ">=8"
  2938. }
  2939. },
  2940. "node_modules/sucrase/node_modules/strip-ansi": {
  2941. "version": "7.1.0",
  2942. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
  2943. "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
  2944. "license": "MIT",
  2945. "dependencies": {
  2946. "ansi-regex": "^6.0.1"
  2947. },
  2948. "engines": {
  2949. "node": ">=12"
  2950. },
  2951. "funding": {
  2952. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  2953. }
  2954. },
  2955. "node_modules/sucrase/node_modules/strip-ansi-cjs": {
  2956. "name": "strip-ansi",
  2957. "version": "6.0.1",
  2958. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2959. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2960. "license": "MIT",
  2961. "dependencies": {
  2962. "ansi-regex": "^5.0.1"
  2963. },
  2964. "engines": {
  2965. "node": ">=8"
  2966. }
  2967. },
  2968. "node_modules/sucrase/node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
  2969. "version": "5.0.1",
  2970. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  2971. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  2972. "license": "MIT",
  2973. "engines": {
  2974. "node": ">=8"
  2975. }
  2976. },
  2977. "node_modules/sucrase/node_modules/thenify": {
  2978. "version": "3.3.1",
  2979. "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
  2980. "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
  2981. "license": "MIT",
  2982. "dependencies": {
  2983. "any-promise": "^1.0.0"
  2984. }
  2985. },
  2986. "node_modules/sucrase/node_modules/thenify-all": {
  2987. "version": "1.6.0",
  2988. "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
  2989. "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
  2990. "license": "MIT",
  2991. "dependencies": {
  2992. "thenify": ">= 3.1.0 < 4"
  2993. },
  2994. "engines": {
  2995. "node": ">=0.8"
  2996. }
  2997. },
  2998. "node_modules/sucrase/node_modules/ts-interface-checker": {
  2999. "version": "0.1.13",
  3000. "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
  3001. "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
  3002. "license": "Apache-2.0"
  3003. },
  3004. "node_modules/sucrase/node_modules/which": {
  3005. "version": "2.0.2",
  3006. "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
  3007. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  3008. "license": "ISC",
  3009. "dependencies": {
  3010. "isexe": "^2.0.0"
  3011. },
  3012. "bin": {
  3013. "node-which": "bin/node-which"
  3014. },
  3015. "engines": {
  3016. "node": ">= 8"
  3017. }
  3018. },
  3019. "node_modules/sucrase/node_modules/wrap-ansi": {
  3020. "version": "8.1.0",
  3021. "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
  3022. "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
  3023. "license": "MIT",
  3024. "dependencies": {
  3025. "ansi-styles": "^6.1.0",
  3026. "string-width": "^5.0.1",
  3027. "strip-ansi": "^7.0.1"
  3028. },
  3029. "engines": {
  3030. "node": ">=12"
  3031. },
  3032. "funding": {
  3033. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3034. }
  3035. },
  3036. "node_modules/sucrase/node_modules/wrap-ansi-cjs": {
  3037. "name": "wrap-ansi",
  3038. "version": "7.0.0",
  3039. "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  3040. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  3041. "license": "MIT",
  3042. "dependencies": {
  3043. "ansi-styles": "^4.0.0",
  3044. "string-width": "^4.1.0",
  3045. "strip-ansi": "^6.0.0"
  3046. },
  3047. "engines": {
  3048. "node": ">=10"
  3049. },
  3050. "funding": {
  3051. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3052. }
  3053. },
  3054. "node_modules/sucrase/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
  3055. "version": "5.0.1",
  3056. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  3057. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  3058. "license": "MIT",
  3059. "engines": {
  3060. "node": ">=8"
  3061. }
  3062. },
  3063. "node_modules/sucrase/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
  3064. "version": "4.3.0",
  3065. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
  3066. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  3067. "license": "MIT",
  3068. "dependencies": {
  3069. "color-convert": "^2.0.1"
  3070. },
  3071. "engines": {
  3072. "node": ">=8"
  3073. },
  3074. "funding": {
  3075. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  3076. }
  3077. },
  3078. "node_modules/sucrase/node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
  3079. "version": "8.0.0",
  3080. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  3081. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  3082. "license": "MIT"
  3083. },
  3084. "node_modules/sucrase/node_modules/wrap-ansi-cjs/node_modules/string-width": {
  3085. "version": "4.2.3",
  3086. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  3087. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  3088. "license": "MIT",
  3089. "dependencies": {
  3090. "emoji-regex": "^8.0.0",
  3091. "is-fullwidth-code-point": "^3.0.0",
  3092. "strip-ansi": "^6.0.1"
  3093. },
  3094. "engines": {
  3095. "node": ">=8"
  3096. }
  3097. },
  3098. "node_modules/sucrase/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
  3099. "version": "6.0.1",
  3100. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  3101. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  3102. "license": "MIT",
  3103. "dependencies": {
  3104. "ansi-regex": "^5.0.1"
  3105. },
  3106. "engines": {
  3107. "node": ">=8"
  3108. }
  3109. },
  3110. "node_modules/supports-color": {
  3111. "version": "8.1.1",
  3112. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
  3113. "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
  3114. "devOptional": true,
  3115. "license": "MIT",
  3116. "dependencies": {
  3117. "has-flag": "^4.0.0"
  3118. },
  3119. "engines": {
  3120. "node": ">=10"
  3121. },
  3122. "funding": {
  3123. "url": "https://github.com/chalk/supports-color?sponsor=1"
  3124. }
  3125. },
  3126. "node_modules/sync-child-process": {
  3127. "version": "1.0.2",
  3128. "resolved": "https://registry.npmjs.org/sync-child-process/-/sync-child-process-1.0.2.tgz",
  3129. "integrity": "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==",
  3130. "devOptional": true,
  3131. "license": "MIT",
  3132. "dependencies": {
  3133. "sync-message-port": "^1.0.0"
  3134. },
  3135. "engines": {
  3136. "node": ">=16.0.0"
  3137. }
  3138. },
  3139. "node_modules/sync-message-port": {
  3140. "version": "1.1.3",
  3141. "resolved": "https://registry.npmjs.org/sync-message-port/-/sync-message-port-1.1.3.tgz",
  3142. "integrity": "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==",
  3143. "devOptional": true,
  3144. "license": "MIT",
  3145. "engines": {
  3146. "node": ">=16.0.0"
  3147. }
  3148. },
  3149. "node_modules/tailwindcss": {
  3150. "version": "3.4.15",
  3151. "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz",
  3152. "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==",
  3153. "license": "MIT",
  3154. "dependencies": {
  3155. "@alloc/quick-lru": "^5.2.0",
  3156. "arg": "^5.0.2",
  3157. "chokidar": "^3.6.0",
  3158. "didyoumean": "^1.2.2",
  3159. "dlv": "^1.1.3",
  3160. "fast-glob": "^3.3.2",
  3161. "glob-parent": "^6.0.2",
  3162. "is-glob": "^4.0.3",
  3163. "jiti": "^1.21.6",
  3164. "lilconfig": "^2.1.0",
  3165. "micromatch": "^4.0.8",
  3166. "normalize-path": "^3.0.0",
  3167. "object-hash": "^3.0.0",
  3168. "picocolors": "^1.1.1",
  3169. "postcss": "^8.4.47",
  3170. "postcss-import": "^15.1.0",
  3171. "postcss-js": "^4.0.1",
  3172. "postcss-load-config": "^4.0.2",
  3173. "postcss-nested": "^6.2.0",
  3174. "postcss-selector-parser": "^6.1.2",
  3175. "resolve": "^1.22.8",
  3176. "sucrase": "^3.35.0"
  3177. },
  3178. "bin": {
  3179. "tailwind": "lib/cli.js",
  3180. "tailwindcss": "lib/cli.js"
  3181. },
  3182. "engines": {
  3183. "node": ">=14.0.0"
  3184. }
  3185. },
  3186. "node_modules/textlinestream": {
  3187. "version": "1.1.1",
  3188. "resolved": "https://registry.npmjs.org/textlinestream/-/textlinestream-1.1.1.tgz",
  3189. "integrity": "sha512-iBHbi7BQxrFmwZUQJsT0SjNzlLLsXhvW/kg7EyOMVMBIrlnj/qYofwo1LVLZi+3GbUEo96Iu2eqToI2+lZoAEQ==",
  3190. "license": "MIT"
  3191. },
  3192. "node_modules/tslib": {
  3193. "version": "2.8.1",
  3194. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  3195. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  3196. "devOptional": true,
  3197. "license": "0BSD"
  3198. },
  3199. "node_modules/uc.micro": {
  3200. "version": "2.1.0",
  3201. "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
  3202. "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
  3203. "license": "MIT"
  3204. },
  3205. "node_modules/varint": {
  3206. "version": "6.0.0",
  3207. "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz",
  3208. "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==",
  3209. "devOptional": true,
  3210. "license": "MIT"
  3211. },
  3212. "node_modules/vite": {
  3213. "version": "5.4.11",
  3214. "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz",
  3215. "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==",
  3216. "license": "MIT",
  3217. "dependencies": {
  3218. "esbuild": "^0.21.3",
  3219. "postcss": "^8.4.43",
  3220. "rollup": "^4.20.0"
  3221. },
  3222. "bin": {
  3223. "vite": "bin/vite.js"
  3224. },
  3225. "engines": {
  3226. "node": "^18.0.0 || >=20.0.0"
  3227. },
  3228. "funding": {
  3229. "url": "https://github.com/vitejs/vite?sponsor=1"
  3230. },
  3231. "optionalDependencies": {
  3232. "fsevents": "~2.3.3"
  3233. },
  3234. "peerDependencies": {
  3235. "@types/node": "^18.0.0 || >=20.0.0",
  3236. "less": "*",
  3237. "lightningcss": "^1.21.0",
  3238. "sass": "*",
  3239. "sass-embedded": "*",
  3240. "stylus": "*",
  3241. "sugarss": "*",
  3242. "terser": "^5.4.0"
  3243. },
  3244. "peerDependenciesMeta": {
  3245. "@types/node": {
  3246. "optional": true
  3247. },
  3248. "less": {
  3249. "optional": true
  3250. },
  3251. "lightningcss": {
  3252. "optional": true
  3253. },
  3254. "sass": {
  3255. "optional": true
  3256. },
  3257. "sass-embedded": {
  3258. "optional": true
  3259. },
  3260. "stylus": {
  3261. "optional": true
  3262. },
  3263. "sugarss": {
  3264. "optional": true
  3265. },
  3266. "terser": {
  3267. "optional": true
  3268. }
  3269. }
  3270. },
  3271. "node_modules/vite-plugin-singlefile": {
  3272. "version": "2.0.3",
  3273. "resolved": "https://registry.npmjs.org/vite-plugin-singlefile/-/vite-plugin-singlefile-2.0.3.tgz",
  3274. "integrity": "sha512-OEBEwdX8nCGPSdtaB1D7rryYnT+YfPTS8ojL1TDyeUF+bWDCTfRriQqw6T0vl9EbKI/KMg7szN3awst6cLrKkA==",
  3275. "license": "MIT",
  3276. "dependencies": {
  3277. "micromatch": "^4.0.8"
  3278. },
  3279. "engines": {
  3280. "node": ">18.0.0"
  3281. },
  3282. "peerDependencies": {
  3283. "rollup": "^4.24.3",
  3284. "vite": "^5.4.10"
  3285. }
  3286. },
  3287. "node_modules/vue": {
  3288. "version": "3.5.13",
  3289. "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz",
  3290. "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==",
  3291. "license": "MIT",
  3292. "dependencies": {
  3293. "@vue/compiler-dom": "3.5.13",
  3294. "@vue/compiler-sfc": "3.5.13",
  3295. "@vue/runtime-dom": "3.5.13",
  3296. "@vue/server-renderer": "3.5.13",
  3297. "@vue/shared": "3.5.13"
  3298. },
  3299. "peerDependencies": {
  3300. "typescript": "*"
  3301. },
  3302. "peerDependenciesMeta": {
  3303. "typescript": {
  3304. "optional": true
  3305. }
  3306. }
  3307. }
  3308. }
  3309. }