package-lock.json 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  1. {
  2. "name": "frontend",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "frontend",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@element-plus/icons-vue": "^2.3.2",
  12. "@wangeditor/editor": "^5.1.23",
  13. "@wangeditor/editor-for-vue": "^5.1.12",
  14. "axios": "^1.14.0",
  15. "element-china-area-data": "^6.1.0",
  16. "element-plus": "^2.13.6",
  17. "pinia": "^3.0.4",
  18. "sass": "^1.99.0",
  19. "vue": "^3.5.32",
  20. "vue-router": "^4.6.4",
  21. "xlsx": "^0.18.5"
  22. },
  23. "devDependencies": {
  24. "@vitejs/plugin-vue": "^6.0.5",
  25. "vite": "^8.0.4"
  26. }
  27. },
  28. "node_modules/@babel/helper-string-parser": {
  29. "version": "7.27.1",
  30. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  31. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  32. "license": "MIT",
  33. "engines": {
  34. "node": ">=6.9.0"
  35. }
  36. },
  37. "node_modules/@babel/helper-validator-identifier": {
  38. "version": "7.28.5",
  39. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  40. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  41. "license": "MIT",
  42. "engines": {
  43. "node": ">=6.9.0"
  44. }
  45. },
  46. "node_modules/@babel/parser": {
  47. "version": "7.29.3",
  48. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz",
  49. "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
  50. "license": "MIT",
  51. "dependencies": {
  52. "@babel/types": "^7.29.0"
  53. },
  54. "bin": {
  55. "parser": "bin/babel-parser.js"
  56. },
  57. "engines": {
  58. "node": ">=6.0.0"
  59. }
  60. },
  61. "node_modules/@babel/runtime": {
  62. "version": "7.29.2",
  63. "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
  64. "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
  65. "license": "MIT",
  66. "engines": {
  67. "node": ">=6.9.0"
  68. }
  69. },
  70. "node_modules/@babel/types": {
  71. "version": "7.29.0",
  72. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  73. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  74. "license": "MIT",
  75. "dependencies": {
  76. "@babel/helper-string-parser": "^7.27.1",
  77. "@babel/helper-validator-identifier": "^7.28.5"
  78. },
  79. "engines": {
  80. "node": ">=6.9.0"
  81. }
  82. },
  83. "node_modules/@ctrl/tinycolor": {
  84. "version": "4.2.0",
  85. "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz",
  86. "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==",
  87. "license": "MIT",
  88. "engines": {
  89. "node": ">=14"
  90. }
  91. },
  92. "node_modules/@element-plus/icons-vue": {
  93. "version": "2.3.2",
  94. "resolved": "https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  95. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  96. "license": "MIT",
  97. "peerDependencies": {
  98. "vue": "^3.2.0"
  99. }
  100. },
  101. "node_modules/@emnapi/core": {
  102. "version": "1.10.0",
  103. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
  104. "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
  105. "dev": true,
  106. "license": "MIT",
  107. "optional": true,
  108. "dependencies": {
  109. "@emnapi/wasi-threads": "1.2.1",
  110. "tslib": "^2.4.0"
  111. }
  112. },
  113. "node_modules/@emnapi/runtime": {
  114. "version": "1.10.0",
  115. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
  116. "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
  117. "dev": true,
  118. "license": "MIT",
  119. "optional": true,
  120. "dependencies": {
  121. "tslib": "^2.4.0"
  122. }
  123. },
  124. "node_modules/@emnapi/wasi-threads": {
  125. "version": "1.2.1",
  126. "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
  127. "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
  128. "dev": true,
  129. "license": "MIT",
  130. "optional": true,
  131. "dependencies": {
  132. "tslib": "^2.4.0"
  133. }
  134. },
  135. "node_modules/@floating-ui/core": {
  136. "version": "1.7.5",
  137. "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz",
  138. "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
  139. "license": "MIT",
  140. "dependencies": {
  141. "@floating-ui/utils": "^0.2.11"
  142. }
  143. },
  144. "node_modules/@floating-ui/dom": {
  145. "version": "1.7.6",
  146. "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.6.tgz",
  147. "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
  148. "license": "MIT",
  149. "dependencies": {
  150. "@floating-ui/core": "^1.7.5",
  151. "@floating-ui/utils": "^0.2.11"
  152. }
  153. },
  154. "node_modules/@floating-ui/utils": {
  155. "version": "0.2.11",
  156. "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.11.tgz",
  157. "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
  158. "license": "MIT"
  159. },
  160. "node_modules/@jridgewell/sourcemap-codec": {
  161. "version": "1.5.5",
  162. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  163. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  164. "license": "MIT"
  165. },
  166. "node_modules/@napi-rs/wasm-runtime": {
  167. "version": "1.1.4",
  168. "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
  169. "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
  170. "dev": true,
  171. "license": "MIT",
  172. "optional": true,
  173. "dependencies": {
  174. "@tybys/wasm-util": "^0.10.1"
  175. },
  176. "funding": {
  177. "type": "github",
  178. "url": "https://github.com/sponsors/Brooooooklyn"
  179. },
  180. "peerDependencies": {
  181. "@emnapi/core": "^1.7.1",
  182. "@emnapi/runtime": "^1.7.1"
  183. }
  184. },
  185. "node_modules/@oxc-project/types": {
  186. "version": "0.129.0",
  187. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.129.0.tgz",
  188. "integrity": "sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==",
  189. "dev": true,
  190. "license": "MIT",
  191. "funding": {
  192. "url": "https://github.com/sponsors/Boshen"
  193. }
  194. },
  195. "node_modules/@parcel/watcher": {
  196. "version": "2.5.6",
  197. "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz",
  198. "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
  199. "hasInstallScript": true,
  200. "license": "MIT",
  201. "optional": true,
  202. "dependencies": {
  203. "detect-libc": "^2.0.3",
  204. "is-glob": "^4.0.3",
  205. "node-addon-api": "^7.0.0",
  206. "picomatch": "^4.0.3"
  207. },
  208. "engines": {
  209. "node": ">= 10.0.0"
  210. },
  211. "funding": {
  212. "type": "opencollective",
  213. "url": "https://opencollective.com/parcel"
  214. },
  215. "optionalDependencies": {
  216. "@parcel/watcher-android-arm64": "2.5.6",
  217. "@parcel/watcher-darwin-arm64": "2.5.6",
  218. "@parcel/watcher-darwin-x64": "2.5.6",
  219. "@parcel/watcher-freebsd-x64": "2.5.6",
  220. "@parcel/watcher-linux-arm-glibc": "2.5.6",
  221. "@parcel/watcher-linux-arm-musl": "2.5.6",
  222. "@parcel/watcher-linux-arm64-glibc": "2.5.6",
  223. "@parcel/watcher-linux-arm64-musl": "2.5.6",
  224. "@parcel/watcher-linux-x64-glibc": "2.5.6",
  225. "@parcel/watcher-linux-x64-musl": "2.5.6",
  226. "@parcel/watcher-win32-arm64": "2.5.6",
  227. "@parcel/watcher-win32-ia32": "2.5.6",
  228. "@parcel/watcher-win32-x64": "2.5.6"
  229. }
  230. },
  231. "node_modules/@parcel/watcher-android-arm64": {
  232. "version": "2.5.6",
  233. "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
  234. "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
  235. "cpu": [
  236. "arm64"
  237. ],
  238. "license": "MIT",
  239. "optional": true,
  240. "os": [
  241. "android"
  242. ],
  243. "engines": {
  244. "node": ">= 10.0.0"
  245. },
  246. "funding": {
  247. "type": "opencollective",
  248. "url": "https://opencollective.com/parcel"
  249. }
  250. },
  251. "node_modules/@parcel/watcher-darwin-arm64": {
  252. "version": "2.5.6",
  253. "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
  254. "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
  255. "cpu": [
  256. "arm64"
  257. ],
  258. "license": "MIT",
  259. "optional": true,
  260. "os": [
  261. "darwin"
  262. ],
  263. "engines": {
  264. "node": ">= 10.0.0"
  265. },
  266. "funding": {
  267. "type": "opencollective",
  268. "url": "https://opencollective.com/parcel"
  269. }
  270. },
  271. "node_modules/@parcel/watcher-darwin-x64": {
  272. "version": "2.5.6",
  273. "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
  274. "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
  275. "cpu": [
  276. "x64"
  277. ],
  278. "license": "MIT",
  279. "optional": true,
  280. "os": [
  281. "darwin"
  282. ],
  283. "engines": {
  284. "node": ">= 10.0.0"
  285. },
  286. "funding": {
  287. "type": "opencollective",
  288. "url": "https://opencollective.com/parcel"
  289. }
  290. },
  291. "node_modules/@parcel/watcher-freebsd-x64": {
  292. "version": "2.5.6",
  293. "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
  294. "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
  295. "cpu": [
  296. "x64"
  297. ],
  298. "license": "MIT",
  299. "optional": true,
  300. "os": [
  301. "freebsd"
  302. ],
  303. "engines": {
  304. "node": ">= 10.0.0"
  305. },
  306. "funding": {
  307. "type": "opencollective",
  308. "url": "https://opencollective.com/parcel"
  309. }
  310. },
  311. "node_modules/@parcel/watcher-linux-arm-glibc": {
  312. "version": "2.5.6",
  313. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
  314. "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
  315. "cpu": [
  316. "arm"
  317. ],
  318. "license": "MIT",
  319. "optional": true,
  320. "os": [
  321. "linux"
  322. ],
  323. "engines": {
  324. "node": ">= 10.0.0"
  325. },
  326. "funding": {
  327. "type": "opencollective",
  328. "url": "https://opencollective.com/parcel"
  329. }
  330. },
  331. "node_modules/@parcel/watcher-linux-arm-musl": {
  332. "version": "2.5.6",
  333. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
  334. "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
  335. "cpu": [
  336. "arm"
  337. ],
  338. "license": "MIT",
  339. "optional": true,
  340. "os": [
  341. "linux"
  342. ],
  343. "engines": {
  344. "node": ">= 10.0.0"
  345. },
  346. "funding": {
  347. "type": "opencollective",
  348. "url": "https://opencollective.com/parcel"
  349. }
  350. },
  351. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  352. "version": "2.5.6",
  353. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
  354. "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
  355. "cpu": [
  356. "arm64"
  357. ],
  358. "license": "MIT",
  359. "optional": true,
  360. "os": [
  361. "linux"
  362. ],
  363. "engines": {
  364. "node": ">= 10.0.0"
  365. },
  366. "funding": {
  367. "type": "opencollective",
  368. "url": "https://opencollective.com/parcel"
  369. }
  370. },
  371. "node_modules/@parcel/watcher-linux-arm64-musl": {
  372. "version": "2.5.6",
  373. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
  374. "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
  375. "cpu": [
  376. "arm64"
  377. ],
  378. "license": "MIT",
  379. "optional": true,
  380. "os": [
  381. "linux"
  382. ],
  383. "engines": {
  384. "node": ">= 10.0.0"
  385. },
  386. "funding": {
  387. "type": "opencollective",
  388. "url": "https://opencollective.com/parcel"
  389. }
  390. },
  391. "node_modules/@parcel/watcher-linux-x64-glibc": {
  392. "version": "2.5.6",
  393. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
  394. "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
  395. "cpu": [
  396. "x64"
  397. ],
  398. "license": "MIT",
  399. "optional": true,
  400. "os": [
  401. "linux"
  402. ],
  403. "engines": {
  404. "node": ">= 10.0.0"
  405. },
  406. "funding": {
  407. "type": "opencollective",
  408. "url": "https://opencollective.com/parcel"
  409. }
  410. },
  411. "node_modules/@parcel/watcher-linux-x64-musl": {
  412. "version": "2.5.6",
  413. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
  414. "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
  415. "cpu": [
  416. "x64"
  417. ],
  418. "license": "MIT",
  419. "optional": true,
  420. "os": [
  421. "linux"
  422. ],
  423. "engines": {
  424. "node": ">= 10.0.0"
  425. },
  426. "funding": {
  427. "type": "opencollective",
  428. "url": "https://opencollective.com/parcel"
  429. }
  430. },
  431. "node_modules/@parcel/watcher-win32-arm64": {
  432. "version": "2.5.6",
  433. "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
  434. "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
  435. "cpu": [
  436. "arm64"
  437. ],
  438. "license": "MIT",
  439. "optional": true,
  440. "os": [
  441. "win32"
  442. ],
  443. "engines": {
  444. "node": ">= 10.0.0"
  445. },
  446. "funding": {
  447. "type": "opencollective",
  448. "url": "https://opencollective.com/parcel"
  449. }
  450. },
  451. "node_modules/@parcel/watcher-win32-ia32": {
  452. "version": "2.5.6",
  453. "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
  454. "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
  455. "cpu": [
  456. "ia32"
  457. ],
  458. "license": "MIT",
  459. "optional": true,
  460. "os": [
  461. "win32"
  462. ],
  463. "engines": {
  464. "node": ">= 10.0.0"
  465. },
  466. "funding": {
  467. "type": "opencollective",
  468. "url": "https://opencollective.com/parcel"
  469. }
  470. },
  471. "node_modules/@parcel/watcher-win32-x64": {
  472. "version": "2.5.6",
  473. "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
  474. "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
  475. "cpu": [
  476. "x64"
  477. ],
  478. "license": "MIT",
  479. "optional": true,
  480. "os": [
  481. "win32"
  482. ],
  483. "engines": {
  484. "node": ">= 10.0.0"
  485. },
  486. "funding": {
  487. "type": "opencollective",
  488. "url": "https://opencollective.com/parcel"
  489. }
  490. },
  491. "node_modules/@popperjs/core": {
  492. "name": "@sxzz/popperjs-es",
  493. "version": "2.11.8",
  494. "resolved": "https://registry.npmjs.org/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  495. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  496. "license": "MIT",
  497. "funding": {
  498. "type": "opencollective",
  499. "url": "https://opencollective.com/popperjs"
  500. }
  501. },
  502. "node_modules/@rolldown/binding-android-arm64": {
  503. "version": "1.0.0",
  504. "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0.tgz",
  505. "integrity": "sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==",
  506. "cpu": [
  507. "arm64"
  508. ],
  509. "dev": true,
  510. "license": "MIT",
  511. "optional": true,
  512. "os": [
  513. "android"
  514. ],
  515. "engines": {
  516. "node": "^20.19.0 || >=22.12.0"
  517. }
  518. },
  519. "node_modules/@rolldown/binding-darwin-arm64": {
  520. "version": "1.0.0",
  521. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0.tgz",
  522. "integrity": "sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==",
  523. "cpu": [
  524. "arm64"
  525. ],
  526. "dev": true,
  527. "license": "MIT",
  528. "optional": true,
  529. "os": [
  530. "darwin"
  531. ],
  532. "engines": {
  533. "node": "^20.19.0 || >=22.12.0"
  534. }
  535. },
  536. "node_modules/@rolldown/binding-darwin-x64": {
  537. "version": "1.0.0",
  538. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0.tgz",
  539. "integrity": "sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==",
  540. "cpu": [
  541. "x64"
  542. ],
  543. "dev": true,
  544. "license": "MIT",
  545. "optional": true,
  546. "os": [
  547. "darwin"
  548. ],
  549. "engines": {
  550. "node": "^20.19.0 || >=22.12.0"
  551. }
  552. },
  553. "node_modules/@rolldown/binding-freebsd-x64": {
  554. "version": "1.0.0",
  555. "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0.tgz",
  556. "integrity": "sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==",
  557. "cpu": [
  558. "x64"
  559. ],
  560. "dev": true,
  561. "license": "MIT",
  562. "optional": true,
  563. "os": [
  564. "freebsd"
  565. ],
  566. "engines": {
  567. "node": "^20.19.0 || >=22.12.0"
  568. }
  569. },
  570. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  571. "version": "1.0.0",
  572. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0.tgz",
  573. "integrity": "sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==",
  574. "cpu": [
  575. "arm"
  576. ],
  577. "dev": true,
  578. "license": "MIT",
  579. "optional": true,
  580. "os": [
  581. "linux"
  582. ],
  583. "engines": {
  584. "node": "^20.19.0 || >=22.12.0"
  585. }
  586. },
  587. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  588. "version": "1.0.0",
  589. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0.tgz",
  590. "integrity": "sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==",
  591. "cpu": [
  592. "arm64"
  593. ],
  594. "dev": true,
  595. "license": "MIT",
  596. "optional": true,
  597. "os": [
  598. "linux"
  599. ],
  600. "engines": {
  601. "node": "^20.19.0 || >=22.12.0"
  602. }
  603. },
  604. "node_modules/@rolldown/binding-linux-arm64-musl": {
  605. "version": "1.0.0",
  606. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0.tgz",
  607. "integrity": "sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==",
  608. "cpu": [
  609. "arm64"
  610. ],
  611. "dev": true,
  612. "license": "MIT",
  613. "optional": true,
  614. "os": [
  615. "linux"
  616. ],
  617. "engines": {
  618. "node": "^20.19.0 || >=22.12.0"
  619. }
  620. },
  621. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  622. "version": "1.0.0",
  623. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0.tgz",
  624. "integrity": "sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==",
  625. "cpu": [
  626. "ppc64"
  627. ],
  628. "dev": true,
  629. "license": "MIT",
  630. "optional": true,
  631. "os": [
  632. "linux"
  633. ],
  634. "engines": {
  635. "node": "^20.19.0 || >=22.12.0"
  636. }
  637. },
  638. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  639. "version": "1.0.0",
  640. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0.tgz",
  641. "integrity": "sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==",
  642. "cpu": [
  643. "s390x"
  644. ],
  645. "dev": true,
  646. "license": "MIT",
  647. "optional": true,
  648. "os": [
  649. "linux"
  650. ],
  651. "engines": {
  652. "node": "^20.19.0 || >=22.12.0"
  653. }
  654. },
  655. "node_modules/@rolldown/binding-linux-x64-gnu": {
  656. "version": "1.0.0",
  657. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0.tgz",
  658. "integrity": "sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==",
  659. "cpu": [
  660. "x64"
  661. ],
  662. "dev": true,
  663. "license": "MIT",
  664. "optional": true,
  665. "os": [
  666. "linux"
  667. ],
  668. "engines": {
  669. "node": "^20.19.0 || >=22.12.0"
  670. }
  671. },
  672. "node_modules/@rolldown/binding-linux-x64-musl": {
  673. "version": "1.0.0",
  674. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0.tgz",
  675. "integrity": "sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==",
  676. "cpu": [
  677. "x64"
  678. ],
  679. "dev": true,
  680. "license": "MIT",
  681. "optional": true,
  682. "os": [
  683. "linux"
  684. ],
  685. "engines": {
  686. "node": "^20.19.0 || >=22.12.0"
  687. }
  688. },
  689. "node_modules/@rolldown/binding-openharmony-arm64": {
  690. "version": "1.0.0",
  691. "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0.tgz",
  692. "integrity": "sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==",
  693. "cpu": [
  694. "arm64"
  695. ],
  696. "dev": true,
  697. "license": "MIT",
  698. "optional": true,
  699. "os": [
  700. "openharmony"
  701. ],
  702. "engines": {
  703. "node": "^20.19.0 || >=22.12.0"
  704. }
  705. },
  706. "node_modules/@rolldown/binding-wasm32-wasi": {
  707. "version": "1.0.0",
  708. "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0.tgz",
  709. "integrity": "sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==",
  710. "cpu": [
  711. "wasm32"
  712. ],
  713. "dev": true,
  714. "license": "MIT",
  715. "optional": true,
  716. "dependencies": {
  717. "@emnapi/core": "1.10.0",
  718. "@emnapi/runtime": "1.10.0",
  719. "@napi-rs/wasm-runtime": "^1.1.4"
  720. },
  721. "engines": {
  722. "node": "^20.19.0 || >=22.12.0"
  723. }
  724. },
  725. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  726. "version": "1.0.0",
  727. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0.tgz",
  728. "integrity": "sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==",
  729. "cpu": [
  730. "arm64"
  731. ],
  732. "dev": true,
  733. "license": "MIT",
  734. "optional": true,
  735. "os": [
  736. "win32"
  737. ],
  738. "engines": {
  739. "node": "^20.19.0 || >=22.12.0"
  740. }
  741. },
  742. "node_modules/@rolldown/binding-win32-x64-msvc": {
  743. "version": "1.0.0",
  744. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0.tgz",
  745. "integrity": "sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==",
  746. "cpu": [
  747. "x64"
  748. ],
  749. "dev": true,
  750. "license": "MIT",
  751. "optional": true,
  752. "os": [
  753. "win32"
  754. ],
  755. "engines": {
  756. "node": "^20.19.0 || >=22.12.0"
  757. }
  758. },
  759. "node_modules/@rolldown/pluginutils": {
  760. "version": "1.0.0-rc.13",
  761. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.13.tgz",
  762. "integrity": "sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==",
  763. "dev": true,
  764. "license": "MIT"
  765. },
  766. "node_modules/@transloadit/prettier-bytes": {
  767. "version": "0.0.7",
  768. "resolved": "https://registry.npmjs.org/@transloadit/prettier-bytes/-/prettier-bytes-0.0.7.tgz",
  769. "integrity": "sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==",
  770. "license": "MIT"
  771. },
  772. "node_modules/@tybys/wasm-util": {
  773. "version": "0.10.2",
  774. "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
  775. "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
  776. "dev": true,
  777. "license": "MIT",
  778. "optional": true,
  779. "dependencies": {
  780. "tslib": "^2.4.0"
  781. }
  782. },
  783. "node_modules/@types/event-emitter": {
  784. "version": "0.3.5",
  785. "resolved": "https://registry.npmjs.org/@types/event-emitter/-/event-emitter-0.3.5.tgz",
  786. "integrity": "sha512-zx2/Gg0Eg7gwEiOIIh5w9TrhKKTeQh7CPCOPNc0el4pLSwzebA8SmnHwZs2dWlLONvyulykSwGSQxQHLhjGLvQ==",
  787. "license": "MIT"
  788. },
  789. "node_modules/@types/lodash": {
  790. "version": "4.17.24",
  791. "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.24.tgz",
  792. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  793. "license": "MIT"
  794. },
  795. "node_modules/@types/lodash-es": {
  796. "version": "4.17.12",
  797. "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  798. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  799. "license": "MIT",
  800. "dependencies": {
  801. "@types/lodash": "*"
  802. }
  803. },
  804. "node_modules/@types/web-bluetooth": {
  805. "version": "0.0.21",
  806. "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz",
  807. "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==",
  808. "license": "MIT"
  809. },
  810. "node_modules/@uppy/companion-client": {
  811. "version": "2.2.2",
  812. "resolved": "https://registry.npmjs.org/@uppy/companion-client/-/companion-client-2.2.2.tgz",
  813. "integrity": "sha512-5mTp2iq97/mYSisMaBtFRry6PTgZA6SIL7LePteOV5x0/DxKfrZW3DEiQERJmYpHzy7k8johpm2gHnEKto56Og==",
  814. "license": "MIT",
  815. "dependencies": {
  816. "@uppy/utils": "^4.1.2",
  817. "namespace-emitter": "^2.0.1"
  818. }
  819. },
  820. "node_modules/@uppy/core": {
  821. "version": "2.3.4",
  822. "resolved": "https://registry.npmjs.org/@uppy/core/-/core-2.3.4.tgz",
  823. "integrity": "sha512-iWAqppC8FD8mMVqewavCz+TNaet6HPXitmGXpGGREGrakZ4FeuWytVdrelydzTdXx6vVKkOmI2FLztGg73sENQ==",
  824. "license": "MIT",
  825. "dependencies": {
  826. "@transloadit/prettier-bytes": "0.0.7",
  827. "@uppy/store-default": "^2.1.1",
  828. "@uppy/utils": "^4.1.3",
  829. "lodash.throttle": "^4.1.1",
  830. "mime-match": "^1.0.2",
  831. "namespace-emitter": "^2.0.1",
  832. "nanoid": "^3.1.25",
  833. "preact": "^10.5.13"
  834. }
  835. },
  836. "node_modules/@uppy/store-default": {
  837. "version": "2.1.1",
  838. "resolved": "https://registry.npmjs.org/@uppy/store-default/-/store-default-2.1.1.tgz",
  839. "integrity": "sha512-xnpTxvot2SeAwGwbvmJ899ASk5tYXhmZzD/aCFsXePh/v8rNvR2pKlcQUH7cF/y4baUGq3FHO/daKCok/mpKqQ==",
  840. "license": "MIT"
  841. },
  842. "node_modules/@uppy/utils": {
  843. "version": "4.1.3",
  844. "resolved": "https://registry.npmjs.org/@uppy/utils/-/utils-4.1.3.tgz",
  845. "integrity": "sha512-nTuMvwWYobnJcytDO3t+D6IkVq/Qs4Xv3vyoEZ+Iaf8gegZP+rEyoaFT2CK5XLRMienPyqRqNbIfRuFaOWSIFw==",
  846. "license": "MIT",
  847. "dependencies": {
  848. "lodash.throttle": "^4.1.1"
  849. }
  850. },
  851. "node_modules/@uppy/xhr-upload": {
  852. "version": "2.1.3",
  853. "resolved": "https://registry.npmjs.org/@uppy/xhr-upload/-/xhr-upload-2.1.3.tgz",
  854. "integrity": "sha512-YWOQ6myBVPs+mhNjfdWsQyMRWUlrDLMoaG7nvf/G6Y3GKZf8AyjFDjvvJ49XWQ+DaZOftGkHmF1uh/DBeGivJQ==",
  855. "license": "MIT",
  856. "dependencies": {
  857. "@uppy/companion-client": "^2.2.2",
  858. "@uppy/utils": "^4.1.2",
  859. "nanoid": "^3.1.25"
  860. },
  861. "peerDependencies": {
  862. "@uppy/core": "^2.3.3"
  863. }
  864. },
  865. "node_modules/@vitejs/plugin-vue": {
  866. "version": "6.0.6",
  867. "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.6.tgz",
  868. "integrity": "sha512-u9HHgfrq3AjXlysn0eINFnWQOJQLO9WN6VprZ8FXl7A2bYisv3Hui9Ij+7QZ41F/WYWarHjwBbXtD7dKg3uxbg==",
  869. "dev": true,
  870. "license": "MIT",
  871. "dependencies": {
  872. "@rolldown/pluginutils": "1.0.0-rc.13"
  873. },
  874. "engines": {
  875. "node": "^20.19.0 || >=22.12.0"
  876. },
  877. "peerDependencies": {
  878. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  879. "vue": "^3.2.25"
  880. }
  881. },
  882. "node_modules/@vue/compiler-core": {
  883. "version": "3.5.34",
  884. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.34.tgz",
  885. "integrity": "sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==",
  886. "license": "MIT",
  887. "dependencies": {
  888. "@babel/parser": "^7.29.3",
  889. "@vue/shared": "3.5.34",
  890. "entities": "^7.0.1",
  891. "estree-walker": "^2.0.2",
  892. "source-map-js": "^1.2.1"
  893. }
  894. },
  895. "node_modules/@vue/compiler-dom": {
  896. "version": "3.5.34",
  897. "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.34.tgz",
  898. "integrity": "sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==",
  899. "license": "MIT",
  900. "dependencies": {
  901. "@vue/compiler-core": "3.5.34",
  902. "@vue/shared": "3.5.34"
  903. }
  904. },
  905. "node_modules/@vue/compiler-sfc": {
  906. "version": "3.5.34",
  907. "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.34.tgz",
  908. "integrity": "sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==",
  909. "license": "MIT",
  910. "dependencies": {
  911. "@babel/parser": "^7.29.3",
  912. "@vue/compiler-core": "3.5.34",
  913. "@vue/compiler-dom": "3.5.34",
  914. "@vue/compiler-ssr": "3.5.34",
  915. "@vue/shared": "3.5.34",
  916. "estree-walker": "^2.0.2",
  917. "magic-string": "^0.30.21",
  918. "postcss": "^8.5.14",
  919. "source-map-js": "^1.2.1"
  920. }
  921. },
  922. "node_modules/@vue/compiler-ssr": {
  923. "version": "3.5.34",
  924. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.34.tgz",
  925. "integrity": "sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==",
  926. "license": "MIT",
  927. "dependencies": {
  928. "@vue/compiler-dom": "3.5.34",
  929. "@vue/shared": "3.5.34"
  930. }
  931. },
  932. "node_modules/@vue/devtools-api": {
  933. "version": "7.7.9",
  934. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
  935. "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
  936. "license": "MIT",
  937. "dependencies": {
  938. "@vue/devtools-kit": "^7.7.9"
  939. }
  940. },
  941. "node_modules/@vue/devtools-kit": {
  942. "version": "7.7.9",
  943. "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
  944. "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
  945. "license": "MIT",
  946. "dependencies": {
  947. "@vue/devtools-shared": "^7.7.9",
  948. "birpc": "^2.3.0",
  949. "hookable": "^5.5.3",
  950. "mitt": "^3.0.1",
  951. "perfect-debounce": "^1.0.0",
  952. "speakingurl": "^14.0.1",
  953. "superjson": "^2.2.2"
  954. }
  955. },
  956. "node_modules/@vue/devtools-shared": {
  957. "version": "7.7.9",
  958. "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
  959. "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
  960. "license": "MIT",
  961. "dependencies": {
  962. "rfdc": "^1.4.1"
  963. }
  964. },
  965. "node_modules/@vue/reactivity": {
  966. "version": "3.5.34",
  967. "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.34.tgz",
  968. "integrity": "sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==",
  969. "license": "MIT",
  970. "dependencies": {
  971. "@vue/shared": "3.5.34"
  972. }
  973. },
  974. "node_modules/@vue/runtime-core": {
  975. "version": "3.5.34",
  976. "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.34.tgz",
  977. "integrity": "sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==",
  978. "license": "MIT",
  979. "dependencies": {
  980. "@vue/reactivity": "3.5.34",
  981. "@vue/shared": "3.5.34"
  982. }
  983. },
  984. "node_modules/@vue/runtime-dom": {
  985. "version": "3.5.34",
  986. "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.34.tgz",
  987. "integrity": "sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==",
  988. "license": "MIT",
  989. "dependencies": {
  990. "@vue/reactivity": "3.5.34",
  991. "@vue/runtime-core": "3.5.34",
  992. "@vue/shared": "3.5.34",
  993. "csstype": "^3.2.3"
  994. }
  995. },
  996. "node_modules/@vue/server-renderer": {
  997. "version": "3.5.34",
  998. "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.34.tgz",
  999. "integrity": "sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==",
  1000. "license": "MIT",
  1001. "dependencies": {
  1002. "@vue/compiler-ssr": "3.5.34",
  1003. "@vue/shared": "3.5.34"
  1004. },
  1005. "peerDependencies": {
  1006. "vue": "3.5.34"
  1007. }
  1008. },
  1009. "node_modules/@vue/shared": {
  1010. "version": "3.5.34",
  1011. "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.34.tgz",
  1012. "integrity": "sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==",
  1013. "license": "MIT"
  1014. },
  1015. "node_modules/@vueuse/core": {
  1016. "version": "14.3.0",
  1017. "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-14.3.0.tgz",
  1018. "integrity": "sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==",
  1019. "license": "MIT",
  1020. "dependencies": {
  1021. "@types/web-bluetooth": "^0.0.21",
  1022. "@vueuse/metadata": "14.3.0",
  1023. "@vueuse/shared": "14.3.0"
  1024. },
  1025. "funding": {
  1026. "url": "https://github.com/sponsors/antfu"
  1027. },
  1028. "peerDependencies": {
  1029. "vue": "^3.5.0"
  1030. }
  1031. },
  1032. "node_modules/@vueuse/metadata": {
  1033. "version": "14.3.0",
  1034. "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-14.3.0.tgz",
  1035. "integrity": "sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==",
  1036. "license": "MIT",
  1037. "funding": {
  1038. "url": "https://github.com/sponsors/antfu"
  1039. }
  1040. },
  1041. "node_modules/@vueuse/shared": {
  1042. "version": "14.3.0",
  1043. "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-14.3.0.tgz",
  1044. "integrity": "sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==",
  1045. "license": "MIT",
  1046. "funding": {
  1047. "url": "https://github.com/sponsors/antfu"
  1048. },
  1049. "peerDependencies": {
  1050. "vue": "^3.5.0"
  1051. }
  1052. },
  1053. "node_modules/@wangeditor/basic-modules": {
  1054. "version": "1.1.7",
  1055. "resolved": "https://registry.npmjs.org/@wangeditor/basic-modules/-/basic-modules-1.1.7.tgz",
  1056. "integrity": "sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg==",
  1057. "license": "MIT",
  1058. "dependencies": {
  1059. "is-url": "^1.2.4"
  1060. },
  1061. "peerDependencies": {
  1062. "@wangeditor/core": "1.x",
  1063. "dom7": "^3.0.0",
  1064. "lodash.throttle": "^4.1.1",
  1065. "nanoid": "^3.2.0",
  1066. "slate": "^0.72.0",
  1067. "snabbdom": "^3.1.0"
  1068. }
  1069. },
  1070. "node_modules/@wangeditor/code-highlight": {
  1071. "version": "1.0.3",
  1072. "resolved": "https://registry.npmjs.org/@wangeditor/code-highlight/-/code-highlight-1.0.3.tgz",
  1073. "integrity": "sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw==",
  1074. "license": "MIT",
  1075. "dependencies": {
  1076. "prismjs": "^1.23.0"
  1077. },
  1078. "peerDependencies": {
  1079. "@wangeditor/core": "1.x",
  1080. "dom7": "^3.0.0",
  1081. "slate": "^0.72.0",
  1082. "snabbdom": "^3.1.0"
  1083. }
  1084. },
  1085. "node_modules/@wangeditor/core": {
  1086. "version": "1.1.19",
  1087. "resolved": "https://registry.npmjs.org/@wangeditor/core/-/core-1.1.19.tgz",
  1088. "integrity": "sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q==",
  1089. "license": "MIT",
  1090. "dependencies": {
  1091. "@types/event-emitter": "^0.3.3",
  1092. "event-emitter": "^0.3.5",
  1093. "html-void-elements": "^2.0.0",
  1094. "i18next": "^20.4.0",
  1095. "scroll-into-view-if-needed": "^2.2.28",
  1096. "slate-history": "^0.66.0"
  1097. },
  1098. "peerDependencies": {
  1099. "@uppy/core": "^2.1.1",
  1100. "@uppy/xhr-upload": "^2.0.3",
  1101. "dom7": "^3.0.0",
  1102. "is-hotkey": "^0.2.0",
  1103. "lodash.camelcase": "^4.3.0",
  1104. "lodash.clonedeep": "^4.5.0",
  1105. "lodash.debounce": "^4.0.8",
  1106. "lodash.foreach": "^4.5.0",
  1107. "lodash.isequal": "^4.5.0",
  1108. "lodash.throttle": "^4.1.1",
  1109. "lodash.toarray": "^4.4.0",
  1110. "nanoid": "^3.2.0",
  1111. "slate": "^0.72.0",
  1112. "snabbdom": "^3.1.0"
  1113. }
  1114. },
  1115. "node_modules/@wangeditor/editor": {
  1116. "version": "5.1.23",
  1117. "resolved": "https://registry.npmjs.org/@wangeditor/editor/-/editor-5.1.23.tgz",
  1118. "integrity": "sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ==",
  1119. "license": "MIT",
  1120. "dependencies": {
  1121. "@uppy/core": "^2.1.1",
  1122. "@uppy/xhr-upload": "^2.0.3",
  1123. "@wangeditor/basic-modules": "^1.1.7",
  1124. "@wangeditor/code-highlight": "^1.0.3",
  1125. "@wangeditor/core": "^1.1.19",
  1126. "@wangeditor/list-module": "^1.0.5",
  1127. "@wangeditor/table-module": "^1.1.4",
  1128. "@wangeditor/upload-image-module": "^1.0.2",
  1129. "@wangeditor/video-module": "^1.1.4",
  1130. "dom7": "^3.0.0",
  1131. "is-hotkey": "^0.2.0",
  1132. "lodash.camelcase": "^4.3.0",
  1133. "lodash.clonedeep": "^4.5.0",
  1134. "lodash.debounce": "^4.0.8",
  1135. "lodash.foreach": "^4.5.0",
  1136. "lodash.isequal": "^4.5.0",
  1137. "lodash.throttle": "^4.1.1",
  1138. "lodash.toarray": "^4.4.0",
  1139. "nanoid": "^3.2.0",
  1140. "slate": "^0.72.0",
  1141. "snabbdom": "^3.1.0"
  1142. }
  1143. },
  1144. "node_modules/@wangeditor/editor-for-vue": {
  1145. "version": "5.1.12",
  1146. "resolved": "https://registry.npmjs.org/@wangeditor/editor-for-vue/-/editor-for-vue-5.1.12.tgz",
  1147. "integrity": "sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ==",
  1148. "license": "MIT",
  1149. "peerDependencies": {
  1150. "@wangeditor/editor": ">=5.1.0",
  1151. "vue": "^3.0.5"
  1152. }
  1153. },
  1154. "node_modules/@wangeditor/list-module": {
  1155. "version": "1.0.5",
  1156. "resolved": "https://registry.npmjs.org/@wangeditor/list-module/-/list-module-1.0.5.tgz",
  1157. "integrity": "sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ==",
  1158. "license": "MIT",
  1159. "peerDependencies": {
  1160. "@wangeditor/core": "1.x",
  1161. "dom7": "^3.0.0",
  1162. "slate": "^0.72.0",
  1163. "snabbdom": "^3.1.0"
  1164. }
  1165. },
  1166. "node_modules/@wangeditor/table-module": {
  1167. "version": "1.1.4",
  1168. "resolved": "https://registry.npmjs.org/@wangeditor/table-module/-/table-module-1.1.4.tgz",
  1169. "integrity": "sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w==",
  1170. "license": "MIT",
  1171. "peerDependencies": {
  1172. "@wangeditor/core": "1.x",
  1173. "dom7": "^3.0.0",
  1174. "lodash.isequal": "^4.5.0",
  1175. "lodash.throttle": "^4.1.1",
  1176. "nanoid": "^3.2.0",
  1177. "slate": "^0.72.0",
  1178. "snabbdom": "^3.1.0"
  1179. }
  1180. },
  1181. "node_modules/@wangeditor/upload-image-module": {
  1182. "version": "1.0.2",
  1183. "resolved": "https://registry.npmjs.org/@wangeditor/upload-image-module/-/upload-image-module-1.0.2.tgz",
  1184. "integrity": "sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA==",
  1185. "license": "MIT",
  1186. "peerDependencies": {
  1187. "@uppy/core": "^2.0.3",
  1188. "@uppy/xhr-upload": "^2.0.3",
  1189. "@wangeditor/basic-modules": "1.x",
  1190. "@wangeditor/core": "1.x",
  1191. "dom7": "^3.0.0",
  1192. "lodash.foreach": "^4.5.0",
  1193. "slate": "^0.72.0",
  1194. "snabbdom": "^3.1.0"
  1195. }
  1196. },
  1197. "node_modules/@wangeditor/video-module": {
  1198. "version": "1.1.4",
  1199. "resolved": "https://registry.npmjs.org/@wangeditor/video-module/-/video-module-1.1.4.tgz",
  1200. "integrity": "sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg==",
  1201. "license": "MIT",
  1202. "peerDependencies": {
  1203. "@uppy/core": "^2.1.4",
  1204. "@uppy/xhr-upload": "^2.0.7",
  1205. "@wangeditor/core": "1.x",
  1206. "dom7": "^3.0.0",
  1207. "nanoid": "^3.2.0",
  1208. "slate": "^0.72.0",
  1209. "snabbdom": "^3.1.0"
  1210. }
  1211. },
  1212. "node_modules/@wangeditor/basic-modules": {
  1213. "version": "1.1.7",
  1214. "resolved": "https://registry.npmjs.org/@wangeditor/basic-modules/-/basic-modules-1.1.7.tgz",
  1215. "integrity": "sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg==",
  1216. "license": "MIT",
  1217. "dependencies": {
  1218. "is-url": "^1.2.4"
  1219. },
  1220. "peerDependencies": {
  1221. "@wangeditor/core": "1.x",
  1222. "dom7": "^3.0.0",
  1223. "lodash.throttle": "^4.1.1",
  1224. "nanoid": "^3.2.0",
  1225. "slate": "^0.72.0",
  1226. "snabbdom": "^3.1.0"
  1227. }
  1228. },
  1229. "node_modules/@wangeditor/code-highlight": {
  1230. "version": "1.0.3",
  1231. "resolved": "https://registry.npmjs.org/@wangeditor/code-highlight/-/code-highlight-1.0.3.tgz",
  1232. "integrity": "sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw==",
  1233. "license": "MIT",
  1234. "dependencies": {
  1235. "prismjs": "^1.23.0"
  1236. },
  1237. "peerDependencies": {
  1238. "@wangeditor/core": "1.x",
  1239. "dom7": "^3.0.0",
  1240. "slate": "^0.72.0",
  1241. "snabbdom": "^3.1.0"
  1242. }
  1243. },
  1244. "node_modules/@wangeditor/core": {
  1245. "version": "1.1.19",
  1246. "resolved": "https://registry.npmjs.org/@wangeditor/core/-/core-1.1.19.tgz",
  1247. "integrity": "sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q==",
  1248. "license": "MIT",
  1249. "dependencies": {
  1250. "@types/event-emitter": "^0.3.3",
  1251. "event-emitter": "^0.3.5",
  1252. "html-void-elements": "^2.0.0",
  1253. "i18next": "^20.4.0",
  1254. "scroll-into-view-if-needed": "^2.2.28",
  1255. "slate-history": "^0.66.0"
  1256. },
  1257. "peerDependencies": {
  1258. "@uppy/core": "^2.1.1",
  1259. "@uppy/xhr-upload": "^2.0.3",
  1260. "dom7": "^3.0.0",
  1261. "is-hotkey": "^0.2.0",
  1262. "lodash.camelcase": "^4.3.0",
  1263. "lodash.clonedeep": "^4.5.0",
  1264. "lodash.debounce": "^4.0.8",
  1265. "lodash.foreach": "^4.5.0",
  1266. "lodash.isequal": "^4.5.0",
  1267. "lodash.throttle": "^4.1.1",
  1268. "lodash.toarray": "^4.4.0",
  1269. "nanoid": "^3.2.0",
  1270. "slate": "^0.72.0",
  1271. "snabbdom": "^3.1.0"
  1272. }
  1273. },
  1274. "node_modules/@wangeditor/editor": {
  1275. "version": "5.1.23",
  1276. "resolved": "https://registry.npmjs.org/@wangeditor/editor/-/editor-5.1.23.tgz",
  1277. "integrity": "sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ==",
  1278. "license": "MIT",
  1279. "dependencies": {
  1280. "@uppy/core": "^2.1.1",
  1281. "@uppy/xhr-upload": "^2.0.3",
  1282. "@wangeditor/basic-modules": "^1.1.7",
  1283. "@wangeditor/code-highlight": "^1.0.3",
  1284. "@wangeditor/core": "^1.1.19",
  1285. "@wangeditor/list-module": "^1.0.5",
  1286. "@wangeditor/table-module": "^1.1.4",
  1287. "@wangeditor/upload-image-module": "^1.0.2",
  1288. "@wangeditor/video-module": "^1.1.4",
  1289. "dom7": "^3.0.0",
  1290. "is-hotkey": "^0.2.0",
  1291. "lodash.camelcase": "^4.3.0",
  1292. "lodash.clonedeep": "^4.5.0",
  1293. "lodash.debounce": "^4.0.8",
  1294. "lodash.foreach": "^4.5.0",
  1295. "lodash.isequal": "^4.5.0",
  1296. "lodash.throttle": "^4.1.1",
  1297. "lodash.toarray": "^4.4.0",
  1298. "nanoid": "^3.2.0",
  1299. "slate": "^0.72.0",
  1300. "snabbdom": "^3.1.0"
  1301. }
  1302. },
  1303. "node_modules/@wangeditor/editor-for-vue": {
  1304. "version": "5.1.12",
  1305. "resolved": "https://registry.npmjs.org/@wangeditor/editor-for-vue/-/editor-for-vue-5.1.12.tgz",
  1306. "integrity": "sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ==",
  1307. "license": "MIT",
  1308. "peerDependencies": {
  1309. "@wangeditor/editor": ">=5.1.0",
  1310. "vue": "^3.0.5"
  1311. }
  1312. },
  1313. "node_modules/@wangeditor/list-module": {
  1314. "version": "1.0.5",
  1315. "resolved": "https://registry.npmjs.org/@wangeditor/list-module/-/list-module-1.0.5.tgz",
  1316. "integrity": "sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ==",
  1317. "license": "MIT",
  1318. "peerDependencies": {
  1319. "@wangeditor/core": "1.x",
  1320. "dom7": "^3.0.0",
  1321. "slate": "^0.72.0",
  1322. "snabbdom": "^3.1.0"
  1323. }
  1324. },
  1325. "node_modules/@wangeditor/table-module": {
  1326. "version": "1.1.4",
  1327. "resolved": "https://registry.npmjs.org/@wangeditor/table-module/-/table-module-1.1.4.tgz",
  1328. "integrity": "sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w==",
  1329. "license": "MIT",
  1330. "peerDependencies": {
  1331. "@wangeditor/core": "1.x",
  1332. "dom7": "^3.0.0",
  1333. "lodash.isequal": "^4.5.0",
  1334. "lodash.throttle": "^4.1.1",
  1335. "nanoid": "^3.2.0",
  1336. "slate": "^0.72.0",
  1337. "snabbdom": "^3.1.0"
  1338. }
  1339. },
  1340. "node_modules/@wangeditor/upload-image-module": {
  1341. "version": "1.0.2",
  1342. "resolved": "https://registry.npmjs.org/@wangeditor/upload-image-module/-/upload-image-module-1.0.2.tgz",
  1343. "integrity": "sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA==",
  1344. "license": "MIT",
  1345. "peerDependencies": {
  1346. "@uppy/core": "^2.0.3",
  1347. "@uppy/xhr-upload": "^2.0.3",
  1348. "@wangeditor/basic-modules": "1.x",
  1349. "@wangeditor/core": "1.x",
  1350. "dom7": "^3.0.0",
  1351. "lodash.foreach": "^4.5.0",
  1352. "slate": "^0.72.0",
  1353. "snabbdom": "^3.1.0"
  1354. }
  1355. },
  1356. "node_modules/@wangeditor/video-module": {
  1357. "version": "1.1.4",
  1358. "resolved": "https://registry.npmjs.org/@wangeditor/video-module/-/video-module-1.1.4.tgz",
  1359. "integrity": "sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg==",
  1360. "license": "MIT",
  1361. "peerDependencies": {
  1362. "@uppy/core": "^2.1.4",
  1363. "@uppy/xhr-upload": "^2.0.7",
  1364. "@wangeditor/core": "1.x",
  1365. "dom7": "^3.0.0",
  1366. "nanoid": "^3.2.0",
  1367. "slate": "^0.72.0",
  1368. "snabbdom": "^3.1.0"
  1369. }
  1370. },
  1371. "node_modules/adler-32": {
  1372. "version": "1.3.1",
  1373. "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.3.1.tgz",
  1374. "integrity": "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==",
  1375. "license": "Apache-2.0",
  1376. "engines": {
  1377. "node": ">=0.8"
  1378. }
  1379. },
  1380. "node_modules/async-validator": {
  1381. "version": "4.2.5",
  1382. "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz",
  1383. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1384. "license": "MIT"
  1385. },
  1386. "node_modules/asynckit": {
  1387. "version": "0.4.0",
  1388. "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
  1389. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1390. "license": "MIT"
  1391. },
  1392. "node_modules/axios": {
  1393. "version": "1.16.0",
  1394. "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.0.tgz",
  1395. "integrity": "sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==",
  1396. "license": "MIT",
  1397. "dependencies": {
  1398. "follow-redirects": "^1.16.0",
  1399. "form-data": "^4.0.5",
  1400. "proxy-from-env": "^2.1.0"
  1401. }
  1402. },
  1403. "node_modules/birpc": {
  1404. "version": "2.9.0",
  1405. "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
  1406. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1407. "license": "MIT",
  1408. "funding": {
  1409. "url": "https://github.com/sponsors/antfu"
  1410. }
  1411. },
  1412. "node_modules/call-bind-apply-helpers": {
  1413. "version": "1.0.2",
  1414. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1415. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1416. "license": "MIT",
  1417. "dependencies": {
  1418. "es-errors": "^1.3.0",
  1419. "function-bind": "^1.1.2"
  1420. },
  1421. "engines": {
  1422. "node": ">= 0.4"
  1423. }
  1424. },
  1425. "node_modules/cfb": {
  1426. "version": "1.2.2",
  1427. "resolved": "https://registry.npmjs.org/cfb/-/cfb-1.2.2.tgz",
  1428. "integrity": "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==",
  1429. "license": "Apache-2.0",
  1430. "dependencies": {
  1431. "adler-32": "~1.3.0",
  1432. "crc-32": "~1.2.0"
  1433. },
  1434. "engines": {
  1435. "node": ">=0.8"
  1436. }
  1437. },
  1438. "node_modules/china-division": {
  1439. "version": "2.7.0",
  1440. "resolved": "https://registry.npmjs.org/china-division/-/china-division-2.7.0.tgz",
  1441. "integrity": "sha512-4uUPAT+1WfqDh5jytq7omdCmHNk3j+k76zEG/2IqaGcYB90c2SwcixttcypdsZ3T/9tN1TTpBDoeZn+Yw/qBEA==",
  1442. "license": "MIT"
  1443. },
  1444. "node_modules/chokidar": {
  1445. "version": "4.0.3",
  1446. "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
  1447. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  1448. "license": "MIT",
  1449. "dependencies": {
  1450. "readdirp": "^4.0.1"
  1451. },
  1452. "engines": {
  1453. "node": ">= 14.16.0"
  1454. },
  1455. "funding": {
  1456. "url": "https://paulmillr.com/funding/"
  1457. }
  1458. },
  1459. "node_modules/codepage": {
  1460. "version": "1.15.0",
  1461. "resolved": "https://registry.npmjs.org/codepage/-/codepage-1.15.0.tgz",
  1462. "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==",
  1463. "license": "Apache-2.0",
  1464. "engines": {
  1465. "node": ">=0.8"
  1466. }
  1467. },
  1468. "node_modules/combined-stream": {
  1469. "version": "1.0.8",
  1470. "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
  1471. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1472. "license": "MIT",
  1473. "dependencies": {
  1474. "delayed-stream": "~1.0.0"
  1475. },
  1476. "engines": {
  1477. "node": ">= 0.8"
  1478. }
  1479. },
  1480. "node_modules/compute-scroll-into-view": {
  1481. "version": "1.0.20",
  1482. "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz",
  1483. "integrity": "sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==",
  1484. "license": "MIT"
  1485. },
  1486. "node_modules/copy-anything": {
  1487. "version": "4.0.5",
  1488. "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz",
  1489. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  1490. "license": "MIT",
  1491. "dependencies": {
  1492. "is-what": "^5.2.0"
  1493. },
  1494. "engines": {
  1495. "node": ">=18"
  1496. },
  1497. "funding": {
  1498. "url": "https://github.com/sponsors/mesqueeb"
  1499. }
  1500. },
  1501. "node_modules/crc-32": {
  1502. "version": "1.2.2",
  1503. "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
  1504. "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
  1505. "license": "Apache-2.0",
  1506. "bin": {
  1507. "crc32": "bin/crc32.njs"
  1508. },
  1509. "engines": {
  1510. "node": ">=0.8"
  1511. }
  1512. },
  1513. "node_modules/csstype": {
  1514. "version": "3.2.3",
  1515. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1516. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1517. "license": "MIT"
  1518. },
  1519. "node_modules/d": {
  1520. "version": "1.0.2",
  1521. "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz",
  1522. "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==",
  1523. "license": "ISC",
  1524. "dependencies": {
  1525. "es5-ext": "^0.10.64",
  1526. "type": "^2.7.2"
  1527. },
  1528. "engines": {
  1529. "node": ">=0.12"
  1530. }
  1531. },
  1532. "node_modules/dayjs": {
  1533. "version": "1.11.20",
  1534. "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.20.tgz",
  1535. "integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==",
  1536. "license": "MIT"
  1537. },
  1538. "node_modules/delayed-stream": {
  1539. "version": "1.0.0",
  1540. "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1541. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1542. "license": "MIT",
  1543. "engines": {
  1544. "node": ">=0.4.0"
  1545. }
  1546. },
  1547. "node_modules/detect-libc": {
  1548. "version": "2.1.2",
  1549. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1550. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1551. "devOptional": true,
  1552. "license": "Apache-2.0",
  1553. "engines": {
  1554. "node": ">=8"
  1555. }
  1556. },
  1557. "node_modules/dom7": {
  1558. "version": "3.0.0",
  1559. "resolved": "https://registry.npmjs.org/dom7/-/dom7-3.0.0.tgz",
  1560. "integrity": "sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==",
  1561. "license": "MIT",
  1562. "dependencies": {
  1563. "ssr-window": "^3.0.0-alpha.1"
  1564. }
  1565. },
  1566. "node_modules/dunder-proto": {
  1567. "version": "1.0.1",
  1568. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1569. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1570. "license": "MIT",
  1571. "dependencies": {
  1572. "call-bind-apply-helpers": "^1.0.1",
  1573. "es-errors": "^1.3.0",
  1574. "gopd": "^1.2.0"
  1575. },
  1576. "engines": {
  1577. "node": ">= 0.4"
  1578. }
  1579. },
  1580. "node_modules/element-china-area-data": {
  1581. "version": "6.1.0",
  1582. "resolved": "https://registry.npmjs.org/element-china-area-data/-/element-china-area-data-6.1.0.tgz",
  1583. "integrity": "sha512-IkpcjwQv2A/2AxFiSoaISZ+oMw1rZCPUSOg5sOCwT5jKc96TaawmKZeY81xfxXsO0QbKxU5LLc6AirhG52hUmg==",
  1584. "license": "MIT",
  1585. "dependencies": {
  1586. "china-division": "^2.7.0"
  1587. }
  1588. },
  1589. "node_modules/element-plus": {
  1590. "version": "2.14.0",
  1591. "resolved": "https://registry.npmjs.org/element-plus/-/element-plus-2.14.0.tgz",
  1592. "integrity": "sha512-POgH+TtoreaEKWqYYAVQyE6i8rQMEFqAEublyF29dBA5yASWPLKY6EzfeqBTr2Uv26mPss4vSrMrNPyaK7LX5w==",
  1593. "license": "MIT",
  1594. "dependencies": {
  1595. "@ctrl/tinycolor": "^4.2.0",
  1596. "@element-plus/icons-vue": "^2.3.2",
  1597. "@floating-ui/dom": "^1.0.1",
  1598. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.8",
  1599. "@types/lodash": "^4.17.24",
  1600. "@types/lodash-es": "^4.17.12",
  1601. "@vueuse/core": "14.3.0",
  1602. "async-validator": "^4.2.5",
  1603. "dayjs": "^1.11.20",
  1604. "lodash": "^4.18.1",
  1605. "lodash-es": "^4.18.1",
  1606. "lodash-unified": "^1.0.3",
  1607. "memoize-one": "^6.0.0",
  1608. "normalize-wheel-es": "^1.2.0",
  1609. "vue-component-type-helpers": "^3.2.8"
  1610. },
  1611. "peerDependencies": {
  1612. "vue": "^3.3.7"
  1613. }
  1614. },
  1615. "node_modules/entities": {
  1616. "version": "7.0.1",
  1617. "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
  1618. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1619. "license": "BSD-2-Clause",
  1620. "engines": {
  1621. "node": ">=0.12"
  1622. },
  1623. "funding": {
  1624. "url": "https://github.com/fb55/entities?sponsor=1"
  1625. }
  1626. },
  1627. "node_modules/es-define-property": {
  1628. "version": "1.0.1",
  1629. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  1630. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1631. "license": "MIT",
  1632. "engines": {
  1633. "node": ">= 0.4"
  1634. }
  1635. },
  1636. "node_modules/es-errors": {
  1637. "version": "1.3.0",
  1638. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  1639. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1640. "license": "MIT",
  1641. "engines": {
  1642. "node": ">= 0.4"
  1643. }
  1644. },
  1645. "node_modules/es-object-atoms": {
  1646. "version": "1.1.1",
  1647. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1648. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1649. "license": "MIT",
  1650. "dependencies": {
  1651. "es-errors": "^1.3.0"
  1652. },
  1653. "engines": {
  1654. "node": ">= 0.4"
  1655. }
  1656. },
  1657. "node_modules/es-set-tostringtag": {
  1658. "version": "2.1.0",
  1659. "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1660. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1661. "license": "MIT",
  1662. "dependencies": {
  1663. "es-errors": "^1.3.0",
  1664. "get-intrinsic": "^1.2.6",
  1665. "has-tostringtag": "^1.0.2",
  1666. "hasown": "^2.0.2"
  1667. },
  1668. "engines": {
  1669. "node": ">= 0.4"
  1670. }
  1671. },
  1672. "node_modules/es5-ext": {
  1673. "version": "0.10.64",
  1674. "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz",
  1675. "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==",
  1676. "hasInstallScript": true,
  1677. "license": "ISC",
  1678. "dependencies": {
  1679. "es6-iterator": "^2.0.3",
  1680. "es6-symbol": "^3.1.3",
  1681. "esniff": "^2.0.1",
  1682. "next-tick": "^1.1.0"
  1683. },
  1684. "engines": {
  1685. "node": ">=0.10"
  1686. }
  1687. },
  1688. "node_modules/es6-iterator": {
  1689. "version": "2.0.3",
  1690. "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
  1691. "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==",
  1692. "license": "MIT",
  1693. "dependencies": {
  1694. "d": "1",
  1695. "es5-ext": "^0.10.35",
  1696. "es6-symbol": "^3.1.1"
  1697. }
  1698. },
  1699. "node_modules/es6-symbol": {
  1700. "version": "3.1.4",
  1701. "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz",
  1702. "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==",
  1703. "license": "ISC",
  1704. "dependencies": {
  1705. "d": "^1.0.2",
  1706. "ext": "^1.7.0"
  1707. },
  1708. "engines": {
  1709. "node": ">=0.12"
  1710. }
  1711. },
  1712. "node_modules/esniff": {
  1713. "version": "2.0.1",
  1714. "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz",
  1715. "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==",
  1716. "license": "ISC",
  1717. "dependencies": {
  1718. "d": "^1.0.1",
  1719. "es5-ext": "^0.10.62",
  1720. "event-emitter": "^0.3.5",
  1721. "type": "^2.7.2"
  1722. },
  1723. "engines": {
  1724. "node": ">=0.10"
  1725. }
  1726. },
  1727. "node_modules/estree-walker": {
  1728. "version": "2.0.2",
  1729. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  1730. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1731. "license": "MIT"
  1732. },
  1733. "node_modules/event-emitter": {
  1734. "version": "0.3.5",
  1735. "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
  1736. "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==",
  1737. "license": "MIT",
  1738. "dependencies": {
  1739. "d": "1",
  1740. "es5-ext": "~0.10.14"
  1741. }
  1742. },
  1743. "node_modules/ext": {
  1744. "version": "1.7.0",
  1745. "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz",
  1746. "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==",
  1747. "license": "ISC",
  1748. "dependencies": {
  1749. "type": "^2.7.2"
  1750. }
  1751. },
  1752. "node_modules/fdir": {
  1753. "version": "6.5.0",
  1754. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1755. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1756. "dev": true,
  1757. "license": "MIT",
  1758. "engines": {
  1759. "node": ">=12.0.0"
  1760. },
  1761. "peerDependencies": {
  1762. "picomatch": "^3 || ^4"
  1763. },
  1764. "peerDependenciesMeta": {
  1765. "picomatch": {
  1766. "optional": true
  1767. }
  1768. }
  1769. },
  1770. "node_modules/follow-redirects": {
  1771. "version": "1.16.0",
  1772. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
  1773. "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
  1774. "funding": [
  1775. {
  1776. "type": "individual",
  1777. "url": "https://github.com/sponsors/RubenVerborgh"
  1778. }
  1779. ],
  1780. "license": "MIT",
  1781. "engines": {
  1782. "node": ">=4.0"
  1783. },
  1784. "peerDependenciesMeta": {
  1785. "debug": {
  1786. "optional": true
  1787. }
  1788. }
  1789. },
  1790. "node_modules/form-data": {
  1791. "version": "4.0.5",
  1792. "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
  1793. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  1794. "license": "MIT",
  1795. "dependencies": {
  1796. "asynckit": "^0.4.0",
  1797. "combined-stream": "^1.0.8",
  1798. "es-set-tostringtag": "^2.1.0",
  1799. "hasown": "^2.0.2",
  1800. "mime-types": "^2.1.12"
  1801. },
  1802. "engines": {
  1803. "node": ">= 6"
  1804. }
  1805. },
  1806. "node_modules/frac": {
  1807. "version": "1.1.2",
  1808. "resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz",
  1809. "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==",
  1810. "license": "Apache-2.0",
  1811. "engines": {
  1812. "node": ">=0.8"
  1813. }
  1814. },
  1815. "node_modules/fsevents": {
  1816. "version": "2.3.3",
  1817. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1818. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1819. "dev": true,
  1820. "hasInstallScript": true,
  1821. "license": "MIT",
  1822. "optional": true,
  1823. "os": [
  1824. "darwin"
  1825. ],
  1826. "engines": {
  1827. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1828. }
  1829. },
  1830. "node_modules/function-bind": {
  1831. "version": "1.1.2",
  1832. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1833. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1834. "license": "MIT",
  1835. "funding": {
  1836. "url": "https://github.com/sponsors/ljharb"
  1837. }
  1838. },
  1839. "node_modules/get-intrinsic": {
  1840. "version": "1.3.0",
  1841. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1842. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1843. "license": "MIT",
  1844. "dependencies": {
  1845. "call-bind-apply-helpers": "^1.0.2",
  1846. "es-define-property": "^1.0.1",
  1847. "es-errors": "^1.3.0",
  1848. "es-object-atoms": "^1.1.1",
  1849. "function-bind": "^1.1.2",
  1850. "get-proto": "^1.0.1",
  1851. "gopd": "^1.2.0",
  1852. "has-symbols": "^1.1.0",
  1853. "hasown": "^2.0.2",
  1854. "math-intrinsics": "^1.1.0"
  1855. },
  1856. "engines": {
  1857. "node": ">= 0.4"
  1858. },
  1859. "funding": {
  1860. "url": "https://github.com/sponsors/ljharb"
  1861. }
  1862. },
  1863. "node_modules/get-proto": {
  1864. "version": "1.0.1",
  1865. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1866. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1867. "license": "MIT",
  1868. "dependencies": {
  1869. "dunder-proto": "^1.0.1",
  1870. "es-object-atoms": "^1.0.0"
  1871. },
  1872. "engines": {
  1873. "node": ">= 0.4"
  1874. }
  1875. },
  1876. "node_modules/gopd": {
  1877. "version": "1.2.0",
  1878. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1879. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1880. "license": "MIT",
  1881. "engines": {
  1882. "node": ">= 0.4"
  1883. },
  1884. "funding": {
  1885. "url": "https://github.com/sponsors/ljharb"
  1886. }
  1887. },
  1888. "node_modules/has-symbols": {
  1889. "version": "1.1.0",
  1890. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1891. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1892. "license": "MIT",
  1893. "engines": {
  1894. "node": ">= 0.4"
  1895. },
  1896. "funding": {
  1897. "url": "https://github.com/sponsors/ljharb"
  1898. }
  1899. },
  1900. "node_modules/has-tostringtag": {
  1901. "version": "1.0.2",
  1902. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1903. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1904. "license": "MIT",
  1905. "dependencies": {
  1906. "has-symbols": "^1.0.3"
  1907. },
  1908. "engines": {
  1909. "node": ">= 0.4"
  1910. },
  1911. "funding": {
  1912. "url": "https://github.com/sponsors/ljharb"
  1913. }
  1914. },
  1915. "node_modules/hasown": {
  1916. "version": "2.0.3",
  1917. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
  1918. "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
  1919. "license": "MIT",
  1920. "dependencies": {
  1921. "function-bind": "^1.1.2"
  1922. },
  1923. "engines": {
  1924. "node": ">= 0.4"
  1925. }
  1926. },
  1927. "node_modules/hookable": {
  1928. "version": "5.5.3",
  1929. "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
  1930. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1931. "license": "MIT"
  1932. },
  1933. "node_modules/html-void-elements": {
  1934. "version": "2.0.1",
  1935. "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz",
  1936. "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==",
  1937. "license": "MIT",
  1938. "funding": {
  1939. "type": "github",
  1940. "url": "https://github.com/sponsors/wooorm"
  1941. }
  1942. },
  1943. "node_modules/i18next": {
  1944. "version": "20.6.1",
  1945. "resolved": "https://registry.npmjs.org/i18next/-/i18next-20.6.1.tgz",
  1946. "integrity": "sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==",
  1947. "license": "MIT",
  1948. "dependencies": {
  1949. "@babel/runtime": "^7.12.0"
  1950. }
  1951. },
  1952. "node_modules/immer": {
  1953. "version": "9.0.21",
  1954. "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz",
  1955. "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==",
  1956. "license": "MIT",
  1957. "funding": {
  1958. "type": "opencollective",
  1959. "url": "https://opencollective.com/immer"
  1960. }
  1961. },
  1962. "node_modules/immutable": {
  1963. "version": "5.1.5",
  1964. "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz",
  1965. "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==",
  1966. "license": "MIT"
  1967. },
  1968. "node_modules/is-extglob": {
  1969. "version": "2.1.1",
  1970. "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
  1971. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1972. "license": "MIT",
  1973. "optional": true,
  1974. "engines": {
  1975. "node": ">=0.10.0"
  1976. }
  1977. },
  1978. "node_modules/is-glob": {
  1979. "version": "4.0.3",
  1980. "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
  1981. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1982. "license": "MIT",
  1983. "optional": true,
  1984. "dependencies": {
  1985. "is-extglob": "^2.1.1"
  1986. },
  1987. "engines": {
  1988. "node": ">=0.10.0"
  1989. }
  1990. },
  1991. "node_modules/is-hotkey": {
  1992. "version": "0.2.0",
  1993. "resolved": "https://registry.npmjs.org/is-hotkey/-/is-hotkey-0.2.0.tgz",
  1994. "integrity": "sha512-UknnZK4RakDmTgz4PI1wIph5yxSs/mvChWs9ifnlXsKuXgWmOkY/hAE0H/k2MIqH0RlRye0i1oC07MCRSD28Mw==",
  1995. "license": "MIT"
  1996. },
  1997. "node_modules/is-plain-object": {
  1998. "version": "5.0.0",
  1999. "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
  2000. "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
  2001. "license": "MIT",
  2002. "engines": {
  2003. "node": ">=0.10.0"
  2004. }
  2005. },
  2006. "node_modules/is-url": {
  2007. "version": "1.2.4",
  2008. "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
  2009. "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==",
  2010. "license": "MIT"
  2011. },
  2012. "node_modules/is-what": {
  2013. "version": "5.5.0",
  2014. "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz",
  2015. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  2016. "license": "MIT",
  2017. "engines": {
  2018. "node": ">=18"
  2019. },
  2020. "funding": {
  2021. "url": "https://github.com/sponsors/mesqueeb"
  2022. }
  2023. },
  2024. "node_modules/lightningcss": {
  2025. "version": "1.32.0",
  2026. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  2027. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  2028. "dev": true,
  2029. "license": "MPL-2.0",
  2030. "dependencies": {
  2031. "detect-libc": "^2.0.3"
  2032. },
  2033. "engines": {
  2034. "node": ">= 12.0.0"
  2035. },
  2036. "funding": {
  2037. "type": "opencollective",
  2038. "url": "https://opencollective.com/parcel"
  2039. },
  2040. "optionalDependencies": {
  2041. "lightningcss-android-arm64": "1.32.0",
  2042. "lightningcss-darwin-arm64": "1.32.0",
  2043. "lightningcss-darwin-x64": "1.32.0",
  2044. "lightningcss-freebsd-x64": "1.32.0",
  2045. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  2046. "lightningcss-linux-arm64-gnu": "1.32.0",
  2047. "lightningcss-linux-arm64-musl": "1.32.0",
  2048. "lightningcss-linux-x64-gnu": "1.32.0",
  2049. "lightningcss-linux-x64-musl": "1.32.0",
  2050. "lightningcss-win32-arm64-msvc": "1.32.0",
  2051. "lightningcss-win32-x64-msvc": "1.32.0"
  2052. }
  2053. },
  2054. "node_modules/lightningcss-android-arm64": {
  2055. "version": "1.32.0",
  2056. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  2057. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  2058. "cpu": [
  2059. "arm64"
  2060. ],
  2061. "dev": true,
  2062. "license": "MPL-2.0",
  2063. "optional": true,
  2064. "os": [
  2065. "android"
  2066. ],
  2067. "engines": {
  2068. "node": ">= 12.0.0"
  2069. },
  2070. "funding": {
  2071. "type": "opencollective",
  2072. "url": "https://opencollective.com/parcel"
  2073. }
  2074. },
  2075. "node_modules/lightningcss-darwin-arm64": {
  2076. "version": "1.32.0",
  2077. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  2078. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  2079. "cpu": [
  2080. "arm64"
  2081. ],
  2082. "dev": true,
  2083. "license": "MPL-2.0",
  2084. "optional": true,
  2085. "os": [
  2086. "darwin"
  2087. ],
  2088. "engines": {
  2089. "node": ">= 12.0.0"
  2090. },
  2091. "funding": {
  2092. "type": "opencollective",
  2093. "url": "https://opencollective.com/parcel"
  2094. }
  2095. },
  2096. "node_modules/lightningcss-darwin-x64": {
  2097. "version": "1.32.0",
  2098. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  2099. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  2100. "cpu": [
  2101. "x64"
  2102. ],
  2103. "dev": true,
  2104. "license": "MPL-2.0",
  2105. "optional": true,
  2106. "os": [
  2107. "darwin"
  2108. ],
  2109. "engines": {
  2110. "node": ">= 12.0.0"
  2111. },
  2112. "funding": {
  2113. "type": "opencollective",
  2114. "url": "https://opencollective.com/parcel"
  2115. }
  2116. },
  2117. "node_modules/lightningcss-freebsd-x64": {
  2118. "version": "1.32.0",
  2119. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  2120. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  2121. "cpu": [
  2122. "x64"
  2123. ],
  2124. "dev": true,
  2125. "license": "MPL-2.0",
  2126. "optional": true,
  2127. "os": [
  2128. "freebsd"
  2129. ],
  2130. "engines": {
  2131. "node": ">= 12.0.0"
  2132. },
  2133. "funding": {
  2134. "type": "opencollective",
  2135. "url": "https://opencollective.com/parcel"
  2136. }
  2137. },
  2138. "node_modules/lightningcss-linux-arm-gnueabihf": {
  2139. "version": "1.32.0",
  2140. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  2141. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  2142. "cpu": [
  2143. "arm"
  2144. ],
  2145. "dev": true,
  2146. "license": "MPL-2.0",
  2147. "optional": true,
  2148. "os": [
  2149. "linux"
  2150. ],
  2151. "engines": {
  2152. "node": ">= 12.0.0"
  2153. },
  2154. "funding": {
  2155. "type": "opencollective",
  2156. "url": "https://opencollective.com/parcel"
  2157. }
  2158. },
  2159. "node_modules/lightningcss-linux-arm64-gnu": {
  2160. "version": "1.32.0",
  2161. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  2162. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  2163. "cpu": [
  2164. "arm64"
  2165. ],
  2166. "dev": true,
  2167. "license": "MPL-2.0",
  2168. "optional": true,
  2169. "os": [
  2170. "linux"
  2171. ],
  2172. "engines": {
  2173. "node": ">= 12.0.0"
  2174. },
  2175. "funding": {
  2176. "type": "opencollective",
  2177. "url": "https://opencollective.com/parcel"
  2178. }
  2179. },
  2180. "node_modules/lightningcss-linux-arm64-musl": {
  2181. "version": "1.32.0",
  2182. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  2183. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  2184. "cpu": [
  2185. "arm64"
  2186. ],
  2187. "dev": true,
  2188. "license": "MPL-2.0",
  2189. "optional": true,
  2190. "os": [
  2191. "linux"
  2192. ],
  2193. "engines": {
  2194. "node": ">= 12.0.0"
  2195. },
  2196. "funding": {
  2197. "type": "opencollective",
  2198. "url": "https://opencollective.com/parcel"
  2199. }
  2200. },
  2201. "node_modules/lightningcss-linux-x64-gnu": {
  2202. "version": "1.32.0",
  2203. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  2204. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  2205. "cpu": [
  2206. "x64"
  2207. ],
  2208. "dev": true,
  2209. "license": "MPL-2.0",
  2210. "optional": true,
  2211. "os": [
  2212. "linux"
  2213. ],
  2214. "engines": {
  2215. "node": ">= 12.0.0"
  2216. },
  2217. "funding": {
  2218. "type": "opencollective",
  2219. "url": "https://opencollective.com/parcel"
  2220. }
  2221. },
  2222. "node_modules/lightningcss-linux-x64-musl": {
  2223. "version": "1.32.0",
  2224. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  2225. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  2226. "cpu": [
  2227. "x64"
  2228. ],
  2229. "dev": true,
  2230. "license": "MPL-2.0",
  2231. "optional": true,
  2232. "os": [
  2233. "linux"
  2234. ],
  2235. "engines": {
  2236. "node": ">= 12.0.0"
  2237. },
  2238. "funding": {
  2239. "type": "opencollective",
  2240. "url": "https://opencollective.com/parcel"
  2241. }
  2242. },
  2243. "node_modules/lightningcss-win32-arm64-msvc": {
  2244. "version": "1.32.0",
  2245. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  2246. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  2247. "cpu": [
  2248. "arm64"
  2249. ],
  2250. "dev": true,
  2251. "license": "MPL-2.0",
  2252. "optional": true,
  2253. "os": [
  2254. "win32"
  2255. ],
  2256. "engines": {
  2257. "node": ">= 12.0.0"
  2258. },
  2259. "funding": {
  2260. "type": "opencollective",
  2261. "url": "https://opencollective.com/parcel"
  2262. }
  2263. },
  2264. "node_modules/lightningcss-win32-x64-msvc": {
  2265. "version": "1.32.0",
  2266. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  2267. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  2268. "cpu": [
  2269. "x64"
  2270. ],
  2271. "dev": true,
  2272. "license": "MPL-2.0",
  2273. "optional": true,
  2274. "os": [
  2275. "win32"
  2276. ],
  2277. "engines": {
  2278. "node": ">= 12.0.0"
  2279. },
  2280. "funding": {
  2281. "type": "opencollective",
  2282. "url": "https://opencollective.com/parcel"
  2283. }
  2284. },
  2285. "node_modules/lodash": {
  2286. "version": "4.18.1",
  2287. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
  2288. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  2289. "license": "MIT"
  2290. },
  2291. "node_modules/lodash-es": {
  2292. "version": "4.18.1",
  2293. "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
  2294. "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
  2295. "license": "MIT"
  2296. },
  2297. "node_modules/lodash-unified": {
  2298. "version": "1.0.3",
  2299. "resolved": "https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.3.tgz",
  2300. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  2301. "license": "MIT",
  2302. "peerDependencies": {
  2303. "@types/lodash-es": "*",
  2304. "lodash": "*",
  2305. "lodash-es": "*"
  2306. }
  2307. },
  2308. "node_modules/lodash.camelcase": {
  2309. "version": "4.3.0",
  2310. "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
  2311. "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==",
  2312. "license": "MIT"
  2313. },
  2314. "node_modules/lodash.clonedeep": {
  2315. "version": "4.5.0",
  2316. "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
  2317. "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==",
  2318. "license": "MIT"
  2319. },
  2320. "node_modules/lodash.debounce": {
  2321. "version": "4.0.8",
  2322. "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
  2323. "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
  2324. "license": "MIT"
  2325. },
  2326. "node_modules/lodash.foreach": {
  2327. "version": "4.5.0",
  2328. "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
  2329. "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==",
  2330. "license": "MIT"
  2331. },
  2332. "node_modules/lodash.isequal": {
  2333. "version": "4.5.0",
  2334. "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
  2335. "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
  2336. "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.",
  2337. "license": "MIT"
  2338. },
  2339. "node_modules/lodash.throttle": {
  2340. "version": "4.1.1",
  2341. "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
  2342. "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==",
  2343. "license": "MIT"
  2344. },
  2345. "node_modules/lodash.toarray": {
  2346. "version": "4.4.0",
  2347. "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz",
  2348. "integrity": "sha512-QyffEA3i5dma5q2490+SgCvDN0pXLmRGSyAANuVi0HQ01Pkfr9fuoKQW8wm1wGBnJITs/mS7wQvS6VshUEBFCw==",
  2349. "license": "MIT"
  2350. },
  2351. "node_modules/magic-string": {
  2352. "version": "0.30.21",
  2353. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  2354. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  2355. "license": "MIT",
  2356. "dependencies": {
  2357. "@jridgewell/sourcemap-codec": "^1.5.5"
  2358. }
  2359. },
  2360. "node_modules/math-intrinsics": {
  2361. "version": "1.1.0",
  2362. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2363. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2364. "license": "MIT",
  2365. "engines": {
  2366. "node": ">= 0.4"
  2367. }
  2368. },
  2369. "node_modules/memoize-one": {
  2370. "version": "6.0.0",
  2371. "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz",
  2372. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2373. "license": "MIT"
  2374. },
  2375. "node_modules/mime-db": {
  2376. "version": "1.52.0",
  2377. "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
  2378. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2379. "license": "MIT",
  2380. "engines": {
  2381. "node": ">= 0.6"
  2382. }
  2383. },
  2384. "node_modules/mime-match": {
  2385. "version": "1.0.2",
  2386. "resolved": "https://registry.npmjs.org/mime-match/-/mime-match-1.0.2.tgz",
  2387. "integrity": "sha512-VXp/ugGDVh3eCLOBCiHZMYWQaTNUHv2IJrut+yXA6+JbLPXHglHwfS/5A5L0ll+jkCY7fIzRJcH6OIunF+c6Cg==",
  2388. "license": "ISC",
  2389. "dependencies": {
  2390. "wildcard": "^1.1.0"
  2391. }
  2392. },
  2393. "node_modules/mime-types": {
  2394. "version": "2.1.35",
  2395. "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
  2396. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2397. "license": "MIT",
  2398. "dependencies": {
  2399. "mime-db": "1.52.0"
  2400. },
  2401. "engines": {
  2402. "node": ">= 0.6"
  2403. }
  2404. },
  2405. "node_modules/mitt": {
  2406. "version": "3.0.1",
  2407. "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
  2408. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  2409. "license": "MIT"
  2410. },
  2411. "node_modules/namespace-emitter": {
  2412. "version": "2.0.1",
  2413. "resolved": "https://registry.npmjs.org/namespace-emitter/-/namespace-emitter-2.0.1.tgz",
  2414. "integrity": "sha512-N/sMKHniSDJBjfrkbS/tpkPj4RAbvW3mr8UAzvlMHyun93XEm83IAvhWtJVHo+RHn/oO8Job5YN4b+wRjSVp5g==",
  2415. "license": "MIT"
  2416. },
  2417. "node_modules/nanoid": {
  2418. "version": "3.3.12",
  2419. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
  2420. "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
  2421. "funding": [
  2422. {
  2423. "type": "github",
  2424. "url": "https://github.com/sponsors/ai"
  2425. }
  2426. ],
  2427. "license": "MIT",
  2428. "bin": {
  2429. "nanoid": "bin/nanoid.cjs"
  2430. },
  2431. "engines": {
  2432. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2433. }
  2434. },
  2435. "node_modules/next-tick": {
  2436. "version": "1.1.0",
  2437. "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz",
  2438. "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==",
  2439. "license": "ISC"
  2440. },
  2441. "node_modules/node-addon-api": {
  2442. "version": "7.1.1",
  2443. "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2444. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2445. "license": "MIT",
  2446. "optional": true
  2447. },
  2448. "node_modules/normalize-wheel-es": {
  2449. "version": "1.2.0",
  2450. "resolved": "https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2451. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2452. "license": "BSD-3-Clause"
  2453. },
  2454. "node_modules/perfect-debounce": {
  2455. "version": "1.0.0",
  2456. "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  2457. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
  2458. "license": "MIT"
  2459. },
  2460. "node_modules/picocolors": {
  2461. "version": "1.1.1",
  2462. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  2463. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2464. "license": "ISC"
  2465. },
  2466. "node_modules/picomatch": {
  2467. "version": "4.0.4",
  2468. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  2469. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  2470. "devOptional": true,
  2471. "license": "MIT",
  2472. "engines": {
  2473. "node": ">=12"
  2474. },
  2475. "funding": {
  2476. "url": "https://github.com/sponsors/jonschlinkert"
  2477. }
  2478. },
  2479. "node_modules/pinia": {
  2480. "version": "3.0.4",
  2481. "resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.4.tgz",
  2482. "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
  2483. "license": "MIT",
  2484. "dependencies": {
  2485. "@vue/devtools-api": "^7.7.7"
  2486. },
  2487. "funding": {
  2488. "url": "https://github.com/sponsors/posva"
  2489. },
  2490. "peerDependencies": {
  2491. "typescript": ">=4.5.0",
  2492. "vue": "^3.5.11"
  2493. },
  2494. "peerDependenciesMeta": {
  2495. "typescript": {
  2496. "optional": true
  2497. }
  2498. }
  2499. },
  2500. "node_modules/postcss": {
  2501. "version": "8.5.14",
  2502. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
  2503. "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
  2504. "funding": [
  2505. {
  2506. "type": "opencollective",
  2507. "url": "https://opencollective.com/postcss/"
  2508. },
  2509. {
  2510. "type": "tidelift",
  2511. "url": "https://tidelift.com/funding/github/npm/postcss"
  2512. },
  2513. {
  2514. "type": "github",
  2515. "url": "https://github.com/sponsors/ai"
  2516. }
  2517. ],
  2518. "license": "MIT",
  2519. "dependencies": {
  2520. "nanoid": "^3.3.11",
  2521. "picocolors": "^1.1.1",
  2522. "source-map-js": "^1.2.1"
  2523. },
  2524. "engines": {
  2525. "node": "^10 || ^12 || >=14"
  2526. }
  2527. },
  2528. "node_modules/preact": {
  2529. "version": "10.29.1",
  2530. "resolved": "https://registry.npmjs.org/preact/-/preact-10.29.1.tgz",
  2531. "integrity": "sha512-gQCLc/vWroE8lIpleXtdJhTFDogTdZG9AjMUpVkDf2iTCNwYNWA+u16dL41TqUDJO4gm2IgrcMv3uTpjd4Pwmg==",
  2532. "license": "MIT",
  2533. "funding": {
  2534. "type": "opencollective",
  2535. "url": "https://opencollective.com/preact"
  2536. }
  2537. },
  2538. "node_modules/prismjs": {
  2539. "version": "1.30.0",
  2540. "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
  2541. "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
  2542. "license": "MIT",
  2543. "engines": {
  2544. "node": ">=6"
  2545. }
  2546. },
  2547. "node_modules/proxy-from-env": {
  2548. "version": "2.1.0",
  2549. "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
  2550. "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
  2551. "license": "MIT",
  2552. "engines": {
  2553. "node": ">=10"
  2554. }
  2555. },
  2556. "node_modules/readdirp": {
  2557. "version": "4.1.2",
  2558. "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
  2559. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  2560. "license": "MIT",
  2561. "engines": {
  2562. "node": ">= 14.18.0"
  2563. },
  2564. "funding": {
  2565. "type": "individual",
  2566. "url": "https://paulmillr.com/funding/"
  2567. }
  2568. },
  2569. "node_modules/rfdc": {
  2570. "version": "1.4.1",
  2571. "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
  2572. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  2573. "license": "MIT"
  2574. },
  2575. "node_modules/rolldown": {
  2576. "version": "1.0.0",
  2577. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0.tgz",
  2578. "integrity": "sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==",
  2579. "dev": true,
  2580. "license": "MIT",
  2581. "dependencies": {
  2582. "@oxc-project/types": "=0.129.0",
  2583. "@rolldown/pluginutils": "1.0.0"
  2584. },
  2585. "bin": {
  2586. "rolldown": "bin/cli.mjs"
  2587. },
  2588. "engines": {
  2589. "node": "^20.19.0 || >=22.12.0"
  2590. },
  2591. "optionalDependencies": {
  2592. "@rolldown/binding-android-arm64": "1.0.0",
  2593. "@rolldown/binding-darwin-arm64": "1.0.0",
  2594. "@rolldown/binding-darwin-x64": "1.0.0",
  2595. "@rolldown/binding-freebsd-x64": "1.0.0",
  2596. "@rolldown/binding-linux-arm-gnueabihf": "1.0.0",
  2597. "@rolldown/binding-linux-arm64-gnu": "1.0.0",
  2598. "@rolldown/binding-linux-arm64-musl": "1.0.0",
  2599. "@rolldown/binding-linux-ppc64-gnu": "1.0.0",
  2600. "@rolldown/binding-linux-s390x-gnu": "1.0.0",
  2601. "@rolldown/binding-linux-x64-gnu": "1.0.0",
  2602. "@rolldown/binding-linux-x64-musl": "1.0.0",
  2603. "@rolldown/binding-openharmony-arm64": "1.0.0",
  2604. "@rolldown/binding-wasm32-wasi": "1.0.0",
  2605. "@rolldown/binding-win32-arm64-msvc": "1.0.0",
  2606. "@rolldown/binding-win32-x64-msvc": "1.0.0"
  2607. }
  2608. },
  2609. "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
  2610. "version": "1.0.0",
  2611. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0.tgz",
  2612. "integrity": "sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==",
  2613. "dev": true,
  2614. "license": "MIT"
  2615. },
  2616. "node_modules/sass": {
  2617. "version": "1.99.0",
  2618. "resolved": "https://registry.npmjs.org/sass/-/sass-1.99.0.tgz",
  2619. "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==",
  2620. "license": "MIT",
  2621. "dependencies": {
  2622. "chokidar": "^4.0.0",
  2623. "immutable": "^5.1.5",
  2624. "source-map-js": ">=0.6.2 <2.0.0"
  2625. },
  2626. "bin": {
  2627. "sass": "sass.js"
  2628. },
  2629. "engines": {
  2630. "node": ">=14.0.0"
  2631. },
  2632. "optionalDependencies": {
  2633. "@parcel/watcher": "^2.4.1"
  2634. }
  2635. },
  2636. "node_modules/scroll-into-view-if-needed": {
  2637. "version": "2.2.31",
  2638. "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz",
  2639. "integrity": "sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==",
  2640. "license": "MIT",
  2641. "dependencies": {
  2642. "compute-scroll-into-view": "^1.0.20"
  2643. }
  2644. },
  2645. "node_modules/slate": {
  2646. "version": "0.72.8",
  2647. "resolved": "https://registry.npmjs.org/slate/-/slate-0.72.8.tgz",
  2648. "integrity": "sha512-/nJwTswQgnRurpK+bGJFH1oM7naD5qDmHd89JyiKNT2oOKD8marW0QSBtuFnwEbL5aGCS8AmrhXQgNOsn4osAw==",
  2649. "license": "MIT",
  2650. "dependencies": {
  2651. "immer": "^9.0.6",
  2652. "is-plain-object": "^5.0.0",
  2653. "tiny-warning": "^1.0.3"
  2654. }
  2655. },
  2656. "node_modules/slate-history": {
  2657. "version": "0.66.0",
  2658. "resolved": "https://registry.npmjs.org/slate-history/-/slate-history-0.66.0.tgz",
  2659. "integrity": "sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng==",
  2660. "license": "MIT",
  2661. "dependencies": {
  2662. "is-plain-object": "^5.0.0"
  2663. },
  2664. "peerDependencies": {
  2665. "slate": ">=0.65.3"
  2666. }
  2667. },
  2668. "node_modules/snabbdom": {
  2669. "version": "3.6.3",
  2670. "resolved": "https://registry.npmjs.org/snabbdom/-/snabbdom-3.6.3.tgz",
  2671. "integrity": "sha512-W2lHLLw2qR2Vv0DcMmcxXqcfdBaIcoN+y/86SmHv8fn4DazEQSH6KN3TjZcWvwujW56OHiiirsbHWZb4vx/0fg==",
  2672. "license": "MIT",
  2673. "engines": {
  2674. "node": ">=12.17.0"
  2675. }
  2676. },
  2677. "node_modules/source-map-js": {
  2678. "version": "1.2.1",
  2679. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  2680. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2681. "license": "BSD-3-Clause",
  2682. "engines": {
  2683. "node": ">=0.10.0"
  2684. }
  2685. },
  2686. "node_modules/speakingurl": {
  2687. "version": "14.0.1",
  2688. "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
  2689. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  2690. "license": "BSD-3-Clause",
  2691. "engines": {
  2692. "node": ">=0.10.0"
  2693. }
  2694. },
  2695. "node_modules/ssf": {
  2696. "version": "0.11.2",
  2697. "resolved": "https://registry.npmjs.org/ssf/-/ssf-0.11.2.tgz",
  2698. "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==",
  2699. "license": "Apache-2.0",
  2700. "dependencies": {
  2701. "frac": "~1.1.2"
  2702. },
  2703. "engines": {
  2704. "node": ">=0.8"
  2705. }
  2706. },
  2707. "node_modules/ssr-window": {
  2708. "version": "3.0.0",
  2709. "resolved": "https://registry.npmjs.org/ssr-window/-/ssr-window-3.0.0.tgz",
  2710. "integrity": "sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==",
  2711. "license": "MIT"
  2712. },
  2713. "node_modules/superjson": {
  2714. "version": "2.2.6",
  2715. "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz",
  2716. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  2717. "license": "MIT",
  2718. "dependencies": {
  2719. "copy-anything": "^4"
  2720. },
  2721. "engines": {
  2722. "node": ">=16"
  2723. }
  2724. },
  2725. "node_modules/tiny-warning": {
  2726. "version": "1.0.3",
  2727. "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz",
  2728. "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==",
  2729. "license": "MIT"
  2730. },
  2731. "node_modules/tinyglobby": {
  2732. "version": "0.2.16",
  2733. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
  2734. "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
  2735. "dev": true,
  2736. "license": "MIT",
  2737. "dependencies": {
  2738. "fdir": "^6.5.0",
  2739. "picomatch": "^4.0.4"
  2740. },
  2741. "engines": {
  2742. "node": ">=12.0.0"
  2743. },
  2744. "funding": {
  2745. "url": "https://github.com/sponsors/SuperchupuDev"
  2746. }
  2747. },
  2748. "node_modules/tslib": {
  2749. "version": "2.8.1",
  2750. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  2751. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2752. "dev": true,
  2753. "license": "0BSD",
  2754. "optional": true
  2755. },
  2756. "node_modules/type": {
  2757. "version": "2.7.3",
  2758. "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz",
  2759. "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==",
  2760. "license": "ISC"
  2761. },
  2762. "node_modules/vite": {
  2763. "version": "8.0.12",
  2764. "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.12.tgz",
  2765. "integrity": "sha512-w2dDofOWv2QB09ZITZBsvKTVAlYvPR4IAmrY/v0ir9KvLs0xybR7i48wxhM1/oyBWO34wPns+bPGw5ZrZqDpZg==",
  2766. "dev": true,
  2767. "license": "MIT",
  2768. "dependencies": {
  2769. "lightningcss": "^1.32.0",
  2770. "picomatch": "^4.0.4",
  2771. "postcss": "^8.5.14",
  2772. "rolldown": "1.0.0",
  2773. "tinyglobby": "^0.2.16"
  2774. },
  2775. "bin": {
  2776. "vite": "bin/vite.js"
  2777. },
  2778. "engines": {
  2779. "node": "^20.19.0 || >=22.12.0"
  2780. },
  2781. "funding": {
  2782. "url": "https://github.com/vitejs/vite?sponsor=1"
  2783. },
  2784. "optionalDependencies": {
  2785. "fsevents": "~2.3.3"
  2786. },
  2787. "peerDependencies": {
  2788. "@types/node": "^20.19.0 || >=22.12.0",
  2789. "@vitejs/devtools": "^0.1.18",
  2790. "esbuild": "^0.27.0 || ^0.28.0",
  2791. "jiti": ">=1.21.0",
  2792. "less": "^4.0.0",
  2793. "sass": "^1.70.0",
  2794. "sass-embedded": "^1.70.0",
  2795. "stylus": ">=0.54.8",
  2796. "sugarss": "^5.0.0",
  2797. "terser": "^5.16.0",
  2798. "tsx": "^4.8.1",
  2799. "yaml": "^2.4.2"
  2800. },
  2801. "peerDependenciesMeta": {
  2802. "@types/node": {
  2803. "optional": true
  2804. },
  2805. "@vitejs/devtools": {
  2806. "optional": true
  2807. },
  2808. "esbuild": {
  2809. "optional": true
  2810. },
  2811. "jiti": {
  2812. "optional": true
  2813. },
  2814. "less": {
  2815. "optional": true
  2816. },
  2817. "sass": {
  2818. "optional": true
  2819. },
  2820. "sass-embedded": {
  2821. "optional": true
  2822. },
  2823. "stylus": {
  2824. "optional": true
  2825. },
  2826. "sugarss": {
  2827. "optional": true
  2828. },
  2829. "terser": {
  2830. "optional": true
  2831. },
  2832. "tsx": {
  2833. "optional": true
  2834. },
  2835. "yaml": {
  2836. "optional": true
  2837. }
  2838. }
  2839. },
  2840. "node_modules/vue": {
  2841. "version": "3.5.34",
  2842. "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.34.tgz",
  2843. "integrity": "sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==",
  2844. "license": "MIT",
  2845. "dependencies": {
  2846. "@vue/compiler-dom": "3.5.34",
  2847. "@vue/compiler-sfc": "3.5.34",
  2848. "@vue/runtime-dom": "3.5.34",
  2849. "@vue/server-renderer": "3.5.34",
  2850. "@vue/shared": "3.5.34"
  2851. },
  2852. "peerDependencies": {
  2853. "typescript": "*"
  2854. },
  2855. "peerDependenciesMeta": {
  2856. "typescript": {
  2857. "optional": true
  2858. }
  2859. }
  2860. },
  2861. "node_modules/vue-component-type-helpers": {
  2862. "version": "3.2.8",
  2863. "resolved": "https://registry.npmjs.org/vue-component-type-helpers/-/vue-component-type-helpers-3.2.8.tgz",
  2864. "integrity": "sha512-9689efAXhN/EV86plgkL/XFiJSXhGtWPG6JDboZ+QnjlUWUUQrQ0ILKQtw4iQsuwIwu5k6Aw+JnehDe7161e7A==",
  2865. "license": "MIT"
  2866. },
  2867. "node_modules/vue-router": {
  2868. "version": "4.6.4",
  2869. "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.6.4.tgz",
  2870. "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
  2871. "license": "MIT",
  2872. "dependencies": {
  2873. "@vue/devtools-api": "^6.6.4"
  2874. },
  2875. "funding": {
  2876. "url": "https://github.com/sponsors/posva"
  2877. },
  2878. "peerDependencies": {
  2879. "vue": "^3.5.0"
  2880. }
  2881. },
  2882. "node_modules/vue-router/node_modules/@vue/devtools-api": {
  2883. "version": "6.6.4",
  2884. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  2885. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  2886. "license": "MIT"
  2887. },
  2888. "node_modules/wildcard": {
  2889. "version": "1.1.2",
  2890. "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-1.1.2.tgz",
  2891. "integrity": "sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng==",
  2892. "license": "MIT"
  2893. },
  2894. "node_modules/wmf": {
  2895. "version": "1.0.2",
  2896. "resolved": "https://registry.npmjs.org/wmf/-/wmf-1.0.2.tgz",
  2897. "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==",
  2898. "license": "Apache-2.0",
  2899. "engines": {
  2900. "node": ">=0.8"
  2901. }
  2902. },
  2903. "node_modules/word": {
  2904. "version": "0.3.0",
  2905. "resolved": "https://registry.npmjs.org/word/-/word-0.3.0.tgz",
  2906. "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==",
  2907. "license": "Apache-2.0",
  2908. "engines": {
  2909. "node": ">=0.8"
  2910. }
  2911. },
  2912. "node_modules/xlsx": {
  2913. "version": "0.18.5",
  2914. "resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.18.5.tgz",
  2915. "integrity": "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==",
  2916. "license": "Apache-2.0",
  2917. "dependencies": {
  2918. "adler-32": "~1.3.0",
  2919. "cfb": "~1.2.1",
  2920. "codepage": "~1.15.0",
  2921. "crc-32": "~1.2.1",
  2922. "ssf": "~0.11.2",
  2923. "wmf": "~1.0.1",
  2924. "word": "~0.3.0"
  2925. },
  2926. "bin": {
  2927. "xlsx": "bin/xlsx.njs"
  2928. },
  2929. "engines": {
  2930. "node": ">=0.8"
  2931. }
  2932. }
  2933. }
  2934. }