package-lock.json 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168
  1. {
  2. "name": "gdt-auto-portal",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "gdt-auto-portal",
  9. "version": "1.0.0",
  10. "dependencies": {
  11. "@element-plus/icons-vue": "^2.3.1",
  12. "axios": "^1.7.0",
  13. "dayjs": "^1.11.20",
  14. "element-plus": "^2.8.0",
  15. "vue": "^3.5.0",
  16. "vue-router": "^4.3.0"
  17. },
  18. "devDependencies": {
  19. "@tailwindcss/postcss": "^4.1.18",
  20. "@vitejs/plugin-vue": "^6.0.0",
  21. "autoprefixer": "^10.4.24",
  22. "postcss": "^8.5.6",
  23. "sass": "^1.79.0",
  24. "tailwindcss": "^4.1.18",
  25. "vite": "^7.0.0"
  26. }
  27. },
  28. "node_modules/@alloc/quick-lru": {
  29. "version": "5.2.0",
  30. "resolved": "https://registry.npmmirror.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
  31. "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
  32. "dev": true,
  33. "license": "MIT",
  34. "engines": {
  35. "node": ">=10"
  36. },
  37. "funding": {
  38. "url": "https://github.com/sponsors/sindresorhus"
  39. }
  40. },
  41. "node_modules/@babel/helper-string-parser": {
  42. "version": "7.27.1",
  43. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  44. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  45. "license": "MIT",
  46. "engines": {
  47. "node": ">=6.9.0"
  48. }
  49. },
  50. "node_modules/@babel/helper-validator-identifier": {
  51. "version": "7.28.5",
  52. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  53. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  54. "license": "MIT",
  55. "engines": {
  56. "node": ">=6.9.0"
  57. }
  58. },
  59. "node_modules/@babel/parser": {
  60. "version": "7.29.0",
  61. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.0.tgz",
  62. "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
  63. "license": "MIT",
  64. "dependencies": {
  65. "@babel/types": "^7.29.0"
  66. },
  67. "bin": {
  68. "parser": "bin/babel-parser.js"
  69. },
  70. "engines": {
  71. "node": ">=6.0.0"
  72. }
  73. },
  74. "node_modules/@babel/types": {
  75. "version": "7.29.0",
  76. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
  77. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  78. "license": "MIT",
  79. "dependencies": {
  80. "@babel/helper-string-parser": "^7.27.1",
  81. "@babel/helper-validator-identifier": "^7.28.5"
  82. },
  83. "engines": {
  84. "node": ">=6.9.0"
  85. }
  86. },
  87. "node_modules/@ctrl/tinycolor": {
  88. "version": "3.6.1",
  89. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  90. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  91. "license": "MIT",
  92. "engines": {
  93. "node": ">=10"
  94. }
  95. },
  96. "node_modules/@element-plus/icons-vue": {
  97. "version": "2.3.2",
  98. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  99. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  100. "license": "MIT",
  101. "peerDependencies": {
  102. "vue": "^3.2.0"
  103. }
  104. },
  105. "node_modules/@esbuild/aix-ppc64": {
  106. "version": "0.27.2",
  107. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz",
  108. "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==",
  109. "cpu": [
  110. "ppc64"
  111. ],
  112. "dev": true,
  113. "license": "MIT",
  114. "optional": true,
  115. "os": [
  116. "aix"
  117. ],
  118. "engines": {
  119. "node": ">=18"
  120. }
  121. },
  122. "node_modules/@esbuild/android-arm": {
  123. "version": "0.27.2",
  124. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.27.2.tgz",
  125. "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==",
  126. "cpu": [
  127. "arm"
  128. ],
  129. "dev": true,
  130. "license": "MIT",
  131. "optional": true,
  132. "os": [
  133. "android"
  134. ],
  135. "engines": {
  136. "node": ">=18"
  137. }
  138. },
  139. "node_modules/@esbuild/android-arm64": {
  140. "version": "0.27.2",
  141. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz",
  142. "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==",
  143. "cpu": [
  144. "arm64"
  145. ],
  146. "dev": true,
  147. "license": "MIT",
  148. "optional": true,
  149. "os": [
  150. "android"
  151. ],
  152. "engines": {
  153. "node": ">=18"
  154. }
  155. },
  156. "node_modules/@esbuild/android-x64": {
  157. "version": "0.27.2",
  158. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.27.2.tgz",
  159. "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==",
  160. "cpu": [
  161. "x64"
  162. ],
  163. "dev": true,
  164. "license": "MIT",
  165. "optional": true,
  166. "os": [
  167. "android"
  168. ],
  169. "engines": {
  170. "node": ">=18"
  171. }
  172. },
  173. "node_modules/@esbuild/darwin-arm64": {
  174. "version": "0.27.2",
  175. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
  176. "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
  177. "cpu": [
  178. "arm64"
  179. ],
  180. "dev": true,
  181. "license": "MIT",
  182. "optional": true,
  183. "os": [
  184. "darwin"
  185. ],
  186. "engines": {
  187. "node": ">=18"
  188. }
  189. },
  190. "node_modules/@esbuild/darwin-x64": {
  191. "version": "0.27.2",
  192. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz",
  193. "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==",
  194. "cpu": [
  195. "x64"
  196. ],
  197. "dev": true,
  198. "license": "MIT",
  199. "optional": true,
  200. "os": [
  201. "darwin"
  202. ],
  203. "engines": {
  204. "node": ">=18"
  205. }
  206. },
  207. "node_modules/@esbuild/freebsd-arm64": {
  208. "version": "0.27.2",
  209. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz",
  210. "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==",
  211. "cpu": [
  212. "arm64"
  213. ],
  214. "dev": true,
  215. "license": "MIT",
  216. "optional": true,
  217. "os": [
  218. "freebsd"
  219. ],
  220. "engines": {
  221. "node": ">=18"
  222. }
  223. },
  224. "node_modules/@esbuild/freebsd-x64": {
  225. "version": "0.27.2",
  226. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz",
  227. "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==",
  228. "cpu": [
  229. "x64"
  230. ],
  231. "dev": true,
  232. "license": "MIT",
  233. "optional": true,
  234. "os": [
  235. "freebsd"
  236. ],
  237. "engines": {
  238. "node": ">=18"
  239. }
  240. },
  241. "node_modules/@esbuild/linux-arm": {
  242. "version": "0.27.2",
  243. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz",
  244. "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==",
  245. "cpu": [
  246. "arm"
  247. ],
  248. "dev": true,
  249. "license": "MIT",
  250. "optional": true,
  251. "os": [
  252. "linux"
  253. ],
  254. "engines": {
  255. "node": ">=18"
  256. }
  257. },
  258. "node_modules/@esbuild/linux-arm64": {
  259. "version": "0.27.2",
  260. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz",
  261. "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==",
  262. "cpu": [
  263. "arm64"
  264. ],
  265. "dev": true,
  266. "license": "MIT",
  267. "optional": true,
  268. "os": [
  269. "linux"
  270. ],
  271. "engines": {
  272. "node": ">=18"
  273. }
  274. },
  275. "node_modules/@esbuild/linux-ia32": {
  276. "version": "0.27.2",
  277. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz",
  278. "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==",
  279. "cpu": [
  280. "ia32"
  281. ],
  282. "dev": true,
  283. "license": "MIT",
  284. "optional": true,
  285. "os": [
  286. "linux"
  287. ],
  288. "engines": {
  289. "node": ">=18"
  290. }
  291. },
  292. "node_modules/@esbuild/linux-loong64": {
  293. "version": "0.27.2",
  294. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz",
  295. "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==",
  296. "cpu": [
  297. "loong64"
  298. ],
  299. "dev": true,
  300. "license": "MIT",
  301. "optional": true,
  302. "os": [
  303. "linux"
  304. ],
  305. "engines": {
  306. "node": ">=18"
  307. }
  308. },
  309. "node_modules/@esbuild/linux-mips64el": {
  310. "version": "0.27.2",
  311. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz",
  312. "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==",
  313. "cpu": [
  314. "mips64el"
  315. ],
  316. "dev": true,
  317. "license": "MIT",
  318. "optional": true,
  319. "os": [
  320. "linux"
  321. ],
  322. "engines": {
  323. "node": ">=18"
  324. }
  325. },
  326. "node_modules/@esbuild/linux-ppc64": {
  327. "version": "0.27.2",
  328. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz",
  329. "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==",
  330. "cpu": [
  331. "ppc64"
  332. ],
  333. "dev": true,
  334. "license": "MIT",
  335. "optional": true,
  336. "os": [
  337. "linux"
  338. ],
  339. "engines": {
  340. "node": ">=18"
  341. }
  342. },
  343. "node_modules/@esbuild/linux-riscv64": {
  344. "version": "0.27.2",
  345. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz",
  346. "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==",
  347. "cpu": [
  348. "riscv64"
  349. ],
  350. "dev": true,
  351. "license": "MIT",
  352. "optional": true,
  353. "os": [
  354. "linux"
  355. ],
  356. "engines": {
  357. "node": ">=18"
  358. }
  359. },
  360. "node_modules/@esbuild/linux-s390x": {
  361. "version": "0.27.2",
  362. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz",
  363. "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==",
  364. "cpu": [
  365. "s390x"
  366. ],
  367. "dev": true,
  368. "license": "MIT",
  369. "optional": true,
  370. "os": [
  371. "linux"
  372. ],
  373. "engines": {
  374. "node": ">=18"
  375. }
  376. },
  377. "node_modules/@esbuild/linux-x64": {
  378. "version": "0.27.2",
  379. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz",
  380. "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==",
  381. "cpu": [
  382. "x64"
  383. ],
  384. "dev": true,
  385. "license": "MIT",
  386. "optional": true,
  387. "os": [
  388. "linux"
  389. ],
  390. "engines": {
  391. "node": ">=18"
  392. }
  393. },
  394. "node_modules/@esbuild/netbsd-arm64": {
  395. "version": "0.27.2",
  396. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz",
  397. "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==",
  398. "cpu": [
  399. "arm64"
  400. ],
  401. "dev": true,
  402. "license": "MIT",
  403. "optional": true,
  404. "os": [
  405. "netbsd"
  406. ],
  407. "engines": {
  408. "node": ">=18"
  409. }
  410. },
  411. "node_modules/@esbuild/netbsd-x64": {
  412. "version": "0.27.2",
  413. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz",
  414. "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==",
  415. "cpu": [
  416. "x64"
  417. ],
  418. "dev": true,
  419. "license": "MIT",
  420. "optional": true,
  421. "os": [
  422. "netbsd"
  423. ],
  424. "engines": {
  425. "node": ">=18"
  426. }
  427. },
  428. "node_modules/@esbuild/openbsd-arm64": {
  429. "version": "0.27.2",
  430. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz",
  431. "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==",
  432. "cpu": [
  433. "arm64"
  434. ],
  435. "dev": true,
  436. "license": "MIT",
  437. "optional": true,
  438. "os": [
  439. "openbsd"
  440. ],
  441. "engines": {
  442. "node": ">=18"
  443. }
  444. },
  445. "node_modules/@esbuild/openbsd-x64": {
  446. "version": "0.27.2",
  447. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz",
  448. "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==",
  449. "cpu": [
  450. "x64"
  451. ],
  452. "dev": true,
  453. "license": "MIT",
  454. "optional": true,
  455. "os": [
  456. "openbsd"
  457. ],
  458. "engines": {
  459. "node": ">=18"
  460. }
  461. },
  462. "node_modules/@esbuild/openharmony-arm64": {
  463. "version": "0.27.2",
  464. "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz",
  465. "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==",
  466. "cpu": [
  467. "arm64"
  468. ],
  469. "dev": true,
  470. "license": "MIT",
  471. "optional": true,
  472. "os": [
  473. "openharmony"
  474. ],
  475. "engines": {
  476. "node": ">=18"
  477. }
  478. },
  479. "node_modules/@esbuild/sunos-x64": {
  480. "version": "0.27.2",
  481. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz",
  482. "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==",
  483. "cpu": [
  484. "x64"
  485. ],
  486. "dev": true,
  487. "license": "MIT",
  488. "optional": true,
  489. "os": [
  490. "sunos"
  491. ],
  492. "engines": {
  493. "node": ">=18"
  494. }
  495. },
  496. "node_modules/@esbuild/win32-arm64": {
  497. "version": "0.27.2",
  498. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz",
  499. "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==",
  500. "cpu": [
  501. "arm64"
  502. ],
  503. "dev": true,
  504. "license": "MIT",
  505. "optional": true,
  506. "os": [
  507. "win32"
  508. ],
  509. "engines": {
  510. "node": ">=18"
  511. }
  512. },
  513. "node_modules/@esbuild/win32-ia32": {
  514. "version": "0.27.2",
  515. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz",
  516. "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==",
  517. "cpu": [
  518. "ia32"
  519. ],
  520. "dev": true,
  521. "license": "MIT",
  522. "optional": true,
  523. "os": [
  524. "win32"
  525. ],
  526. "engines": {
  527. "node": ">=18"
  528. }
  529. },
  530. "node_modules/@esbuild/win32-x64": {
  531. "version": "0.27.2",
  532. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz",
  533. "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==",
  534. "cpu": [
  535. "x64"
  536. ],
  537. "dev": true,
  538. "license": "MIT",
  539. "optional": true,
  540. "os": [
  541. "win32"
  542. ],
  543. "engines": {
  544. "node": ">=18"
  545. }
  546. },
  547. "node_modules/@floating-ui/core": {
  548. "version": "1.7.4",
  549. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.4.tgz",
  550. "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
  551. "license": "MIT",
  552. "dependencies": {
  553. "@floating-ui/utils": "^0.2.10"
  554. }
  555. },
  556. "node_modules/@floating-ui/dom": {
  557. "version": "1.7.5",
  558. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.5.tgz",
  559. "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
  560. "license": "MIT",
  561. "dependencies": {
  562. "@floating-ui/core": "^1.7.4",
  563. "@floating-ui/utils": "^0.2.10"
  564. }
  565. },
  566. "node_modules/@floating-ui/utils": {
  567. "version": "0.2.10",
  568. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.10.tgz",
  569. "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
  570. "license": "MIT"
  571. },
  572. "node_modules/@jridgewell/gen-mapping": {
  573. "version": "0.3.13",
  574. "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  575. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  576. "dev": true,
  577. "license": "MIT",
  578. "dependencies": {
  579. "@jridgewell/sourcemap-codec": "^1.5.0",
  580. "@jridgewell/trace-mapping": "^0.3.24"
  581. }
  582. },
  583. "node_modules/@jridgewell/remapping": {
  584. "version": "2.3.5",
  585. "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  586. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  587. "dev": true,
  588. "license": "MIT",
  589. "dependencies": {
  590. "@jridgewell/gen-mapping": "^0.3.5",
  591. "@jridgewell/trace-mapping": "^0.3.24"
  592. }
  593. },
  594. "node_modules/@jridgewell/resolve-uri": {
  595. "version": "3.1.2",
  596. "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  597. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  598. "dev": true,
  599. "license": "MIT",
  600. "engines": {
  601. "node": ">=6.0.0"
  602. }
  603. },
  604. "node_modules/@jridgewell/sourcemap-codec": {
  605. "version": "1.5.5",
  606. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  607. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  608. "license": "MIT"
  609. },
  610. "node_modules/@jridgewell/trace-mapping": {
  611. "version": "0.3.31",
  612. "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  613. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  614. "dev": true,
  615. "license": "MIT",
  616. "dependencies": {
  617. "@jridgewell/resolve-uri": "^3.1.0",
  618. "@jridgewell/sourcemap-codec": "^1.4.14"
  619. }
  620. },
  621. "node_modules/@parcel/watcher": {
  622. "version": "2.5.6",
  623. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.6.tgz",
  624. "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
  625. "dev": true,
  626. "hasInstallScript": true,
  627. "license": "MIT",
  628. "optional": true,
  629. "dependencies": {
  630. "detect-libc": "^2.0.3",
  631. "is-glob": "^4.0.3",
  632. "node-addon-api": "^7.0.0",
  633. "picomatch": "^4.0.3"
  634. },
  635. "engines": {
  636. "node": ">= 10.0.0"
  637. },
  638. "funding": {
  639. "type": "opencollective",
  640. "url": "https://opencollective.com/parcel"
  641. },
  642. "optionalDependencies": {
  643. "@parcel/watcher-android-arm64": "2.5.6",
  644. "@parcel/watcher-darwin-arm64": "2.5.6",
  645. "@parcel/watcher-darwin-x64": "2.5.6",
  646. "@parcel/watcher-freebsd-x64": "2.5.6",
  647. "@parcel/watcher-linux-arm-glibc": "2.5.6",
  648. "@parcel/watcher-linux-arm-musl": "2.5.6",
  649. "@parcel/watcher-linux-arm64-glibc": "2.5.6",
  650. "@parcel/watcher-linux-arm64-musl": "2.5.6",
  651. "@parcel/watcher-linux-x64-glibc": "2.5.6",
  652. "@parcel/watcher-linux-x64-musl": "2.5.6",
  653. "@parcel/watcher-win32-arm64": "2.5.6",
  654. "@parcel/watcher-win32-ia32": "2.5.6",
  655. "@parcel/watcher-win32-x64": "2.5.6"
  656. }
  657. },
  658. "node_modules/@parcel/watcher-android-arm64": {
  659. "version": "2.5.6",
  660. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
  661. "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
  662. "cpu": [
  663. "arm64"
  664. ],
  665. "dev": true,
  666. "license": "MIT",
  667. "optional": true,
  668. "os": [
  669. "android"
  670. ],
  671. "engines": {
  672. "node": ">= 10.0.0"
  673. },
  674. "funding": {
  675. "type": "opencollective",
  676. "url": "https://opencollective.com/parcel"
  677. }
  678. },
  679. "node_modules/@parcel/watcher-darwin-arm64": {
  680. "version": "2.5.6",
  681. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
  682. "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
  683. "cpu": [
  684. "arm64"
  685. ],
  686. "dev": true,
  687. "license": "MIT",
  688. "optional": true,
  689. "os": [
  690. "darwin"
  691. ],
  692. "engines": {
  693. "node": ">= 10.0.0"
  694. },
  695. "funding": {
  696. "type": "opencollective",
  697. "url": "https://opencollective.com/parcel"
  698. }
  699. },
  700. "node_modules/@parcel/watcher-darwin-x64": {
  701. "version": "2.5.6",
  702. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
  703. "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
  704. "cpu": [
  705. "x64"
  706. ],
  707. "dev": true,
  708. "license": "MIT",
  709. "optional": true,
  710. "os": [
  711. "darwin"
  712. ],
  713. "engines": {
  714. "node": ">= 10.0.0"
  715. },
  716. "funding": {
  717. "type": "opencollective",
  718. "url": "https://opencollective.com/parcel"
  719. }
  720. },
  721. "node_modules/@parcel/watcher-freebsd-x64": {
  722. "version": "2.5.6",
  723. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
  724. "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
  725. "cpu": [
  726. "x64"
  727. ],
  728. "dev": true,
  729. "license": "MIT",
  730. "optional": true,
  731. "os": [
  732. "freebsd"
  733. ],
  734. "engines": {
  735. "node": ">= 10.0.0"
  736. },
  737. "funding": {
  738. "type": "opencollective",
  739. "url": "https://opencollective.com/parcel"
  740. }
  741. },
  742. "node_modules/@parcel/watcher-linux-arm-glibc": {
  743. "version": "2.5.6",
  744. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
  745. "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
  746. "cpu": [
  747. "arm"
  748. ],
  749. "dev": true,
  750. "license": "MIT",
  751. "optional": true,
  752. "os": [
  753. "linux"
  754. ],
  755. "engines": {
  756. "node": ">= 10.0.0"
  757. },
  758. "funding": {
  759. "type": "opencollective",
  760. "url": "https://opencollective.com/parcel"
  761. }
  762. },
  763. "node_modules/@parcel/watcher-linux-arm-musl": {
  764. "version": "2.5.6",
  765. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
  766. "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
  767. "cpu": [
  768. "arm"
  769. ],
  770. "dev": true,
  771. "license": "MIT",
  772. "optional": true,
  773. "os": [
  774. "linux"
  775. ],
  776. "engines": {
  777. "node": ">= 10.0.0"
  778. },
  779. "funding": {
  780. "type": "opencollective",
  781. "url": "https://opencollective.com/parcel"
  782. }
  783. },
  784. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  785. "version": "2.5.6",
  786. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
  787. "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
  788. "cpu": [
  789. "arm64"
  790. ],
  791. "dev": true,
  792. "license": "MIT",
  793. "optional": true,
  794. "os": [
  795. "linux"
  796. ],
  797. "engines": {
  798. "node": ">= 10.0.0"
  799. },
  800. "funding": {
  801. "type": "opencollective",
  802. "url": "https://opencollective.com/parcel"
  803. }
  804. },
  805. "node_modules/@parcel/watcher-linux-arm64-musl": {
  806. "version": "2.5.6",
  807. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
  808. "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
  809. "cpu": [
  810. "arm64"
  811. ],
  812. "dev": true,
  813. "license": "MIT",
  814. "optional": true,
  815. "os": [
  816. "linux"
  817. ],
  818. "engines": {
  819. "node": ">= 10.0.0"
  820. },
  821. "funding": {
  822. "type": "opencollective",
  823. "url": "https://opencollective.com/parcel"
  824. }
  825. },
  826. "node_modules/@parcel/watcher-linux-x64-glibc": {
  827. "version": "2.5.6",
  828. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
  829. "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
  830. "cpu": [
  831. "x64"
  832. ],
  833. "dev": true,
  834. "license": "MIT",
  835. "optional": true,
  836. "os": [
  837. "linux"
  838. ],
  839. "engines": {
  840. "node": ">= 10.0.0"
  841. },
  842. "funding": {
  843. "type": "opencollective",
  844. "url": "https://opencollective.com/parcel"
  845. }
  846. },
  847. "node_modules/@parcel/watcher-linux-x64-musl": {
  848. "version": "2.5.6",
  849. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
  850. "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
  851. "cpu": [
  852. "x64"
  853. ],
  854. "dev": true,
  855. "license": "MIT",
  856. "optional": true,
  857. "os": [
  858. "linux"
  859. ],
  860. "engines": {
  861. "node": ">= 10.0.0"
  862. },
  863. "funding": {
  864. "type": "opencollective",
  865. "url": "https://opencollective.com/parcel"
  866. }
  867. },
  868. "node_modules/@parcel/watcher-win32-arm64": {
  869. "version": "2.5.6",
  870. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
  871. "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
  872. "cpu": [
  873. "arm64"
  874. ],
  875. "dev": true,
  876. "license": "MIT",
  877. "optional": true,
  878. "os": [
  879. "win32"
  880. ],
  881. "engines": {
  882. "node": ">= 10.0.0"
  883. },
  884. "funding": {
  885. "type": "opencollective",
  886. "url": "https://opencollective.com/parcel"
  887. }
  888. },
  889. "node_modules/@parcel/watcher-win32-ia32": {
  890. "version": "2.5.6",
  891. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
  892. "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
  893. "cpu": [
  894. "ia32"
  895. ],
  896. "dev": true,
  897. "license": "MIT",
  898. "optional": true,
  899. "os": [
  900. "win32"
  901. ],
  902. "engines": {
  903. "node": ">= 10.0.0"
  904. },
  905. "funding": {
  906. "type": "opencollective",
  907. "url": "https://opencollective.com/parcel"
  908. }
  909. },
  910. "node_modules/@parcel/watcher-win32-x64": {
  911. "version": "2.5.6",
  912. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
  913. "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
  914. "cpu": [
  915. "x64"
  916. ],
  917. "dev": true,
  918. "license": "MIT",
  919. "optional": true,
  920. "os": [
  921. "win32"
  922. ],
  923. "engines": {
  924. "node": ">= 10.0.0"
  925. },
  926. "funding": {
  927. "type": "opencollective",
  928. "url": "https://opencollective.com/parcel"
  929. }
  930. },
  931. "node_modules/@popperjs/core": {
  932. "name": "@sxzz/popperjs-es",
  933. "version": "2.11.8",
  934. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  935. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  936. "license": "MIT",
  937. "funding": {
  938. "type": "opencollective",
  939. "url": "https://opencollective.com/popperjs"
  940. }
  941. },
  942. "node_modules/@rolldown/pluginutils": {
  943. "version": "1.0.0-rc.2",
  944. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
  945. "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
  946. "dev": true,
  947. "license": "MIT"
  948. },
  949. "node_modules/@rollup/rollup-android-arm-eabi": {
  950. "version": "4.57.1",
  951. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.57.1.tgz",
  952. "integrity": "sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==",
  953. "cpu": [
  954. "arm"
  955. ],
  956. "dev": true,
  957. "license": "MIT",
  958. "optional": true,
  959. "os": [
  960. "android"
  961. ]
  962. },
  963. "node_modules/@rollup/rollup-android-arm64": {
  964. "version": "4.57.1",
  965. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.57.1.tgz",
  966. "integrity": "sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==",
  967. "cpu": [
  968. "arm64"
  969. ],
  970. "dev": true,
  971. "license": "MIT",
  972. "optional": true,
  973. "os": [
  974. "android"
  975. ]
  976. },
  977. "node_modules/@rollup/rollup-darwin-arm64": {
  978. "version": "4.57.1",
  979. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.57.1.tgz",
  980. "integrity": "sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==",
  981. "cpu": [
  982. "arm64"
  983. ],
  984. "dev": true,
  985. "license": "MIT",
  986. "optional": true,
  987. "os": [
  988. "darwin"
  989. ]
  990. },
  991. "node_modules/@rollup/rollup-darwin-x64": {
  992. "version": "4.57.1",
  993. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.57.1.tgz",
  994. "integrity": "sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==",
  995. "cpu": [
  996. "x64"
  997. ],
  998. "dev": true,
  999. "license": "MIT",
  1000. "optional": true,
  1001. "os": [
  1002. "darwin"
  1003. ]
  1004. },
  1005. "node_modules/@rollup/rollup-freebsd-arm64": {
  1006. "version": "4.57.1",
  1007. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.57.1.tgz",
  1008. "integrity": "sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==",
  1009. "cpu": [
  1010. "arm64"
  1011. ],
  1012. "dev": true,
  1013. "license": "MIT",
  1014. "optional": true,
  1015. "os": [
  1016. "freebsd"
  1017. ]
  1018. },
  1019. "node_modules/@rollup/rollup-freebsd-x64": {
  1020. "version": "4.57.1",
  1021. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.57.1.tgz",
  1022. "integrity": "sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==",
  1023. "cpu": [
  1024. "x64"
  1025. ],
  1026. "dev": true,
  1027. "license": "MIT",
  1028. "optional": true,
  1029. "os": [
  1030. "freebsd"
  1031. ]
  1032. },
  1033. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  1034. "version": "4.57.1",
  1035. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.57.1.tgz",
  1036. "integrity": "sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==",
  1037. "cpu": [
  1038. "arm"
  1039. ],
  1040. "dev": true,
  1041. "license": "MIT",
  1042. "optional": true,
  1043. "os": [
  1044. "linux"
  1045. ]
  1046. },
  1047. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  1048. "version": "4.57.1",
  1049. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.57.1.tgz",
  1050. "integrity": "sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==",
  1051. "cpu": [
  1052. "arm"
  1053. ],
  1054. "dev": true,
  1055. "license": "MIT",
  1056. "optional": true,
  1057. "os": [
  1058. "linux"
  1059. ]
  1060. },
  1061. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1062. "version": "4.57.1",
  1063. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.57.1.tgz",
  1064. "integrity": "sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==",
  1065. "cpu": [
  1066. "arm64"
  1067. ],
  1068. "dev": true,
  1069. "license": "MIT",
  1070. "optional": true,
  1071. "os": [
  1072. "linux"
  1073. ]
  1074. },
  1075. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1076. "version": "4.57.1",
  1077. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.57.1.tgz",
  1078. "integrity": "sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==",
  1079. "cpu": [
  1080. "arm64"
  1081. ],
  1082. "dev": true,
  1083. "license": "MIT",
  1084. "optional": true,
  1085. "os": [
  1086. "linux"
  1087. ]
  1088. },
  1089. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  1090. "version": "4.57.1",
  1091. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.57.1.tgz",
  1092. "integrity": "sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==",
  1093. "cpu": [
  1094. "loong64"
  1095. ],
  1096. "dev": true,
  1097. "license": "MIT",
  1098. "optional": true,
  1099. "os": [
  1100. "linux"
  1101. ]
  1102. },
  1103. "node_modules/@rollup/rollup-linux-loong64-musl": {
  1104. "version": "4.57.1",
  1105. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.57.1.tgz",
  1106. "integrity": "sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==",
  1107. "cpu": [
  1108. "loong64"
  1109. ],
  1110. "dev": true,
  1111. "license": "MIT",
  1112. "optional": true,
  1113. "os": [
  1114. "linux"
  1115. ]
  1116. },
  1117. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  1118. "version": "4.57.1",
  1119. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.57.1.tgz",
  1120. "integrity": "sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==",
  1121. "cpu": [
  1122. "ppc64"
  1123. ],
  1124. "dev": true,
  1125. "license": "MIT",
  1126. "optional": true,
  1127. "os": [
  1128. "linux"
  1129. ]
  1130. },
  1131. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  1132. "version": "4.57.1",
  1133. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.57.1.tgz",
  1134. "integrity": "sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==",
  1135. "cpu": [
  1136. "ppc64"
  1137. ],
  1138. "dev": true,
  1139. "license": "MIT",
  1140. "optional": true,
  1141. "os": [
  1142. "linux"
  1143. ]
  1144. },
  1145. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1146. "version": "4.57.1",
  1147. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.57.1.tgz",
  1148. "integrity": "sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==",
  1149. "cpu": [
  1150. "riscv64"
  1151. ],
  1152. "dev": true,
  1153. "license": "MIT",
  1154. "optional": true,
  1155. "os": [
  1156. "linux"
  1157. ]
  1158. },
  1159. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1160. "version": "4.57.1",
  1161. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.57.1.tgz",
  1162. "integrity": "sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==",
  1163. "cpu": [
  1164. "riscv64"
  1165. ],
  1166. "dev": true,
  1167. "license": "MIT",
  1168. "optional": true,
  1169. "os": [
  1170. "linux"
  1171. ]
  1172. },
  1173. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1174. "version": "4.57.1",
  1175. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.57.1.tgz",
  1176. "integrity": "sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==",
  1177. "cpu": [
  1178. "s390x"
  1179. ],
  1180. "dev": true,
  1181. "license": "MIT",
  1182. "optional": true,
  1183. "os": [
  1184. "linux"
  1185. ]
  1186. },
  1187. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1188. "version": "4.57.1",
  1189. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.57.1.tgz",
  1190. "integrity": "sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==",
  1191. "cpu": [
  1192. "x64"
  1193. ],
  1194. "dev": true,
  1195. "license": "MIT",
  1196. "optional": true,
  1197. "os": [
  1198. "linux"
  1199. ]
  1200. },
  1201. "node_modules/@rollup/rollup-linux-x64-musl": {
  1202. "version": "4.57.1",
  1203. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.57.1.tgz",
  1204. "integrity": "sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==",
  1205. "cpu": [
  1206. "x64"
  1207. ],
  1208. "dev": true,
  1209. "license": "MIT",
  1210. "optional": true,
  1211. "os": [
  1212. "linux"
  1213. ]
  1214. },
  1215. "node_modules/@rollup/rollup-openbsd-x64": {
  1216. "version": "4.57.1",
  1217. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.57.1.tgz",
  1218. "integrity": "sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==",
  1219. "cpu": [
  1220. "x64"
  1221. ],
  1222. "dev": true,
  1223. "license": "MIT",
  1224. "optional": true,
  1225. "os": [
  1226. "openbsd"
  1227. ]
  1228. },
  1229. "node_modules/@rollup/rollup-openharmony-arm64": {
  1230. "version": "4.57.1",
  1231. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.57.1.tgz",
  1232. "integrity": "sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==",
  1233. "cpu": [
  1234. "arm64"
  1235. ],
  1236. "dev": true,
  1237. "license": "MIT",
  1238. "optional": true,
  1239. "os": [
  1240. "openharmony"
  1241. ]
  1242. },
  1243. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1244. "version": "4.57.1",
  1245. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.57.1.tgz",
  1246. "integrity": "sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==",
  1247. "cpu": [
  1248. "arm64"
  1249. ],
  1250. "dev": true,
  1251. "license": "MIT",
  1252. "optional": true,
  1253. "os": [
  1254. "win32"
  1255. ]
  1256. },
  1257. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1258. "version": "4.57.1",
  1259. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.57.1.tgz",
  1260. "integrity": "sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==",
  1261. "cpu": [
  1262. "ia32"
  1263. ],
  1264. "dev": true,
  1265. "license": "MIT",
  1266. "optional": true,
  1267. "os": [
  1268. "win32"
  1269. ]
  1270. },
  1271. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1272. "version": "4.57.1",
  1273. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.57.1.tgz",
  1274. "integrity": "sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==",
  1275. "cpu": [
  1276. "x64"
  1277. ],
  1278. "dev": true,
  1279. "license": "MIT",
  1280. "optional": true,
  1281. "os": [
  1282. "win32"
  1283. ]
  1284. },
  1285. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1286. "version": "4.57.1",
  1287. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.57.1.tgz",
  1288. "integrity": "sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==",
  1289. "cpu": [
  1290. "x64"
  1291. ],
  1292. "dev": true,
  1293. "license": "MIT",
  1294. "optional": true,
  1295. "os": [
  1296. "win32"
  1297. ]
  1298. },
  1299. "node_modules/@tailwindcss/node": {
  1300. "version": "4.1.18",
  1301. "resolved": "https://registry.npmmirror.com/@tailwindcss/node/-/node-4.1.18.tgz",
  1302. "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
  1303. "dev": true,
  1304. "license": "MIT",
  1305. "dependencies": {
  1306. "@jridgewell/remapping": "^2.3.4",
  1307. "enhanced-resolve": "^5.18.3",
  1308. "jiti": "^2.6.1",
  1309. "lightningcss": "1.30.2",
  1310. "magic-string": "^0.30.21",
  1311. "source-map-js": "^1.2.1",
  1312. "tailwindcss": "4.1.18"
  1313. }
  1314. },
  1315. "node_modules/@tailwindcss/oxide": {
  1316. "version": "4.1.18",
  1317. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
  1318. "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
  1319. "dev": true,
  1320. "license": "MIT",
  1321. "engines": {
  1322. "node": ">= 10"
  1323. },
  1324. "optionalDependencies": {
  1325. "@tailwindcss/oxide-android-arm64": "4.1.18",
  1326. "@tailwindcss/oxide-darwin-arm64": "4.1.18",
  1327. "@tailwindcss/oxide-darwin-x64": "4.1.18",
  1328. "@tailwindcss/oxide-freebsd-x64": "4.1.18",
  1329. "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
  1330. "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
  1331. "@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
  1332. "@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
  1333. "@tailwindcss/oxide-linux-x64-musl": "4.1.18",
  1334. "@tailwindcss/oxide-wasm32-wasi": "4.1.18",
  1335. "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
  1336. "@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
  1337. }
  1338. },
  1339. "node_modules/@tailwindcss/oxide-android-arm64": {
  1340. "version": "4.1.18",
  1341. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
  1342. "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
  1343. "cpu": [
  1344. "arm64"
  1345. ],
  1346. "dev": true,
  1347. "license": "MIT",
  1348. "optional": true,
  1349. "os": [
  1350. "android"
  1351. ],
  1352. "engines": {
  1353. "node": ">= 10"
  1354. }
  1355. },
  1356. "node_modules/@tailwindcss/oxide-darwin-arm64": {
  1357. "version": "4.1.18",
  1358. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
  1359. "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
  1360. "cpu": [
  1361. "arm64"
  1362. ],
  1363. "dev": true,
  1364. "license": "MIT",
  1365. "optional": true,
  1366. "os": [
  1367. "darwin"
  1368. ],
  1369. "engines": {
  1370. "node": ">= 10"
  1371. }
  1372. },
  1373. "node_modules/@tailwindcss/oxide-darwin-x64": {
  1374. "version": "4.1.18",
  1375. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
  1376. "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
  1377. "cpu": [
  1378. "x64"
  1379. ],
  1380. "dev": true,
  1381. "license": "MIT",
  1382. "optional": true,
  1383. "os": [
  1384. "darwin"
  1385. ],
  1386. "engines": {
  1387. "node": ">= 10"
  1388. }
  1389. },
  1390. "node_modules/@tailwindcss/oxide-freebsd-x64": {
  1391. "version": "4.1.18",
  1392. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
  1393. "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
  1394. "cpu": [
  1395. "x64"
  1396. ],
  1397. "dev": true,
  1398. "license": "MIT",
  1399. "optional": true,
  1400. "os": [
  1401. "freebsd"
  1402. ],
  1403. "engines": {
  1404. "node": ">= 10"
  1405. }
  1406. },
  1407. "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
  1408. "version": "4.1.18",
  1409. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
  1410. "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
  1411. "cpu": [
  1412. "arm"
  1413. ],
  1414. "dev": true,
  1415. "license": "MIT",
  1416. "optional": true,
  1417. "os": [
  1418. "linux"
  1419. ],
  1420. "engines": {
  1421. "node": ">= 10"
  1422. }
  1423. },
  1424. "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
  1425. "version": "4.1.18",
  1426. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
  1427. "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
  1428. "cpu": [
  1429. "arm64"
  1430. ],
  1431. "dev": true,
  1432. "license": "MIT",
  1433. "optional": true,
  1434. "os": [
  1435. "linux"
  1436. ],
  1437. "engines": {
  1438. "node": ">= 10"
  1439. }
  1440. },
  1441. "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
  1442. "version": "4.1.18",
  1443. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
  1444. "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
  1445. "cpu": [
  1446. "arm64"
  1447. ],
  1448. "dev": true,
  1449. "license": "MIT",
  1450. "optional": true,
  1451. "os": [
  1452. "linux"
  1453. ],
  1454. "engines": {
  1455. "node": ">= 10"
  1456. }
  1457. },
  1458. "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
  1459. "version": "4.1.18",
  1460. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
  1461. "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
  1462. "cpu": [
  1463. "x64"
  1464. ],
  1465. "dev": true,
  1466. "license": "MIT",
  1467. "optional": true,
  1468. "os": [
  1469. "linux"
  1470. ],
  1471. "engines": {
  1472. "node": ">= 10"
  1473. }
  1474. },
  1475. "node_modules/@tailwindcss/oxide-linux-x64-musl": {
  1476. "version": "4.1.18",
  1477. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
  1478. "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
  1479. "cpu": [
  1480. "x64"
  1481. ],
  1482. "dev": true,
  1483. "license": "MIT",
  1484. "optional": true,
  1485. "os": [
  1486. "linux"
  1487. ],
  1488. "engines": {
  1489. "node": ">= 10"
  1490. }
  1491. },
  1492. "node_modules/@tailwindcss/oxide-wasm32-wasi": {
  1493. "version": "4.1.18",
  1494. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
  1495. "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
  1496. "bundleDependencies": [
  1497. "@napi-rs/wasm-runtime",
  1498. "@emnapi/core",
  1499. "@emnapi/runtime",
  1500. "@tybys/wasm-util",
  1501. "@emnapi/wasi-threads",
  1502. "tslib"
  1503. ],
  1504. "cpu": [
  1505. "wasm32"
  1506. ],
  1507. "dev": true,
  1508. "license": "MIT",
  1509. "optional": true,
  1510. "dependencies": {
  1511. "@emnapi/core": "^1.7.1",
  1512. "@emnapi/runtime": "^1.7.1",
  1513. "@emnapi/wasi-threads": "^1.1.0",
  1514. "@napi-rs/wasm-runtime": "^1.1.0",
  1515. "@tybys/wasm-util": "^0.10.1",
  1516. "tslib": "^2.4.0"
  1517. },
  1518. "engines": {
  1519. "node": ">=14.0.0"
  1520. }
  1521. },
  1522. "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
  1523. "version": "1.7.1",
  1524. "dev": true,
  1525. "inBundle": true,
  1526. "license": "MIT",
  1527. "optional": true,
  1528. "dependencies": {
  1529. "@emnapi/wasi-threads": "1.1.0",
  1530. "tslib": "^2.4.0"
  1531. }
  1532. },
  1533. "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
  1534. "version": "1.7.1",
  1535. "dev": true,
  1536. "inBundle": true,
  1537. "license": "MIT",
  1538. "optional": true,
  1539. "dependencies": {
  1540. "tslib": "^2.4.0"
  1541. }
  1542. },
  1543. "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
  1544. "version": "1.1.0",
  1545. "dev": true,
  1546. "inBundle": true,
  1547. "license": "MIT",
  1548. "optional": true,
  1549. "dependencies": {
  1550. "tslib": "^2.4.0"
  1551. }
  1552. },
  1553. "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
  1554. "version": "1.1.0",
  1555. "dev": true,
  1556. "inBundle": true,
  1557. "license": "MIT",
  1558. "optional": true,
  1559. "dependencies": {
  1560. "@emnapi/core": "^1.7.1",
  1561. "@emnapi/runtime": "^1.7.1",
  1562. "@tybys/wasm-util": "^0.10.1"
  1563. }
  1564. },
  1565. "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": {
  1566. "version": "0.10.1",
  1567. "dev": true,
  1568. "inBundle": true,
  1569. "license": "MIT",
  1570. "optional": true,
  1571. "dependencies": {
  1572. "tslib": "^2.4.0"
  1573. }
  1574. },
  1575. "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": {
  1576. "version": "2.8.1",
  1577. "dev": true,
  1578. "inBundle": true,
  1579. "license": "0BSD",
  1580. "optional": true
  1581. },
  1582. "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
  1583. "version": "4.1.18",
  1584. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
  1585. "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
  1586. "cpu": [
  1587. "arm64"
  1588. ],
  1589. "dev": true,
  1590. "license": "MIT",
  1591. "optional": true,
  1592. "os": [
  1593. "win32"
  1594. ],
  1595. "engines": {
  1596. "node": ">= 10"
  1597. }
  1598. },
  1599. "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
  1600. "version": "4.1.18",
  1601. "resolved": "https://registry.npmmirror.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
  1602. "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
  1603. "cpu": [
  1604. "x64"
  1605. ],
  1606. "dev": true,
  1607. "license": "MIT",
  1608. "optional": true,
  1609. "os": [
  1610. "win32"
  1611. ],
  1612. "engines": {
  1613. "node": ">= 10"
  1614. }
  1615. },
  1616. "node_modules/@tailwindcss/postcss": {
  1617. "version": "4.1.18",
  1618. "resolved": "https://registry.npmmirror.com/@tailwindcss/postcss/-/postcss-4.1.18.tgz",
  1619. "integrity": "sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==",
  1620. "dev": true,
  1621. "license": "MIT",
  1622. "dependencies": {
  1623. "@alloc/quick-lru": "^5.2.0",
  1624. "@tailwindcss/node": "4.1.18",
  1625. "@tailwindcss/oxide": "4.1.18",
  1626. "postcss": "^8.4.41",
  1627. "tailwindcss": "4.1.18"
  1628. }
  1629. },
  1630. "node_modules/@types/estree": {
  1631. "version": "1.0.8",
  1632. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
  1633. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1634. "dev": true,
  1635. "license": "MIT"
  1636. },
  1637. "node_modules/@types/lodash": {
  1638. "version": "4.17.23",
  1639. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.23.tgz",
  1640. "integrity": "sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==",
  1641. "license": "MIT"
  1642. },
  1643. "node_modules/@types/lodash-es": {
  1644. "version": "4.17.12",
  1645. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1646. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1647. "license": "MIT",
  1648. "dependencies": {
  1649. "@types/lodash": "*"
  1650. }
  1651. },
  1652. "node_modules/@types/web-bluetooth": {
  1653. "version": "0.0.20",
  1654. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz",
  1655. "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==",
  1656. "license": "MIT"
  1657. },
  1658. "node_modules/@vitejs/plugin-vue": {
  1659. "version": "6.0.4",
  1660. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.4.tgz",
  1661. "integrity": "sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==",
  1662. "dev": true,
  1663. "license": "MIT",
  1664. "dependencies": {
  1665. "@rolldown/pluginutils": "1.0.0-rc.2"
  1666. },
  1667. "engines": {
  1668. "node": "^20.19.0 || >=22.12.0"
  1669. },
  1670. "peerDependencies": {
  1671. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0",
  1672. "vue": "^3.2.25"
  1673. }
  1674. },
  1675. "node_modules/@vue/compiler-core": {
  1676. "version": "3.5.27",
  1677. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.27.tgz",
  1678. "integrity": "sha512-gnSBQjZA+//qDZen+6a2EdHqJ68Z7uybrMf3SPjEGgG4dicklwDVmMC1AeIHxtLVPT7sn6sH1KOO+tS6gwOUeQ==",
  1679. "license": "MIT",
  1680. "dependencies": {
  1681. "@babel/parser": "^7.28.5",
  1682. "@vue/shared": "3.5.27",
  1683. "entities": "^7.0.0",
  1684. "estree-walker": "^2.0.2",
  1685. "source-map-js": "^1.2.1"
  1686. }
  1687. },
  1688. "node_modules/@vue/compiler-dom": {
  1689. "version": "3.5.27",
  1690. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.27.tgz",
  1691. "integrity": "sha512-oAFea8dZgCtVVVTEC7fv3T5CbZW9BxpFzGGxC79xakTr6ooeEqmRuvQydIiDAkglZEAd09LgVf1RoDnL54fu5w==",
  1692. "license": "MIT",
  1693. "dependencies": {
  1694. "@vue/compiler-core": "3.5.27",
  1695. "@vue/shared": "3.5.27"
  1696. }
  1697. },
  1698. "node_modules/@vue/compiler-sfc": {
  1699. "version": "3.5.27",
  1700. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.27.tgz",
  1701. "integrity": "sha512-sHZu9QyDPeDmN/MRoshhggVOWE5WlGFStKFwu8G52swATgSny27hJRWteKDSUUzUH+wp+bmeNbhJnEAel/auUQ==",
  1702. "license": "MIT",
  1703. "dependencies": {
  1704. "@babel/parser": "^7.28.5",
  1705. "@vue/compiler-core": "3.5.27",
  1706. "@vue/compiler-dom": "3.5.27",
  1707. "@vue/compiler-ssr": "3.5.27",
  1708. "@vue/shared": "3.5.27",
  1709. "estree-walker": "^2.0.2",
  1710. "magic-string": "^0.30.21",
  1711. "postcss": "^8.5.6",
  1712. "source-map-js": "^1.2.1"
  1713. }
  1714. },
  1715. "node_modules/@vue/compiler-ssr": {
  1716. "version": "3.5.27",
  1717. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.27.tgz",
  1718. "integrity": "sha512-Sj7h+JHt512fV1cTxKlYhg7qxBvack+BGncSpH+8vnN+KN95iPIcqB5rsbblX40XorP+ilO7VIKlkuu3Xq2vjw==",
  1719. "license": "MIT",
  1720. "dependencies": {
  1721. "@vue/compiler-dom": "3.5.27",
  1722. "@vue/shared": "3.5.27"
  1723. }
  1724. },
  1725. "node_modules/@vue/devtools-api": {
  1726. "version": "6.6.4",
  1727. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  1728. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  1729. "license": "MIT"
  1730. },
  1731. "node_modules/@vue/reactivity": {
  1732. "version": "3.5.27",
  1733. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.27.tgz",
  1734. "integrity": "sha512-vvorxn2KXfJ0nBEnj4GYshSgsyMNFnIQah/wczXlsNXt+ijhugmW+PpJ2cNPe4V6jpnBcs0MhCODKllWG+nvoQ==",
  1735. "license": "MIT",
  1736. "dependencies": {
  1737. "@vue/shared": "3.5.27"
  1738. }
  1739. },
  1740. "node_modules/@vue/runtime-core": {
  1741. "version": "3.5.27",
  1742. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.27.tgz",
  1743. "integrity": "sha512-fxVuX/fzgzeMPn/CLQecWeDIFNt3gQVhxM0rW02Tvp/YmZfXQgcTXlakq7IMutuZ/+Ogbn+K0oct9J3JZfyk3A==",
  1744. "license": "MIT",
  1745. "dependencies": {
  1746. "@vue/reactivity": "3.5.27",
  1747. "@vue/shared": "3.5.27"
  1748. }
  1749. },
  1750. "node_modules/@vue/runtime-dom": {
  1751. "version": "3.5.27",
  1752. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.27.tgz",
  1753. "integrity": "sha512-/QnLslQgYqSJ5aUmb5F0z0caZPGHRB8LEAQ1s81vHFM5CBfnun63rxhvE/scVb/j3TbBuoZwkJyiLCkBluMpeg==",
  1754. "license": "MIT",
  1755. "dependencies": {
  1756. "@vue/reactivity": "3.5.27",
  1757. "@vue/runtime-core": "3.5.27",
  1758. "@vue/shared": "3.5.27",
  1759. "csstype": "^3.2.3"
  1760. }
  1761. },
  1762. "node_modules/@vue/server-renderer": {
  1763. "version": "3.5.27",
  1764. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.27.tgz",
  1765. "integrity": "sha512-qOz/5thjeP1vAFc4+BY3Nr6wxyLhpeQgAE/8dDtKo6a6xdk+L4W46HDZgNmLOBUDEkFXV3G7pRiUqxjX0/2zWA==",
  1766. "license": "MIT",
  1767. "dependencies": {
  1768. "@vue/compiler-ssr": "3.5.27",
  1769. "@vue/shared": "3.5.27"
  1770. },
  1771. "peerDependencies": {
  1772. "vue": "3.5.27"
  1773. }
  1774. },
  1775. "node_modules/@vue/shared": {
  1776. "version": "3.5.27",
  1777. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.27.tgz",
  1778. "integrity": "sha512-dXr/3CgqXsJkZ0n9F3I4elY8wM9jMJpP3pvRG52r6m0tu/MsAFIe6JpXVGeNMd/D9F4hQynWT8Rfuj0bdm9kFQ==",
  1779. "license": "MIT"
  1780. },
  1781. "node_modules/@vueuse/core": {
  1782. "version": "10.11.1",
  1783. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-10.11.1.tgz",
  1784. "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==",
  1785. "license": "MIT",
  1786. "dependencies": {
  1787. "@types/web-bluetooth": "^0.0.20",
  1788. "@vueuse/metadata": "10.11.1",
  1789. "@vueuse/shared": "10.11.1",
  1790. "vue-demi": ">=0.14.8"
  1791. },
  1792. "funding": {
  1793. "url": "https://github.com/sponsors/antfu"
  1794. }
  1795. },
  1796. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1797. "version": "0.14.10",
  1798. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1799. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1800. "hasInstallScript": true,
  1801. "license": "MIT",
  1802. "bin": {
  1803. "vue-demi-fix": "bin/vue-demi-fix.js",
  1804. "vue-demi-switch": "bin/vue-demi-switch.js"
  1805. },
  1806. "engines": {
  1807. "node": ">=12"
  1808. },
  1809. "funding": {
  1810. "url": "https://github.com/sponsors/antfu"
  1811. },
  1812. "peerDependencies": {
  1813. "@vue/composition-api": "^1.0.0-rc.1",
  1814. "vue": "^3.0.0-0 || ^2.6.0"
  1815. },
  1816. "peerDependenciesMeta": {
  1817. "@vue/composition-api": {
  1818. "optional": true
  1819. }
  1820. }
  1821. },
  1822. "node_modules/@vueuse/metadata": {
  1823. "version": "10.11.1",
  1824. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.11.1.tgz",
  1825. "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==",
  1826. "license": "MIT",
  1827. "funding": {
  1828. "url": "https://github.com/sponsors/antfu"
  1829. }
  1830. },
  1831. "node_modules/@vueuse/shared": {
  1832. "version": "10.11.1",
  1833. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-10.11.1.tgz",
  1834. "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==",
  1835. "license": "MIT",
  1836. "dependencies": {
  1837. "vue-demi": ">=0.14.8"
  1838. },
  1839. "funding": {
  1840. "url": "https://github.com/sponsors/antfu"
  1841. }
  1842. },
  1843. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1844. "version": "0.14.10",
  1845. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1846. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1847. "hasInstallScript": true,
  1848. "license": "MIT",
  1849. "bin": {
  1850. "vue-demi-fix": "bin/vue-demi-fix.js",
  1851. "vue-demi-switch": "bin/vue-demi-switch.js"
  1852. },
  1853. "engines": {
  1854. "node": ">=12"
  1855. },
  1856. "funding": {
  1857. "url": "https://github.com/sponsors/antfu"
  1858. },
  1859. "peerDependencies": {
  1860. "@vue/composition-api": "^1.0.0-rc.1",
  1861. "vue": "^3.0.0-0 || ^2.6.0"
  1862. },
  1863. "peerDependenciesMeta": {
  1864. "@vue/composition-api": {
  1865. "optional": true
  1866. }
  1867. }
  1868. },
  1869. "node_modules/async-validator": {
  1870. "version": "4.2.5",
  1871. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1872. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1873. "license": "MIT"
  1874. },
  1875. "node_modules/asynckit": {
  1876. "version": "0.4.0",
  1877. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1878. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1879. "license": "MIT"
  1880. },
  1881. "node_modules/autoprefixer": {
  1882. "version": "10.4.24",
  1883. "resolved": "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.24.tgz",
  1884. "integrity": "sha512-uHZg7N9ULTVbutaIsDRoUkoS8/h3bdsmVJYZ5l3wv8Cp/6UIIoRDm90hZ+BwxUj/hGBEzLxdHNSKuFpn8WOyZw==",
  1885. "dev": true,
  1886. "funding": [
  1887. {
  1888. "type": "opencollective",
  1889. "url": "https://opencollective.com/postcss/"
  1890. },
  1891. {
  1892. "type": "tidelift",
  1893. "url": "https://tidelift.com/funding/github/npm/autoprefixer"
  1894. },
  1895. {
  1896. "type": "github",
  1897. "url": "https://github.com/sponsors/ai"
  1898. }
  1899. ],
  1900. "license": "MIT",
  1901. "dependencies": {
  1902. "browserslist": "^4.28.1",
  1903. "caniuse-lite": "^1.0.30001766",
  1904. "fraction.js": "^5.3.4",
  1905. "picocolors": "^1.1.1",
  1906. "postcss-value-parser": "^4.2.0"
  1907. },
  1908. "bin": {
  1909. "autoprefixer": "bin/autoprefixer"
  1910. },
  1911. "engines": {
  1912. "node": "^10 || ^12 || >=14"
  1913. },
  1914. "peerDependencies": {
  1915. "postcss": "^8.1.0"
  1916. }
  1917. },
  1918. "node_modules/axios": {
  1919. "version": "1.13.4",
  1920. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.13.4.tgz",
  1921. "integrity": "sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==",
  1922. "license": "MIT",
  1923. "dependencies": {
  1924. "follow-redirects": "^1.15.6",
  1925. "form-data": "^4.0.4",
  1926. "proxy-from-env": "^1.1.0"
  1927. }
  1928. },
  1929. "node_modules/baseline-browser-mapping": {
  1930. "version": "2.9.19",
  1931. "resolved": "https://registry.npmmirror.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz",
  1932. "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
  1933. "dev": true,
  1934. "license": "Apache-2.0",
  1935. "bin": {
  1936. "baseline-browser-mapping": "dist/cli.js"
  1937. }
  1938. },
  1939. "node_modules/browserslist": {
  1940. "version": "4.28.1",
  1941. "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.28.1.tgz",
  1942. "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
  1943. "dev": true,
  1944. "funding": [
  1945. {
  1946. "type": "opencollective",
  1947. "url": "https://opencollective.com/browserslist"
  1948. },
  1949. {
  1950. "type": "tidelift",
  1951. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1952. },
  1953. {
  1954. "type": "github",
  1955. "url": "https://github.com/sponsors/ai"
  1956. }
  1957. ],
  1958. "license": "MIT",
  1959. "dependencies": {
  1960. "baseline-browser-mapping": "^2.9.0",
  1961. "caniuse-lite": "^1.0.30001759",
  1962. "electron-to-chromium": "^1.5.263",
  1963. "node-releases": "^2.0.27",
  1964. "update-browserslist-db": "^1.2.0"
  1965. },
  1966. "bin": {
  1967. "browserslist": "cli.js"
  1968. },
  1969. "engines": {
  1970. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1971. }
  1972. },
  1973. "node_modules/call-bind-apply-helpers": {
  1974. "version": "1.0.2",
  1975. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1976. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1977. "license": "MIT",
  1978. "dependencies": {
  1979. "es-errors": "^1.3.0",
  1980. "function-bind": "^1.1.2"
  1981. },
  1982. "engines": {
  1983. "node": ">= 0.4"
  1984. }
  1985. },
  1986. "node_modules/caniuse-lite": {
  1987. "version": "1.0.30001769",
  1988. "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001769.tgz",
  1989. "integrity": "sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==",
  1990. "dev": true,
  1991. "funding": [
  1992. {
  1993. "type": "opencollective",
  1994. "url": "https://opencollective.com/browserslist"
  1995. },
  1996. {
  1997. "type": "tidelift",
  1998. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1999. },
  2000. {
  2001. "type": "github",
  2002. "url": "https://github.com/sponsors/ai"
  2003. }
  2004. ],
  2005. "license": "CC-BY-4.0"
  2006. },
  2007. "node_modules/chokidar": {
  2008. "version": "4.0.3",
  2009. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
  2010. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  2011. "dev": true,
  2012. "license": "MIT",
  2013. "dependencies": {
  2014. "readdirp": "^4.0.1"
  2015. },
  2016. "engines": {
  2017. "node": ">= 14.16.0"
  2018. },
  2019. "funding": {
  2020. "url": "https://paulmillr.com/funding/"
  2021. }
  2022. },
  2023. "node_modules/combined-stream": {
  2024. "version": "1.0.8",
  2025. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  2026. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  2027. "license": "MIT",
  2028. "dependencies": {
  2029. "delayed-stream": "~1.0.0"
  2030. },
  2031. "engines": {
  2032. "node": ">= 0.8"
  2033. }
  2034. },
  2035. "node_modules/csstype": {
  2036. "version": "3.2.3",
  2037. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
  2038. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  2039. "license": "MIT"
  2040. },
  2041. "node_modules/dayjs": {
  2042. "version": "1.11.20",
  2043. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.20.tgz",
  2044. "integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==",
  2045. "license": "MIT"
  2046. },
  2047. "node_modules/delayed-stream": {
  2048. "version": "1.0.0",
  2049. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  2050. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  2051. "license": "MIT",
  2052. "engines": {
  2053. "node": ">=0.4.0"
  2054. }
  2055. },
  2056. "node_modules/detect-libc": {
  2057. "version": "2.1.2",
  2058. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  2059. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  2060. "dev": true,
  2061. "license": "Apache-2.0",
  2062. "engines": {
  2063. "node": ">=8"
  2064. }
  2065. },
  2066. "node_modules/dunder-proto": {
  2067. "version": "1.0.1",
  2068. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  2069. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  2070. "license": "MIT",
  2071. "dependencies": {
  2072. "call-bind-apply-helpers": "^1.0.1",
  2073. "es-errors": "^1.3.0",
  2074. "gopd": "^1.2.0"
  2075. },
  2076. "engines": {
  2077. "node": ">= 0.4"
  2078. }
  2079. },
  2080. "node_modules/electron-to-chromium": {
  2081. "version": "1.5.286",
  2082. "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz",
  2083. "integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
  2084. "dev": true,
  2085. "license": "ISC"
  2086. },
  2087. "node_modules/element-plus": {
  2088. "version": "2.13.2",
  2089. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.13.2.tgz",
  2090. "integrity": "sha512-Zjzm1NnFXGhV4LYZ6Ze9skPlYi2B4KAmN18FL63A3PZcjhDfroHwhtM6RE8BonlOPHXUnPQynH0BgaoEfvhrGw==",
  2091. "license": "MIT",
  2092. "dependencies": {
  2093. "@ctrl/tinycolor": "^3.4.1",
  2094. "@element-plus/icons-vue": "^2.3.2",
  2095. "@floating-ui/dom": "^1.0.1",
  2096. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  2097. "@types/lodash": "^4.17.20",
  2098. "@types/lodash-es": "^4.17.12",
  2099. "@vueuse/core": "^10.11.0",
  2100. "async-validator": "^4.2.5",
  2101. "dayjs": "^1.11.19",
  2102. "lodash": "^4.17.23",
  2103. "lodash-es": "^4.17.23",
  2104. "lodash-unified": "^1.0.3",
  2105. "memoize-one": "^6.0.0",
  2106. "normalize-wheel-es": "^1.2.0"
  2107. },
  2108. "peerDependencies": {
  2109. "vue": "^3.3.0"
  2110. }
  2111. },
  2112. "node_modules/enhanced-resolve": {
  2113. "version": "5.19.0",
  2114. "resolved": "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz",
  2115. "integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==",
  2116. "dev": true,
  2117. "license": "MIT",
  2118. "dependencies": {
  2119. "graceful-fs": "^4.2.4",
  2120. "tapable": "^2.3.0"
  2121. },
  2122. "engines": {
  2123. "node": ">=10.13.0"
  2124. }
  2125. },
  2126. "node_modules/entities": {
  2127. "version": "7.0.1",
  2128. "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
  2129. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  2130. "license": "BSD-2-Clause",
  2131. "engines": {
  2132. "node": ">=0.12"
  2133. },
  2134. "funding": {
  2135. "url": "https://github.com/fb55/entities?sponsor=1"
  2136. }
  2137. },
  2138. "node_modules/es-define-property": {
  2139. "version": "1.0.1",
  2140. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  2141. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  2142. "license": "MIT",
  2143. "engines": {
  2144. "node": ">= 0.4"
  2145. }
  2146. },
  2147. "node_modules/es-errors": {
  2148. "version": "1.3.0",
  2149. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  2150. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  2151. "license": "MIT",
  2152. "engines": {
  2153. "node": ">= 0.4"
  2154. }
  2155. },
  2156. "node_modules/es-object-atoms": {
  2157. "version": "1.1.1",
  2158. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  2159. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  2160. "license": "MIT",
  2161. "dependencies": {
  2162. "es-errors": "^1.3.0"
  2163. },
  2164. "engines": {
  2165. "node": ">= 0.4"
  2166. }
  2167. },
  2168. "node_modules/es-set-tostringtag": {
  2169. "version": "2.1.0",
  2170. "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  2171. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  2172. "license": "MIT",
  2173. "dependencies": {
  2174. "es-errors": "^1.3.0",
  2175. "get-intrinsic": "^1.2.6",
  2176. "has-tostringtag": "^1.0.2",
  2177. "hasown": "^2.0.2"
  2178. },
  2179. "engines": {
  2180. "node": ">= 0.4"
  2181. }
  2182. },
  2183. "node_modules/esbuild": {
  2184. "version": "0.27.2",
  2185. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.27.2.tgz",
  2186. "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
  2187. "dev": true,
  2188. "hasInstallScript": true,
  2189. "license": "MIT",
  2190. "bin": {
  2191. "esbuild": "bin/esbuild"
  2192. },
  2193. "engines": {
  2194. "node": ">=18"
  2195. },
  2196. "optionalDependencies": {
  2197. "@esbuild/aix-ppc64": "0.27.2",
  2198. "@esbuild/android-arm": "0.27.2",
  2199. "@esbuild/android-arm64": "0.27.2",
  2200. "@esbuild/android-x64": "0.27.2",
  2201. "@esbuild/darwin-arm64": "0.27.2",
  2202. "@esbuild/darwin-x64": "0.27.2",
  2203. "@esbuild/freebsd-arm64": "0.27.2",
  2204. "@esbuild/freebsd-x64": "0.27.2",
  2205. "@esbuild/linux-arm": "0.27.2",
  2206. "@esbuild/linux-arm64": "0.27.2",
  2207. "@esbuild/linux-ia32": "0.27.2",
  2208. "@esbuild/linux-loong64": "0.27.2",
  2209. "@esbuild/linux-mips64el": "0.27.2",
  2210. "@esbuild/linux-ppc64": "0.27.2",
  2211. "@esbuild/linux-riscv64": "0.27.2",
  2212. "@esbuild/linux-s390x": "0.27.2",
  2213. "@esbuild/linux-x64": "0.27.2",
  2214. "@esbuild/netbsd-arm64": "0.27.2",
  2215. "@esbuild/netbsd-x64": "0.27.2",
  2216. "@esbuild/openbsd-arm64": "0.27.2",
  2217. "@esbuild/openbsd-x64": "0.27.2",
  2218. "@esbuild/openharmony-arm64": "0.27.2",
  2219. "@esbuild/sunos-x64": "0.27.2",
  2220. "@esbuild/win32-arm64": "0.27.2",
  2221. "@esbuild/win32-ia32": "0.27.2",
  2222. "@esbuild/win32-x64": "0.27.2"
  2223. }
  2224. },
  2225. "node_modules/escalade": {
  2226. "version": "3.2.0",
  2227. "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz",
  2228. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  2229. "dev": true,
  2230. "license": "MIT",
  2231. "engines": {
  2232. "node": ">=6"
  2233. }
  2234. },
  2235. "node_modules/estree-walker": {
  2236. "version": "2.0.2",
  2237. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  2238. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  2239. "license": "MIT"
  2240. },
  2241. "node_modules/fdir": {
  2242. "version": "6.5.0",
  2243. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
  2244. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  2245. "dev": true,
  2246. "license": "MIT",
  2247. "engines": {
  2248. "node": ">=12.0.0"
  2249. },
  2250. "peerDependencies": {
  2251. "picomatch": "^3 || ^4"
  2252. },
  2253. "peerDependenciesMeta": {
  2254. "picomatch": {
  2255. "optional": true
  2256. }
  2257. }
  2258. },
  2259. "node_modules/follow-redirects": {
  2260. "version": "1.15.11",
  2261. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.11.tgz",
  2262. "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
  2263. "funding": [
  2264. {
  2265. "type": "individual",
  2266. "url": "https://github.com/sponsors/RubenVerborgh"
  2267. }
  2268. ],
  2269. "license": "MIT",
  2270. "engines": {
  2271. "node": ">=4.0"
  2272. },
  2273. "peerDependenciesMeta": {
  2274. "debug": {
  2275. "optional": true
  2276. }
  2277. }
  2278. },
  2279. "node_modules/form-data": {
  2280. "version": "4.0.5",
  2281. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz",
  2282. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  2283. "license": "MIT",
  2284. "dependencies": {
  2285. "asynckit": "^0.4.0",
  2286. "combined-stream": "^1.0.8",
  2287. "es-set-tostringtag": "^2.1.0",
  2288. "hasown": "^2.0.2",
  2289. "mime-types": "^2.1.12"
  2290. },
  2291. "engines": {
  2292. "node": ">= 6"
  2293. }
  2294. },
  2295. "node_modules/fraction.js": {
  2296. "version": "5.3.4",
  2297. "resolved": "https://registry.npmmirror.com/fraction.js/-/fraction.js-5.3.4.tgz",
  2298. "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
  2299. "dev": true,
  2300. "license": "MIT",
  2301. "engines": {
  2302. "node": "*"
  2303. },
  2304. "funding": {
  2305. "type": "github",
  2306. "url": "https://github.com/sponsors/rawify"
  2307. }
  2308. },
  2309. "node_modules/fsevents": {
  2310. "version": "2.3.3",
  2311. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  2312. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  2313. "dev": true,
  2314. "hasInstallScript": true,
  2315. "license": "MIT",
  2316. "optional": true,
  2317. "os": [
  2318. "darwin"
  2319. ],
  2320. "engines": {
  2321. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  2322. }
  2323. },
  2324. "node_modules/function-bind": {
  2325. "version": "1.1.2",
  2326. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  2327. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  2328. "license": "MIT",
  2329. "funding": {
  2330. "url": "https://github.com/sponsors/ljharb"
  2331. }
  2332. },
  2333. "node_modules/get-intrinsic": {
  2334. "version": "1.3.0",
  2335. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  2336. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  2337. "license": "MIT",
  2338. "dependencies": {
  2339. "call-bind-apply-helpers": "^1.0.2",
  2340. "es-define-property": "^1.0.1",
  2341. "es-errors": "^1.3.0",
  2342. "es-object-atoms": "^1.1.1",
  2343. "function-bind": "^1.1.2",
  2344. "get-proto": "^1.0.1",
  2345. "gopd": "^1.2.0",
  2346. "has-symbols": "^1.1.0",
  2347. "hasown": "^2.0.2",
  2348. "math-intrinsics": "^1.1.0"
  2349. },
  2350. "engines": {
  2351. "node": ">= 0.4"
  2352. },
  2353. "funding": {
  2354. "url": "https://github.com/sponsors/ljharb"
  2355. }
  2356. },
  2357. "node_modules/get-proto": {
  2358. "version": "1.0.1",
  2359. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  2360. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  2361. "license": "MIT",
  2362. "dependencies": {
  2363. "dunder-proto": "^1.0.1",
  2364. "es-object-atoms": "^1.0.0"
  2365. },
  2366. "engines": {
  2367. "node": ">= 0.4"
  2368. }
  2369. },
  2370. "node_modules/gopd": {
  2371. "version": "1.2.0",
  2372. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  2373. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  2374. "license": "MIT",
  2375. "engines": {
  2376. "node": ">= 0.4"
  2377. },
  2378. "funding": {
  2379. "url": "https://github.com/sponsors/ljharb"
  2380. }
  2381. },
  2382. "node_modules/graceful-fs": {
  2383. "version": "4.2.11",
  2384. "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
  2385. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  2386. "dev": true,
  2387. "license": "ISC"
  2388. },
  2389. "node_modules/has-symbols": {
  2390. "version": "1.1.0",
  2391. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  2392. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  2393. "license": "MIT",
  2394. "engines": {
  2395. "node": ">= 0.4"
  2396. },
  2397. "funding": {
  2398. "url": "https://github.com/sponsors/ljharb"
  2399. }
  2400. },
  2401. "node_modules/has-tostringtag": {
  2402. "version": "1.0.2",
  2403. "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  2404. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  2405. "license": "MIT",
  2406. "dependencies": {
  2407. "has-symbols": "^1.0.3"
  2408. },
  2409. "engines": {
  2410. "node": ">= 0.4"
  2411. },
  2412. "funding": {
  2413. "url": "https://github.com/sponsors/ljharb"
  2414. }
  2415. },
  2416. "node_modules/hasown": {
  2417. "version": "2.0.2",
  2418. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
  2419. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  2420. "license": "MIT",
  2421. "dependencies": {
  2422. "function-bind": "^1.1.2"
  2423. },
  2424. "engines": {
  2425. "node": ">= 0.4"
  2426. }
  2427. },
  2428. "node_modules/immutable": {
  2429. "version": "5.1.4",
  2430. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.4.tgz",
  2431. "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==",
  2432. "dev": true,
  2433. "license": "MIT"
  2434. },
  2435. "node_modules/is-extglob": {
  2436. "version": "2.1.1",
  2437. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  2438. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  2439. "dev": true,
  2440. "license": "MIT",
  2441. "optional": true,
  2442. "engines": {
  2443. "node": ">=0.10.0"
  2444. }
  2445. },
  2446. "node_modules/is-glob": {
  2447. "version": "4.0.3",
  2448. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  2449. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  2450. "dev": true,
  2451. "license": "MIT",
  2452. "optional": true,
  2453. "dependencies": {
  2454. "is-extglob": "^2.1.1"
  2455. },
  2456. "engines": {
  2457. "node": ">=0.10.0"
  2458. }
  2459. },
  2460. "node_modules/jiti": {
  2461. "version": "2.6.1",
  2462. "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz",
  2463. "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
  2464. "dev": true,
  2465. "license": "MIT",
  2466. "bin": {
  2467. "jiti": "lib/jiti-cli.mjs"
  2468. }
  2469. },
  2470. "node_modules/lightningcss": {
  2471. "version": "1.30.2",
  2472. "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.30.2.tgz",
  2473. "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
  2474. "dev": true,
  2475. "license": "MPL-2.0",
  2476. "dependencies": {
  2477. "detect-libc": "^2.0.3"
  2478. },
  2479. "engines": {
  2480. "node": ">= 12.0.0"
  2481. },
  2482. "funding": {
  2483. "type": "opencollective",
  2484. "url": "https://opencollective.com/parcel"
  2485. },
  2486. "optionalDependencies": {
  2487. "lightningcss-android-arm64": "1.30.2",
  2488. "lightningcss-darwin-arm64": "1.30.2",
  2489. "lightningcss-darwin-x64": "1.30.2",
  2490. "lightningcss-freebsd-x64": "1.30.2",
  2491. "lightningcss-linux-arm-gnueabihf": "1.30.2",
  2492. "lightningcss-linux-arm64-gnu": "1.30.2",
  2493. "lightningcss-linux-arm64-musl": "1.30.2",
  2494. "lightningcss-linux-x64-gnu": "1.30.2",
  2495. "lightningcss-linux-x64-musl": "1.30.2",
  2496. "lightningcss-win32-arm64-msvc": "1.30.2",
  2497. "lightningcss-win32-x64-msvc": "1.30.2"
  2498. }
  2499. },
  2500. "node_modules/lightningcss-android-arm64": {
  2501. "version": "1.30.2",
  2502. "resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
  2503. "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
  2504. "cpu": [
  2505. "arm64"
  2506. ],
  2507. "dev": true,
  2508. "license": "MPL-2.0",
  2509. "optional": true,
  2510. "os": [
  2511. "android"
  2512. ],
  2513. "engines": {
  2514. "node": ">= 12.0.0"
  2515. },
  2516. "funding": {
  2517. "type": "opencollective",
  2518. "url": "https://opencollective.com/parcel"
  2519. }
  2520. },
  2521. "node_modules/lightningcss-darwin-arm64": {
  2522. "version": "1.30.2",
  2523. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
  2524. "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
  2525. "cpu": [
  2526. "arm64"
  2527. ],
  2528. "dev": true,
  2529. "license": "MPL-2.0",
  2530. "optional": true,
  2531. "os": [
  2532. "darwin"
  2533. ],
  2534. "engines": {
  2535. "node": ">= 12.0.0"
  2536. },
  2537. "funding": {
  2538. "type": "opencollective",
  2539. "url": "https://opencollective.com/parcel"
  2540. }
  2541. },
  2542. "node_modules/lightningcss-darwin-x64": {
  2543. "version": "1.30.2",
  2544. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
  2545. "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
  2546. "cpu": [
  2547. "x64"
  2548. ],
  2549. "dev": true,
  2550. "license": "MPL-2.0",
  2551. "optional": true,
  2552. "os": [
  2553. "darwin"
  2554. ],
  2555. "engines": {
  2556. "node": ">= 12.0.0"
  2557. },
  2558. "funding": {
  2559. "type": "opencollective",
  2560. "url": "https://opencollective.com/parcel"
  2561. }
  2562. },
  2563. "node_modules/lightningcss-freebsd-x64": {
  2564. "version": "1.30.2",
  2565. "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
  2566. "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
  2567. "cpu": [
  2568. "x64"
  2569. ],
  2570. "dev": true,
  2571. "license": "MPL-2.0",
  2572. "optional": true,
  2573. "os": [
  2574. "freebsd"
  2575. ],
  2576. "engines": {
  2577. "node": ">= 12.0.0"
  2578. },
  2579. "funding": {
  2580. "type": "opencollective",
  2581. "url": "https://opencollective.com/parcel"
  2582. }
  2583. },
  2584. "node_modules/lightningcss-linux-arm-gnueabihf": {
  2585. "version": "1.30.2",
  2586. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
  2587. "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
  2588. "cpu": [
  2589. "arm"
  2590. ],
  2591. "dev": true,
  2592. "license": "MPL-2.0",
  2593. "optional": true,
  2594. "os": [
  2595. "linux"
  2596. ],
  2597. "engines": {
  2598. "node": ">= 12.0.0"
  2599. },
  2600. "funding": {
  2601. "type": "opencollective",
  2602. "url": "https://opencollective.com/parcel"
  2603. }
  2604. },
  2605. "node_modules/lightningcss-linux-arm64-gnu": {
  2606. "version": "1.30.2",
  2607. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
  2608. "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
  2609. "cpu": [
  2610. "arm64"
  2611. ],
  2612. "dev": true,
  2613. "license": "MPL-2.0",
  2614. "optional": true,
  2615. "os": [
  2616. "linux"
  2617. ],
  2618. "engines": {
  2619. "node": ">= 12.0.0"
  2620. },
  2621. "funding": {
  2622. "type": "opencollective",
  2623. "url": "https://opencollective.com/parcel"
  2624. }
  2625. },
  2626. "node_modules/lightningcss-linux-arm64-musl": {
  2627. "version": "1.30.2",
  2628. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
  2629. "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
  2630. "cpu": [
  2631. "arm64"
  2632. ],
  2633. "dev": true,
  2634. "license": "MPL-2.0",
  2635. "optional": true,
  2636. "os": [
  2637. "linux"
  2638. ],
  2639. "engines": {
  2640. "node": ">= 12.0.0"
  2641. },
  2642. "funding": {
  2643. "type": "opencollective",
  2644. "url": "https://opencollective.com/parcel"
  2645. }
  2646. },
  2647. "node_modules/lightningcss-linux-x64-gnu": {
  2648. "version": "1.30.2",
  2649. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
  2650. "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
  2651. "cpu": [
  2652. "x64"
  2653. ],
  2654. "dev": true,
  2655. "license": "MPL-2.0",
  2656. "optional": true,
  2657. "os": [
  2658. "linux"
  2659. ],
  2660. "engines": {
  2661. "node": ">= 12.0.0"
  2662. },
  2663. "funding": {
  2664. "type": "opencollective",
  2665. "url": "https://opencollective.com/parcel"
  2666. }
  2667. },
  2668. "node_modules/lightningcss-linux-x64-musl": {
  2669. "version": "1.30.2",
  2670. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
  2671. "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
  2672. "cpu": [
  2673. "x64"
  2674. ],
  2675. "dev": true,
  2676. "license": "MPL-2.0",
  2677. "optional": true,
  2678. "os": [
  2679. "linux"
  2680. ],
  2681. "engines": {
  2682. "node": ">= 12.0.0"
  2683. },
  2684. "funding": {
  2685. "type": "opencollective",
  2686. "url": "https://opencollective.com/parcel"
  2687. }
  2688. },
  2689. "node_modules/lightningcss-win32-arm64-msvc": {
  2690. "version": "1.30.2",
  2691. "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
  2692. "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
  2693. "cpu": [
  2694. "arm64"
  2695. ],
  2696. "dev": true,
  2697. "license": "MPL-2.0",
  2698. "optional": true,
  2699. "os": [
  2700. "win32"
  2701. ],
  2702. "engines": {
  2703. "node": ">= 12.0.0"
  2704. },
  2705. "funding": {
  2706. "type": "opencollective",
  2707. "url": "https://opencollective.com/parcel"
  2708. }
  2709. },
  2710. "node_modules/lightningcss-win32-x64-msvc": {
  2711. "version": "1.30.2",
  2712. "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
  2713. "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
  2714. "cpu": [
  2715. "x64"
  2716. ],
  2717. "dev": true,
  2718. "license": "MPL-2.0",
  2719. "optional": true,
  2720. "os": [
  2721. "win32"
  2722. ],
  2723. "engines": {
  2724. "node": ">= 12.0.0"
  2725. },
  2726. "funding": {
  2727. "type": "opencollective",
  2728. "url": "https://opencollective.com/parcel"
  2729. }
  2730. },
  2731. "node_modules/lodash": {
  2732. "version": "4.17.23",
  2733. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.23.tgz",
  2734. "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
  2735. "license": "MIT"
  2736. },
  2737. "node_modules/lodash-es": {
  2738. "version": "4.17.23",
  2739. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.23.tgz",
  2740. "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
  2741. "license": "MIT"
  2742. },
  2743. "node_modules/lodash-unified": {
  2744. "version": "1.0.3",
  2745. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  2746. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  2747. "license": "MIT",
  2748. "peerDependencies": {
  2749. "@types/lodash-es": "*",
  2750. "lodash": "*",
  2751. "lodash-es": "*"
  2752. }
  2753. },
  2754. "node_modules/magic-string": {
  2755. "version": "0.30.21",
  2756. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
  2757. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  2758. "license": "MIT",
  2759. "dependencies": {
  2760. "@jridgewell/sourcemap-codec": "^1.5.5"
  2761. }
  2762. },
  2763. "node_modules/math-intrinsics": {
  2764. "version": "1.1.0",
  2765. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2766. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2767. "license": "MIT",
  2768. "engines": {
  2769. "node": ">= 0.4"
  2770. }
  2771. },
  2772. "node_modules/memoize-one": {
  2773. "version": "6.0.0",
  2774. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  2775. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2776. "license": "MIT"
  2777. },
  2778. "node_modules/mime-db": {
  2779. "version": "1.52.0",
  2780. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  2781. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2782. "license": "MIT",
  2783. "engines": {
  2784. "node": ">= 0.6"
  2785. }
  2786. },
  2787. "node_modules/mime-types": {
  2788. "version": "2.1.35",
  2789. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  2790. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2791. "license": "MIT",
  2792. "dependencies": {
  2793. "mime-db": "1.52.0"
  2794. },
  2795. "engines": {
  2796. "node": ">= 0.6"
  2797. }
  2798. },
  2799. "node_modules/nanoid": {
  2800. "version": "3.3.11",
  2801. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
  2802. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2803. "funding": [
  2804. {
  2805. "type": "github",
  2806. "url": "https://github.com/sponsors/ai"
  2807. }
  2808. ],
  2809. "license": "MIT",
  2810. "bin": {
  2811. "nanoid": "bin/nanoid.cjs"
  2812. },
  2813. "engines": {
  2814. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2815. }
  2816. },
  2817. "node_modules/node-addon-api": {
  2818. "version": "7.1.1",
  2819. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2820. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2821. "dev": true,
  2822. "license": "MIT",
  2823. "optional": true
  2824. },
  2825. "node_modules/node-releases": {
  2826. "version": "2.0.27",
  2827. "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.27.tgz",
  2828. "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
  2829. "dev": true,
  2830. "license": "MIT"
  2831. },
  2832. "node_modules/normalize-wheel-es": {
  2833. "version": "1.2.0",
  2834. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2835. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2836. "license": "BSD-3-Clause"
  2837. },
  2838. "node_modules/picocolors": {
  2839. "version": "1.1.1",
  2840. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  2841. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2842. "license": "ISC"
  2843. },
  2844. "node_modules/picomatch": {
  2845. "version": "4.0.3",
  2846. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz",
  2847. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  2848. "dev": true,
  2849. "license": "MIT",
  2850. "engines": {
  2851. "node": ">=12"
  2852. },
  2853. "funding": {
  2854. "url": "https://github.com/sponsors/jonschlinkert"
  2855. }
  2856. },
  2857. "node_modules/postcss": {
  2858. "version": "8.5.6",
  2859. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz",
  2860. "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
  2861. "funding": [
  2862. {
  2863. "type": "opencollective",
  2864. "url": "https://opencollective.com/postcss/"
  2865. },
  2866. {
  2867. "type": "tidelift",
  2868. "url": "https://tidelift.com/funding/github/npm/postcss"
  2869. },
  2870. {
  2871. "type": "github",
  2872. "url": "https://github.com/sponsors/ai"
  2873. }
  2874. ],
  2875. "license": "MIT",
  2876. "dependencies": {
  2877. "nanoid": "^3.3.11",
  2878. "picocolors": "^1.1.1",
  2879. "source-map-js": "^1.2.1"
  2880. },
  2881. "engines": {
  2882. "node": "^10 || ^12 || >=14"
  2883. }
  2884. },
  2885. "node_modules/postcss-value-parser": {
  2886. "version": "4.2.0",
  2887. "resolved": "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  2888. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
  2889. "dev": true,
  2890. "license": "MIT"
  2891. },
  2892. "node_modules/proxy-from-env": {
  2893. "version": "1.1.0",
  2894. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  2895. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
  2896. "license": "MIT"
  2897. },
  2898. "node_modules/readdirp": {
  2899. "version": "4.1.2",
  2900. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz",
  2901. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  2902. "dev": true,
  2903. "license": "MIT",
  2904. "engines": {
  2905. "node": ">= 14.18.0"
  2906. },
  2907. "funding": {
  2908. "type": "individual",
  2909. "url": "https://paulmillr.com/funding/"
  2910. }
  2911. },
  2912. "node_modules/rollup": {
  2913. "version": "4.57.1",
  2914. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.57.1.tgz",
  2915. "integrity": "sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==",
  2916. "dev": true,
  2917. "license": "MIT",
  2918. "dependencies": {
  2919. "@types/estree": "1.0.8"
  2920. },
  2921. "bin": {
  2922. "rollup": "dist/bin/rollup"
  2923. },
  2924. "engines": {
  2925. "node": ">=18.0.0",
  2926. "npm": ">=8.0.0"
  2927. },
  2928. "optionalDependencies": {
  2929. "@rollup/rollup-android-arm-eabi": "4.57.1",
  2930. "@rollup/rollup-android-arm64": "4.57.1",
  2931. "@rollup/rollup-darwin-arm64": "4.57.1",
  2932. "@rollup/rollup-darwin-x64": "4.57.1",
  2933. "@rollup/rollup-freebsd-arm64": "4.57.1",
  2934. "@rollup/rollup-freebsd-x64": "4.57.1",
  2935. "@rollup/rollup-linux-arm-gnueabihf": "4.57.1",
  2936. "@rollup/rollup-linux-arm-musleabihf": "4.57.1",
  2937. "@rollup/rollup-linux-arm64-gnu": "4.57.1",
  2938. "@rollup/rollup-linux-arm64-musl": "4.57.1",
  2939. "@rollup/rollup-linux-loong64-gnu": "4.57.1",
  2940. "@rollup/rollup-linux-loong64-musl": "4.57.1",
  2941. "@rollup/rollup-linux-ppc64-gnu": "4.57.1",
  2942. "@rollup/rollup-linux-ppc64-musl": "4.57.1",
  2943. "@rollup/rollup-linux-riscv64-gnu": "4.57.1",
  2944. "@rollup/rollup-linux-riscv64-musl": "4.57.1",
  2945. "@rollup/rollup-linux-s390x-gnu": "4.57.1",
  2946. "@rollup/rollup-linux-x64-gnu": "4.57.1",
  2947. "@rollup/rollup-linux-x64-musl": "4.57.1",
  2948. "@rollup/rollup-openbsd-x64": "4.57.1",
  2949. "@rollup/rollup-openharmony-arm64": "4.57.1",
  2950. "@rollup/rollup-win32-arm64-msvc": "4.57.1",
  2951. "@rollup/rollup-win32-ia32-msvc": "4.57.1",
  2952. "@rollup/rollup-win32-x64-gnu": "4.57.1",
  2953. "@rollup/rollup-win32-x64-msvc": "4.57.1",
  2954. "fsevents": "~2.3.2"
  2955. }
  2956. },
  2957. "node_modules/sass": {
  2958. "version": "1.97.3",
  2959. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.97.3.tgz",
  2960. "integrity": "sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==",
  2961. "dev": true,
  2962. "license": "MIT",
  2963. "dependencies": {
  2964. "chokidar": "^4.0.0",
  2965. "immutable": "^5.0.2",
  2966. "source-map-js": ">=0.6.2 <2.0.0"
  2967. },
  2968. "bin": {
  2969. "sass": "sass.js"
  2970. },
  2971. "engines": {
  2972. "node": ">=14.0.0"
  2973. },
  2974. "optionalDependencies": {
  2975. "@parcel/watcher": "^2.4.1"
  2976. }
  2977. },
  2978. "node_modules/source-map-js": {
  2979. "version": "1.2.1",
  2980. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  2981. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2982. "license": "BSD-3-Clause",
  2983. "engines": {
  2984. "node": ">=0.10.0"
  2985. }
  2986. },
  2987. "node_modules/tailwindcss": {
  2988. "version": "4.1.18",
  2989. "resolved": "https://registry.npmmirror.com/tailwindcss/-/tailwindcss-4.1.18.tgz",
  2990. "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
  2991. "dev": true,
  2992. "license": "MIT"
  2993. },
  2994. "node_modules/tapable": {
  2995. "version": "2.3.0",
  2996. "resolved": "https://registry.npmmirror.com/tapable/-/tapable-2.3.0.tgz",
  2997. "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
  2998. "dev": true,
  2999. "license": "MIT",
  3000. "engines": {
  3001. "node": ">=6"
  3002. },
  3003. "funding": {
  3004. "type": "opencollective",
  3005. "url": "https://opencollective.com/webpack"
  3006. }
  3007. },
  3008. "node_modules/tinyglobby": {
  3009. "version": "0.2.15",
  3010. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz",
  3011. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  3012. "dev": true,
  3013. "license": "MIT",
  3014. "dependencies": {
  3015. "fdir": "^6.5.0",
  3016. "picomatch": "^4.0.3"
  3017. },
  3018. "engines": {
  3019. "node": ">=12.0.0"
  3020. },
  3021. "funding": {
  3022. "url": "https://github.com/sponsors/SuperchupuDev"
  3023. }
  3024. },
  3025. "node_modules/update-browserslist-db": {
  3026. "version": "1.2.3",
  3027. "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
  3028. "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
  3029. "dev": true,
  3030. "funding": [
  3031. {
  3032. "type": "opencollective",
  3033. "url": "https://opencollective.com/browserslist"
  3034. },
  3035. {
  3036. "type": "tidelift",
  3037. "url": "https://tidelift.com/funding/github/npm/browserslist"
  3038. },
  3039. {
  3040. "type": "github",
  3041. "url": "https://github.com/sponsors/ai"
  3042. }
  3043. ],
  3044. "license": "MIT",
  3045. "dependencies": {
  3046. "escalade": "^3.2.0",
  3047. "picocolors": "^1.1.1"
  3048. },
  3049. "bin": {
  3050. "update-browserslist-db": "cli.js"
  3051. },
  3052. "peerDependencies": {
  3053. "browserslist": ">= 4.21.0"
  3054. }
  3055. },
  3056. "node_modules/vite": {
  3057. "version": "7.3.1",
  3058. "resolved": "https://registry.npmmirror.com/vite/-/vite-7.3.1.tgz",
  3059. "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
  3060. "dev": true,
  3061. "license": "MIT",
  3062. "dependencies": {
  3063. "esbuild": "^0.27.0",
  3064. "fdir": "^6.5.0",
  3065. "picomatch": "^4.0.3",
  3066. "postcss": "^8.5.6",
  3067. "rollup": "^4.43.0",
  3068. "tinyglobby": "^0.2.15"
  3069. },
  3070. "bin": {
  3071. "vite": "bin/vite.js"
  3072. },
  3073. "engines": {
  3074. "node": "^20.19.0 || >=22.12.0"
  3075. },
  3076. "funding": {
  3077. "url": "https://github.com/vitejs/vite?sponsor=1"
  3078. },
  3079. "optionalDependencies": {
  3080. "fsevents": "~2.3.3"
  3081. },
  3082. "peerDependencies": {
  3083. "@types/node": "^20.19.0 || >=22.12.0",
  3084. "jiti": ">=1.21.0",
  3085. "less": "^4.0.0",
  3086. "lightningcss": "^1.21.0",
  3087. "sass": "^1.70.0",
  3088. "sass-embedded": "^1.70.0",
  3089. "stylus": ">=0.54.8",
  3090. "sugarss": "^5.0.0",
  3091. "terser": "^5.16.0",
  3092. "tsx": "^4.8.1",
  3093. "yaml": "^2.4.2"
  3094. },
  3095. "peerDependenciesMeta": {
  3096. "@types/node": {
  3097. "optional": true
  3098. },
  3099. "jiti": {
  3100. "optional": true
  3101. },
  3102. "less": {
  3103. "optional": true
  3104. },
  3105. "lightningcss": {
  3106. "optional": true
  3107. },
  3108. "sass": {
  3109. "optional": true
  3110. },
  3111. "sass-embedded": {
  3112. "optional": true
  3113. },
  3114. "stylus": {
  3115. "optional": true
  3116. },
  3117. "sugarss": {
  3118. "optional": true
  3119. },
  3120. "terser": {
  3121. "optional": true
  3122. },
  3123. "tsx": {
  3124. "optional": true
  3125. },
  3126. "yaml": {
  3127. "optional": true
  3128. }
  3129. }
  3130. },
  3131. "node_modules/vue": {
  3132. "version": "3.5.27",
  3133. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.27.tgz",
  3134. "integrity": "sha512-aJ/UtoEyFySPBGarREmN4z6qNKpbEguYHMmXSiOGk69czc+zhs0NF6tEFrY8TZKAl8N/LYAkd4JHVd5E/AsSmw==",
  3135. "license": "MIT",
  3136. "dependencies": {
  3137. "@vue/compiler-dom": "3.5.27",
  3138. "@vue/compiler-sfc": "3.5.27",
  3139. "@vue/runtime-dom": "3.5.27",
  3140. "@vue/server-renderer": "3.5.27",
  3141. "@vue/shared": "3.5.27"
  3142. },
  3143. "peerDependencies": {
  3144. "typescript": "*"
  3145. },
  3146. "peerDependenciesMeta": {
  3147. "typescript": {
  3148. "optional": true
  3149. }
  3150. }
  3151. },
  3152. "node_modules/vue-router": {
  3153. "version": "4.6.4",
  3154. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz",
  3155. "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
  3156. "license": "MIT",
  3157. "dependencies": {
  3158. "@vue/devtools-api": "^6.6.4"
  3159. },
  3160. "funding": {
  3161. "url": "https://github.com/sponsors/posva"
  3162. },
  3163. "peerDependencies": {
  3164. "vue": "^3.5.0"
  3165. }
  3166. }
  3167. }
  3168. }