package-lock.json 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. {
  2. "name": "adelapp",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "adelapp",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "vue": "^3.5.31"
  12. },
  13. "devDependencies": {
  14. "@vitejs/plugin-vue": "^6.0.5",
  15. "vite": "^8.0.3",
  16. "vite-plugin-vue-devtools": "^8.1.1"
  17. },
  18. "engines": {
  19. "node": "^20.19.0 || >=22.12.0"
  20. }
  21. },
  22. "node_modules/@babel/code-frame": {
  23. "version": "7.29.0",
  24. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
  25. "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
  26. "dev": true,
  27. "license": "MIT",
  28. "dependencies": {
  29. "@babel/helper-validator-identifier": "^7.28.5",
  30. "js-tokens": "^4.0.0",
  31. "picocolors": "^1.1.1"
  32. },
  33. "engines": {
  34. "node": ">=6.9.0"
  35. }
  36. },
  37. "node_modules/@babel/compat-data": {
  38. "version": "7.29.0",
  39. "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
  40. "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
  41. "dev": true,
  42. "license": "MIT",
  43. "engines": {
  44. "node": ">=6.9.0"
  45. }
  46. },
  47. "node_modules/@babel/core": {
  48. "version": "7.29.0",
  49. "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
  50. "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
  51. "dev": true,
  52. "license": "MIT",
  53. "dependencies": {
  54. "@babel/code-frame": "^7.29.0",
  55. "@babel/generator": "^7.29.0",
  56. "@babel/helper-compilation-targets": "^7.28.6",
  57. "@babel/helper-module-transforms": "^7.28.6",
  58. "@babel/helpers": "^7.28.6",
  59. "@babel/parser": "^7.29.0",
  60. "@babel/template": "^7.28.6",
  61. "@babel/traverse": "^7.29.0",
  62. "@babel/types": "^7.29.0",
  63. "@jridgewell/remapping": "^2.3.5",
  64. "convert-source-map": "^2.0.0",
  65. "debug": "^4.1.0",
  66. "gensync": "^1.0.0-beta.2",
  67. "json5": "^2.2.3",
  68. "semver": "^6.3.1"
  69. },
  70. "engines": {
  71. "node": ">=6.9.0"
  72. },
  73. "funding": {
  74. "type": "opencollective",
  75. "url": "https://opencollective.com/babel"
  76. }
  77. },
  78. "node_modules/@babel/generator": {
  79. "version": "7.29.1",
  80. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
  81. "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
  82. "dev": true,
  83. "license": "MIT",
  84. "dependencies": {
  85. "@babel/parser": "^7.29.0",
  86. "@babel/types": "^7.29.0",
  87. "@jridgewell/gen-mapping": "^0.3.12",
  88. "@jridgewell/trace-mapping": "^0.3.28",
  89. "jsesc": "^3.0.2"
  90. },
  91. "engines": {
  92. "node": ">=6.9.0"
  93. }
  94. },
  95. "node_modules/@babel/helper-annotate-as-pure": {
  96. "version": "7.27.3",
  97. "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz",
  98. "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==",
  99. "dev": true,
  100. "license": "MIT",
  101. "dependencies": {
  102. "@babel/types": "^7.27.3"
  103. },
  104. "engines": {
  105. "node": ">=6.9.0"
  106. }
  107. },
  108. "node_modules/@babel/helper-compilation-targets": {
  109. "version": "7.28.6",
  110. "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
  111. "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
  112. "dev": true,
  113. "license": "MIT",
  114. "dependencies": {
  115. "@babel/compat-data": "^7.28.6",
  116. "@babel/helper-validator-option": "^7.27.1",
  117. "browserslist": "^4.24.0",
  118. "lru-cache": "^5.1.1",
  119. "semver": "^6.3.1"
  120. },
  121. "engines": {
  122. "node": ">=6.9.0"
  123. }
  124. },
  125. "node_modules/@babel/helper-create-class-features-plugin": {
  126. "version": "7.28.6",
  127. "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz",
  128. "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==",
  129. "dev": true,
  130. "license": "MIT",
  131. "dependencies": {
  132. "@babel/helper-annotate-as-pure": "^7.27.3",
  133. "@babel/helper-member-expression-to-functions": "^7.28.5",
  134. "@babel/helper-optimise-call-expression": "^7.27.1",
  135. "@babel/helper-replace-supers": "^7.28.6",
  136. "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
  137. "@babel/traverse": "^7.28.6",
  138. "semver": "^6.3.1"
  139. },
  140. "engines": {
  141. "node": ">=6.9.0"
  142. },
  143. "peerDependencies": {
  144. "@babel/core": "^7.0.0"
  145. }
  146. },
  147. "node_modules/@babel/helper-globals": {
  148. "version": "7.28.0",
  149. "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
  150. "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
  151. "dev": true,
  152. "license": "MIT",
  153. "engines": {
  154. "node": ">=6.9.0"
  155. }
  156. },
  157. "node_modules/@babel/helper-member-expression-to-functions": {
  158. "version": "7.28.5",
  159. "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz",
  160. "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==",
  161. "dev": true,
  162. "license": "MIT",
  163. "dependencies": {
  164. "@babel/traverse": "^7.28.5",
  165. "@babel/types": "^7.28.5"
  166. },
  167. "engines": {
  168. "node": ">=6.9.0"
  169. }
  170. },
  171. "node_modules/@babel/helper-module-imports": {
  172. "version": "7.28.6",
  173. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
  174. "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
  175. "dev": true,
  176. "license": "MIT",
  177. "dependencies": {
  178. "@babel/traverse": "^7.28.6",
  179. "@babel/types": "^7.28.6"
  180. },
  181. "engines": {
  182. "node": ">=6.9.0"
  183. }
  184. },
  185. "node_modules/@babel/helper-module-transforms": {
  186. "version": "7.28.6",
  187. "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
  188. "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
  189. "dev": true,
  190. "license": "MIT",
  191. "dependencies": {
  192. "@babel/helper-module-imports": "^7.28.6",
  193. "@babel/helper-validator-identifier": "^7.28.5",
  194. "@babel/traverse": "^7.28.6"
  195. },
  196. "engines": {
  197. "node": ">=6.9.0"
  198. },
  199. "peerDependencies": {
  200. "@babel/core": "^7.0.0"
  201. }
  202. },
  203. "node_modules/@babel/helper-optimise-call-expression": {
  204. "version": "7.27.1",
  205. "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz",
  206. "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==",
  207. "dev": true,
  208. "license": "MIT",
  209. "dependencies": {
  210. "@babel/types": "^7.27.1"
  211. },
  212. "engines": {
  213. "node": ">=6.9.0"
  214. }
  215. },
  216. "node_modules/@babel/helper-plugin-utils": {
  217. "version": "7.28.6",
  218. "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
  219. "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
  220. "dev": true,
  221. "license": "MIT",
  222. "engines": {
  223. "node": ">=6.9.0"
  224. }
  225. },
  226. "node_modules/@babel/helper-replace-supers": {
  227. "version": "7.28.6",
  228. "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz",
  229. "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==",
  230. "dev": true,
  231. "license": "MIT",
  232. "dependencies": {
  233. "@babel/helper-member-expression-to-functions": "^7.28.5",
  234. "@babel/helper-optimise-call-expression": "^7.27.1",
  235. "@babel/traverse": "^7.28.6"
  236. },
  237. "engines": {
  238. "node": ">=6.9.0"
  239. },
  240. "peerDependencies": {
  241. "@babel/core": "^7.0.0"
  242. }
  243. },
  244. "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
  245. "version": "7.27.1",
  246. "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz",
  247. "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==",
  248. "dev": true,
  249. "license": "MIT",
  250. "dependencies": {
  251. "@babel/traverse": "^7.27.1",
  252. "@babel/types": "^7.27.1"
  253. },
  254. "engines": {
  255. "node": ">=6.9.0"
  256. }
  257. },
  258. "node_modules/@babel/helper-string-parser": {
  259. "version": "7.27.1",
  260. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  261. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  262. "license": "MIT",
  263. "engines": {
  264. "node": ">=6.9.0"
  265. }
  266. },
  267. "node_modules/@babel/helper-validator-identifier": {
  268. "version": "7.28.5",
  269. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  270. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  271. "license": "MIT",
  272. "engines": {
  273. "node": ">=6.9.0"
  274. }
  275. },
  276. "node_modules/@babel/helper-validator-option": {
  277. "version": "7.27.1",
  278. "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
  279. "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
  280. "dev": true,
  281. "license": "MIT",
  282. "engines": {
  283. "node": ">=6.9.0"
  284. }
  285. },
  286. "node_modules/@babel/helpers": {
  287. "version": "7.29.2",
  288. "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
  289. "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
  290. "dev": true,
  291. "license": "MIT",
  292. "dependencies": {
  293. "@babel/template": "^7.28.6",
  294. "@babel/types": "^7.29.0"
  295. },
  296. "engines": {
  297. "node": ">=6.9.0"
  298. }
  299. },
  300. "node_modules/@babel/parser": {
  301. "version": "7.29.2",
  302. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
  303. "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
  304. "license": "MIT",
  305. "dependencies": {
  306. "@babel/types": "^7.29.0"
  307. },
  308. "bin": {
  309. "parser": "bin/babel-parser.js"
  310. },
  311. "engines": {
  312. "node": ">=6.0.0"
  313. }
  314. },
  315. "node_modules/@babel/plugin-proposal-decorators": {
  316. "version": "7.29.0",
  317. "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.0.tgz",
  318. "integrity": "sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==",
  319. "dev": true,
  320. "license": "MIT",
  321. "dependencies": {
  322. "@babel/helper-create-class-features-plugin": "^7.28.6",
  323. "@babel/helper-plugin-utils": "^7.28.6",
  324. "@babel/plugin-syntax-decorators": "^7.28.6"
  325. },
  326. "engines": {
  327. "node": ">=6.9.0"
  328. },
  329. "peerDependencies": {
  330. "@babel/core": "^7.0.0-0"
  331. }
  332. },
  333. "node_modules/@babel/plugin-syntax-decorators": {
  334. "version": "7.28.6",
  335. "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.28.6.tgz",
  336. "integrity": "sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==",
  337. "dev": true,
  338. "license": "MIT",
  339. "dependencies": {
  340. "@babel/helper-plugin-utils": "^7.28.6"
  341. },
  342. "engines": {
  343. "node": ">=6.9.0"
  344. },
  345. "peerDependencies": {
  346. "@babel/core": "^7.0.0-0"
  347. }
  348. },
  349. "node_modules/@babel/plugin-syntax-import-attributes": {
  350. "version": "7.28.6",
  351. "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz",
  352. "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==",
  353. "dev": true,
  354. "license": "MIT",
  355. "dependencies": {
  356. "@babel/helper-plugin-utils": "^7.28.6"
  357. },
  358. "engines": {
  359. "node": ">=6.9.0"
  360. },
  361. "peerDependencies": {
  362. "@babel/core": "^7.0.0-0"
  363. }
  364. },
  365. "node_modules/@babel/plugin-syntax-import-meta": {
  366. "version": "7.10.4",
  367. "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
  368. "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
  369. "dev": true,
  370. "license": "MIT",
  371. "dependencies": {
  372. "@babel/helper-plugin-utils": "^7.10.4"
  373. },
  374. "peerDependencies": {
  375. "@babel/core": "^7.0.0-0"
  376. }
  377. },
  378. "node_modules/@babel/plugin-syntax-jsx": {
  379. "version": "7.28.6",
  380. "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz",
  381. "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
  382. "dev": true,
  383. "license": "MIT",
  384. "dependencies": {
  385. "@babel/helper-plugin-utils": "^7.28.6"
  386. },
  387. "engines": {
  388. "node": ">=6.9.0"
  389. },
  390. "peerDependencies": {
  391. "@babel/core": "^7.0.0-0"
  392. }
  393. },
  394. "node_modules/@babel/plugin-syntax-typescript": {
  395. "version": "7.28.6",
  396. "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz",
  397. "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
  398. "dev": true,
  399. "license": "MIT",
  400. "dependencies": {
  401. "@babel/helper-plugin-utils": "^7.28.6"
  402. },
  403. "engines": {
  404. "node": ">=6.9.0"
  405. },
  406. "peerDependencies": {
  407. "@babel/core": "^7.0.0-0"
  408. }
  409. },
  410. "node_modules/@babel/plugin-transform-typescript": {
  411. "version": "7.28.6",
  412. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz",
  413. "integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==",
  414. "dev": true,
  415. "license": "MIT",
  416. "dependencies": {
  417. "@babel/helper-annotate-as-pure": "^7.27.3",
  418. "@babel/helper-create-class-features-plugin": "^7.28.6",
  419. "@babel/helper-plugin-utils": "^7.28.6",
  420. "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
  421. "@babel/plugin-syntax-typescript": "^7.28.6"
  422. },
  423. "engines": {
  424. "node": ">=6.9.0"
  425. },
  426. "peerDependencies": {
  427. "@babel/core": "^7.0.0-0"
  428. }
  429. },
  430. "node_modules/@babel/template": {
  431. "version": "7.28.6",
  432. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
  433. "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
  434. "dev": true,
  435. "license": "MIT",
  436. "dependencies": {
  437. "@babel/code-frame": "^7.28.6",
  438. "@babel/parser": "^7.28.6",
  439. "@babel/types": "^7.28.6"
  440. },
  441. "engines": {
  442. "node": ">=6.9.0"
  443. }
  444. },
  445. "node_modules/@babel/traverse": {
  446. "version": "7.29.0",
  447. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
  448. "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
  449. "dev": true,
  450. "license": "MIT",
  451. "dependencies": {
  452. "@babel/code-frame": "^7.29.0",
  453. "@babel/generator": "^7.29.0",
  454. "@babel/helper-globals": "^7.28.0",
  455. "@babel/parser": "^7.29.0",
  456. "@babel/template": "^7.28.6",
  457. "@babel/types": "^7.29.0",
  458. "debug": "^4.3.1"
  459. },
  460. "engines": {
  461. "node": ">=6.9.0"
  462. }
  463. },
  464. "node_modules/@babel/types": {
  465. "version": "7.29.0",
  466. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  467. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  468. "license": "MIT",
  469. "dependencies": {
  470. "@babel/helper-string-parser": "^7.27.1",
  471. "@babel/helper-validator-identifier": "^7.28.5"
  472. },
  473. "engines": {
  474. "node": ">=6.9.0"
  475. }
  476. },
  477. "node_modules/@emnapi/core": {
  478. "version": "1.9.2",
  479. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.2.tgz",
  480. "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==",
  481. "dev": true,
  482. "license": "MIT",
  483. "optional": true,
  484. "dependencies": {
  485. "@emnapi/wasi-threads": "1.2.1",
  486. "tslib": "^2.4.0"
  487. }
  488. },
  489. "node_modules/@emnapi/runtime": {
  490. "version": "1.9.2",
  491. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz",
  492. "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==",
  493. "dev": true,
  494. "license": "MIT",
  495. "optional": true,
  496. "dependencies": {
  497. "tslib": "^2.4.0"
  498. }
  499. },
  500. "node_modules/@emnapi/wasi-threads": {
  501. "version": "1.2.1",
  502. "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
  503. "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
  504. "dev": true,
  505. "license": "MIT",
  506. "optional": true,
  507. "dependencies": {
  508. "tslib": "^2.4.0"
  509. }
  510. },
  511. "node_modules/@jridgewell/gen-mapping": {
  512. "version": "0.3.13",
  513. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  514. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  515. "dev": true,
  516. "license": "MIT",
  517. "dependencies": {
  518. "@jridgewell/sourcemap-codec": "^1.5.0",
  519. "@jridgewell/trace-mapping": "^0.3.24"
  520. }
  521. },
  522. "node_modules/@jridgewell/remapping": {
  523. "version": "2.3.5",
  524. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  525. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  526. "dev": true,
  527. "license": "MIT",
  528. "dependencies": {
  529. "@jridgewell/gen-mapping": "^0.3.5",
  530. "@jridgewell/trace-mapping": "^0.3.24"
  531. }
  532. },
  533. "node_modules/@jridgewell/resolve-uri": {
  534. "version": "3.1.2",
  535. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  536. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  537. "dev": true,
  538. "license": "MIT",
  539. "engines": {
  540. "node": ">=6.0.0"
  541. }
  542. },
  543. "node_modules/@jridgewell/sourcemap-codec": {
  544. "version": "1.5.5",
  545. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  546. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  547. "license": "MIT"
  548. },
  549. "node_modules/@jridgewell/trace-mapping": {
  550. "version": "0.3.31",
  551. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  552. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  553. "dev": true,
  554. "license": "MIT",
  555. "dependencies": {
  556. "@jridgewell/resolve-uri": "^3.1.0",
  557. "@jridgewell/sourcemap-codec": "^1.4.14"
  558. }
  559. },
  560. "node_modules/@napi-rs/wasm-runtime": {
  561. "version": "1.1.4",
  562. "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
  563. "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
  564. "dev": true,
  565. "license": "MIT",
  566. "optional": true,
  567. "dependencies": {
  568. "@tybys/wasm-util": "^0.10.1"
  569. },
  570. "funding": {
  571. "type": "github",
  572. "url": "https://github.com/sponsors/Brooooooklyn"
  573. },
  574. "peerDependencies": {
  575. "@emnapi/core": "^1.7.1",
  576. "@emnapi/runtime": "^1.7.1"
  577. }
  578. },
  579. "node_modules/@oxc-project/types": {
  580. "version": "0.124.0",
  581. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.124.0.tgz",
  582. "integrity": "sha512-VBFWMTBvHxS11Z5Lvlr3IWgrwhMTXV+Md+EQF0Xf60+wAdsGFTBx7X7K/hP4pi8N7dcm1RvcHwDxZ16Qx8keUg==",
  583. "dev": true,
  584. "license": "MIT",
  585. "funding": {
  586. "url": "https://github.com/sponsors/Boshen"
  587. }
  588. },
  589. "node_modules/@polka/url": {
  590. "version": "1.0.0-next.29",
  591. "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
  592. "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
  593. "dev": true,
  594. "license": "MIT"
  595. },
  596. "node_modules/@rolldown/binding-android-arm64": {
  597. "version": "1.0.0-rc.15",
  598. "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.15.tgz",
  599. "integrity": "sha512-YYe6aWruPZDtHNpwu7+qAHEMbQ/yRl6atqb/AhznLTnD3UY99Q1jE7ihLSahNWkF4EqRPVC4SiR4O0UkLK02tA==",
  600. "cpu": [
  601. "arm64"
  602. ],
  603. "dev": true,
  604. "license": "MIT",
  605. "optional": true,
  606. "os": [
  607. "android"
  608. ],
  609. "engines": {
  610. "node": "^20.19.0 || >=22.12.0"
  611. }
  612. },
  613. "node_modules/@rolldown/binding-darwin-arm64": {
  614. "version": "1.0.0-rc.15",
  615. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.15.tgz",
  616. "integrity": "sha512-oArR/ig8wNTPYsXL+Mzhs0oxhxfuHRfG7Ikw7jXsw8mYOtk71W0OkF2VEVh699pdmzjPQsTjlD1JIOoHkLP1Fg==",
  617. "cpu": [
  618. "arm64"
  619. ],
  620. "dev": true,
  621. "license": "MIT",
  622. "optional": true,
  623. "os": [
  624. "darwin"
  625. ],
  626. "engines": {
  627. "node": "^20.19.0 || >=22.12.0"
  628. }
  629. },
  630. "node_modules/@rolldown/binding-darwin-x64": {
  631. "version": "1.0.0-rc.15",
  632. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.15.tgz",
  633. "integrity": "sha512-YzeVqOqjPYvUbJSWJ4EDL8ahbmsIXQpgL3JVipmN+MX0XnXMeWomLN3Fb+nwCmP/jfyqte5I3XRSm7OfQrbyxw==",
  634. "cpu": [
  635. "x64"
  636. ],
  637. "dev": true,
  638. "license": "MIT",
  639. "optional": true,
  640. "os": [
  641. "darwin"
  642. ],
  643. "engines": {
  644. "node": "^20.19.0 || >=22.12.0"
  645. }
  646. },
  647. "node_modules/@rolldown/binding-freebsd-x64": {
  648. "version": "1.0.0-rc.15",
  649. "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.15.tgz",
  650. "integrity": "sha512-9Erhx956jeQ0nNTyif1+QWAXDRD38ZNjr//bSHrt6wDwB+QkAfl2q6Mn1k6OBPerznjRmbM10lgRb1Pli4xZPw==",
  651. "cpu": [
  652. "x64"
  653. ],
  654. "dev": true,
  655. "license": "MIT",
  656. "optional": true,
  657. "os": [
  658. "freebsd"
  659. ],
  660. "engines": {
  661. "node": "^20.19.0 || >=22.12.0"
  662. }
  663. },
  664. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  665. "version": "1.0.0-rc.15",
  666. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.15.tgz",
  667. "integrity": "sha512-cVwk0w8QbZJGTnP/AHQBs5yNwmpgGYStL88t4UIaqcvYJWBfS0s3oqVLZPwsPU6M0zlW4GqjP0Zq5MnAGwFeGA==",
  668. "cpu": [
  669. "arm"
  670. ],
  671. "dev": true,
  672. "license": "MIT",
  673. "optional": true,
  674. "os": [
  675. "linux"
  676. ],
  677. "engines": {
  678. "node": "^20.19.0 || >=22.12.0"
  679. }
  680. },
  681. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  682. "version": "1.0.0-rc.15",
  683. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.15.tgz",
  684. "integrity": "sha512-eBZ/u8iAK9SoHGanqe/jrPnY0JvBN6iXbVOsbO38mbz+ZJsaobExAm1Iu+rxa4S1l2FjG0qEZn4Rc6X8n+9M+w==",
  685. "cpu": [
  686. "arm64"
  687. ],
  688. "dev": true,
  689. "libc": [
  690. "glibc"
  691. ],
  692. "license": "MIT",
  693. "optional": true,
  694. "os": [
  695. "linux"
  696. ],
  697. "engines": {
  698. "node": "^20.19.0 || >=22.12.0"
  699. }
  700. },
  701. "node_modules/@rolldown/binding-linux-arm64-musl": {
  702. "version": "1.0.0-rc.15",
  703. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.15.tgz",
  704. "integrity": "sha512-ZvRYMGrAklV9PEkgt4LQM6MjQX2P58HPAuecwYObY2DhS2t35R0I810bKi0wmaYORt6m/2Sm+Z+nFgb0WhXNcQ==",
  705. "cpu": [
  706. "arm64"
  707. ],
  708. "dev": true,
  709. "libc": [
  710. "musl"
  711. ],
  712. "license": "MIT",
  713. "optional": true,
  714. "os": [
  715. "linux"
  716. ],
  717. "engines": {
  718. "node": "^20.19.0 || >=22.12.0"
  719. }
  720. },
  721. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  722. "version": "1.0.0-rc.15",
  723. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.15.tgz",
  724. "integrity": "sha512-VDpgGBzgfg5hLg+uBpCLoFG5kVvEyafmfxGUV0UHLcL5irxAK7PKNeC2MwClgk6ZAiNhmo9FLhRYgvMmedLtnQ==",
  725. "cpu": [
  726. "ppc64"
  727. ],
  728. "dev": true,
  729. "libc": [
  730. "glibc"
  731. ],
  732. "license": "MIT",
  733. "optional": true,
  734. "os": [
  735. "linux"
  736. ],
  737. "engines": {
  738. "node": "^20.19.0 || >=22.12.0"
  739. }
  740. },
  741. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  742. "version": "1.0.0-rc.15",
  743. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.15.tgz",
  744. "integrity": "sha512-y1uXY3qQWCzcPgRJATPSOUP4tCemh4uBdY7e3EZbVwCJTY3gLJWnQABgeUetvED+bt1FQ01OeZwvhLS2bpNrAQ==",
  745. "cpu": [
  746. "s390x"
  747. ],
  748. "dev": true,
  749. "libc": [
  750. "glibc"
  751. ],
  752. "license": "MIT",
  753. "optional": true,
  754. "os": [
  755. "linux"
  756. ],
  757. "engines": {
  758. "node": "^20.19.0 || >=22.12.0"
  759. }
  760. },
  761. "node_modules/@rolldown/binding-linux-x64-gnu": {
  762. "version": "1.0.0-rc.15",
  763. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.15.tgz",
  764. "integrity": "sha512-023bTPBod7J3Y/4fzAN6QtpkSABR0rigtrwaP+qSEabUh5zf6ELr9Nc7GujaROuPY3uwdSIXWrvhn1KxOvurWA==",
  765. "cpu": [
  766. "x64"
  767. ],
  768. "dev": true,
  769. "libc": [
  770. "glibc"
  771. ],
  772. "license": "MIT",
  773. "optional": true,
  774. "os": [
  775. "linux"
  776. ],
  777. "engines": {
  778. "node": "^20.19.0 || >=22.12.0"
  779. }
  780. },
  781. "node_modules/@rolldown/binding-linux-x64-musl": {
  782. "version": "1.0.0-rc.15",
  783. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.15.tgz",
  784. "integrity": "sha512-witB2O0/hU4CgfOOKUoeFgQ4GktPi1eEbAhaLAIpgD6+ZnhcPkUtPsoKKHRzmOoWPZue46IThdSgdo4XneOLYw==",
  785. "cpu": [
  786. "x64"
  787. ],
  788. "dev": true,
  789. "libc": [
  790. "musl"
  791. ],
  792. "license": "MIT",
  793. "optional": true,
  794. "os": [
  795. "linux"
  796. ],
  797. "engines": {
  798. "node": "^20.19.0 || >=22.12.0"
  799. }
  800. },
  801. "node_modules/@rolldown/binding-openharmony-arm64": {
  802. "version": "1.0.0-rc.15",
  803. "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.15.tgz",
  804. "integrity": "sha512-UCL68NJ0Ud5zRipXZE9dF5PmirzJE4E4BCIOOssEnM7wLDsxjc6Qb0sGDxTNRTP53I6MZpygyCpY8Aa8sPfKPg==",
  805. "cpu": [
  806. "arm64"
  807. ],
  808. "dev": true,
  809. "license": "MIT",
  810. "optional": true,
  811. "os": [
  812. "openharmony"
  813. ],
  814. "engines": {
  815. "node": "^20.19.0 || >=22.12.0"
  816. }
  817. },
  818. "node_modules/@rolldown/binding-wasm32-wasi": {
  819. "version": "1.0.0-rc.15",
  820. "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.15.tgz",
  821. "integrity": "sha512-ApLruZq/ig+nhaE7OJm4lDjayUnOHVUa77zGeqnqZ9pn0ovdVbbNPerVibLXDmWeUZXjIYIT8V3xkT58Rm9u5Q==",
  822. "cpu": [
  823. "wasm32"
  824. ],
  825. "dev": true,
  826. "license": "MIT",
  827. "optional": true,
  828. "dependencies": {
  829. "@emnapi/core": "1.9.2",
  830. "@emnapi/runtime": "1.9.2",
  831. "@napi-rs/wasm-runtime": "^1.1.3"
  832. },
  833. "engines": {
  834. "node": ">=14.0.0"
  835. }
  836. },
  837. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  838. "version": "1.0.0-rc.15",
  839. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.15.tgz",
  840. "integrity": "sha512-KmoUoU7HnN+Si5YWJigfTws1jz1bKBYDQKdbLspz0UaqjjFkddHsqorgiW1mxcAj88lYUE6NC/zJNwT+SloqtA==",
  841. "cpu": [
  842. "arm64"
  843. ],
  844. "dev": true,
  845. "license": "MIT",
  846. "optional": true,
  847. "os": [
  848. "win32"
  849. ],
  850. "engines": {
  851. "node": "^20.19.0 || >=22.12.0"
  852. }
  853. },
  854. "node_modules/@rolldown/binding-win32-x64-msvc": {
  855. "version": "1.0.0-rc.15",
  856. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.15.tgz",
  857. "integrity": "sha512-3P2A8L+x75qavWLe/Dll3EYBJLQmtkJN8rfh+U/eR3MqMgL/h98PhYI+JFfXuDPgPeCB7iZAKiqii5vqOvnA0g==",
  858. "cpu": [
  859. "x64"
  860. ],
  861. "dev": true,
  862. "license": "MIT",
  863. "optional": true,
  864. "os": [
  865. "win32"
  866. ],
  867. "engines": {
  868. "node": "^20.19.0 || >=22.12.0"
  869. }
  870. },
  871. "node_modules/@rolldown/pluginutils": {
  872. "version": "1.0.0-rc.13",
  873. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.13.tgz",
  874. "integrity": "sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==",
  875. "dev": true,
  876. "license": "MIT"
  877. },
  878. "node_modules/@tybys/wasm-util": {
  879. "version": "0.10.1",
  880. "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
  881. "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
  882. "dev": true,
  883. "license": "MIT",
  884. "optional": true,
  885. "dependencies": {
  886. "tslib": "^2.4.0"
  887. }
  888. },
  889. "node_modules/@vitejs/plugin-vue": {
  890. "version": "6.0.6",
  891. "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.6.tgz",
  892. "integrity": "sha512-u9HHgfrq3AjXlysn0eINFnWQOJQLO9WN6VprZ8FXl7A2bYisv3Hui9Ij+7QZ41F/WYWarHjwBbXtD7dKg3uxbg==",
  893. "dev": true,
  894. "license": "MIT",
  895. "dependencies": {
  896. "@rolldown/pluginutils": "1.0.0-rc.13"
  897. },
  898. "engines": {
  899. "node": "^20.19.0 || >=22.12.0"
  900. },
  901. "peerDependencies": {
  902. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  903. "vue": "^3.2.25"
  904. }
  905. },
  906. "node_modules/@vue/babel-helper-vue-transform-on": {
  907. "version": "1.5.0",
  908. "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.5.0.tgz",
  909. "integrity": "sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==",
  910. "dev": true,
  911. "license": "MIT"
  912. },
  913. "node_modules/@vue/babel-plugin-jsx": {
  914. "version": "1.5.0",
  915. "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.5.0.tgz",
  916. "integrity": "sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==",
  917. "dev": true,
  918. "license": "MIT",
  919. "dependencies": {
  920. "@babel/helper-module-imports": "^7.27.1",
  921. "@babel/helper-plugin-utils": "^7.27.1",
  922. "@babel/plugin-syntax-jsx": "^7.27.1",
  923. "@babel/template": "^7.27.2",
  924. "@babel/traverse": "^7.28.0",
  925. "@babel/types": "^7.28.2",
  926. "@vue/babel-helper-vue-transform-on": "1.5.0",
  927. "@vue/babel-plugin-resolve-type": "1.5.0",
  928. "@vue/shared": "^3.5.18"
  929. },
  930. "peerDependencies": {
  931. "@babel/core": "^7.0.0-0"
  932. },
  933. "peerDependenciesMeta": {
  934. "@babel/core": {
  935. "optional": true
  936. }
  937. }
  938. },
  939. "node_modules/@vue/babel-plugin-resolve-type": {
  940. "version": "1.5.0",
  941. "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.5.0.tgz",
  942. "integrity": "sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==",
  943. "dev": true,
  944. "license": "MIT",
  945. "dependencies": {
  946. "@babel/code-frame": "^7.27.1",
  947. "@babel/helper-module-imports": "^7.27.1",
  948. "@babel/helper-plugin-utils": "^7.27.1",
  949. "@babel/parser": "^7.28.0",
  950. "@vue/compiler-sfc": "^3.5.18"
  951. },
  952. "funding": {
  953. "url": "https://github.com/sponsors/sxzz"
  954. },
  955. "peerDependencies": {
  956. "@babel/core": "^7.0.0-0"
  957. }
  958. },
  959. "node_modules/@vue/compiler-core": {
  960. "version": "3.5.32",
  961. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.32.tgz",
  962. "integrity": "sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==",
  963. "license": "MIT",
  964. "dependencies": {
  965. "@babel/parser": "^7.29.2",
  966. "@vue/shared": "3.5.32",
  967. "entities": "^7.0.1",
  968. "estree-walker": "^2.0.2",
  969. "source-map-js": "^1.2.1"
  970. }
  971. },
  972. "node_modules/@vue/compiler-dom": {
  973. "version": "3.5.32",
  974. "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.32.tgz",
  975. "integrity": "sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==",
  976. "license": "MIT",
  977. "dependencies": {
  978. "@vue/compiler-core": "3.5.32",
  979. "@vue/shared": "3.5.32"
  980. }
  981. },
  982. "node_modules/@vue/compiler-sfc": {
  983. "version": "3.5.32",
  984. "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.32.tgz",
  985. "integrity": "sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==",
  986. "license": "MIT",
  987. "dependencies": {
  988. "@babel/parser": "^7.29.2",
  989. "@vue/compiler-core": "3.5.32",
  990. "@vue/compiler-dom": "3.5.32",
  991. "@vue/compiler-ssr": "3.5.32",
  992. "@vue/shared": "3.5.32",
  993. "estree-walker": "^2.0.2",
  994. "magic-string": "^0.30.21",
  995. "postcss": "^8.5.8",
  996. "source-map-js": "^1.2.1"
  997. }
  998. },
  999. "node_modules/@vue/compiler-ssr": {
  1000. "version": "3.5.32",
  1001. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.32.tgz",
  1002. "integrity": "sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==",
  1003. "license": "MIT",
  1004. "dependencies": {
  1005. "@vue/compiler-dom": "3.5.32",
  1006. "@vue/shared": "3.5.32"
  1007. }
  1008. },
  1009. "node_modules/@vue/devtools-core": {
  1010. "version": "8.1.1",
  1011. "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-8.1.1.tgz",
  1012. "integrity": "sha512-bCCsSABp1/ot4j8xJEycM6Mtt2wbuucfByr6hMgjbYhrtlscOJypZKvy8f1FyWLYrLTchB5Qz216Lm92wfbq0A==",
  1013. "dev": true,
  1014. "license": "MIT",
  1015. "dependencies": {
  1016. "@vue/devtools-kit": "^8.1.1",
  1017. "@vue/devtools-shared": "^8.1.1"
  1018. },
  1019. "peerDependencies": {
  1020. "vue": "^3.0.0"
  1021. }
  1022. },
  1023. "node_modules/@vue/devtools-kit": {
  1024. "version": "8.1.1",
  1025. "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-8.1.1.tgz",
  1026. "integrity": "sha512-gVBaBv++i+adg4JpH71k9ppl4soyR7Y2McEqO5YNgv0BI1kMZ7BDX5gnwkZ5COYgiCyhejZG+yGNrBAjj6Coqg==",
  1027. "dev": true,
  1028. "license": "MIT",
  1029. "dependencies": {
  1030. "@vue/devtools-shared": "^8.1.1",
  1031. "birpc": "^2.6.1",
  1032. "hookable": "^5.5.3",
  1033. "perfect-debounce": "^2.0.0"
  1034. }
  1035. },
  1036. "node_modules/@vue/devtools-shared": {
  1037. "version": "8.1.1",
  1038. "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-8.1.1.tgz",
  1039. "integrity": "sha512-+h4ttmJYl/txpxHKaoZcaKpC+pvckgLzIDiSQlaQ7kKthKh8KuwoLW2D8hPJEnqKzXOvu15UHEoGyngAXCz0EQ==",
  1040. "dev": true,
  1041. "license": "MIT"
  1042. },
  1043. "node_modules/@vue/reactivity": {
  1044. "version": "3.5.32",
  1045. "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.32.tgz",
  1046. "integrity": "sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==",
  1047. "license": "MIT",
  1048. "dependencies": {
  1049. "@vue/shared": "3.5.32"
  1050. }
  1051. },
  1052. "node_modules/@vue/runtime-core": {
  1053. "version": "3.5.32",
  1054. "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.32.tgz",
  1055. "integrity": "sha512-pDrXCejn4UpFDFmMd27AcJEbHaLemaE5o4pbb7sLk79SRIhc6/t34BQA7SGNgYtbMnvbF/HHOftYBgFJtUoJUQ==",
  1056. "license": "MIT",
  1057. "dependencies": {
  1058. "@vue/reactivity": "3.5.32",
  1059. "@vue/shared": "3.5.32"
  1060. }
  1061. },
  1062. "node_modules/@vue/runtime-dom": {
  1063. "version": "3.5.32",
  1064. "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.32.tgz",
  1065. "integrity": "sha512-1CDVv7tv/IV13V8Nip1k/aaObVbWqRlVCVezTwx3K07p7Vxossp5JU1dcPNhJk3w347gonIUT9jQOGutyJrSVQ==",
  1066. "license": "MIT",
  1067. "dependencies": {
  1068. "@vue/reactivity": "3.5.32",
  1069. "@vue/runtime-core": "3.5.32",
  1070. "@vue/shared": "3.5.32",
  1071. "csstype": "^3.2.3"
  1072. }
  1073. },
  1074. "node_modules/@vue/server-renderer": {
  1075. "version": "3.5.32",
  1076. "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.32.tgz",
  1077. "integrity": "sha512-IOjm2+JQwRFS7W28HNuJeXQle9KdZbODFY7hFGVtnnghF51ta20EWAZJHX+zLGtsHhaU6uC9BGPV52KVpYryMQ==",
  1078. "license": "MIT",
  1079. "dependencies": {
  1080. "@vue/compiler-ssr": "3.5.32",
  1081. "@vue/shared": "3.5.32"
  1082. },
  1083. "peerDependencies": {
  1084. "vue": "3.5.32"
  1085. }
  1086. },
  1087. "node_modules/@vue/shared": {
  1088. "version": "3.5.32",
  1089. "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.32.tgz",
  1090. "integrity": "sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==",
  1091. "license": "MIT"
  1092. },
  1093. "node_modules/ansis": {
  1094. "version": "4.2.0",
  1095. "resolved": "https://registry.npmjs.org/ansis/-/ansis-4.2.0.tgz",
  1096. "integrity": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==",
  1097. "dev": true,
  1098. "license": "ISC",
  1099. "engines": {
  1100. "node": ">=14"
  1101. }
  1102. },
  1103. "node_modules/baseline-browser-mapping": {
  1104. "version": "2.10.19",
  1105. "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.19.tgz",
  1106. "integrity": "sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==",
  1107. "dev": true,
  1108. "license": "Apache-2.0",
  1109. "bin": {
  1110. "baseline-browser-mapping": "dist/cli.cjs"
  1111. },
  1112. "engines": {
  1113. "node": ">=6.0.0"
  1114. }
  1115. },
  1116. "node_modules/birpc": {
  1117. "version": "2.9.0",
  1118. "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
  1119. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1120. "dev": true,
  1121. "license": "MIT",
  1122. "funding": {
  1123. "url": "https://github.com/sponsors/antfu"
  1124. }
  1125. },
  1126. "node_modules/browserslist": {
  1127. "version": "4.28.2",
  1128. "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
  1129. "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
  1130. "dev": true,
  1131. "funding": [
  1132. {
  1133. "type": "opencollective",
  1134. "url": "https://opencollective.com/browserslist"
  1135. },
  1136. {
  1137. "type": "tidelift",
  1138. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1139. },
  1140. {
  1141. "type": "github",
  1142. "url": "https://github.com/sponsors/ai"
  1143. }
  1144. ],
  1145. "license": "MIT",
  1146. "dependencies": {
  1147. "baseline-browser-mapping": "^2.10.12",
  1148. "caniuse-lite": "^1.0.30001782",
  1149. "electron-to-chromium": "^1.5.328",
  1150. "node-releases": "^2.0.36",
  1151. "update-browserslist-db": "^1.2.3"
  1152. },
  1153. "bin": {
  1154. "browserslist": "cli.js"
  1155. },
  1156. "engines": {
  1157. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1158. }
  1159. },
  1160. "node_modules/bundle-name": {
  1161. "version": "4.1.0",
  1162. "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
  1163. "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
  1164. "dev": true,
  1165. "license": "MIT",
  1166. "dependencies": {
  1167. "run-applescript": "^7.0.0"
  1168. },
  1169. "engines": {
  1170. "node": ">=18"
  1171. },
  1172. "funding": {
  1173. "url": "https://github.com/sponsors/sindresorhus"
  1174. }
  1175. },
  1176. "node_modules/caniuse-lite": {
  1177. "version": "1.0.30001788",
  1178. "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001788.tgz",
  1179. "integrity": "sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==",
  1180. "dev": true,
  1181. "funding": [
  1182. {
  1183. "type": "opencollective",
  1184. "url": "https://opencollective.com/browserslist"
  1185. },
  1186. {
  1187. "type": "tidelift",
  1188. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1189. },
  1190. {
  1191. "type": "github",
  1192. "url": "https://github.com/sponsors/ai"
  1193. }
  1194. ],
  1195. "license": "CC-BY-4.0"
  1196. },
  1197. "node_modules/convert-source-map": {
  1198. "version": "2.0.0",
  1199. "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
  1200. "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
  1201. "dev": true,
  1202. "license": "MIT"
  1203. },
  1204. "node_modules/csstype": {
  1205. "version": "3.2.3",
  1206. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1207. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1208. "license": "MIT"
  1209. },
  1210. "node_modules/debug": {
  1211. "version": "4.4.3",
  1212. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  1213. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1214. "dev": true,
  1215. "license": "MIT",
  1216. "dependencies": {
  1217. "ms": "^2.1.3"
  1218. },
  1219. "engines": {
  1220. "node": ">=6.0"
  1221. },
  1222. "peerDependenciesMeta": {
  1223. "supports-color": {
  1224. "optional": true
  1225. }
  1226. }
  1227. },
  1228. "node_modules/default-browser": {
  1229. "version": "5.5.0",
  1230. "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz",
  1231. "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==",
  1232. "dev": true,
  1233. "license": "MIT",
  1234. "dependencies": {
  1235. "bundle-name": "^4.1.0",
  1236. "default-browser-id": "^5.0.0"
  1237. },
  1238. "engines": {
  1239. "node": ">=18"
  1240. },
  1241. "funding": {
  1242. "url": "https://github.com/sponsors/sindresorhus"
  1243. }
  1244. },
  1245. "node_modules/default-browser-id": {
  1246. "version": "5.0.1",
  1247. "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz",
  1248. "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==",
  1249. "dev": true,
  1250. "license": "MIT",
  1251. "engines": {
  1252. "node": ">=18"
  1253. },
  1254. "funding": {
  1255. "url": "https://github.com/sponsors/sindresorhus"
  1256. }
  1257. },
  1258. "node_modules/define-lazy-prop": {
  1259. "version": "3.0.0",
  1260. "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
  1261. "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
  1262. "dev": true,
  1263. "license": "MIT",
  1264. "engines": {
  1265. "node": ">=12"
  1266. },
  1267. "funding": {
  1268. "url": "https://github.com/sponsors/sindresorhus"
  1269. }
  1270. },
  1271. "node_modules/detect-libc": {
  1272. "version": "2.1.2",
  1273. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1274. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1275. "dev": true,
  1276. "license": "Apache-2.0",
  1277. "engines": {
  1278. "node": ">=8"
  1279. }
  1280. },
  1281. "node_modules/electron-to-chromium": {
  1282. "version": "1.5.339",
  1283. "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.339.tgz",
  1284. "integrity": "sha512-Is+0BBHJ4NrdpAYiperrmp53pLywG/yV/6lIMTAnhxvzj/Cmn5Q/ogSHC6AKe7X+8kPLxxFk0cs5oc/3j/fxIg==",
  1285. "dev": true,
  1286. "license": "ISC"
  1287. },
  1288. "node_modules/entities": {
  1289. "version": "7.0.1",
  1290. "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
  1291. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1292. "license": "BSD-2-Clause",
  1293. "engines": {
  1294. "node": ">=0.12"
  1295. },
  1296. "funding": {
  1297. "url": "https://github.com/fb55/entities?sponsor=1"
  1298. }
  1299. },
  1300. "node_modules/error-stack-parser-es": {
  1301. "version": "1.0.5",
  1302. "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz",
  1303. "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==",
  1304. "dev": true,
  1305. "license": "MIT",
  1306. "funding": {
  1307. "url": "https://github.com/sponsors/antfu"
  1308. }
  1309. },
  1310. "node_modules/escalade": {
  1311. "version": "3.2.0",
  1312. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  1313. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  1314. "dev": true,
  1315. "license": "MIT",
  1316. "engines": {
  1317. "node": ">=6"
  1318. }
  1319. },
  1320. "node_modules/estree-walker": {
  1321. "version": "2.0.2",
  1322. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  1323. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1324. "license": "MIT"
  1325. },
  1326. "node_modules/fdir": {
  1327. "version": "6.5.0",
  1328. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1329. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1330. "dev": true,
  1331. "license": "MIT",
  1332. "engines": {
  1333. "node": ">=12.0.0"
  1334. },
  1335. "peerDependencies": {
  1336. "picomatch": "^3 || ^4"
  1337. },
  1338. "peerDependenciesMeta": {
  1339. "picomatch": {
  1340. "optional": true
  1341. }
  1342. }
  1343. },
  1344. "node_modules/fsevents": {
  1345. "version": "2.3.3",
  1346. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1347. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1348. "dev": true,
  1349. "hasInstallScript": true,
  1350. "license": "MIT",
  1351. "optional": true,
  1352. "os": [
  1353. "darwin"
  1354. ],
  1355. "engines": {
  1356. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1357. }
  1358. },
  1359. "node_modules/gensync": {
  1360. "version": "1.0.0-beta.2",
  1361. "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
  1362. "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
  1363. "dev": true,
  1364. "license": "MIT",
  1365. "engines": {
  1366. "node": ">=6.9.0"
  1367. }
  1368. },
  1369. "node_modules/hookable": {
  1370. "version": "5.5.3",
  1371. "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
  1372. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1373. "dev": true,
  1374. "license": "MIT"
  1375. },
  1376. "node_modules/is-docker": {
  1377. "version": "3.0.0",
  1378. "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
  1379. "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
  1380. "dev": true,
  1381. "license": "MIT",
  1382. "bin": {
  1383. "is-docker": "cli.js"
  1384. },
  1385. "engines": {
  1386. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  1387. },
  1388. "funding": {
  1389. "url": "https://github.com/sponsors/sindresorhus"
  1390. }
  1391. },
  1392. "node_modules/is-inside-container": {
  1393. "version": "1.0.0",
  1394. "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
  1395. "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
  1396. "dev": true,
  1397. "license": "MIT",
  1398. "dependencies": {
  1399. "is-docker": "^3.0.0"
  1400. },
  1401. "bin": {
  1402. "is-inside-container": "cli.js"
  1403. },
  1404. "engines": {
  1405. "node": ">=14.16"
  1406. },
  1407. "funding": {
  1408. "url": "https://github.com/sponsors/sindresorhus"
  1409. }
  1410. },
  1411. "node_modules/is-wsl": {
  1412. "version": "3.1.1",
  1413. "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz",
  1414. "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==",
  1415. "dev": true,
  1416. "license": "MIT",
  1417. "dependencies": {
  1418. "is-inside-container": "^1.0.0"
  1419. },
  1420. "engines": {
  1421. "node": ">=16"
  1422. },
  1423. "funding": {
  1424. "url": "https://github.com/sponsors/sindresorhus"
  1425. }
  1426. },
  1427. "node_modules/js-tokens": {
  1428. "version": "4.0.0",
  1429. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  1430. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  1431. "dev": true,
  1432. "license": "MIT"
  1433. },
  1434. "node_modules/jsesc": {
  1435. "version": "3.1.0",
  1436. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  1437. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  1438. "dev": true,
  1439. "license": "MIT",
  1440. "bin": {
  1441. "jsesc": "bin/jsesc"
  1442. },
  1443. "engines": {
  1444. "node": ">=6"
  1445. }
  1446. },
  1447. "node_modules/json5": {
  1448. "version": "2.2.3",
  1449. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  1450. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  1451. "dev": true,
  1452. "license": "MIT",
  1453. "bin": {
  1454. "json5": "lib/cli.js"
  1455. },
  1456. "engines": {
  1457. "node": ">=6"
  1458. }
  1459. },
  1460. "node_modules/kolorist": {
  1461. "version": "1.8.0",
  1462. "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz",
  1463. "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==",
  1464. "dev": true,
  1465. "license": "MIT"
  1466. },
  1467. "node_modules/lightningcss": {
  1468. "version": "1.32.0",
  1469. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  1470. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  1471. "dev": true,
  1472. "license": "MPL-2.0",
  1473. "dependencies": {
  1474. "detect-libc": "^2.0.3"
  1475. },
  1476. "engines": {
  1477. "node": ">= 12.0.0"
  1478. },
  1479. "funding": {
  1480. "type": "opencollective",
  1481. "url": "https://opencollective.com/parcel"
  1482. },
  1483. "optionalDependencies": {
  1484. "lightningcss-android-arm64": "1.32.0",
  1485. "lightningcss-darwin-arm64": "1.32.0",
  1486. "lightningcss-darwin-x64": "1.32.0",
  1487. "lightningcss-freebsd-x64": "1.32.0",
  1488. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1489. "lightningcss-linux-arm64-gnu": "1.32.0",
  1490. "lightningcss-linux-arm64-musl": "1.32.0",
  1491. "lightningcss-linux-x64-gnu": "1.32.0",
  1492. "lightningcss-linux-x64-musl": "1.32.0",
  1493. "lightningcss-win32-arm64-msvc": "1.32.0",
  1494. "lightningcss-win32-x64-msvc": "1.32.0"
  1495. }
  1496. },
  1497. "node_modules/lightningcss-android-arm64": {
  1498. "version": "1.32.0",
  1499. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  1500. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  1501. "cpu": [
  1502. "arm64"
  1503. ],
  1504. "dev": true,
  1505. "license": "MPL-2.0",
  1506. "optional": true,
  1507. "os": [
  1508. "android"
  1509. ],
  1510. "engines": {
  1511. "node": ">= 12.0.0"
  1512. },
  1513. "funding": {
  1514. "type": "opencollective",
  1515. "url": "https://opencollective.com/parcel"
  1516. }
  1517. },
  1518. "node_modules/lightningcss-darwin-arm64": {
  1519. "version": "1.32.0",
  1520. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  1521. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  1522. "cpu": [
  1523. "arm64"
  1524. ],
  1525. "dev": true,
  1526. "license": "MPL-2.0",
  1527. "optional": true,
  1528. "os": [
  1529. "darwin"
  1530. ],
  1531. "engines": {
  1532. "node": ">= 12.0.0"
  1533. },
  1534. "funding": {
  1535. "type": "opencollective",
  1536. "url": "https://opencollective.com/parcel"
  1537. }
  1538. },
  1539. "node_modules/lightningcss-darwin-x64": {
  1540. "version": "1.32.0",
  1541. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  1542. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  1543. "cpu": [
  1544. "x64"
  1545. ],
  1546. "dev": true,
  1547. "license": "MPL-2.0",
  1548. "optional": true,
  1549. "os": [
  1550. "darwin"
  1551. ],
  1552. "engines": {
  1553. "node": ">= 12.0.0"
  1554. },
  1555. "funding": {
  1556. "type": "opencollective",
  1557. "url": "https://opencollective.com/parcel"
  1558. }
  1559. },
  1560. "node_modules/lightningcss-freebsd-x64": {
  1561. "version": "1.32.0",
  1562. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  1563. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  1564. "cpu": [
  1565. "x64"
  1566. ],
  1567. "dev": true,
  1568. "license": "MPL-2.0",
  1569. "optional": true,
  1570. "os": [
  1571. "freebsd"
  1572. ],
  1573. "engines": {
  1574. "node": ">= 12.0.0"
  1575. },
  1576. "funding": {
  1577. "type": "opencollective",
  1578. "url": "https://opencollective.com/parcel"
  1579. }
  1580. },
  1581. "node_modules/lightningcss-linux-arm-gnueabihf": {
  1582. "version": "1.32.0",
  1583. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  1584. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  1585. "cpu": [
  1586. "arm"
  1587. ],
  1588. "dev": true,
  1589. "license": "MPL-2.0",
  1590. "optional": true,
  1591. "os": [
  1592. "linux"
  1593. ],
  1594. "engines": {
  1595. "node": ">= 12.0.0"
  1596. },
  1597. "funding": {
  1598. "type": "opencollective",
  1599. "url": "https://opencollective.com/parcel"
  1600. }
  1601. },
  1602. "node_modules/lightningcss-linux-arm64-gnu": {
  1603. "version": "1.32.0",
  1604. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  1605. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  1606. "cpu": [
  1607. "arm64"
  1608. ],
  1609. "dev": true,
  1610. "libc": [
  1611. "glibc"
  1612. ],
  1613. "license": "MPL-2.0",
  1614. "optional": true,
  1615. "os": [
  1616. "linux"
  1617. ],
  1618. "engines": {
  1619. "node": ">= 12.0.0"
  1620. },
  1621. "funding": {
  1622. "type": "opencollective",
  1623. "url": "https://opencollective.com/parcel"
  1624. }
  1625. },
  1626. "node_modules/lightningcss-linux-arm64-musl": {
  1627. "version": "1.32.0",
  1628. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  1629. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  1630. "cpu": [
  1631. "arm64"
  1632. ],
  1633. "dev": true,
  1634. "libc": [
  1635. "musl"
  1636. ],
  1637. "license": "MPL-2.0",
  1638. "optional": true,
  1639. "os": [
  1640. "linux"
  1641. ],
  1642. "engines": {
  1643. "node": ">= 12.0.0"
  1644. },
  1645. "funding": {
  1646. "type": "opencollective",
  1647. "url": "https://opencollective.com/parcel"
  1648. }
  1649. },
  1650. "node_modules/lightningcss-linux-x64-gnu": {
  1651. "version": "1.32.0",
  1652. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  1653. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  1654. "cpu": [
  1655. "x64"
  1656. ],
  1657. "dev": true,
  1658. "libc": [
  1659. "glibc"
  1660. ],
  1661. "license": "MPL-2.0",
  1662. "optional": true,
  1663. "os": [
  1664. "linux"
  1665. ],
  1666. "engines": {
  1667. "node": ">= 12.0.0"
  1668. },
  1669. "funding": {
  1670. "type": "opencollective",
  1671. "url": "https://opencollective.com/parcel"
  1672. }
  1673. },
  1674. "node_modules/lightningcss-linux-x64-musl": {
  1675. "version": "1.32.0",
  1676. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  1677. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  1678. "cpu": [
  1679. "x64"
  1680. ],
  1681. "dev": true,
  1682. "libc": [
  1683. "musl"
  1684. ],
  1685. "license": "MPL-2.0",
  1686. "optional": true,
  1687. "os": [
  1688. "linux"
  1689. ],
  1690. "engines": {
  1691. "node": ">= 12.0.0"
  1692. },
  1693. "funding": {
  1694. "type": "opencollective",
  1695. "url": "https://opencollective.com/parcel"
  1696. }
  1697. },
  1698. "node_modules/lightningcss-win32-arm64-msvc": {
  1699. "version": "1.32.0",
  1700. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  1701. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  1702. "cpu": [
  1703. "arm64"
  1704. ],
  1705. "dev": true,
  1706. "license": "MPL-2.0",
  1707. "optional": true,
  1708. "os": [
  1709. "win32"
  1710. ],
  1711. "engines": {
  1712. "node": ">= 12.0.0"
  1713. },
  1714. "funding": {
  1715. "type": "opencollective",
  1716. "url": "https://opencollective.com/parcel"
  1717. }
  1718. },
  1719. "node_modules/lightningcss-win32-x64-msvc": {
  1720. "version": "1.32.0",
  1721. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  1722. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  1723. "cpu": [
  1724. "x64"
  1725. ],
  1726. "dev": true,
  1727. "license": "MPL-2.0",
  1728. "optional": true,
  1729. "os": [
  1730. "win32"
  1731. ],
  1732. "engines": {
  1733. "node": ">= 12.0.0"
  1734. },
  1735. "funding": {
  1736. "type": "opencollective",
  1737. "url": "https://opencollective.com/parcel"
  1738. }
  1739. },
  1740. "node_modules/lru-cache": {
  1741. "version": "5.1.1",
  1742. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
  1743. "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
  1744. "dev": true,
  1745. "license": "ISC",
  1746. "dependencies": {
  1747. "yallist": "^3.0.2"
  1748. }
  1749. },
  1750. "node_modules/magic-string": {
  1751. "version": "0.30.21",
  1752. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  1753. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1754. "license": "MIT",
  1755. "dependencies": {
  1756. "@jridgewell/sourcemap-codec": "^1.5.5"
  1757. }
  1758. },
  1759. "node_modules/mrmime": {
  1760. "version": "2.0.1",
  1761. "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
  1762. "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
  1763. "dev": true,
  1764. "license": "MIT",
  1765. "engines": {
  1766. "node": ">=10"
  1767. }
  1768. },
  1769. "node_modules/ms": {
  1770. "version": "2.1.3",
  1771. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  1772. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  1773. "dev": true,
  1774. "license": "MIT"
  1775. },
  1776. "node_modules/nanoid": {
  1777. "version": "3.3.11",
  1778. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  1779. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  1780. "funding": [
  1781. {
  1782. "type": "github",
  1783. "url": "https://github.com/sponsors/ai"
  1784. }
  1785. ],
  1786. "license": "MIT",
  1787. "bin": {
  1788. "nanoid": "bin/nanoid.cjs"
  1789. },
  1790. "engines": {
  1791. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1792. }
  1793. },
  1794. "node_modules/node-releases": {
  1795. "version": "2.0.37",
  1796. "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz",
  1797. "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==",
  1798. "dev": true,
  1799. "license": "MIT"
  1800. },
  1801. "node_modules/ohash": {
  1802. "version": "2.0.11",
  1803. "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
  1804. "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==",
  1805. "dev": true,
  1806. "license": "MIT"
  1807. },
  1808. "node_modules/open": {
  1809. "version": "10.2.0",
  1810. "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz",
  1811. "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==",
  1812. "dev": true,
  1813. "license": "MIT",
  1814. "dependencies": {
  1815. "default-browser": "^5.2.1",
  1816. "define-lazy-prop": "^3.0.0",
  1817. "is-inside-container": "^1.0.0",
  1818. "wsl-utils": "^0.1.0"
  1819. },
  1820. "engines": {
  1821. "node": ">=18"
  1822. },
  1823. "funding": {
  1824. "url": "https://github.com/sponsors/sindresorhus"
  1825. }
  1826. },
  1827. "node_modules/pathe": {
  1828. "version": "2.0.3",
  1829. "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
  1830. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  1831. "dev": true,
  1832. "license": "MIT"
  1833. },
  1834. "node_modules/perfect-debounce": {
  1835. "version": "2.1.0",
  1836. "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-2.1.0.tgz",
  1837. "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==",
  1838. "dev": true,
  1839. "license": "MIT"
  1840. },
  1841. "node_modules/picocolors": {
  1842. "version": "1.1.1",
  1843. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  1844. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1845. "license": "ISC"
  1846. },
  1847. "node_modules/picomatch": {
  1848. "version": "4.0.4",
  1849. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  1850. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  1851. "dev": true,
  1852. "license": "MIT",
  1853. "engines": {
  1854. "node": ">=12"
  1855. },
  1856. "funding": {
  1857. "url": "https://github.com/sponsors/jonschlinkert"
  1858. }
  1859. },
  1860. "node_modules/postcss": {
  1861. "version": "8.5.10",
  1862. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
  1863. "integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==",
  1864. "funding": [
  1865. {
  1866. "type": "opencollective",
  1867. "url": "https://opencollective.com/postcss/"
  1868. },
  1869. {
  1870. "type": "tidelift",
  1871. "url": "https://tidelift.com/funding/github/npm/postcss"
  1872. },
  1873. {
  1874. "type": "github",
  1875. "url": "https://github.com/sponsors/ai"
  1876. }
  1877. ],
  1878. "license": "MIT",
  1879. "dependencies": {
  1880. "nanoid": "^3.3.11",
  1881. "picocolors": "^1.1.1",
  1882. "source-map-js": "^1.2.1"
  1883. },
  1884. "engines": {
  1885. "node": "^10 || ^12 || >=14"
  1886. }
  1887. },
  1888. "node_modules/rolldown": {
  1889. "version": "1.0.0-rc.15",
  1890. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.15.tgz",
  1891. "integrity": "sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==",
  1892. "dev": true,
  1893. "license": "MIT",
  1894. "dependencies": {
  1895. "@oxc-project/types": "=0.124.0",
  1896. "@rolldown/pluginutils": "1.0.0-rc.15"
  1897. },
  1898. "bin": {
  1899. "rolldown": "bin/cli.mjs"
  1900. },
  1901. "engines": {
  1902. "node": "^20.19.0 || >=22.12.0"
  1903. },
  1904. "optionalDependencies": {
  1905. "@rolldown/binding-android-arm64": "1.0.0-rc.15",
  1906. "@rolldown/binding-darwin-arm64": "1.0.0-rc.15",
  1907. "@rolldown/binding-darwin-x64": "1.0.0-rc.15",
  1908. "@rolldown/binding-freebsd-x64": "1.0.0-rc.15",
  1909. "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.15",
  1910. "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.15",
  1911. "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.15",
  1912. "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.15",
  1913. "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.15",
  1914. "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.15",
  1915. "@rolldown/binding-linux-x64-musl": "1.0.0-rc.15",
  1916. "@rolldown/binding-openharmony-arm64": "1.0.0-rc.15",
  1917. "@rolldown/binding-wasm32-wasi": "1.0.0-rc.15",
  1918. "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.15",
  1919. "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.15"
  1920. }
  1921. },
  1922. "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
  1923. "version": "1.0.0-rc.15",
  1924. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.15.tgz",
  1925. "integrity": "sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==",
  1926. "dev": true,
  1927. "license": "MIT"
  1928. },
  1929. "node_modules/run-applescript": {
  1930. "version": "7.1.0",
  1931. "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz",
  1932. "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==",
  1933. "dev": true,
  1934. "license": "MIT",
  1935. "engines": {
  1936. "node": ">=18"
  1937. },
  1938. "funding": {
  1939. "url": "https://github.com/sponsors/sindresorhus"
  1940. }
  1941. },
  1942. "node_modules/semver": {
  1943. "version": "6.3.1",
  1944. "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
  1945. "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
  1946. "dev": true,
  1947. "license": "ISC",
  1948. "bin": {
  1949. "semver": "bin/semver.js"
  1950. }
  1951. },
  1952. "node_modules/sirv": {
  1953. "version": "3.0.2",
  1954. "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz",
  1955. "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==",
  1956. "dev": true,
  1957. "license": "MIT",
  1958. "dependencies": {
  1959. "@polka/url": "^1.0.0-next.24",
  1960. "mrmime": "^2.0.0",
  1961. "totalist": "^3.0.0"
  1962. },
  1963. "engines": {
  1964. "node": ">=18"
  1965. }
  1966. },
  1967. "node_modules/source-map-js": {
  1968. "version": "1.2.1",
  1969. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  1970. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  1971. "license": "BSD-3-Clause",
  1972. "engines": {
  1973. "node": ">=0.10.0"
  1974. }
  1975. },
  1976. "node_modules/tinyglobby": {
  1977. "version": "0.2.16",
  1978. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
  1979. "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
  1980. "dev": true,
  1981. "license": "MIT",
  1982. "dependencies": {
  1983. "fdir": "^6.5.0",
  1984. "picomatch": "^4.0.4"
  1985. },
  1986. "engines": {
  1987. "node": ">=12.0.0"
  1988. },
  1989. "funding": {
  1990. "url": "https://github.com/sponsors/SuperchupuDev"
  1991. }
  1992. },
  1993. "node_modules/totalist": {
  1994. "version": "3.0.1",
  1995. "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
  1996. "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
  1997. "dev": true,
  1998. "license": "MIT",
  1999. "engines": {
  2000. "node": ">=6"
  2001. }
  2002. },
  2003. "node_modules/tslib": {
  2004. "version": "2.8.1",
  2005. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  2006. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2007. "dev": true,
  2008. "license": "0BSD",
  2009. "optional": true
  2010. },
  2011. "node_modules/unplugin-utils": {
  2012. "version": "0.3.1",
  2013. "resolved": "https://registry.npmjs.org/unplugin-utils/-/unplugin-utils-0.3.1.tgz",
  2014. "integrity": "sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==",
  2015. "dev": true,
  2016. "license": "MIT",
  2017. "dependencies": {
  2018. "pathe": "^2.0.3",
  2019. "picomatch": "^4.0.3"
  2020. },
  2021. "engines": {
  2022. "node": ">=20.19.0"
  2023. },
  2024. "funding": {
  2025. "url": "https://github.com/sponsors/sxzz"
  2026. }
  2027. },
  2028. "node_modules/update-browserslist-db": {
  2029. "version": "1.2.3",
  2030. "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
  2031. "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
  2032. "dev": true,
  2033. "funding": [
  2034. {
  2035. "type": "opencollective",
  2036. "url": "https://opencollective.com/browserslist"
  2037. },
  2038. {
  2039. "type": "tidelift",
  2040. "url": "https://tidelift.com/funding/github/npm/browserslist"
  2041. },
  2042. {
  2043. "type": "github",
  2044. "url": "https://github.com/sponsors/ai"
  2045. }
  2046. ],
  2047. "license": "MIT",
  2048. "dependencies": {
  2049. "escalade": "^3.2.0",
  2050. "picocolors": "^1.1.1"
  2051. },
  2052. "bin": {
  2053. "update-browserslist-db": "cli.js"
  2054. },
  2055. "peerDependencies": {
  2056. "browserslist": ">= 4.21.0"
  2057. }
  2058. },
  2059. "node_modules/vite": {
  2060. "version": "8.0.8",
  2061. "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.8.tgz",
  2062. "integrity": "sha512-dbU7/iLVa8KZALJyLOBOQ88nOXtNG8vxKuOT4I2mD+Ya70KPceF4IAmDsmU0h1Qsn5bPrvsY9HJstCRh3hG6Uw==",
  2063. "dev": true,
  2064. "license": "MIT",
  2065. "dependencies": {
  2066. "lightningcss": "^1.32.0",
  2067. "picomatch": "^4.0.4",
  2068. "postcss": "^8.5.8",
  2069. "rolldown": "1.0.0-rc.15",
  2070. "tinyglobby": "^0.2.15"
  2071. },
  2072. "bin": {
  2073. "vite": "bin/vite.js"
  2074. },
  2075. "engines": {
  2076. "node": "^20.19.0 || >=22.12.0"
  2077. },
  2078. "funding": {
  2079. "url": "https://github.com/vitejs/vite?sponsor=1"
  2080. },
  2081. "optionalDependencies": {
  2082. "fsevents": "~2.3.3"
  2083. },
  2084. "peerDependencies": {
  2085. "@types/node": "^20.19.0 || >=22.12.0",
  2086. "@vitejs/devtools": "^0.1.0",
  2087. "esbuild": "^0.27.0 || ^0.28.0",
  2088. "jiti": ">=1.21.0",
  2089. "less": "^4.0.0",
  2090. "sass": "^1.70.0",
  2091. "sass-embedded": "^1.70.0",
  2092. "stylus": ">=0.54.8",
  2093. "sugarss": "^5.0.0",
  2094. "terser": "^5.16.0",
  2095. "tsx": "^4.8.1",
  2096. "yaml": "^2.4.2"
  2097. },
  2098. "peerDependenciesMeta": {
  2099. "@types/node": {
  2100. "optional": true
  2101. },
  2102. "@vitejs/devtools": {
  2103. "optional": true
  2104. },
  2105. "esbuild": {
  2106. "optional": true
  2107. },
  2108. "jiti": {
  2109. "optional": true
  2110. },
  2111. "less": {
  2112. "optional": true
  2113. },
  2114. "sass": {
  2115. "optional": true
  2116. },
  2117. "sass-embedded": {
  2118. "optional": true
  2119. },
  2120. "stylus": {
  2121. "optional": true
  2122. },
  2123. "sugarss": {
  2124. "optional": true
  2125. },
  2126. "terser": {
  2127. "optional": true
  2128. },
  2129. "tsx": {
  2130. "optional": true
  2131. },
  2132. "yaml": {
  2133. "optional": true
  2134. }
  2135. }
  2136. },
  2137. "node_modules/vite-plugin-vue-devtools": {
  2138. "version": "8.1.1",
  2139. "resolved": "https://registry.npmjs.org/vite-plugin-vue-devtools/-/vite-plugin-vue-devtools-8.1.1.tgz",
  2140. "integrity": "sha512-9qTpOmZ2vHpvlI9hdVXAQ1Ry4I8GcBArU7aPi0qfIaV7fQIXy0L1nb6X4mFY2Gw0dYshHuLbIl0Ulb572SCjsQ==",
  2141. "dev": true,
  2142. "license": "MIT",
  2143. "dependencies": {
  2144. "@vue/devtools-core": "^8.1.1",
  2145. "@vue/devtools-kit": "^8.1.1",
  2146. "@vue/devtools-shared": "^8.1.1",
  2147. "sirv": "^3.0.2",
  2148. "vite-plugin-inspect": "^11.3.3",
  2149. "vite-plugin-vue-inspector": "^5.3.2"
  2150. },
  2151. "engines": {
  2152. "node": ">=v14.21.3"
  2153. },
  2154. "peerDependencies": {
  2155. "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
  2156. }
  2157. },
  2158. "node_modules/vite-plugin-vue-devtools/node_modules/vite-plugin-inspect": {
  2159. "version": "11.3.3",
  2160. "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-11.3.3.tgz",
  2161. "integrity": "sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==",
  2162. "dev": true,
  2163. "license": "MIT",
  2164. "dependencies": {
  2165. "ansis": "^4.1.0",
  2166. "debug": "^4.4.1",
  2167. "error-stack-parser-es": "^1.0.5",
  2168. "ohash": "^2.0.11",
  2169. "open": "^10.2.0",
  2170. "perfect-debounce": "^2.0.0",
  2171. "sirv": "^3.0.1",
  2172. "unplugin-utils": "^0.3.0",
  2173. "vite-dev-rpc": "^1.1.0"
  2174. },
  2175. "engines": {
  2176. "node": ">=14"
  2177. },
  2178. "funding": {
  2179. "url": "https://github.com/sponsors/antfu"
  2180. },
  2181. "peerDependencies": {
  2182. "vite": "^6.0.0 || ^7.0.0-0"
  2183. },
  2184. "peerDependenciesMeta": {
  2185. "@nuxt/kit": {
  2186. "optional": true
  2187. }
  2188. }
  2189. },
  2190. "node_modules/vite-plugin-vue-devtools/node_modules/vite-plugin-inspect/node_modules/vite-dev-rpc": {
  2191. "version": "1.1.0",
  2192. "resolved": "https://registry.npmjs.org/vite-dev-rpc/-/vite-dev-rpc-1.1.0.tgz",
  2193. "integrity": "sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==",
  2194. "dev": true,
  2195. "license": "MIT",
  2196. "dependencies": {
  2197. "birpc": "^2.4.0",
  2198. "vite-hot-client": "^2.1.0"
  2199. },
  2200. "funding": {
  2201. "url": "https://github.com/sponsors/antfu"
  2202. },
  2203. "peerDependencies": {
  2204. "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0"
  2205. }
  2206. },
  2207. "node_modules/vite-plugin-vue-devtools/node_modules/vite-plugin-inspect/node_modules/vite-dev-rpc/node_modules/vite-hot-client": {
  2208. "version": "2.1.0",
  2209. "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-2.1.0.tgz",
  2210. "integrity": "sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==",
  2211. "dev": true,
  2212. "license": "MIT",
  2213. "funding": {
  2214. "url": "https://github.com/sponsors/antfu"
  2215. },
  2216. "peerDependencies": {
  2217. "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0"
  2218. }
  2219. },
  2220. "node_modules/vite-plugin-vue-inspector": {
  2221. "version": "5.4.0",
  2222. "resolved": "https://registry.npmjs.org/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.4.0.tgz",
  2223. "integrity": "sha512-Iq/024CydcE46FZqWPU4t4lw4uYOdLnFSO1RNxJVt2qY9zxIjmnkBqhHnYaReWM82kmNnaXs7OkfgRrV2GEjyw==",
  2224. "dev": true,
  2225. "license": "MIT",
  2226. "dependencies": {
  2227. "@babel/core": "^7.23.0",
  2228. "@babel/plugin-proposal-decorators": "^7.23.0",
  2229. "@babel/plugin-syntax-import-attributes": "^7.22.5",
  2230. "@babel/plugin-syntax-import-meta": "^7.10.4",
  2231. "@babel/plugin-transform-typescript": "^7.22.15",
  2232. "@vue/babel-plugin-jsx": "^1.1.5",
  2233. "@vue/compiler-dom": "^3.3.4",
  2234. "kolorist": "^1.8.0",
  2235. "magic-string": "^0.30.4"
  2236. },
  2237. "peerDependencies": {
  2238. "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
  2239. }
  2240. },
  2241. "node_modules/vue": {
  2242. "version": "3.5.32",
  2243. "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.32.tgz",
  2244. "integrity": "sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==",
  2245. "license": "MIT",
  2246. "dependencies": {
  2247. "@vue/compiler-dom": "3.5.32",
  2248. "@vue/compiler-sfc": "3.5.32",
  2249. "@vue/runtime-dom": "3.5.32",
  2250. "@vue/server-renderer": "3.5.32",
  2251. "@vue/shared": "3.5.32"
  2252. },
  2253. "peerDependencies": {
  2254. "typescript": "*"
  2255. },
  2256. "peerDependenciesMeta": {
  2257. "typescript": {
  2258. "optional": true
  2259. }
  2260. }
  2261. },
  2262. "node_modules/wsl-utils": {
  2263. "version": "0.1.0",
  2264. "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz",
  2265. "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==",
  2266. "dev": true,
  2267. "license": "MIT",
  2268. "dependencies": {
  2269. "is-wsl": "^3.1.0"
  2270. },
  2271. "engines": {
  2272. "node": ">=18"
  2273. },
  2274. "funding": {
  2275. "url": "https://github.com/sponsors/sindresorhus"
  2276. }
  2277. },
  2278. "node_modules/yallist": {
  2279. "version": "3.1.1",
  2280. "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
  2281. "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
  2282. "dev": true,
  2283. "license": "ISC"
  2284. }
  2285. }
  2286. }