package-lock.json 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210
  1. {
  2. "name": "mp-video-tx--",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "mp-video-tx--",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@tailwindcss/vite": "^4.1.10",
  12. "artplayer": "^5.2.3",
  13. "axios": "^1.10.0",
  14. "hls.js": "^1.6.5",
  15. "normalize.css": "^8.0.1",
  16. "nprogress": "^0.2.0",
  17. "qs": "^6.14.0",
  18. "tailwindcss": "^4.1.10",
  19. "vant": "^4.9.20",
  20. "vue": "^3.5.13",
  21. "vue-router": "^4.5.1"
  22. },
  23. "devDependencies": {
  24. "@types/node": "^24.0.3",
  25. "@vant/auto-import-resolver": "^1.3.0",
  26. "@vitejs/plugin-vue": "^5.2.3",
  27. "postcss-px-to-viewport": "^1.1.1",
  28. "sass": "^1.89.2",
  29. "sass-loader": "^16.0.5",
  30. "unplugin-auto-import": "^19.3.0",
  31. "unplugin-vue-components": "^28.7.0",
  32. "vite": "^6.3.5"
  33. }
  34. },
  35. "node_modules/@ampproject/remapping": {
  36. "version": "2.3.0",
  37. "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.3.0.tgz",
  38. "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
  39. "license": "Apache-2.0",
  40. "dependencies": {
  41. "@jridgewell/gen-mapping": "^0.3.5",
  42. "@jridgewell/trace-mapping": "^0.3.24"
  43. },
  44. "engines": {
  45. "node": ">=6.0.0"
  46. }
  47. },
  48. "node_modules/@babel/helper-string-parser": {
  49. "version": "7.27.1",
  50. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  51. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  52. "engines": {
  53. "node": ">=6.9.0"
  54. }
  55. },
  56. "node_modules/@babel/helper-validator-identifier": {
  57. "version": "7.27.1",
  58. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
  59. "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
  60. "engines": {
  61. "node": ">=6.9.0"
  62. }
  63. },
  64. "node_modules/@babel/parser": {
  65. "version": "7.27.5",
  66. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.27.5.tgz",
  67. "integrity": "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==",
  68. "dependencies": {
  69. "@babel/types": "^7.27.3"
  70. },
  71. "bin": {
  72. "parser": "bin/babel-parser.js"
  73. },
  74. "engines": {
  75. "node": ">=6.0.0"
  76. }
  77. },
  78. "node_modules/@babel/types": {
  79. "version": "7.27.6",
  80. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.27.6.tgz",
  81. "integrity": "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==",
  82. "dependencies": {
  83. "@babel/helper-string-parser": "^7.27.1",
  84. "@babel/helper-validator-identifier": "^7.27.1"
  85. },
  86. "engines": {
  87. "node": ">=6.9.0"
  88. }
  89. },
  90. "node_modules/@esbuild/aix-ppc64": {
  91. "version": "0.25.5",
  92. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz",
  93. "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==",
  94. "cpu": [
  95. "ppc64"
  96. ],
  97. "optional": true,
  98. "os": [
  99. "aix"
  100. ],
  101. "engines": {
  102. "node": ">=18"
  103. }
  104. },
  105. "node_modules/@esbuild/android-arm": {
  106. "version": "0.25.5",
  107. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.5.tgz",
  108. "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==",
  109. "cpu": [
  110. "arm"
  111. ],
  112. "optional": true,
  113. "os": [
  114. "android"
  115. ],
  116. "engines": {
  117. "node": ">=18"
  118. }
  119. },
  120. "node_modules/@esbuild/android-arm64": {
  121. "version": "0.25.5",
  122. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz",
  123. "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==",
  124. "cpu": [
  125. "arm64"
  126. ],
  127. "optional": true,
  128. "os": [
  129. "android"
  130. ],
  131. "engines": {
  132. "node": ">=18"
  133. }
  134. },
  135. "node_modules/@esbuild/android-x64": {
  136. "version": "0.25.5",
  137. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.5.tgz",
  138. "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==",
  139. "cpu": [
  140. "x64"
  141. ],
  142. "optional": true,
  143. "os": [
  144. "android"
  145. ],
  146. "engines": {
  147. "node": ">=18"
  148. }
  149. },
  150. "node_modules/@esbuild/darwin-arm64": {
  151. "version": "0.25.5",
  152. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz",
  153. "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==",
  154. "cpu": [
  155. "arm64"
  156. ],
  157. "optional": true,
  158. "os": [
  159. "darwin"
  160. ],
  161. "engines": {
  162. "node": ">=18"
  163. }
  164. },
  165. "node_modules/@esbuild/darwin-x64": {
  166. "version": "0.25.5",
  167. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz",
  168. "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==",
  169. "cpu": [
  170. "x64"
  171. ],
  172. "optional": true,
  173. "os": [
  174. "darwin"
  175. ],
  176. "engines": {
  177. "node": ">=18"
  178. }
  179. },
  180. "node_modules/@esbuild/freebsd-arm64": {
  181. "version": "0.25.5",
  182. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz",
  183. "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==",
  184. "cpu": [
  185. "arm64"
  186. ],
  187. "optional": true,
  188. "os": [
  189. "freebsd"
  190. ],
  191. "engines": {
  192. "node": ">=18"
  193. }
  194. },
  195. "node_modules/@esbuild/freebsd-x64": {
  196. "version": "0.25.5",
  197. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz",
  198. "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==",
  199. "cpu": [
  200. "x64"
  201. ],
  202. "optional": true,
  203. "os": [
  204. "freebsd"
  205. ],
  206. "engines": {
  207. "node": ">=18"
  208. }
  209. },
  210. "node_modules/@esbuild/linux-arm": {
  211. "version": "0.25.5",
  212. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz",
  213. "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==",
  214. "cpu": [
  215. "arm"
  216. ],
  217. "optional": true,
  218. "os": [
  219. "linux"
  220. ],
  221. "engines": {
  222. "node": ">=18"
  223. }
  224. },
  225. "node_modules/@esbuild/linux-arm64": {
  226. "version": "0.25.5",
  227. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz",
  228. "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==",
  229. "cpu": [
  230. "arm64"
  231. ],
  232. "optional": true,
  233. "os": [
  234. "linux"
  235. ],
  236. "engines": {
  237. "node": ">=18"
  238. }
  239. },
  240. "node_modules/@esbuild/linux-ia32": {
  241. "version": "0.25.5",
  242. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz",
  243. "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==",
  244. "cpu": [
  245. "ia32"
  246. ],
  247. "optional": true,
  248. "os": [
  249. "linux"
  250. ],
  251. "engines": {
  252. "node": ">=18"
  253. }
  254. },
  255. "node_modules/@esbuild/linux-loong64": {
  256. "version": "0.25.5",
  257. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz",
  258. "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==",
  259. "cpu": [
  260. "loong64"
  261. ],
  262. "optional": true,
  263. "os": [
  264. "linux"
  265. ],
  266. "engines": {
  267. "node": ">=18"
  268. }
  269. },
  270. "node_modules/@esbuild/linux-mips64el": {
  271. "version": "0.25.5",
  272. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz",
  273. "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==",
  274. "cpu": [
  275. "mips64el"
  276. ],
  277. "optional": true,
  278. "os": [
  279. "linux"
  280. ],
  281. "engines": {
  282. "node": ">=18"
  283. }
  284. },
  285. "node_modules/@esbuild/linux-ppc64": {
  286. "version": "0.25.5",
  287. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz",
  288. "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==",
  289. "cpu": [
  290. "ppc64"
  291. ],
  292. "optional": true,
  293. "os": [
  294. "linux"
  295. ],
  296. "engines": {
  297. "node": ">=18"
  298. }
  299. },
  300. "node_modules/@esbuild/linux-riscv64": {
  301. "version": "0.25.5",
  302. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz",
  303. "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==",
  304. "cpu": [
  305. "riscv64"
  306. ],
  307. "optional": true,
  308. "os": [
  309. "linux"
  310. ],
  311. "engines": {
  312. "node": ">=18"
  313. }
  314. },
  315. "node_modules/@esbuild/linux-s390x": {
  316. "version": "0.25.5",
  317. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz",
  318. "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==",
  319. "cpu": [
  320. "s390x"
  321. ],
  322. "optional": true,
  323. "os": [
  324. "linux"
  325. ],
  326. "engines": {
  327. "node": ">=18"
  328. }
  329. },
  330. "node_modules/@esbuild/linux-x64": {
  331. "version": "0.25.5",
  332. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz",
  333. "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==",
  334. "cpu": [
  335. "x64"
  336. ],
  337. "optional": true,
  338. "os": [
  339. "linux"
  340. ],
  341. "engines": {
  342. "node": ">=18"
  343. }
  344. },
  345. "node_modules/@esbuild/netbsd-arm64": {
  346. "version": "0.25.5",
  347. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz",
  348. "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==",
  349. "cpu": [
  350. "arm64"
  351. ],
  352. "optional": true,
  353. "os": [
  354. "netbsd"
  355. ],
  356. "engines": {
  357. "node": ">=18"
  358. }
  359. },
  360. "node_modules/@esbuild/netbsd-x64": {
  361. "version": "0.25.5",
  362. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz",
  363. "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==",
  364. "cpu": [
  365. "x64"
  366. ],
  367. "optional": true,
  368. "os": [
  369. "netbsd"
  370. ],
  371. "engines": {
  372. "node": ">=18"
  373. }
  374. },
  375. "node_modules/@esbuild/openbsd-arm64": {
  376. "version": "0.25.5",
  377. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz",
  378. "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==",
  379. "cpu": [
  380. "arm64"
  381. ],
  382. "optional": true,
  383. "os": [
  384. "openbsd"
  385. ],
  386. "engines": {
  387. "node": ">=18"
  388. }
  389. },
  390. "node_modules/@esbuild/openbsd-x64": {
  391. "version": "0.25.5",
  392. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz",
  393. "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==",
  394. "cpu": [
  395. "x64"
  396. ],
  397. "optional": true,
  398. "os": [
  399. "openbsd"
  400. ],
  401. "engines": {
  402. "node": ">=18"
  403. }
  404. },
  405. "node_modules/@esbuild/sunos-x64": {
  406. "version": "0.25.5",
  407. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz",
  408. "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==",
  409. "cpu": [
  410. "x64"
  411. ],
  412. "optional": true,
  413. "os": [
  414. "sunos"
  415. ],
  416. "engines": {
  417. "node": ">=18"
  418. }
  419. },
  420. "node_modules/@esbuild/win32-arm64": {
  421. "version": "0.25.5",
  422. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz",
  423. "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==",
  424. "cpu": [
  425. "arm64"
  426. ],
  427. "optional": true,
  428. "os": [
  429. "win32"
  430. ],
  431. "engines": {
  432. "node": ">=18"
  433. }
  434. },
  435. "node_modules/@esbuild/win32-ia32": {
  436. "version": "0.25.5",
  437. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz",
  438. "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==",
  439. "cpu": [
  440. "ia32"
  441. ],
  442. "optional": true,
  443. "os": [
  444. "win32"
  445. ],
  446. "engines": {
  447. "node": ">=18"
  448. }
  449. },
  450. "node_modules/@esbuild/win32-x64": {
  451. "version": "0.25.5",
  452. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz",
  453. "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==",
  454. "cpu": [
  455. "x64"
  456. ],
  457. "optional": true,
  458. "os": [
  459. "win32"
  460. ],
  461. "engines": {
  462. "node": ">=18"
  463. }
  464. },
  465. "node_modules/@isaacs/fs-minipass": {
  466. "version": "4.0.1",
  467. "resolved": "https://registry.npmmirror.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
  468. "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
  469. "license": "ISC",
  470. "dependencies": {
  471. "minipass": "^7.0.4"
  472. },
  473. "engines": {
  474. "node": ">=18.0.0"
  475. }
  476. },
  477. "node_modules/@jridgewell/gen-mapping": {
  478. "version": "0.3.8",
  479. "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
  480. "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
  481. "license": "MIT",
  482. "dependencies": {
  483. "@jridgewell/set-array": "^1.2.1",
  484. "@jridgewell/sourcemap-codec": "^1.4.10",
  485. "@jridgewell/trace-mapping": "^0.3.24"
  486. },
  487. "engines": {
  488. "node": ">=6.0.0"
  489. }
  490. },
  491. "node_modules/@jridgewell/resolve-uri": {
  492. "version": "3.1.2",
  493. "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  494. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  495. "license": "MIT",
  496. "engines": {
  497. "node": ">=6.0.0"
  498. }
  499. },
  500. "node_modules/@jridgewell/set-array": {
  501. "version": "1.2.1",
  502. "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.2.1.tgz",
  503. "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
  504. "license": "MIT",
  505. "engines": {
  506. "node": ">=6.0.0"
  507. }
  508. },
  509. "node_modules/@jridgewell/sourcemap-codec": {
  510. "version": "1.5.0",
  511. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
  512. "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
  513. },
  514. "node_modules/@jridgewell/trace-mapping": {
  515. "version": "0.3.25",
  516. "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
  517. "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
  518. "license": "MIT",
  519. "dependencies": {
  520. "@jridgewell/resolve-uri": "^3.1.0",
  521. "@jridgewell/sourcemap-codec": "^1.4.14"
  522. }
  523. },
  524. "node_modules/@parcel/watcher": {
  525. "version": "2.5.1",
  526. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.1.tgz",
  527. "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
  528. "hasInstallScript": true,
  529. "optional": true,
  530. "dependencies": {
  531. "detect-libc": "^1.0.3",
  532. "is-glob": "^4.0.3",
  533. "micromatch": "^4.0.5",
  534. "node-addon-api": "^7.0.0"
  535. },
  536. "engines": {
  537. "node": ">= 10.0.0"
  538. },
  539. "funding": {
  540. "type": "opencollective",
  541. "url": "https://opencollective.com/parcel"
  542. },
  543. "optionalDependencies": {
  544. "@parcel/watcher-android-arm64": "2.5.1",
  545. "@parcel/watcher-darwin-arm64": "2.5.1",
  546. "@parcel/watcher-darwin-x64": "2.5.1",
  547. "@parcel/watcher-freebsd-x64": "2.5.1",
  548. "@parcel/watcher-linux-arm-glibc": "2.5.1",
  549. "@parcel/watcher-linux-arm-musl": "2.5.1",
  550. "@parcel/watcher-linux-arm64-glibc": "2.5.1",
  551. "@parcel/watcher-linux-arm64-musl": "2.5.1",
  552. "@parcel/watcher-linux-x64-glibc": "2.5.1",
  553. "@parcel/watcher-linux-x64-musl": "2.5.1",
  554. "@parcel/watcher-win32-arm64": "2.5.1",
  555. "@parcel/watcher-win32-ia32": "2.5.1",
  556. "@parcel/watcher-win32-x64": "2.5.1"
  557. }
  558. },
  559. "node_modules/@parcel/watcher-android-arm64": {
  560. "version": "2.5.1",
  561. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
  562. "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
  563. "cpu": [
  564. "arm64"
  565. ],
  566. "optional": true,
  567. "os": [
  568. "android"
  569. ],
  570. "engines": {
  571. "node": ">= 10.0.0"
  572. },
  573. "funding": {
  574. "type": "opencollective",
  575. "url": "https://opencollective.com/parcel"
  576. }
  577. },
  578. "node_modules/@parcel/watcher-darwin-arm64": {
  579. "version": "2.5.1",
  580. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
  581. "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
  582. "cpu": [
  583. "arm64"
  584. ],
  585. "optional": true,
  586. "os": [
  587. "darwin"
  588. ],
  589. "engines": {
  590. "node": ">= 10.0.0"
  591. },
  592. "funding": {
  593. "type": "opencollective",
  594. "url": "https://opencollective.com/parcel"
  595. }
  596. },
  597. "node_modules/@parcel/watcher-darwin-x64": {
  598. "version": "2.5.1",
  599. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
  600. "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
  601. "cpu": [
  602. "x64"
  603. ],
  604. "optional": true,
  605. "os": [
  606. "darwin"
  607. ],
  608. "engines": {
  609. "node": ">= 10.0.0"
  610. },
  611. "funding": {
  612. "type": "opencollective",
  613. "url": "https://opencollective.com/parcel"
  614. }
  615. },
  616. "node_modules/@parcel/watcher-freebsd-x64": {
  617. "version": "2.5.1",
  618. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
  619. "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
  620. "cpu": [
  621. "x64"
  622. ],
  623. "optional": true,
  624. "os": [
  625. "freebsd"
  626. ],
  627. "engines": {
  628. "node": ">= 10.0.0"
  629. },
  630. "funding": {
  631. "type": "opencollective",
  632. "url": "https://opencollective.com/parcel"
  633. }
  634. },
  635. "node_modules/@parcel/watcher-linux-arm-glibc": {
  636. "version": "2.5.1",
  637. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
  638. "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
  639. "cpu": [
  640. "arm"
  641. ],
  642. "optional": true,
  643. "os": [
  644. "linux"
  645. ],
  646. "engines": {
  647. "node": ">= 10.0.0"
  648. },
  649. "funding": {
  650. "type": "opencollective",
  651. "url": "https://opencollective.com/parcel"
  652. }
  653. },
  654. "node_modules/@parcel/watcher-linux-arm-musl": {
  655. "version": "2.5.1",
  656. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
  657. "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
  658. "cpu": [
  659. "arm"
  660. ],
  661. "optional": true,
  662. "os": [
  663. "linux"
  664. ],
  665. "engines": {
  666. "node": ">= 10.0.0"
  667. },
  668. "funding": {
  669. "type": "opencollective",
  670. "url": "https://opencollective.com/parcel"
  671. }
  672. },
  673. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  674. "version": "2.5.1",
  675. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
  676. "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
  677. "cpu": [
  678. "arm64"
  679. ],
  680. "optional": true,
  681. "os": [
  682. "linux"
  683. ],
  684. "engines": {
  685. "node": ">= 10.0.0"
  686. },
  687. "funding": {
  688. "type": "opencollective",
  689. "url": "https://opencollective.com/parcel"
  690. }
  691. },
  692. "node_modules/@parcel/watcher-linux-arm64-musl": {
  693. "version": "2.5.1",
  694. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
  695. "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
  696. "cpu": [
  697. "arm64"
  698. ],
  699. "optional": true,
  700. "os": [
  701. "linux"
  702. ],
  703. "engines": {
  704. "node": ">= 10.0.0"
  705. },
  706. "funding": {
  707. "type": "opencollective",
  708. "url": "https://opencollective.com/parcel"
  709. }
  710. },
  711. "node_modules/@parcel/watcher-linux-x64-glibc": {
  712. "version": "2.5.1",
  713. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
  714. "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
  715. "cpu": [
  716. "x64"
  717. ],
  718. "optional": true,
  719. "os": [
  720. "linux"
  721. ],
  722. "engines": {
  723. "node": ">= 10.0.0"
  724. },
  725. "funding": {
  726. "type": "opencollective",
  727. "url": "https://opencollective.com/parcel"
  728. }
  729. },
  730. "node_modules/@parcel/watcher-linux-x64-musl": {
  731. "version": "2.5.1",
  732. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
  733. "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
  734. "cpu": [
  735. "x64"
  736. ],
  737. "optional": true,
  738. "os": [
  739. "linux"
  740. ],
  741. "engines": {
  742. "node": ">= 10.0.0"
  743. },
  744. "funding": {
  745. "type": "opencollective",
  746. "url": "https://opencollective.com/parcel"
  747. }
  748. },
  749. "node_modules/@parcel/watcher-win32-arm64": {
  750. "version": "2.5.1",
  751. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
  752. "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
  753. "cpu": [
  754. "arm64"
  755. ],
  756. "optional": true,
  757. "os": [
  758. "win32"
  759. ],
  760. "engines": {
  761. "node": ">= 10.0.0"
  762. },
  763. "funding": {
  764. "type": "opencollective",
  765. "url": "https://opencollective.com/parcel"
  766. }
  767. },
  768. "node_modules/@parcel/watcher-win32-ia32": {
  769. "version": "2.5.1",
  770. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
  771. "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
  772. "cpu": [
  773. "ia32"
  774. ],
  775. "optional": true,
  776. "os": [
  777. "win32"
  778. ],
  779. "engines": {
  780. "node": ">= 10.0.0"
  781. },
  782. "funding": {
  783. "type": "opencollective",
  784. "url": "https://opencollective.com/parcel"
  785. }
  786. },
  787. "node_modules/@parcel/watcher-win32-x64": {
  788. "version": "2.5.1",
  789. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
  790. "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
  791. "cpu": [
  792. "x64"
  793. ],
  794. "optional": true,
  795. "os": [
  796. "win32"
  797. ],
  798. "engines": {
  799. "node": ">= 10.0.0"
  800. },
  801. "funding": {
  802. "type": "opencollective",
  803. "url": "https://opencollective.com/parcel"
  804. }
  805. },
  806. "node_modules/@rollup/rollup-android-arm-eabi": {
  807. "version": "4.44.0",
  808. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.0.tgz",
  809. "integrity": "sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA==",
  810. "cpu": [
  811. "arm"
  812. ],
  813. "optional": true,
  814. "os": [
  815. "android"
  816. ]
  817. },
  818. "node_modules/@rollup/rollup-android-arm64": {
  819. "version": "4.44.0",
  820. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.0.tgz",
  821. "integrity": "sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw==",
  822. "cpu": [
  823. "arm64"
  824. ],
  825. "optional": true,
  826. "os": [
  827. "android"
  828. ]
  829. },
  830. "node_modules/@rollup/rollup-darwin-arm64": {
  831. "version": "4.44.0",
  832. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.0.tgz",
  833. "integrity": "sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==",
  834. "cpu": [
  835. "arm64"
  836. ],
  837. "optional": true,
  838. "os": [
  839. "darwin"
  840. ]
  841. },
  842. "node_modules/@rollup/rollup-darwin-x64": {
  843. "version": "4.44.0",
  844. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.0.tgz",
  845. "integrity": "sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==",
  846. "cpu": [
  847. "x64"
  848. ],
  849. "optional": true,
  850. "os": [
  851. "darwin"
  852. ]
  853. },
  854. "node_modules/@rollup/rollup-freebsd-arm64": {
  855. "version": "4.44.0",
  856. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.0.tgz",
  857. "integrity": "sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ==",
  858. "cpu": [
  859. "arm64"
  860. ],
  861. "optional": true,
  862. "os": [
  863. "freebsd"
  864. ]
  865. },
  866. "node_modules/@rollup/rollup-freebsd-x64": {
  867. "version": "4.44.0",
  868. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.0.tgz",
  869. "integrity": "sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g==",
  870. "cpu": [
  871. "x64"
  872. ],
  873. "optional": true,
  874. "os": [
  875. "freebsd"
  876. ]
  877. },
  878. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  879. "version": "4.44.0",
  880. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.0.tgz",
  881. "integrity": "sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ==",
  882. "cpu": [
  883. "arm"
  884. ],
  885. "optional": true,
  886. "os": [
  887. "linux"
  888. ]
  889. },
  890. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  891. "version": "4.44.0",
  892. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.0.tgz",
  893. "integrity": "sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg==",
  894. "cpu": [
  895. "arm"
  896. ],
  897. "optional": true,
  898. "os": [
  899. "linux"
  900. ]
  901. },
  902. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  903. "version": "4.44.0",
  904. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.0.tgz",
  905. "integrity": "sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==",
  906. "cpu": [
  907. "arm64"
  908. ],
  909. "optional": true,
  910. "os": [
  911. "linux"
  912. ]
  913. },
  914. "node_modules/@rollup/rollup-linux-arm64-musl": {
  915. "version": "4.44.0",
  916. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.0.tgz",
  917. "integrity": "sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==",
  918. "cpu": [
  919. "arm64"
  920. ],
  921. "optional": true,
  922. "os": [
  923. "linux"
  924. ]
  925. },
  926. "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
  927. "version": "4.44.0",
  928. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.0.tgz",
  929. "integrity": "sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg==",
  930. "cpu": [
  931. "loong64"
  932. ],
  933. "optional": true,
  934. "os": [
  935. "linux"
  936. ]
  937. },
  938. "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
  939. "version": "4.44.0",
  940. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.0.tgz",
  941. "integrity": "sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ==",
  942. "cpu": [
  943. "ppc64"
  944. ],
  945. "optional": true,
  946. "os": [
  947. "linux"
  948. ]
  949. },
  950. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  951. "version": "4.44.0",
  952. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.0.tgz",
  953. "integrity": "sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA==",
  954. "cpu": [
  955. "riscv64"
  956. ],
  957. "optional": true,
  958. "os": [
  959. "linux"
  960. ]
  961. },
  962. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  963. "version": "4.44.0",
  964. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.0.tgz",
  965. "integrity": "sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q==",
  966. "cpu": [
  967. "riscv64"
  968. ],
  969. "optional": true,
  970. "os": [
  971. "linux"
  972. ]
  973. },
  974. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  975. "version": "4.44.0",
  976. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.0.tgz",
  977. "integrity": "sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA==",
  978. "cpu": [
  979. "s390x"
  980. ],
  981. "optional": true,
  982. "os": [
  983. "linux"
  984. ]
  985. },
  986. "node_modules/@rollup/rollup-linux-x64-gnu": {
  987. "version": "4.44.0",
  988. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.0.tgz",
  989. "integrity": "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==",
  990. "cpu": [
  991. "x64"
  992. ],
  993. "optional": true,
  994. "os": [
  995. "linux"
  996. ]
  997. },
  998. "node_modules/@rollup/rollup-linux-x64-musl": {
  999. "version": "4.44.0",
  1000. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.0.tgz",
  1001. "integrity": "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==",
  1002. "cpu": [
  1003. "x64"
  1004. ],
  1005. "optional": true,
  1006. "os": [
  1007. "linux"
  1008. ]
  1009. },
  1010. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1011. "version": "4.44.0",
  1012. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.0.tgz",
  1013. "integrity": "sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==",
  1014. "cpu": [
  1015. "arm64"
  1016. ],
  1017. "optional": true,
  1018. "os": [
  1019. "win32"
  1020. ]
  1021. },
  1022. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1023. "version": "4.44.0",
  1024. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.0.tgz",
  1025. "integrity": "sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA==",
  1026. "cpu": [
  1027. "ia32"
  1028. ],
  1029. "optional": true,
  1030. "os": [
  1031. "win32"
  1032. ]
  1033. },
  1034. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1035. "version": "4.44.0",
  1036. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.0.tgz",
  1037. "integrity": "sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==",
  1038. "cpu": [
  1039. "x64"
  1040. ],
  1041. "optional": true,
  1042. "os": [
  1043. "win32"
  1044. ]
  1045. },
  1046. "node_modules/@tailwindcss/node": {
  1047. "version": "4.1.10",
  1048. "resolved": "https://registry.npmmirror.com/@tailwindcss/node/-/node-4.1.10.tgz",
  1049. "integrity": "sha512-2ACf1znY5fpRBwRhMgj9ZXvb2XZW8qs+oTfotJ2C5xR0/WNL7UHZ7zXl6s+rUqedL1mNi+0O+WQr5awGowS3PQ==",
  1050. "license": "MIT",
  1051. "dependencies": {
  1052. "@ampproject/remapping": "^2.3.0",
  1053. "enhanced-resolve": "^5.18.1",
  1054. "jiti": "^2.4.2",
  1055. "lightningcss": "1.30.1",
  1056. "magic-string": "^0.30.17",
  1057. "source-map-js": "^1.2.1",
  1058. "tailwindcss": "4.1.10"
  1059. }
  1060. },
  1061. "node_modules/@tailwindcss/oxide": {
  1062. "version": "4.1.10",
  1063. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide/-/oxide-4.1.10.tgz",
  1064. "integrity": "sha512-v0C43s7Pjw+B9w21htrQwuFObSkio2aV/qPx/mhrRldbqxbWJK6KizM+q7BF1/1CmuLqZqX3CeYF7s7P9fbA8Q==",
  1065. "hasInstallScript": true,
  1066. "license": "MIT",
  1067. "dependencies": {
  1068. "detect-libc": "^2.0.4",
  1069. "tar": "^7.4.3"
  1070. },
  1071. "engines": {
  1072. "node": ">= 10"
  1073. },
  1074. "optionalDependencies": {
  1075. "@tailwindcss/oxide-android-arm64": "4.1.10",
  1076. "@tailwindcss/oxide-darwin-arm64": "4.1.10",
  1077. "@tailwindcss/oxide-darwin-x64": "4.1.10",
  1078. "@tailwindcss/oxide-freebsd-x64": "4.1.10",
  1079. "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.10",
  1080. "@tailwindcss/oxide-linux-arm64-gnu": "4.1.10",
  1081. "@tailwindcss/oxide-linux-arm64-musl": "4.1.10",
  1082. "@tailwindcss/oxide-linux-x64-gnu": "4.1.10",
  1083. "@tailwindcss/oxide-linux-x64-musl": "4.1.10",
  1084. "@tailwindcss/oxide-wasm32-wasi": "4.1.10",
  1085. "@tailwindcss/oxide-win32-arm64-msvc": "4.1.10",
  1086. "@tailwindcss/oxide-win32-x64-msvc": "4.1.10"
  1087. }
  1088. },
  1089. "node_modules/@tailwindcss/oxide-android-arm64": {
  1090. "version": "4.1.10",
  1091. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.10.tgz",
  1092. "integrity": "sha512-VGLazCoRQ7rtsCzThaI1UyDu/XRYVyH4/EWiaSX6tFglE+xZB5cvtC5Omt0OQ+FfiIVP98su16jDVHDEIuH4iQ==",
  1093. "cpu": [
  1094. "arm64"
  1095. ],
  1096. "license": "MIT",
  1097. "optional": true,
  1098. "os": [
  1099. "android"
  1100. ],
  1101. "engines": {
  1102. "node": ">= 10"
  1103. }
  1104. },
  1105. "node_modules/@tailwindcss/oxide-darwin-arm64": {
  1106. "version": "4.1.10",
  1107. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.10.tgz",
  1108. "integrity": "sha512-ZIFqvR1irX2yNjWJzKCqTCcHZbgkSkSkZKbRM3BPzhDL/18idA8uWCoopYA2CSDdSGFlDAxYdU2yBHwAwx8euQ==",
  1109. "cpu": [
  1110. "arm64"
  1111. ],
  1112. "license": "MIT",
  1113. "optional": true,
  1114. "os": [
  1115. "darwin"
  1116. ],
  1117. "engines": {
  1118. "node": ">= 10"
  1119. }
  1120. },
  1121. "node_modules/@tailwindcss/oxide-darwin-x64": {
  1122. "version": "4.1.10",
  1123. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.10.tgz",
  1124. "integrity": "sha512-eCA4zbIhWUFDXoamNztmS0MjXHSEJYlvATzWnRiTqJkcUteSjO94PoRHJy1Xbwp9bptjeIxxBHh+zBWFhttbrQ==",
  1125. "cpu": [
  1126. "x64"
  1127. ],
  1128. "license": "MIT",
  1129. "optional": true,
  1130. "os": [
  1131. "darwin"
  1132. ],
  1133. "engines": {
  1134. "node": ">= 10"
  1135. }
  1136. },
  1137. "node_modules/@tailwindcss/oxide-freebsd-x64": {
  1138. "version": "4.1.10",
  1139. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.10.tgz",
  1140. "integrity": "sha512-8/392Xu12R0cc93DpiJvNpJ4wYVSiciUlkiOHOSOQNH3adq9Gi/dtySK7dVQjXIOzlpSHjeCL89RUUI8/GTI6g==",
  1141. "cpu": [
  1142. "x64"
  1143. ],
  1144. "license": "MIT",
  1145. "optional": true,
  1146. "os": [
  1147. "freebsd"
  1148. ],
  1149. "engines": {
  1150. "node": ">= 10"
  1151. }
  1152. },
  1153. "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
  1154. "version": "4.1.10",
  1155. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.10.tgz",
  1156. "integrity": "sha512-t9rhmLT6EqeuPT+MXhWhlRYIMSfh5LZ6kBrC4FS6/+M1yXwfCtp24UumgCWOAJVyjQwG+lYva6wWZxrfvB+NhQ==",
  1157. "cpu": [
  1158. "arm"
  1159. ],
  1160. "license": "MIT",
  1161. "optional": true,
  1162. "os": [
  1163. "linux"
  1164. ],
  1165. "engines": {
  1166. "node": ">= 10"
  1167. }
  1168. },
  1169. "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
  1170. "version": "4.1.10",
  1171. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.10.tgz",
  1172. "integrity": "sha512-3oWrlNlxLRxXejQ8zImzrVLuZ/9Z2SeKoLhtCu0hpo38hTO2iL86eFOu4sVR8cZc6n3z7eRXXqtHJECa6mFOvA==",
  1173. "cpu": [
  1174. "arm64"
  1175. ],
  1176. "license": "MIT",
  1177. "optional": true,
  1178. "os": [
  1179. "linux"
  1180. ],
  1181. "engines": {
  1182. "node": ">= 10"
  1183. }
  1184. },
  1185. "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
  1186. "version": "4.1.10",
  1187. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.10.tgz",
  1188. "integrity": "sha512-saScU0cmWvg/Ez4gUmQWr9pvY9Kssxt+Xenfx1LG7LmqjcrvBnw4r9VjkFcqmbBb7GCBwYNcZi9X3/oMda9sqQ==",
  1189. "cpu": [
  1190. "arm64"
  1191. ],
  1192. "license": "MIT",
  1193. "optional": true,
  1194. "os": [
  1195. "linux"
  1196. ],
  1197. "engines": {
  1198. "node": ">= 10"
  1199. }
  1200. },
  1201. "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
  1202. "version": "4.1.10",
  1203. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.10.tgz",
  1204. "integrity": "sha512-/G3ao/ybV9YEEgAXeEg28dyH6gs1QG8tvdN9c2MNZdUXYBaIY/Gx0N6RlJzfLy/7Nkdok4kaxKPHKJUlAaoTdA==",
  1205. "cpu": [
  1206. "x64"
  1207. ],
  1208. "license": "MIT",
  1209. "optional": true,
  1210. "os": [
  1211. "linux"
  1212. ],
  1213. "engines": {
  1214. "node": ">= 10"
  1215. }
  1216. },
  1217. "node_modules/@tailwindcss/oxide-linux-x64-musl": {
  1218. "version": "4.1.10",
  1219. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.10.tgz",
  1220. "integrity": "sha512-LNr7X8fTiKGRtQGOerSayc2pWJp/9ptRYAa4G+U+cjw9kJZvkopav1AQc5HHD+U364f71tZv6XamaHKgrIoVzA==",
  1221. "cpu": [
  1222. "x64"
  1223. ],
  1224. "license": "MIT",
  1225. "optional": true,
  1226. "os": [
  1227. "linux"
  1228. ],
  1229. "engines": {
  1230. "node": ">= 10"
  1231. }
  1232. },
  1233. "node_modules/@tailwindcss/oxide-wasm32-wasi": {
  1234. "version": "4.1.10",
  1235. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.10.tgz",
  1236. "integrity": "sha512-d6ekQpopFQJAcIK2i7ZzWOYGZ+A6NzzvQ3ozBvWFdeyqfOZdYHU66g5yr+/HC4ipP1ZgWsqa80+ISNILk+ae/Q==",
  1237. "bundleDependencies": [
  1238. "@napi-rs/wasm-runtime",
  1239. "@emnapi/core",
  1240. "@emnapi/runtime",
  1241. "@tybys/wasm-util",
  1242. "@emnapi/wasi-threads",
  1243. "tslib"
  1244. ],
  1245. "cpu": [
  1246. "wasm32"
  1247. ],
  1248. "license": "MIT",
  1249. "optional": true,
  1250. "dependencies": {
  1251. "@emnapi/core": "^1.4.3",
  1252. "@emnapi/runtime": "^1.4.3",
  1253. "@emnapi/wasi-threads": "^1.0.2",
  1254. "@napi-rs/wasm-runtime": "^0.2.10",
  1255. "@tybys/wasm-util": "^0.9.0",
  1256. "tslib": "^2.8.0"
  1257. },
  1258. "engines": {
  1259. "node": ">=14.0.0"
  1260. }
  1261. },
  1262. "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
  1263. "version": "4.1.10",
  1264. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.10.tgz",
  1265. "integrity": "sha512-i1Iwg9gRbwNVOCYmnigWCCgow8nDWSFmeTUU5nbNx3rqbe4p0kRbEqLwLJbYZKmSSp23g4N6rCDmm7OuPBXhDA==",
  1266. "cpu": [
  1267. "arm64"
  1268. ],
  1269. "license": "MIT",
  1270. "optional": true,
  1271. "os": [
  1272. "win32"
  1273. ],
  1274. "engines": {
  1275. "node": ">= 10"
  1276. }
  1277. },
  1278. "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
  1279. "version": "4.1.10",
  1280. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.10.tgz",
  1281. "integrity": "sha512-sGiJTjcBSfGq2DVRtaSljq5ZgZS2SDHSIfhOylkBvHVjwOsodBhnb3HdmiKkVuUGKD0I7G63abMOVaskj1KpOA==",
  1282. "cpu": [
  1283. "x64"
  1284. ],
  1285. "license": "MIT",
  1286. "optional": true,
  1287. "os": [
  1288. "win32"
  1289. ],
  1290. "engines": {
  1291. "node": ">= 10"
  1292. }
  1293. },
  1294. "node_modules/@tailwindcss/oxide/node_modules/detect-libc": {
  1295. "version": "2.0.4",
  1296. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.0.4.tgz",
  1297. "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
  1298. "license": "Apache-2.0",
  1299. "engines": {
  1300. "node": ">=8"
  1301. }
  1302. },
  1303. "node_modules/@tailwindcss/vite": {
  1304. "version": "4.1.10",
  1305. "resolved": "https://registry.npmmirror.com/@tailwindcss/vite/-/vite-4.1.10.tgz",
  1306. "integrity": "sha512-QWnD5HDY2IADv+vYR82lOhqOlS1jSCUUAmfem52cXAhRTKxpDh3ARX8TTXJTCCO7Rv7cD2Nlekabv02bwP3a2A==",
  1307. "license": "MIT",
  1308. "dependencies": {
  1309. "@tailwindcss/node": "4.1.10",
  1310. "@tailwindcss/oxide": "4.1.10",
  1311. "tailwindcss": "4.1.10"
  1312. },
  1313. "peerDependencies": {
  1314. "vite": "^5.2.0 || ^6"
  1315. }
  1316. },
  1317. "node_modules/@types/estree": {
  1318. "version": "1.0.8",
  1319. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
  1320. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="
  1321. },
  1322. "node_modules/@types/node": {
  1323. "version": "24.0.3",
  1324. "resolved": "https://registry.npmmirror.com/@types/node/-/node-24.0.3.tgz",
  1325. "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==",
  1326. "devOptional": true,
  1327. "dependencies": {
  1328. "undici-types": "~7.8.0"
  1329. }
  1330. },
  1331. "node_modules/@vant/auto-import-resolver": {
  1332. "version": "1.3.0",
  1333. "resolved": "https://registry.npmmirror.com/@vant/auto-import-resolver/-/auto-import-resolver-1.3.0.tgz",
  1334. "integrity": "sha512-lJyWtCyFizR4bHZvMiNMF3w+WTFTUWAvka1eqTnPK9ticUcKTCOx6qEmHcm8JPb3g1t3GaD2W3MnHkBp/nHamw==",
  1335. "dev": true
  1336. },
  1337. "node_modules/@vant/popperjs": {
  1338. "version": "1.3.0",
  1339. "resolved": "https://registry.npmmirror.com/@vant/popperjs/-/popperjs-1.3.0.tgz",
  1340. "integrity": "sha512-hB+czUG+aHtjhaEmCJDuXOep0YTZjdlRR+4MSmIFnkCQIxJaXLQdSsR90XWvAI2yvKUI7TCGqR8pQg2RtvkMHw=="
  1341. },
  1342. "node_modules/@vant/use": {
  1343. "version": "1.6.0",
  1344. "resolved": "https://registry.npmmirror.com/@vant/use/-/use-1.6.0.tgz",
  1345. "integrity": "sha512-PHHxeAASgiOpSmMjceweIrv2AxDZIkWXyaczksMoWvKV2YAYEhoizRuk/xFnKF+emUIi46TsQ+rvlm/t2BBCfA==",
  1346. "peerDependencies": {
  1347. "vue": "^3.0.0"
  1348. }
  1349. },
  1350. "node_modules/@vitejs/plugin-vue": {
  1351. "version": "5.2.4",
  1352. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
  1353. "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==",
  1354. "dev": true,
  1355. "engines": {
  1356. "node": "^18.0.0 || >=20.0.0"
  1357. },
  1358. "peerDependencies": {
  1359. "vite": "^5.0.0 || ^6.0.0",
  1360. "vue": "^3.2.25"
  1361. }
  1362. },
  1363. "node_modules/@vue/compiler-core": {
  1364. "version": "3.5.17",
  1365. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.17.tgz",
  1366. "integrity": "sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==",
  1367. "dependencies": {
  1368. "@babel/parser": "^7.27.5",
  1369. "@vue/shared": "3.5.17",
  1370. "entities": "^4.5.0",
  1371. "estree-walker": "^2.0.2",
  1372. "source-map-js": "^1.2.1"
  1373. }
  1374. },
  1375. "node_modules/@vue/compiler-dom": {
  1376. "version": "3.5.17",
  1377. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.17.tgz",
  1378. "integrity": "sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==",
  1379. "dependencies": {
  1380. "@vue/compiler-core": "3.5.17",
  1381. "@vue/shared": "3.5.17"
  1382. }
  1383. },
  1384. "node_modules/@vue/compiler-sfc": {
  1385. "version": "3.5.17",
  1386. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.17.tgz",
  1387. "integrity": "sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==",
  1388. "dependencies": {
  1389. "@babel/parser": "^7.27.5",
  1390. "@vue/compiler-core": "3.5.17",
  1391. "@vue/compiler-dom": "3.5.17",
  1392. "@vue/compiler-ssr": "3.5.17",
  1393. "@vue/shared": "3.5.17",
  1394. "estree-walker": "^2.0.2",
  1395. "magic-string": "^0.30.17",
  1396. "postcss": "^8.5.6",
  1397. "source-map-js": "^1.2.1"
  1398. }
  1399. },
  1400. "node_modules/@vue/compiler-ssr": {
  1401. "version": "3.5.17",
  1402. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.17.tgz",
  1403. "integrity": "sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==",
  1404. "dependencies": {
  1405. "@vue/compiler-dom": "3.5.17",
  1406. "@vue/shared": "3.5.17"
  1407. }
  1408. },
  1409. "node_modules/@vue/devtools-api": {
  1410. "version": "6.6.4",
  1411. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  1412. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g=="
  1413. },
  1414. "node_modules/@vue/reactivity": {
  1415. "version": "3.5.17",
  1416. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.17.tgz",
  1417. "integrity": "sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==",
  1418. "dependencies": {
  1419. "@vue/shared": "3.5.17"
  1420. }
  1421. },
  1422. "node_modules/@vue/runtime-core": {
  1423. "version": "3.5.17",
  1424. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.17.tgz",
  1425. "integrity": "sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==",
  1426. "dependencies": {
  1427. "@vue/reactivity": "3.5.17",
  1428. "@vue/shared": "3.5.17"
  1429. }
  1430. },
  1431. "node_modules/@vue/runtime-dom": {
  1432. "version": "3.5.17",
  1433. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.17.tgz",
  1434. "integrity": "sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==",
  1435. "dependencies": {
  1436. "@vue/reactivity": "3.5.17",
  1437. "@vue/runtime-core": "3.5.17",
  1438. "@vue/shared": "3.5.17",
  1439. "csstype": "^3.1.3"
  1440. }
  1441. },
  1442. "node_modules/@vue/server-renderer": {
  1443. "version": "3.5.17",
  1444. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.17.tgz",
  1445. "integrity": "sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==",
  1446. "dependencies": {
  1447. "@vue/compiler-ssr": "3.5.17",
  1448. "@vue/shared": "3.5.17"
  1449. },
  1450. "peerDependencies": {
  1451. "vue": "3.5.17"
  1452. }
  1453. },
  1454. "node_modules/@vue/shared": {
  1455. "version": "3.5.17",
  1456. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.17.tgz",
  1457. "integrity": "sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg=="
  1458. },
  1459. "node_modules/acorn": {
  1460. "version": "8.15.0",
  1461. "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.15.0.tgz",
  1462. "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
  1463. "dev": true,
  1464. "bin": {
  1465. "acorn": "bin/acorn"
  1466. },
  1467. "engines": {
  1468. "node": ">=0.4.0"
  1469. }
  1470. },
  1471. "node_modules/anymatch": {
  1472. "version": "3.1.3",
  1473. "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz",
  1474. "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
  1475. "dev": true,
  1476. "dependencies": {
  1477. "normalize-path": "^3.0.0",
  1478. "picomatch": "^2.0.4"
  1479. },
  1480. "engines": {
  1481. "node": ">= 8"
  1482. }
  1483. },
  1484. "node_modules/anymatch/node_modules/picomatch": {
  1485. "version": "2.3.1",
  1486. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
  1487. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  1488. "dev": true,
  1489. "engines": {
  1490. "node": ">=8.6"
  1491. },
  1492. "funding": {
  1493. "url": "https://github.com/sponsors/jonschlinkert"
  1494. }
  1495. },
  1496. "node_modules/artplayer": {
  1497. "version": "5.2.3",
  1498. "resolved": "https://registry.npmmirror.com/artplayer/-/artplayer-5.2.3.tgz",
  1499. "integrity": "sha512-WaOZQrpZn/L+GgI2f0TEsoAL3Wb+v16Mu0JmWh7qKFYuvr11WNt3dWhWeIaCfoHy3NtkCWM9jTP+xwwsxdElZQ==",
  1500. "license": "MIT",
  1501. "dependencies": {
  1502. "option-validator": "^2.0.6"
  1503. }
  1504. },
  1505. "node_modules/asynckit": {
  1506. "version": "0.4.0",
  1507. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1508. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
  1509. },
  1510. "node_modules/axios": {
  1511. "version": "1.10.0",
  1512. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.10.0.tgz",
  1513. "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==",
  1514. "dependencies": {
  1515. "follow-redirects": "^1.15.6",
  1516. "form-data": "^4.0.0",
  1517. "proxy-from-env": "^1.1.0"
  1518. }
  1519. },
  1520. "node_modules/binary-extensions": {
  1521. "version": "2.3.0",
  1522. "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz",
  1523. "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
  1524. "dev": true,
  1525. "engines": {
  1526. "node": ">=8"
  1527. },
  1528. "funding": {
  1529. "url": "https://github.com/sponsors/sindresorhus"
  1530. }
  1531. },
  1532. "node_modules/braces": {
  1533. "version": "3.0.3",
  1534. "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz",
  1535. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1536. "devOptional": true,
  1537. "dependencies": {
  1538. "fill-range": "^7.1.1"
  1539. },
  1540. "engines": {
  1541. "node": ">=8"
  1542. }
  1543. },
  1544. "node_modules/call-bind-apply-helpers": {
  1545. "version": "1.0.2",
  1546. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1547. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1548. "dependencies": {
  1549. "es-errors": "^1.3.0",
  1550. "function-bind": "^1.1.2"
  1551. },
  1552. "engines": {
  1553. "node": ">= 0.4"
  1554. }
  1555. },
  1556. "node_modules/call-bound": {
  1557. "version": "1.0.4",
  1558. "resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz",
  1559. "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
  1560. "dependencies": {
  1561. "call-bind-apply-helpers": "^1.0.2",
  1562. "get-intrinsic": "^1.3.0"
  1563. },
  1564. "engines": {
  1565. "node": ">= 0.4"
  1566. },
  1567. "funding": {
  1568. "url": "https://github.com/sponsors/ljharb"
  1569. }
  1570. },
  1571. "node_modules/chokidar": {
  1572. "version": "3.6.0",
  1573. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz",
  1574. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  1575. "dev": true,
  1576. "dependencies": {
  1577. "anymatch": "~3.1.2",
  1578. "braces": "~3.0.2",
  1579. "glob-parent": "~5.1.2",
  1580. "is-binary-path": "~2.1.0",
  1581. "is-glob": "~4.0.1",
  1582. "normalize-path": "~3.0.0",
  1583. "readdirp": "~3.6.0"
  1584. },
  1585. "engines": {
  1586. "node": ">= 8.10.0"
  1587. },
  1588. "funding": {
  1589. "url": "https://paulmillr.com/funding/"
  1590. },
  1591. "optionalDependencies": {
  1592. "fsevents": "~2.3.2"
  1593. }
  1594. },
  1595. "node_modules/chownr": {
  1596. "version": "3.0.0",
  1597. "resolved": "https://registry.npmmirror.com/chownr/-/chownr-3.0.0.tgz",
  1598. "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
  1599. "license": "BlueOak-1.0.0",
  1600. "engines": {
  1601. "node": ">=18"
  1602. }
  1603. },
  1604. "node_modules/combined-stream": {
  1605. "version": "1.0.8",
  1606. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  1607. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1608. "dependencies": {
  1609. "delayed-stream": "~1.0.0"
  1610. },
  1611. "engines": {
  1612. "node": ">= 0.8"
  1613. }
  1614. },
  1615. "node_modules/confbox": {
  1616. "version": "0.2.2",
  1617. "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.2.2.tgz",
  1618. "integrity": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==",
  1619. "dev": true
  1620. },
  1621. "node_modules/csstype": {
  1622. "version": "3.1.3",
  1623. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz",
  1624. "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
  1625. },
  1626. "node_modules/debug": {
  1627. "version": "4.4.1",
  1628. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.1.tgz",
  1629. "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
  1630. "dev": true,
  1631. "dependencies": {
  1632. "ms": "^2.1.3"
  1633. },
  1634. "engines": {
  1635. "node": ">=6.0"
  1636. },
  1637. "peerDependenciesMeta": {
  1638. "supports-color": {
  1639. "optional": true
  1640. }
  1641. }
  1642. },
  1643. "node_modules/delayed-stream": {
  1644. "version": "1.0.0",
  1645. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1646. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1647. "engines": {
  1648. "node": ">=0.4.0"
  1649. }
  1650. },
  1651. "node_modules/detect-libc": {
  1652. "version": "1.0.3",
  1653. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-1.0.3.tgz",
  1654. "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
  1655. "optional": true,
  1656. "bin": {
  1657. "detect-libc": "bin/detect-libc.js"
  1658. },
  1659. "engines": {
  1660. "node": ">=0.10"
  1661. }
  1662. },
  1663. "node_modules/dunder-proto": {
  1664. "version": "1.0.1",
  1665. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1666. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1667. "dependencies": {
  1668. "call-bind-apply-helpers": "^1.0.1",
  1669. "es-errors": "^1.3.0",
  1670. "gopd": "^1.2.0"
  1671. },
  1672. "engines": {
  1673. "node": ">= 0.4"
  1674. }
  1675. },
  1676. "node_modules/enhanced-resolve": {
  1677. "version": "5.18.2",
  1678. "resolved": "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz",
  1679. "integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==",
  1680. "license": "MIT",
  1681. "dependencies": {
  1682. "graceful-fs": "^4.2.4",
  1683. "tapable": "^2.2.0"
  1684. },
  1685. "engines": {
  1686. "node": ">=10.13.0"
  1687. }
  1688. },
  1689. "node_modules/entities": {
  1690. "version": "4.5.0",
  1691. "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz",
  1692. "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
  1693. "engines": {
  1694. "node": ">=0.12"
  1695. },
  1696. "funding": {
  1697. "url": "https://github.com/fb55/entities?sponsor=1"
  1698. }
  1699. },
  1700. "node_modules/es-define-property": {
  1701. "version": "1.0.1",
  1702. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  1703. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1704. "engines": {
  1705. "node": ">= 0.4"
  1706. }
  1707. },
  1708. "node_modules/es-errors": {
  1709. "version": "1.3.0",
  1710. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  1711. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1712. "engines": {
  1713. "node": ">= 0.4"
  1714. }
  1715. },
  1716. "node_modules/es-object-atoms": {
  1717. "version": "1.1.1",
  1718. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1719. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1720. "dependencies": {
  1721. "es-errors": "^1.3.0"
  1722. },
  1723. "engines": {
  1724. "node": ">= 0.4"
  1725. }
  1726. },
  1727. "node_modules/es-set-tostringtag": {
  1728. "version": "2.1.0",
  1729. "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1730. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1731. "dependencies": {
  1732. "es-errors": "^1.3.0",
  1733. "get-intrinsic": "^1.2.6",
  1734. "has-tostringtag": "^1.0.2",
  1735. "hasown": "^2.0.2"
  1736. },
  1737. "engines": {
  1738. "node": ">= 0.4"
  1739. }
  1740. },
  1741. "node_modules/esbuild": {
  1742. "version": "0.25.5",
  1743. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.5.tgz",
  1744. "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==",
  1745. "hasInstallScript": true,
  1746. "bin": {
  1747. "esbuild": "bin/esbuild"
  1748. },
  1749. "engines": {
  1750. "node": ">=18"
  1751. },
  1752. "optionalDependencies": {
  1753. "@esbuild/aix-ppc64": "0.25.5",
  1754. "@esbuild/android-arm": "0.25.5",
  1755. "@esbuild/android-arm64": "0.25.5",
  1756. "@esbuild/android-x64": "0.25.5",
  1757. "@esbuild/darwin-arm64": "0.25.5",
  1758. "@esbuild/darwin-x64": "0.25.5",
  1759. "@esbuild/freebsd-arm64": "0.25.5",
  1760. "@esbuild/freebsd-x64": "0.25.5",
  1761. "@esbuild/linux-arm": "0.25.5",
  1762. "@esbuild/linux-arm64": "0.25.5",
  1763. "@esbuild/linux-ia32": "0.25.5",
  1764. "@esbuild/linux-loong64": "0.25.5",
  1765. "@esbuild/linux-mips64el": "0.25.5",
  1766. "@esbuild/linux-ppc64": "0.25.5",
  1767. "@esbuild/linux-riscv64": "0.25.5",
  1768. "@esbuild/linux-s390x": "0.25.5",
  1769. "@esbuild/linux-x64": "0.25.5",
  1770. "@esbuild/netbsd-arm64": "0.25.5",
  1771. "@esbuild/netbsd-x64": "0.25.5",
  1772. "@esbuild/openbsd-arm64": "0.25.5",
  1773. "@esbuild/openbsd-x64": "0.25.5",
  1774. "@esbuild/sunos-x64": "0.25.5",
  1775. "@esbuild/win32-arm64": "0.25.5",
  1776. "@esbuild/win32-ia32": "0.25.5",
  1777. "@esbuild/win32-x64": "0.25.5"
  1778. }
  1779. },
  1780. "node_modules/escape-string-regexp": {
  1781. "version": "5.0.0",
  1782. "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
  1783. "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
  1784. "dev": true,
  1785. "engines": {
  1786. "node": ">=12"
  1787. },
  1788. "funding": {
  1789. "url": "https://github.com/sponsors/sindresorhus"
  1790. }
  1791. },
  1792. "node_modules/estree-walker": {
  1793. "version": "2.0.2",
  1794. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1795. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
  1796. },
  1797. "node_modules/exsolve": {
  1798. "version": "1.0.7",
  1799. "resolved": "https://registry.npmmirror.com/exsolve/-/exsolve-1.0.7.tgz",
  1800. "integrity": "sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==",
  1801. "dev": true
  1802. },
  1803. "node_modules/fdir": {
  1804. "version": "6.4.6",
  1805. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.4.6.tgz",
  1806. "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
  1807. "peerDependencies": {
  1808. "picomatch": "^3 || ^4"
  1809. },
  1810. "peerDependenciesMeta": {
  1811. "picomatch": {
  1812. "optional": true
  1813. }
  1814. }
  1815. },
  1816. "node_modules/fill-range": {
  1817. "version": "7.1.1",
  1818. "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
  1819. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1820. "devOptional": true,
  1821. "dependencies": {
  1822. "to-regex-range": "^5.0.1"
  1823. },
  1824. "engines": {
  1825. "node": ">=8"
  1826. }
  1827. },
  1828. "node_modules/follow-redirects": {
  1829. "version": "1.15.9",
  1830. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz",
  1831. "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
  1832. "funding": [
  1833. {
  1834. "type": "individual",
  1835. "url": "https://github.com/sponsors/RubenVerborgh"
  1836. }
  1837. ],
  1838. "engines": {
  1839. "node": ">=4.0"
  1840. },
  1841. "peerDependenciesMeta": {
  1842. "debug": {
  1843. "optional": true
  1844. }
  1845. }
  1846. },
  1847. "node_modules/form-data": {
  1848. "version": "4.0.3",
  1849. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.3.tgz",
  1850. "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==",
  1851. "dependencies": {
  1852. "asynckit": "^0.4.0",
  1853. "combined-stream": "^1.0.8",
  1854. "es-set-tostringtag": "^2.1.0",
  1855. "hasown": "^2.0.2",
  1856. "mime-types": "^2.1.12"
  1857. },
  1858. "engines": {
  1859. "node": ">= 6"
  1860. }
  1861. },
  1862. "node_modules/fsevents": {
  1863. "version": "2.3.3",
  1864. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1865. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1866. "hasInstallScript": true,
  1867. "optional": true,
  1868. "os": [
  1869. "darwin"
  1870. ],
  1871. "engines": {
  1872. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1873. }
  1874. },
  1875. "node_modules/function-bind": {
  1876. "version": "1.1.2",
  1877. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  1878. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1879. "funding": {
  1880. "url": "https://github.com/sponsors/ljharb"
  1881. }
  1882. },
  1883. "node_modules/get-intrinsic": {
  1884. "version": "1.3.0",
  1885. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1886. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1887. "dependencies": {
  1888. "call-bind-apply-helpers": "^1.0.2",
  1889. "es-define-property": "^1.0.1",
  1890. "es-errors": "^1.3.0",
  1891. "es-object-atoms": "^1.1.1",
  1892. "function-bind": "^1.1.2",
  1893. "get-proto": "^1.0.1",
  1894. "gopd": "^1.2.0",
  1895. "has-symbols": "^1.1.0",
  1896. "hasown": "^2.0.2",
  1897. "math-intrinsics": "^1.1.0"
  1898. },
  1899. "engines": {
  1900. "node": ">= 0.4"
  1901. },
  1902. "funding": {
  1903. "url": "https://github.com/sponsors/ljharb"
  1904. }
  1905. },
  1906. "node_modules/get-proto": {
  1907. "version": "1.0.1",
  1908. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  1909. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1910. "dependencies": {
  1911. "dunder-proto": "^1.0.1",
  1912. "es-object-atoms": "^1.0.0"
  1913. },
  1914. "engines": {
  1915. "node": ">= 0.4"
  1916. }
  1917. },
  1918. "node_modules/glob-parent": {
  1919. "version": "5.1.2",
  1920. "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz",
  1921. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  1922. "dev": true,
  1923. "dependencies": {
  1924. "is-glob": "^4.0.1"
  1925. },
  1926. "engines": {
  1927. "node": ">= 6"
  1928. }
  1929. },
  1930. "node_modules/gopd": {
  1931. "version": "1.2.0",
  1932. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  1933. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1934. "engines": {
  1935. "node": ">= 0.4"
  1936. },
  1937. "funding": {
  1938. "url": "https://github.com/sponsors/ljharb"
  1939. }
  1940. },
  1941. "node_modules/graceful-fs": {
  1942. "version": "4.2.11",
  1943. "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
  1944. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  1945. "license": "ISC"
  1946. },
  1947. "node_modules/has-symbols": {
  1948. "version": "1.1.0",
  1949. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  1950. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1951. "engines": {
  1952. "node": ">= 0.4"
  1953. },
  1954. "funding": {
  1955. "url": "https://github.com/sponsors/ljharb"
  1956. }
  1957. },
  1958. "node_modules/has-tostringtag": {
  1959. "version": "1.0.2",
  1960. "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1961. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1962. "dependencies": {
  1963. "has-symbols": "^1.0.3"
  1964. },
  1965. "engines": {
  1966. "node": ">= 0.4"
  1967. },
  1968. "funding": {
  1969. "url": "https://github.com/sponsors/ljharb"
  1970. }
  1971. },
  1972. "node_modules/hasown": {
  1973. "version": "2.0.2",
  1974. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
  1975. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1976. "dependencies": {
  1977. "function-bind": "^1.1.2"
  1978. },
  1979. "engines": {
  1980. "node": ">= 0.4"
  1981. }
  1982. },
  1983. "node_modules/hls.js": {
  1984. "version": "1.6.5",
  1985. "resolved": "https://registry.npmmirror.com/hls.js/-/hls.js-1.6.5.tgz",
  1986. "integrity": "sha512-KMn5n7JBK+olC342740hDPHnGWfE8FiHtGMOdJPfUjRdARTWj9OB+8c13fnsf9sk1VtpuU2fKSgUjHvg4rNbzQ==",
  1987. "license": "Apache-2.0"
  1988. },
  1989. "node_modules/immutable": {
  1990. "version": "5.1.3",
  1991. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.3.tgz",
  1992. "integrity": "sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==",
  1993. "devOptional": true
  1994. },
  1995. "node_modules/is-binary-path": {
  1996. "version": "2.1.0",
  1997. "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz",
  1998. "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
  1999. "dev": true,
  2000. "dependencies": {
  2001. "binary-extensions": "^2.0.0"
  2002. },
  2003. "engines": {
  2004. "node": ">=8"
  2005. }
  2006. },
  2007. "node_modules/is-extglob": {
  2008. "version": "2.1.1",
  2009. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  2010. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  2011. "devOptional": true,
  2012. "engines": {
  2013. "node": ">=0.10.0"
  2014. }
  2015. },
  2016. "node_modules/is-glob": {
  2017. "version": "4.0.3",
  2018. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  2019. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  2020. "devOptional": true,
  2021. "dependencies": {
  2022. "is-extglob": "^2.1.1"
  2023. },
  2024. "engines": {
  2025. "node": ">=0.10.0"
  2026. }
  2027. },
  2028. "node_modules/is-number": {
  2029. "version": "7.0.0",
  2030. "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz",
  2031. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  2032. "devOptional": true,
  2033. "engines": {
  2034. "node": ">=0.12.0"
  2035. }
  2036. },
  2037. "node_modules/jiti": {
  2038. "version": "2.4.2",
  2039. "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.4.2.tgz",
  2040. "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
  2041. "license": "MIT",
  2042. "bin": {
  2043. "jiti": "lib/jiti-cli.mjs"
  2044. }
  2045. },
  2046. "node_modules/js-tokens": {
  2047. "version": "9.0.1",
  2048. "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-9.0.1.tgz",
  2049. "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
  2050. "dev": true
  2051. },
  2052. "node_modules/kind-of": {
  2053. "version": "6.0.3",
  2054. "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz",
  2055. "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
  2056. "license": "MIT",
  2057. "engines": {
  2058. "node": ">=0.10.0"
  2059. }
  2060. },
  2061. "node_modules/lightningcss": {
  2062. "version": "1.30.1",
  2063. "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.30.1.tgz",
  2064. "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
  2065. "license": "MPL-2.0",
  2066. "dependencies": {
  2067. "detect-libc": "^2.0.3"
  2068. },
  2069. "engines": {
  2070. "node": ">= 12.0.0"
  2071. },
  2072. "funding": {
  2073. "type": "opencollective",
  2074. "url": "https://opencollective.com/parcel"
  2075. },
  2076. "optionalDependencies": {
  2077. "lightningcss-darwin-arm64": "1.30.1",
  2078. "lightningcss-darwin-x64": "1.30.1",
  2079. "lightningcss-freebsd-x64": "1.30.1",
  2080. "lightningcss-linux-arm-gnueabihf": "1.30.1",
  2081. "lightningcss-linux-arm64-gnu": "1.30.1",
  2082. "lightningcss-linux-arm64-musl": "1.30.1",
  2083. "lightningcss-linux-x64-gnu": "1.30.1",
  2084. "lightningcss-linux-x64-musl": "1.30.1",
  2085. "lightningcss-win32-arm64-msvc": "1.30.1",
  2086. "lightningcss-win32-x64-msvc": "1.30.1"
  2087. }
  2088. },
  2089. "node_modules/lightningcss-darwin-arm64": {
  2090. "version": "1.30.1",
  2091. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
  2092. "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
  2093. "cpu": [
  2094. "arm64"
  2095. ],
  2096. "license": "MPL-2.0",
  2097. "optional": true,
  2098. "os": [
  2099. "darwin"
  2100. ],
  2101. "engines": {
  2102. "node": ">= 12.0.0"
  2103. },
  2104. "funding": {
  2105. "type": "opencollective",
  2106. "url": "https://opencollective.com/parcel"
  2107. }
  2108. },
  2109. "node_modules/lightningcss-darwin-x64": {
  2110. "version": "1.30.1",
  2111. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
  2112. "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
  2113. "cpu": [
  2114. "x64"
  2115. ],
  2116. "license": "MPL-2.0",
  2117. "optional": true,
  2118. "os": [
  2119. "darwin"
  2120. ],
  2121. "engines": {
  2122. "node": ">= 12.0.0"
  2123. },
  2124. "funding": {
  2125. "type": "opencollective",
  2126. "url": "https://opencollective.com/parcel"
  2127. }
  2128. },
  2129. "node_modules/lightningcss-freebsd-x64": {
  2130. "version": "1.30.1",
  2131. "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
  2132. "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
  2133. "cpu": [
  2134. "x64"
  2135. ],
  2136. "license": "MPL-2.0",
  2137. "optional": true,
  2138. "os": [
  2139. "freebsd"
  2140. ],
  2141. "engines": {
  2142. "node": ">= 12.0.0"
  2143. },
  2144. "funding": {
  2145. "type": "opencollective",
  2146. "url": "https://opencollective.com/parcel"
  2147. }
  2148. },
  2149. "node_modules/lightningcss-linux-arm-gnueabihf": {
  2150. "version": "1.30.1",
  2151. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
  2152. "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
  2153. "cpu": [
  2154. "arm"
  2155. ],
  2156. "license": "MPL-2.0",
  2157. "optional": true,
  2158. "os": [
  2159. "linux"
  2160. ],
  2161. "engines": {
  2162. "node": ">= 12.0.0"
  2163. },
  2164. "funding": {
  2165. "type": "opencollective",
  2166. "url": "https://opencollective.com/parcel"
  2167. }
  2168. },
  2169. "node_modules/lightningcss-linux-arm64-gnu": {
  2170. "version": "1.30.1",
  2171. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
  2172. "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
  2173. "cpu": [
  2174. "arm64"
  2175. ],
  2176. "license": "MPL-2.0",
  2177. "optional": true,
  2178. "os": [
  2179. "linux"
  2180. ],
  2181. "engines": {
  2182. "node": ">= 12.0.0"
  2183. },
  2184. "funding": {
  2185. "type": "opencollective",
  2186. "url": "https://opencollective.com/parcel"
  2187. }
  2188. },
  2189. "node_modules/lightningcss-linux-arm64-musl": {
  2190. "version": "1.30.1",
  2191. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
  2192. "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
  2193. "cpu": [
  2194. "arm64"
  2195. ],
  2196. "license": "MPL-2.0",
  2197. "optional": true,
  2198. "os": [
  2199. "linux"
  2200. ],
  2201. "engines": {
  2202. "node": ">= 12.0.0"
  2203. },
  2204. "funding": {
  2205. "type": "opencollective",
  2206. "url": "https://opencollective.com/parcel"
  2207. }
  2208. },
  2209. "node_modules/lightningcss-linux-x64-gnu": {
  2210. "version": "1.30.1",
  2211. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
  2212. "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
  2213. "cpu": [
  2214. "x64"
  2215. ],
  2216. "license": "MPL-2.0",
  2217. "optional": true,
  2218. "os": [
  2219. "linux"
  2220. ],
  2221. "engines": {
  2222. "node": ">= 12.0.0"
  2223. },
  2224. "funding": {
  2225. "type": "opencollective",
  2226. "url": "https://opencollective.com/parcel"
  2227. }
  2228. },
  2229. "node_modules/lightningcss-linux-x64-musl": {
  2230. "version": "1.30.1",
  2231. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
  2232. "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
  2233. "cpu": [
  2234. "x64"
  2235. ],
  2236. "license": "MPL-2.0",
  2237. "optional": true,
  2238. "os": [
  2239. "linux"
  2240. ],
  2241. "engines": {
  2242. "node": ">= 12.0.0"
  2243. },
  2244. "funding": {
  2245. "type": "opencollective",
  2246. "url": "https://opencollective.com/parcel"
  2247. }
  2248. },
  2249. "node_modules/lightningcss-win32-arm64-msvc": {
  2250. "version": "1.30.1",
  2251. "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
  2252. "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
  2253. "cpu": [
  2254. "arm64"
  2255. ],
  2256. "license": "MPL-2.0",
  2257. "optional": true,
  2258. "os": [
  2259. "win32"
  2260. ],
  2261. "engines": {
  2262. "node": ">= 12.0.0"
  2263. },
  2264. "funding": {
  2265. "type": "opencollective",
  2266. "url": "https://opencollective.com/parcel"
  2267. }
  2268. },
  2269. "node_modules/lightningcss-win32-x64-msvc": {
  2270. "version": "1.30.1",
  2271. "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
  2272. "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
  2273. "cpu": [
  2274. "x64"
  2275. ],
  2276. "license": "MPL-2.0",
  2277. "optional": true,
  2278. "os": [
  2279. "win32"
  2280. ],
  2281. "engines": {
  2282. "node": ">= 12.0.0"
  2283. },
  2284. "funding": {
  2285. "type": "opencollective",
  2286. "url": "https://opencollective.com/parcel"
  2287. }
  2288. },
  2289. "node_modules/lightningcss/node_modules/detect-libc": {
  2290. "version": "2.0.4",
  2291. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.0.4.tgz",
  2292. "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
  2293. "license": "Apache-2.0",
  2294. "engines": {
  2295. "node": ">=8"
  2296. }
  2297. },
  2298. "node_modules/local-pkg": {
  2299. "version": "1.1.1",
  2300. "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-1.1.1.tgz",
  2301. "integrity": "sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==",
  2302. "dev": true,
  2303. "dependencies": {
  2304. "mlly": "^1.7.4",
  2305. "pkg-types": "^2.0.1",
  2306. "quansync": "^0.2.8"
  2307. },
  2308. "engines": {
  2309. "node": ">=14"
  2310. },
  2311. "funding": {
  2312. "url": "https://github.com/sponsors/antfu"
  2313. }
  2314. },
  2315. "node_modules/magic-string": {
  2316. "version": "0.30.17",
  2317. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz",
  2318. "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
  2319. "dependencies": {
  2320. "@jridgewell/sourcemap-codec": "^1.5.0"
  2321. }
  2322. },
  2323. "node_modules/math-intrinsics": {
  2324. "version": "1.1.0",
  2325. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2326. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2327. "engines": {
  2328. "node": ">= 0.4"
  2329. }
  2330. },
  2331. "node_modules/micromatch": {
  2332. "version": "4.0.8",
  2333. "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz",
  2334. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  2335. "optional": true,
  2336. "dependencies": {
  2337. "braces": "^3.0.3",
  2338. "picomatch": "^2.3.1"
  2339. },
  2340. "engines": {
  2341. "node": ">=8.6"
  2342. }
  2343. },
  2344. "node_modules/micromatch/node_modules/picomatch": {
  2345. "version": "2.3.1",
  2346. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
  2347. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2348. "optional": true,
  2349. "engines": {
  2350. "node": ">=8.6"
  2351. },
  2352. "funding": {
  2353. "url": "https://github.com/sponsors/jonschlinkert"
  2354. }
  2355. },
  2356. "node_modules/mime-db": {
  2357. "version": "1.52.0",
  2358. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  2359. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2360. "engines": {
  2361. "node": ">= 0.6"
  2362. }
  2363. },
  2364. "node_modules/mime-types": {
  2365. "version": "2.1.35",
  2366. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  2367. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2368. "dependencies": {
  2369. "mime-db": "1.52.0"
  2370. },
  2371. "engines": {
  2372. "node": ">= 0.6"
  2373. }
  2374. },
  2375. "node_modules/minipass": {
  2376. "version": "7.1.2",
  2377. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-7.1.2.tgz",
  2378. "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
  2379. "license": "ISC",
  2380. "engines": {
  2381. "node": ">=16 || 14 >=14.17"
  2382. }
  2383. },
  2384. "node_modules/minizlib": {
  2385. "version": "3.0.2",
  2386. "resolved": "https://registry.npmmirror.com/minizlib/-/minizlib-3.0.2.tgz",
  2387. "integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==",
  2388. "license": "MIT",
  2389. "dependencies": {
  2390. "minipass": "^7.1.2"
  2391. },
  2392. "engines": {
  2393. "node": ">= 18"
  2394. }
  2395. },
  2396. "node_modules/mkdirp": {
  2397. "version": "3.0.1",
  2398. "resolved": "https://registry.npmmirror.com/mkdirp/-/mkdirp-3.0.1.tgz",
  2399. "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
  2400. "license": "MIT",
  2401. "bin": {
  2402. "mkdirp": "dist/cjs/src/bin.js"
  2403. },
  2404. "engines": {
  2405. "node": ">=10"
  2406. },
  2407. "funding": {
  2408. "url": "https://github.com/sponsors/isaacs"
  2409. }
  2410. },
  2411. "node_modules/mlly": {
  2412. "version": "1.7.4",
  2413. "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.7.4.tgz",
  2414. "integrity": "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==",
  2415. "dev": true,
  2416. "dependencies": {
  2417. "acorn": "^8.14.0",
  2418. "pathe": "^2.0.1",
  2419. "pkg-types": "^1.3.0",
  2420. "ufo": "^1.5.4"
  2421. }
  2422. },
  2423. "node_modules/mlly/node_modules/confbox": {
  2424. "version": "0.1.8",
  2425. "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz",
  2426. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  2427. "dev": true
  2428. },
  2429. "node_modules/mlly/node_modules/pkg-types": {
  2430. "version": "1.3.1",
  2431. "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz",
  2432. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  2433. "dev": true,
  2434. "dependencies": {
  2435. "confbox": "^0.1.8",
  2436. "mlly": "^1.7.4",
  2437. "pathe": "^2.0.1"
  2438. }
  2439. },
  2440. "node_modules/ms": {
  2441. "version": "2.1.3",
  2442. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  2443. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2444. "dev": true
  2445. },
  2446. "node_modules/nanoid": {
  2447. "version": "3.3.11",
  2448. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
  2449. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2450. "funding": [
  2451. {
  2452. "type": "github",
  2453. "url": "https://github.com/sponsors/ai"
  2454. }
  2455. ],
  2456. "bin": {
  2457. "nanoid": "bin/nanoid.cjs"
  2458. },
  2459. "engines": {
  2460. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2461. }
  2462. },
  2463. "node_modules/neo-async": {
  2464. "version": "2.6.2",
  2465. "resolved": "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz",
  2466. "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
  2467. "dev": true
  2468. },
  2469. "node_modules/node-addon-api": {
  2470. "version": "7.1.1",
  2471. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2472. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2473. "optional": true
  2474. },
  2475. "node_modules/normalize-path": {
  2476. "version": "3.0.0",
  2477. "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
  2478. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  2479. "dev": true,
  2480. "engines": {
  2481. "node": ">=0.10.0"
  2482. }
  2483. },
  2484. "node_modules/normalize.css": {
  2485. "version": "8.0.1",
  2486. "resolved": "https://registry.npmmirror.com/normalize.css/-/normalize.css-8.0.1.tgz",
  2487. "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
  2488. },
  2489. "node_modules/nprogress": {
  2490. "version": "0.2.0",
  2491. "resolved": "https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz",
  2492. "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA=="
  2493. },
  2494. "node_modules/object-assign": {
  2495. "version": "4.1.1",
  2496. "resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz",
  2497. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  2498. "dev": true,
  2499. "engines": {
  2500. "node": ">=0.10.0"
  2501. }
  2502. },
  2503. "node_modules/object-inspect": {
  2504. "version": "1.13.4",
  2505. "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz",
  2506. "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
  2507. "engines": {
  2508. "node": ">= 0.4"
  2509. },
  2510. "funding": {
  2511. "url": "https://github.com/sponsors/ljharb"
  2512. }
  2513. },
  2514. "node_modules/option-validator": {
  2515. "version": "2.0.6",
  2516. "resolved": "https://registry.npmmirror.com/option-validator/-/option-validator-2.0.6.tgz",
  2517. "integrity": "sha512-tmZDan2LRIRQyhUGvkff68/O0R8UmF+Btmiiz0SmSw2ng3CfPZB9wJlIjHpe/MKUZqyIZkVIXCrwr1tIN+0Dzg==",
  2518. "license": "MIT",
  2519. "dependencies": {
  2520. "kind-of": "^6.0.3"
  2521. }
  2522. },
  2523. "node_modules/pathe": {
  2524. "version": "2.0.3",
  2525. "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz",
  2526. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  2527. "dev": true
  2528. },
  2529. "node_modules/picocolors": {
  2530. "version": "1.1.1",
  2531. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  2532. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
  2533. },
  2534. "node_modules/picomatch": {
  2535. "version": "4.0.2",
  2536. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  2537. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  2538. "engines": {
  2539. "node": ">=12"
  2540. },
  2541. "funding": {
  2542. "url": "https://github.com/sponsors/jonschlinkert"
  2543. }
  2544. },
  2545. "node_modules/pkg-types": {
  2546. "version": "2.1.0",
  2547. "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-2.1.0.tgz",
  2548. "integrity": "sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==",
  2549. "dev": true,
  2550. "dependencies": {
  2551. "confbox": "^0.2.1",
  2552. "exsolve": "^1.0.1",
  2553. "pathe": "^2.0.3"
  2554. }
  2555. },
  2556. "node_modules/postcss": {
  2557. "version": "8.5.6",
  2558. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz",
  2559. "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
  2560. "funding": [
  2561. {
  2562. "type": "opencollective",
  2563. "url": "https://opencollective.com/postcss/"
  2564. },
  2565. {
  2566. "type": "tidelift",
  2567. "url": "https://tidelift.com/funding/github/npm/postcss"
  2568. },
  2569. {
  2570. "type": "github",
  2571. "url": "https://github.com/sponsors/ai"
  2572. }
  2573. ],
  2574. "dependencies": {
  2575. "nanoid": "^3.3.11",
  2576. "picocolors": "^1.1.1",
  2577. "source-map-js": "^1.2.1"
  2578. },
  2579. "engines": {
  2580. "node": "^10 || ^12 || >=14"
  2581. }
  2582. },
  2583. "node_modules/postcss-px-to-viewport": {
  2584. "version": "1.1.1",
  2585. "resolved": "https://registry.npmmirror.com/postcss-px-to-viewport/-/postcss-px-to-viewport-1.1.1.tgz",
  2586. "integrity": "sha512-2x9oGnBms+e0cYtBJOZdlwrFg/mLR4P1g2IFu7jYKvnqnH/HLhoKyareW2Q/x4sg0BgklHlP1qeWo2oCyPm8FQ==",
  2587. "dev": true,
  2588. "dependencies": {
  2589. "object-assign": ">=4.0.1",
  2590. "postcss": ">=5.0.2"
  2591. }
  2592. },
  2593. "node_modules/proxy-from-env": {
  2594. "version": "1.1.0",
  2595. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  2596. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
  2597. },
  2598. "node_modules/qs": {
  2599. "version": "6.14.0",
  2600. "resolved": "https://registry.npmmirror.com/qs/-/qs-6.14.0.tgz",
  2601. "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
  2602. "dependencies": {
  2603. "side-channel": "^1.1.0"
  2604. },
  2605. "engines": {
  2606. "node": ">=0.6"
  2607. },
  2608. "funding": {
  2609. "url": "https://github.com/sponsors/ljharb"
  2610. }
  2611. },
  2612. "node_modules/quansync": {
  2613. "version": "0.2.10",
  2614. "resolved": "https://registry.npmmirror.com/quansync/-/quansync-0.2.10.tgz",
  2615. "integrity": "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==",
  2616. "dev": true,
  2617. "funding": [
  2618. {
  2619. "type": "individual",
  2620. "url": "https://github.com/sponsors/antfu"
  2621. },
  2622. {
  2623. "type": "individual",
  2624. "url": "https://github.com/sponsors/sxzz"
  2625. }
  2626. ]
  2627. },
  2628. "node_modules/readdirp": {
  2629. "version": "3.6.0",
  2630. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
  2631. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  2632. "dev": true,
  2633. "dependencies": {
  2634. "picomatch": "^2.2.1"
  2635. },
  2636. "engines": {
  2637. "node": ">=8.10.0"
  2638. }
  2639. },
  2640. "node_modules/readdirp/node_modules/picomatch": {
  2641. "version": "2.3.1",
  2642. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
  2643. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2644. "dev": true,
  2645. "engines": {
  2646. "node": ">=8.6"
  2647. },
  2648. "funding": {
  2649. "url": "https://github.com/sponsors/jonschlinkert"
  2650. }
  2651. },
  2652. "node_modules/rollup": {
  2653. "version": "4.44.0",
  2654. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.44.0.tgz",
  2655. "integrity": "sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==",
  2656. "dependencies": {
  2657. "@types/estree": "1.0.8"
  2658. },
  2659. "bin": {
  2660. "rollup": "dist/bin/rollup"
  2661. },
  2662. "engines": {
  2663. "node": ">=18.0.0",
  2664. "npm": ">=8.0.0"
  2665. },
  2666. "optionalDependencies": {
  2667. "@rollup/rollup-android-arm-eabi": "4.44.0",
  2668. "@rollup/rollup-android-arm64": "4.44.0",
  2669. "@rollup/rollup-darwin-arm64": "4.44.0",
  2670. "@rollup/rollup-darwin-x64": "4.44.0",
  2671. "@rollup/rollup-freebsd-arm64": "4.44.0",
  2672. "@rollup/rollup-freebsd-x64": "4.44.0",
  2673. "@rollup/rollup-linux-arm-gnueabihf": "4.44.0",
  2674. "@rollup/rollup-linux-arm-musleabihf": "4.44.0",
  2675. "@rollup/rollup-linux-arm64-gnu": "4.44.0",
  2676. "@rollup/rollup-linux-arm64-musl": "4.44.0",
  2677. "@rollup/rollup-linux-loongarch64-gnu": "4.44.0",
  2678. "@rollup/rollup-linux-powerpc64le-gnu": "4.44.0",
  2679. "@rollup/rollup-linux-riscv64-gnu": "4.44.0",
  2680. "@rollup/rollup-linux-riscv64-musl": "4.44.0",
  2681. "@rollup/rollup-linux-s390x-gnu": "4.44.0",
  2682. "@rollup/rollup-linux-x64-gnu": "4.44.0",
  2683. "@rollup/rollup-linux-x64-musl": "4.44.0",
  2684. "@rollup/rollup-win32-arm64-msvc": "4.44.0",
  2685. "@rollup/rollup-win32-ia32-msvc": "4.44.0",
  2686. "@rollup/rollup-win32-x64-msvc": "4.44.0",
  2687. "fsevents": "~2.3.2"
  2688. }
  2689. },
  2690. "node_modules/sass": {
  2691. "version": "1.89.2",
  2692. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.89.2.tgz",
  2693. "integrity": "sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==",
  2694. "devOptional": true,
  2695. "dependencies": {
  2696. "chokidar": "^4.0.0",
  2697. "immutable": "^5.0.2",
  2698. "source-map-js": ">=0.6.2 <2.0.0"
  2699. },
  2700. "bin": {
  2701. "sass": "sass.js"
  2702. },
  2703. "engines": {
  2704. "node": ">=14.0.0"
  2705. },
  2706. "optionalDependencies": {
  2707. "@parcel/watcher": "^2.4.1"
  2708. }
  2709. },
  2710. "node_modules/sass-loader": {
  2711. "version": "16.0.5",
  2712. "resolved": "https://registry.npmmirror.com/sass-loader/-/sass-loader-16.0.5.tgz",
  2713. "integrity": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==",
  2714. "dev": true,
  2715. "dependencies": {
  2716. "neo-async": "^2.6.2"
  2717. },
  2718. "engines": {
  2719. "node": ">= 18.12.0"
  2720. },
  2721. "funding": {
  2722. "type": "opencollective",
  2723. "url": "https://opencollective.com/webpack"
  2724. },
  2725. "peerDependencies": {
  2726. "@rspack/core": "0.x || 1.x",
  2727. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
  2728. "sass": "^1.3.0",
  2729. "sass-embedded": "*",
  2730. "webpack": "^5.0.0"
  2731. },
  2732. "peerDependenciesMeta": {
  2733. "@rspack/core": {
  2734. "optional": true
  2735. },
  2736. "node-sass": {
  2737. "optional": true
  2738. },
  2739. "sass": {
  2740. "optional": true
  2741. },
  2742. "sass-embedded": {
  2743. "optional": true
  2744. },
  2745. "webpack": {
  2746. "optional": true
  2747. }
  2748. }
  2749. },
  2750. "node_modules/sass/node_modules/chokidar": {
  2751. "version": "4.0.3",
  2752. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
  2753. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  2754. "devOptional": true,
  2755. "dependencies": {
  2756. "readdirp": "^4.0.1"
  2757. },
  2758. "engines": {
  2759. "node": ">= 14.16.0"
  2760. },
  2761. "funding": {
  2762. "url": "https://paulmillr.com/funding/"
  2763. }
  2764. },
  2765. "node_modules/sass/node_modules/readdirp": {
  2766. "version": "4.1.2",
  2767. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz",
  2768. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  2769. "devOptional": true,
  2770. "engines": {
  2771. "node": ">= 14.18.0"
  2772. },
  2773. "funding": {
  2774. "type": "individual",
  2775. "url": "https://paulmillr.com/funding/"
  2776. }
  2777. },
  2778. "node_modules/scule": {
  2779. "version": "1.3.0",
  2780. "resolved": "https://registry.npmmirror.com/scule/-/scule-1.3.0.tgz",
  2781. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  2782. "dev": true
  2783. },
  2784. "node_modules/side-channel": {
  2785. "version": "1.1.0",
  2786. "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz",
  2787. "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
  2788. "dependencies": {
  2789. "es-errors": "^1.3.0",
  2790. "object-inspect": "^1.13.3",
  2791. "side-channel-list": "^1.0.0",
  2792. "side-channel-map": "^1.0.1",
  2793. "side-channel-weakmap": "^1.0.2"
  2794. },
  2795. "engines": {
  2796. "node": ">= 0.4"
  2797. },
  2798. "funding": {
  2799. "url": "https://github.com/sponsors/ljharb"
  2800. }
  2801. },
  2802. "node_modules/side-channel-list": {
  2803. "version": "1.0.0",
  2804. "resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz",
  2805. "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
  2806. "dependencies": {
  2807. "es-errors": "^1.3.0",
  2808. "object-inspect": "^1.13.3"
  2809. },
  2810. "engines": {
  2811. "node": ">= 0.4"
  2812. },
  2813. "funding": {
  2814. "url": "https://github.com/sponsors/ljharb"
  2815. }
  2816. },
  2817. "node_modules/side-channel-map": {
  2818. "version": "1.0.1",
  2819. "resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz",
  2820. "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
  2821. "dependencies": {
  2822. "call-bound": "^1.0.2",
  2823. "es-errors": "^1.3.0",
  2824. "get-intrinsic": "^1.2.5",
  2825. "object-inspect": "^1.13.3"
  2826. },
  2827. "engines": {
  2828. "node": ">= 0.4"
  2829. },
  2830. "funding": {
  2831. "url": "https://github.com/sponsors/ljharb"
  2832. }
  2833. },
  2834. "node_modules/side-channel-weakmap": {
  2835. "version": "1.0.2",
  2836. "resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
  2837. "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
  2838. "dependencies": {
  2839. "call-bound": "^1.0.2",
  2840. "es-errors": "^1.3.0",
  2841. "get-intrinsic": "^1.2.5",
  2842. "object-inspect": "^1.13.3",
  2843. "side-channel-map": "^1.0.1"
  2844. },
  2845. "engines": {
  2846. "node": ">= 0.4"
  2847. },
  2848. "funding": {
  2849. "url": "https://github.com/sponsors/ljharb"
  2850. }
  2851. },
  2852. "node_modules/source-map-js": {
  2853. "version": "1.2.1",
  2854. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  2855. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2856. "engines": {
  2857. "node": ">=0.10.0"
  2858. }
  2859. },
  2860. "node_modules/strip-literal": {
  2861. "version": "3.0.0",
  2862. "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-3.0.0.tgz",
  2863. "integrity": "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==",
  2864. "dev": true,
  2865. "dependencies": {
  2866. "js-tokens": "^9.0.1"
  2867. },
  2868. "funding": {
  2869. "url": "https://github.com/sponsors/antfu"
  2870. }
  2871. },
  2872. "node_modules/tailwindcss": {
  2873. "version": "4.1.10",
  2874. "resolved": "https://registry.npmmirror.com/tailwindcss/-/tailwindcss-4.1.10.tgz",
  2875. "integrity": "sha512-P3nr6WkvKV/ONsTzj6Gb57sWPMX29EPNPopo7+FcpkQaNsrNpZ1pv8QmrYI2RqEKD7mlGqLnGovlcYnBK0IqUA==",
  2876. "license": "MIT"
  2877. },
  2878. "node_modules/tapable": {
  2879. "version": "2.2.2",
  2880. "resolved": "https://registry.npmmirror.com/tapable/-/tapable-2.2.2.tgz",
  2881. "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==",
  2882. "license": "MIT",
  2883. "engines": {
  2884. "node": ">=6"
  2885. }
  2886. },
  2887. "node_modules/tar": {
  2888. "version": "7.4.3",
  2889. "resolved": "https://registry.npmmirror.com/tar/-/tar-7.4.3.tgz",
  2890. "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
  2891. "license": "ISC",
  2892. "dependencies": {
  2893. "@isaacs/fs-minipass": "^4.0.0",
  2894. "chownr": "^3.0.0",
  2895. "minipass": "^7.1.2",
  2896. "minizlib": "^3.0.1",
  2897. "mkdirp": "^3.0.1",
  2898. "yallist": "^5.0.0"
  2899. },
  2900. "engines": {
  2901. "node": ">=18"
  2902. }
  2903. },
  2904. "node_modules/tinyglobby": {
  2905. "version": "0.2.14",
  2906. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.14.tgz",
  2907. "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
  2908. "dependencies": {
  2909. "fdir": "^6.4.4",
  2910. "picomatch": "^4.0.2"
  2911. },
  2912. "engines": {
  2913. "node": ">=12.0.0"
  2914. },
  2915. "funding": {
  2916. "url": "https://github.com/sponsors/SuperchupuDev"
  2917. }
  2918. },
  2919. "node_modules/to-regex-range": {
  2920. "version": "5.0.1",
  2921. "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz",
  2922. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  2923. "devOptional": true,
  2924. "dependencies": {
  2925. "is-number": "^7.0.0"
  2926. },
  2927. "engines": {
  2928. "node": ">=8.0"
  2929. }
  2930. },
  2931. "node_modules/ufo": {
  2932. "version": "1.6.1",
  2933. "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.6.1.tgz",
  2934. "integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==",
  2935. "dev": true
  2936. },
  2937. "node_modules/undici-types": {
  2938. "version": "7.8.0",
  2939. "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.8.0.tgz",
  2940. "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==",
  2941. "devOptional": true
  2942. },
  2943. "node_modules/unimport": {
  2944. "version": "4.2.0",
  2945. "resolved": "https://registry.npmmirror.com/unimport/-/unimport-4.2.0.tgz",
  2946. "integrity": "sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==",
  2947. "dev": true,
  2948. "dependencies": {
  2949. "acorn": "^8.14.1",
  2950. "escape-string-regexp": "^5.0.0",
  2951. "estree-walker": "^3.0.3",
  2952. "local-pkg": "^1.1.1",
  2953. "magic-string": "^0.30.17",
  2954. "mlly": "^1.7.4",
  2955. "pathe": "^2.0.3",
  2956. "picomatch": "^4.0.2",
  2957. "pkg-types": "^2.1.0",
  2958. "scule": "^1.3.0",
  2959. "strip-literal": "^3.0.0",
  2960. "tinyglobby": "^0.2.12",
  2961. "unplugin": "^2.2.2",
  2962. "unplugin-utils": "^0.2.4"
  2963. },
  2964. "engines": {
  2965. "node": ">=18.12.0"
  2966. }
  2967. },
  2968. "node_modules/unimport/node_modules/estree-walker": {
  2969. "version": "3.0.3",
  2970. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz",
  2971. "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
  2972. "dev": true,
  2973. "dependencies": {
  2974. "@types/estree": "^1.0.0"
  2975. }
  2976. },
  2977. "node_modules/unplugin": {
  2978. "version": "2.3.5",
  2979. "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-2.3.5.tgz",
  2980. "integrity": "sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw==",
  2981. "dev": true,
  2982. "dependencies": {
  2983. "acorn": "^8.14.1",
  2984. "picomatch": "^4.0.2",
  2985. "webpack-virtual-modules": "^0.6.2"
  2986. },
  2987. "engines": {
  2988. "node": ">=18.12.0"
  2989. }
  2990. },
  2991. "node_modules/unplugin-auto-import": {
  2992. "version": "19.3.0",
  2993. "resolved": "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-19.3.0.tgz",
  2994. "integrity": "sha512-iIi0u4Gq2uGkAOGqlPJOAMI8vocvjh1clGTfSK4SOrJKrt+tirrixo/FjgBwXQNNdS7ofcr7OxzmOb/RjWxeEQ==",
  2995. "dev": true,
  2996. "dependencies": {
  2997. "local-pkg": "^1.1.1",
  2998. "magic-string": "^0.30.17",
  2999. "picomatch": "^4.0.2",
  3000. "unimport": "^4.2.0",
  3001. "unplugin": "^2.3.4",
  3002. "unplugin-utils": "^0.2.4"
  3003. },
  3004. "engines": {
  3005. "node": ">=14"
  3006. },
  3007. "funding": {
  3008. "url": "https://github.com/sponsors/antfu"
  3009. },
  3010. "peerDependencies": {
  3011. "@nuxt/kit": "^3.2.2",
  3012. "@vueuse/core": "*"
  3013. },
  3014. "peerDependenciesMeta": {
  3015. "@nuxt/kit": {
  3016. "optional": true
  3017. },
  3018. "@vueuse/core": {
  3019. "optional": true
  3020. }
  3021. }
  3022. },
  3023. "node_modules/unplugin-utils": {
  3024. "version": "0.2.4",
  3025. "resolved": "https://registry.npmmirror.com/unplugin-utils/-/unplugin-utils-0.2.4.tgz",
  3026. "integrity": "sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==",
  3027. "dev": true,
  3028. "dependencies": {
  3029. "pathe": "^2.0.2",
  3030. "picomatch": "^4.0.2"
  3031. },
  3032. "engines": {
  3033. "node": ">=18.12.0"
  3034. },
  3035. "funding": {
  3036. "url": "https://github.com/sponsors/sxzz"
  3037. }
  3038. },
  3039. "node_modules/unplugin-vue-components": {
  3040. "version": "28.7.0",
  3041. "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.7.0.tgz",
  3042. "integrity": "sha512-3SuWAHlTjOiZckqRBGXRdN/k6IMmKyt2Ch5/+DKwYaT321H0ItdZDvW4r8/YkEKQpN9TN3F/SZ0W342gQROC3Q==",
  3043. "dev": true,
  3044. "dependencies": {
  3045. "chokidar": "^3.6.0",
  3046. "debug": "^4.4.1",
  3047. "local-pkg": "^1.1.1",
  3048. "magic-string": "^0.30.17",
  3049. "mlly": "^1.7.4",
  3050. "tinyglobby": "^0.2.14",
  3051. "unplugin": "^2.3.4",
  3052. "unplugin-utils": "^0.2.4"
  3053. },
  3054. "engines": {
  3055. "node": ">=14"
  3056. },
  3057. "funding": {
  3058. "url": "https://github.com/sponsors/antfu"
  3059. },
  3060. "peerDependencies": {
  3061. "@babel/parser": "^7.15.8",
  3062. "@nuxt/kit": "^3.2.2",
  3063. "vue": "2 || 3"
  3064. },
  3065. "peerDependenciesMeta": {
  3066. "@babel/parser": {
  3067. "optional": true
  3068. },
  3069. "@nuxt/kit": {
  3070. "optional": true
  3071. }
  3072. }
  3073. },
  3074. "node_modules/vant": {
  3075. "version": "4.9.20",
  3076. "resolved": "https://registry.npmmirror.com/vant/-/vant-4.9.20.tgz",
  3077. "integrity": "sha512-QOv8i6/qBXSYO1DsjaxM+U7Hlgc+pIaChF21t/N4zW4pR4DmVNbEri9vchlzWFMz3R7wnCDfV9usOeXCyjHgPQ==",
  3078. "dependencies": {
  3079. "@vant/popperjs": "^1.3.0",
  3080. "@vant/use": "^1.6.0",
  3081. "@vue/shared": "^3.5.16"
  3082. },
  3083. "peerDependencies": {
  3084. "vue": "^3.0.0"
  3085. }
  3086. },
  3087. "node_modules/vite": {
  3088. "version": "6.3.5",
  3089. "resolved": "https://registry.npmmirror.com/vite/-/vite-6.3.5.tgz",
  3090. "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
  3091. "dependencies": {
  3092. "esbuild": "^0.25.0",
  3093. "fdir": "^6.4.4",
  3094. "picomatch": "^4.0.2",
  3095. "postcss": "^8.5.3",
  3096. "rollup": "^4.34.9",
  3097. "tinyglobby": "^0.2.13"
  3098. },
  3099. "bin": {
  3100. "vite": "bin/vite.js"
  3101. },
  3102. "engines": {
  3103. "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  3104. },
  3105. "funding": {
  3106. "url": "https://github.com/vitejs/vite?sponsor=1"
  3107. },
  3108. "optionalDependencies": {
  3109. "fsevents": "~2.3.3"
  3110. },
  3111. "peerDependencies": {
  3112. "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
  3113. "jiti": ">=1.21.0",
  3114. "less": "*",
  3115. "lightningcss": "^1.21.0",
  3116. "sass": "*",
  3117. "sass-embedded": "*",
  3118. "stylus": "*",
  3119. "sugarss": "*",
  3120. "terser": "^5.16.0",
  3121. "tsx": "^4.8.1",
  3122. "yaml": "^2.4.2"
  3123. },
  3124. "peerDependenciesMeta": {
  3125. "@types/node": {
  3126. "optional": true
  3127. },
  3128. "jiti": {
  3129. "optional": true
  3130. },
  3131. "less": {
  3132. "optional": true
  3133. },
  3134. "lightningcss": {
  3135. "optional": true
  3136. },
  3137. "sass": {
  3138. "optional": true
  3139. },
  3140. "sass-embedded": {
  3141. "optional": true
  3142. },
  3143. "stylus": {
  3144. "optional": true
  3145. },
  3146. "sugarss": {
  3147. "optional": true
  3148. },
  3149. "terser": {
  3150. "optional": true
  3151. },
  3152. "tsx": {
  3153. "optional": true
  3154. },
  3155. "yaml": {
  3156. "optional": true
  3157. }
  3158. }
  3159. },
  3160. "node_modules/vue": {
  3161. "version": "3.5.17",
  3162. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.17.tgz",
  3163. "integrity": "sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==",
  3164. "dependencies": {
  3165. "@vue/compiler-dom": "3.5.17",
  3166. "@vue/compiler-sfc": "3.5.17",
  3167. "@vue/runtime-dom": "3.5.17",
  3168. "@vue/server-renderer": "3.5.17",
  3169. "@vue/shared": "3.5.17"
  3170. },
  3171. "peerDependencies": {
  3172. "typescript": "*"
  3173. },
  3174. "peerDependenciesMeta": {
  3175. "typescript": {
  3176. "optional": true
  3177. }
  3178. }
  3179. },
  3180. "node_modules/vue-router": {
  3181. "version": "4.5.1",
  3182. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.1.tgz",
  3183. "integrity": "sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==",
  3184. "dependencies": {
  3185. "@vue/devtools-api": "^6.6.4"
  3186. },
  3187. "funding": {
  3188. "url": "https://github.com/sponsors/posva"
  3189. },
  3190. "peerDependencies": {
  3191. "vue": "^3.2.0"
  3192. }
  3193. },
  3194. "node_modules/webpack-virtual-modules": {
  3195. "version": "0.6.2",
  3196. "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  3197. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  3198. "dev": true
  3199. },
  3200. "node_modules/yallist": {
  3201. "version": "5.0.0",
  3202. "resolved": "https://registry.npmmirror.com/yallist/-/yallist-5.0.0.tgz",
  3203. "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
  3204. "license": "BlueOak-1.0.0",
  3205. "engines": {
  3206. "node": ">=18"
  3207. }
  3208. }
  3209. }
  3210. }