package-lock.json 96 KB

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