package-lock.json 98 KB

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