package-lock.json 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  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. "axios": "^1.14.0",
  13. "element-plus": "^2.13.6",
  14. "pinia": "^3.0.4",
  15. "sass": "^1.99.0",
  16. "vue": "^3.5.32",
  17. "vue-router": "^4.6.4",
  18. "xlsx": "^0.18.5"
  19. },
  20. "devDependencies": {
  21. "@vitejs/plugin-vue": "^6.0.5",
  22. "vite": "^8.0.4"
  23. }
  24. },
  25. "node_modules/@babel/helper-string-parser": {
  26. "version": "7.27.1",
  27. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  28. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  29. "license": "MIT",
  30. "engines": {
  31. "node": ">=6.9.0"
  32. }
  33. },
  34. "node_modules/@babel/helper-validator-identifier": {
  35. "version": "7.28.5",
  36. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  37. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  38. "license": "MIT",
  39. "engines": {
  40. "node": ">=6.9.0"
  41. }
  42. },
  43. "node_modules/@babel/parser": {
  44. "version": "7.29.2",
  45. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
  46. "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
  47. "license": "MIT",
  48. "dependencies": {
  49. "@babel/types": "^7.29.0"
  50. },
  51. "bin": {
  52. "parser": "bin/babel-parser.js"
  53. },
  54. "engines": {
  55. "node": ">=6.0.0"
  56. }
  57. },
  58. "node_modules/@babel/types": {
  59. "version": "7.29.0",
  60. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  61. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  62. "license": "MIT",
  63. "dependencies": {
  64. "@babel/helper-string-parser": "^7.27.1",
  65. "@babel/helper-validator-identifier": "^7.28.5"
  66. },
  67. "engines": {
  68. "node": ">=6.9.0"
  69. }
  70. },
  71. "node_modules/@ctrl/tinycolor": {
  72. "version": "4.2.0",
  73. "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz",
  74. "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==",
  75. "license": "MIT",
  76. "engines": {
  77. "node": ">=14"
  78. }
  79. },
  80. "node_modules/@element-plus/icons-vue": {
  81. "version": "2.3.2",
  82. "resolved": "https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  83. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  84. "license": "MIT",
  85. "peerDependencies": {
  86. "vue": "^3.2.0"
  87. }
  88. },
  89. "node_modules/@emnapi/core": {
  90. "version": "1.9.1",
  91. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz",
  92. "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
  93. "dev": true,
  94. "license": "MIT",
  95. "optional": true,
  96. "dependencies": {
  97. "@emnapi/wasi-threads": "1.2.0",
  98. "tslib": "^2.4.0"
  99. }
  100. },
  101. "node_modules/@emnapi/runtime": {
  102. "version": "1.9.1",
  103. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz",
  104. "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
  105. "dev": true,
  106. "license": "MIT",
  107. "optional": true,
  108. "dependencies": {
  109. "tslib": "^2.4.0"
  110. }
  111. },
  112. "node_modules/@emnapi/wasi-threads": {
  113. "version": "1.2.0",
  114. "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
  115. "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
  116. "dev": true,
  117. "license": "MIT",
  118. "optional": true,
  119. "dependencies": {
  120. "tslib": "^2.4.0"
  121. }
  122. },
  123. "node_modules/@floating-ui/core": {
  124. "version": "1.7.5",
  125. "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz",
  126. "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
  127. "license": "MIT",
  128. "dependencies": {
  129. "@floating-ui/utils": "^0.2.11"
  130. }
  131. },
  132. "node_modules/@floating-ui/dom": {
  133. "version": "1.7.6",
  134. "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.6.tgz",
  135. "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
  136. "license": "MIT",
  137. "dependencies": {
  138. "@floating-ui/core": "^1.7.5",
  139. "@floating-ui/utils": "^0.2.11"
  140. }
  141. },
  142. "node_modules/@floating-ui/utils": {
  143. "version": "0.2.11",
  144. "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.11.tgz",
  145. "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
  146. "license": "MIT"
  147. },
  148. "node_modules/@jridgewell/sourcemap-codec": {
  149. "version": "1.5.5",
  150. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  151. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  152. "license": "MIT"
  153. },
  154. "node_modules/@napi-rs/wasm-runtime": {
  155. "version": "1.1.2",
  156. "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.2.tgz",
  157. "integrity": "sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==",
  158. "dev": true,
  159. "license": "MIT",
  160. "optional": true,
  161. "dependencies": {
  162. "@tybys/wasm-util": "^0.10.1"
  163. },
  164. "funding": {
  165. "type": "github",
  166. "url": "https://github.com/sponsors/Brooooooklyn"
  167. },
  168. "peerDependencies": {
  169. "@emnapi/core": "^1.7.1",
  170. "@emnapi/runtime": "^1.7.1"
  171. }
  172. },
  173. "node_modules/@oxc-project/types": {
  174. "version": "0.123.0",
  175. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.123.0.tgz",
  176. "integrity": "sha512-YtECP/y8Mj1lSHiUWGSRzy/C6teUKlS87dEfuVKT09LgQbUsBW1rNg+MiJ4buGu3yuADV60gbIvo9/HplA56Ew==",
  177. "dev": true,
  178. "license": "MIT",
  179. "funding": {
  180. "url": "https://github.com/sponsors/Boshen"
  181. }
  182. },
  183. "node_modules/@parcel/watcher": {
  184. "version": "2.5.6",
  185. "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz",
  186. "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
  187. "hasInstallScript": true,
  188. "license": "MIT",
  189. "optional": true,
  190. "dependencies": {
  191. "detect-libc": "^2.0.3",
  192. "is-glob": "^4.0.3",
  193. "node-addon-api": "^7.0.0",
  194. "picomatch": "^4.0.3"
  195. },
  196. "engines": {
  197. "node": ">= 10.0.0"
  198. },
  199. "funding": {
  200. "type": "opencollective",
  201. "url": "https://opencollective.com/parcel"
  202. },
  203. "optionalDependencies": {
  204. "@parcel/watcher-android-arm64": "2.5.6",
  205. "@parcel/watcher-darwin-arm64": "2.5.6",
  206. "@parcel/watcher-darwin-x64": "2.5.6",
  207. "@parcel/watcher-freebsd-x64": "2.5.6",
  208. "@parcel/watcher-linux-arm-glibc": "2.5.6",
  209. "@parcel/watcher-linux-arm-musl": "2.5.6",
  210. "@parcel/watcher-linux-arm64-glibc": "2.5.6",
  211. "@parcel/watcher-linux-arm64-musl": "2.5.6",
  212. "@parcel/watcher-linux-x64-glibc": "2.5.6",
  213. "@parcel/watcher-linux-x64-musl": "2.5.6",
  214. "@parcel/watcher-win32-arm64": "2.5.6",
  215. "@parcel/watcher-win32-ia32": "2.5.6",
  216. "@parcel/watcher-win32-x64": "2.5.6"
  217. }
  218. },
  219. "node_modules/@parcel/watcher-android-arm64": {
  220. "version": "2.5.6",
  221. "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
  222. "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
  223. "cpu": [
  224. "arm64"
  225. ],
  226. "license": "MIT",
  227. "optional": true,
  228. "os": [
  229. "android"
  230. ],
  231. "engines": {
  232. "node": ">= 10.0.0"
  233. },
  234. "funding": {
  235. "type": "opencollective",
  236. "url": "https://opencollective.com/parcel"
  237. }
  238. },
  239. "node_modules/@parcel/watcher-darwin-arm64": {
  240. "version": "2.5.6",
  241. "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
  242. "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
  243. "cpu": [
  244. "arm64"
  245. ],
  246. "license": "MIT",
  247. "optional": true,
  248. "os": [
  249. "darwin"
  250. ],
  251. "engines": {
  252. "node": ">= 10.0.0"
  253. },
  254. "funding": {
  255. "type": "opencollective",
  256. "url": "https://opencollective.com/parcel"
  257. }
  258. },
  259. "node_modules/@parcel/watcher-darwin-x64": {
  260. "version": "2.5.6",
  261. "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
  262. "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
  263. "cpu": [
  264. "x64"
  265. ],
  266. "license": "MIT",
  267. "optional": true,
  268. "os": [
  269. "darwin"
  270. ],
  271. "engines": {
  272. "node": ">= 10.0.0"
  273. },
  274. "funding": {
  275. "type": "opencollective",
  276. "url": "https://opencollective.com/parcel"
  277. }
  278. },
  279. "node_modules/@parcel/watcher-freebsd-x64": {
  280. "version": "2.5.6",
  281. "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
  282. "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
  283. "cpu": [
  284. "x64"
  285. ],
  286. "license": "MIT",
  287. "optional": true,
  288. "os": [
  289. "freebsd"
  290. ],
  291. "engines": {
  292. "node": ">= 10.0.0"
  293. },
  294. "funding": {
  295. "type": "opencollective",
  296. "url": "https://opencollective.com/parcel"
  297. }
  298. },
  299. "node_modules/@parcel/watcher-linux-arm-glibc": {
  300. "version": "2.5.6",
  301. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
  302. "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
  303. "cpu": [
  304. "arm"
  305. ],
  306. "license": "MIT",
  307. "optional": true,
  308. "os": [
  309. "linux"
  310. ],
  311. "engines": {
  312. "node": ">= 10.0.0"
  313. },
  314. "funding": {
  315. "type": "opencollective",
  316. "url": "https://opencollective.com/parcel"
  317. }
  318. },
  319. "node_modules/@parcel/watcher-linux-arm-musl": {
  320. "version": "2.5.6",
  321. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
  322. "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
  323. "cpu": [
  324. "arm"
  325. ],
  326. "license": "MIT",
  327. "optional": true,
  328. "os": [
  329. "linux"
  330. ],
  331. "engines": {
  332. "node": ">= 10.0.0"
  333. },
  334. "funding": {
  335. "type": "opencollective",
  336. "url": "https://opencollective.com/parcel"
  337. }
  338. },
  339. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  340. "version": "2.5.6",
  341. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
  342. "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
  343. "cpu": [
  344. "arm64"
  345. ],
  346. "license": "MIT",
  347. "optional": true,
  348. "os": [
  349. "linux"
  350. ],
  351. "engines": {
  352. "node": ">= 10.0.0"
  353. },
  354. "funding": {
  355. "type": "opencollective",
  356. "url": "https://opencollective.com/parcel"
  357. }
  358. },
  359. "node_modules/@parcel/watcher-linux-arm64-musl": {
  360. "version": "2.5.6",
  361. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
  362. "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
  363. "cpu": [
  364. "arm64"
  365. ],
  366. "license": "MIT",
  367. "optional": true,
  368. "os": [
  369. "linux"
  370. ],
  371. "engines": {
  372. "node": ">= 10.0.0"
  373. },
  374. "funding": {
  375. "type": "opencollective",
  376. "url": "https://opencollective.com/parcel"
  377. }
  378. },
  379. "node_modules/@parcel/watcher-linux-x64-glibc": {
  380. "version": "2.5.6",
  381. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
  382. "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
  383. "cpu": [
  384. "x64"
  385. ],
  386. "license": "MIT",
  387. "optional": true,
  388. "os": [
  389. "linux"
  390. ],
  391. "engines": {
  392. "node": ">= 10.0.0"
  393. },
  394. "funding": {
  395. "type": "opencollective",
  396. "url": "https://opencollective.com/parcel"
  397. }
  398. },
  399. "node_modules/@parcel/watcher-linux-x64-musl": {
  400. "version": "2.5.6",
  401. "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
  402. "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
  403. "cpu": [
  404. "x64"
  405. ],
  406. "license": "MIT",
  407. "optional": true,
  408. "os": [
  409. "linux"
  410. ],
  411. "engines": {
  412. "node": ">= 10.0.0"
  413. },
  414. "funding": {
  415. "type": "opencollective",
  416. "url": "https://opencollective.com/parcel"
  417. }
  418. },
  419. "node_modules/@parcel/watcher-win32-arm64": {
  420. "version": "2.5.6",
  421. "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
  422. "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
  423. "cpu": [
  424. "arm64"
  425. ],
  426. "license": "MIT",
  427. "optional": true,
  428. "os": [
  429. "win32"
  430. ],
  431. "engines": {
  432. "node": ">= 10.0.0"
  433. },
  434. "funding": {
  435. "type": "opencollective",
  436. "url": "https://opencollective.com/parcel"
  437. }
  438. },
  439. "node_modules/@parcel/watcher-win32-ia32": {
  440. "version": "2.5.6",
  441. "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
  442. "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
  443. "cpu": [
  444. "ia32"
  445. ],
  446. "license": "MIT",
  447. "optional": true,
  448. "os": [
  449. "win32"
  450. ],
  451. "engines": {
  452. "node": ">= 10.0.0"
  453. },
  454. "funding": {
  455. "type": "opencollective",
  456. "url": "https://opencollective.com/parcel"
  457. }
  458. },
  459. "node_modules/@parcel/watcher-win32-x64": {
  460. "version": "2.5.6",
  461. "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
  462. "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
  463. "cpu": [
  464. "x64"
  465. ],
  466. "license": "MIT",
  467. "optional": true,
  468. "os": [
  469. "win32"
  470. ],
  471. "engines": {
  472. "node": ">= 10.0.0"
  473. },
  474. "funding": {
  475. "type": "opencollective",
  476. "url": "https://opencollective.com/parcel"
  477. }
  478. },
  479. "node_modules/@popperjs/core": {
  480. "name": "@sxzz/popperjs-es",
  481. "version": "2.11.8",
  482. "resolved": "https://registry.npmjs.org/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  483. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  484. "license": "MIT",
  485. "funding": {
  486. "type": "opencollective",
  487. "url": "https://opencollective.com/popperjs"
  488. }
  489. },
  490. "node_modules/@rolldown/binding-android-arm64": {
  491. "version": "1.0.0-rc.13",
  492. "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.13.tgz",
  493. "integrity": "sha512-5ZiiecKH2DXAVJTNN13gNMUcCDg4Jy8ZjbXEsPnqa248wgOVeYRX0iqXXD5Jz4bI9BFHgKsI2qmyJynstbmr+g==",
  494. "cpu": [
  495. "arm64"
  496. ],
  497. "dev": true,
  498. "license": "MIT",
  499. "optional": true,
  500. "os": [
  501. "android"
  502. ],
  503. "engines": {
  504. "node": "^20.19.0 || >=22.12.0"
  505. }
  506. },
  507. "node_modules/@rolldown/binding-darwin-arm64": {
  508. "version": "1.0.0-rc.13",
  509. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.13.tgz",
  510. "integrity": "sha512-tz/v/8G77seu8zAB3A5sK3UFoOl06zcshEzhUO62sAEtrEuW/H1CcyoupOrD+NbQJytYgA4CppXPzlrmp4JZKA==",
  511. "cpu": [
  512. "arm64"
  513. ],
  514. "dev": true,
  515. "license": "MIT",
  516. "optional": true,
  517. "os": [
  518. "darwin"
  519. ],
  520. "engines": {
  521. "node": "^20.19.0 || >=22.12.0"
  522. }
  523. },
  524. "node_modules/@rolldown/binding-darwin-x64": {
  525. "version": "1.0.0-rc.13",
  526. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.13.tgz",
  527. "integrity": "sha512-8DakphqOz8JrMYWTJmWA+vDJxut6LijZ8Xcdc4flOlAhU7PNVwo2MaWBF9iXjJAPo5rC/IxEFZDhJ3GC7NHvug==",
  528. "cpu": [
  529. "x64"
  530. ],
  531. "dev": true,
  532. "license": "MIT",
  533. "optional": true,
  534. "os": [
  535. "darwin"
  536. ],
  537. "engines": {
  538. "node": "^20.19.0 || >=22.12.0"
  539. }
  540. },
  541. "node_modules/@rolldown/binding-freebsd-x64": {
  542. "version": "1.0.0-rc.13",
  543. "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.13.tgz",
  544. "integrity": "sha512-4wBQFfjDuXYN/SVI8inBF3Aa+isq40rc6VMFbk5jcpolUBTe5cYnMsHZ51nFWsx3PVyyNN3vgoESki0Hmr/4BA==",
  545. "cpu": [
  546. "x64"
  547. ],
  548. "dev": true,
  549. "license": "MIT",
  550. "optional": true,
  551. "os": [
  552. "freebsd"
  553. ],
  554. "engines": {
  555. "node": "^20.19.0 || >=22.12.0"
  556. }
  557. },
  558. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  559. "version": "1.0.0-rc.13",
  560. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.13.tgz",
  561. "integrity": "sha512-JW/e4yPIXLms+jmnbwwy5LA/LxVwZUWLN8xug+V200wzaVi5TEGIWQlh8o91gWYFxW609euI98OCCemmWGuPrw==",
  562. "cpu": [
  563. "arm"
  564. ],
  565. "dev": true,
  566. "license": "MIT",
  567. "optional": true,
  568. "os": [
  569. "linux"
  570. ],
  571. "engines": {
  572. "node": "^20.19.0 || >=22.12.0"
  573. }
  574. },
  575. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  576. "version": "1.0.0-rc.13",
  577. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.13.tgz",
  578. "integrity": "sha512-ZfKWpXiUymDnavepCaM6KG/uGydJ4l2nBmMxg60Ci4CbeefpqjPWpfaZM7PThOhk2dssqBAcwLc6rAyr0uTdXg==",
  579. "cpu": [
  580. "arm64"
  581. ],
  582. "dev": true,
  583. "license": "MIT",
  584. "optional": true,
  585. "os": [
  586. "linux"
  587. ],
  588. "engines": {
  589. "node": "^20.19.0 || >=22.12.0"
  590. }
  591. },
  592. "node_modules/@rolldown/binding-linux-arm64-musl": {
  593. "version": "1.0.0-rc.13",
  594. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.13.tgz",
  595. "integrity": "sha512-bmRg3O6Z0gq9yodKKWCIpnlH051sEfdVwt+6m5UDffAQMUUqU0xjnQqqAUm+Gu7ofAAly9DqiQDtKu2nPDEABA==",
  596. "cpu": [
  597. "arm64"
  598. ],
  599. "dev": true,
  600. "license": "MIT",
  601. "optional": true,
  602. "os": [
  603. "linux"
  604. ],
  605. "engines": {
  606. "node": "^20.19.0 || >=22.12.0"
  607. }
  608. },
  609. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  610. "version": "1.0.0-rc.13",
  611. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.13.tgz",
  612. "integrity": "sha512-8Wtnbw4k7pMYN9B/mOEAsQ8HOiq7AZ31Ig4M9BKn2So4xRaFEhtCSa4ZJaOutOWq50zpgR4N5+L/opnlaCx8wQ==",
  613. "cpu": [
  614. "ppc64"
  615. ],
  616. "dev": true,
  617. "license": "MIT",
  618. "optional": true,
  619. "os": [
  620. "linux"
  621. ],
  622. "engines": {
  623. "node": "^20.19.0 || >=22.12.0"
  624. }
  625. },
  626. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  627. "version": "1.0.0-rc.13",
  628. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.13.tgz",
  629. "integrity": "sha512-D/0Nlo8mQuxSMohNJUF2lDXWRsFDsHldfRRgD9bRgktj+EndGPj4DOV37LqDKPYS+osdyhZEH7fTakTAEcW7qg==",
  630. "cpu": [
  631. "s390x"
  632. ],
  633. "dev": true,
  634. "license": "MIT",
  635. "optional": true,
  636. "os": [
  637. "linux"
  638. ],
  639. "engines": {
  640. "node": "^20.19.0 || >=22.12.0"
  641. }
  642. },
  643. "node_modules/@rolldown/binding-linux-x64-gnu": {
  644. "version": "1.0.0-rc.13",
  645. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.13.tgz",
  646. "integrity": "sha512-eRrPvat2YaVQcwwKi/JzOP6MKf1WRnOCr+VaI3cTWz3ZoLcP/654z90lVCJ4dAuMEpPdke0n+qyAqXDZdIC4rA==",
  647. "cpu": [
  648. "x64"
  649. ],
  650. "dev": true,
  651. "license": "MIT",
  652. "optional": true,
  653. "os": [
  654. "linux"
  655. ],
  656. "engines": {
  657. "node": "^20.19.0 || >=22.12.0"
  658. }
  659. },
  660. "node_modules/@rolldown/binding-linux-x64-musl": {
  661. "version": "1.0.0-rc.13",
  662. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.13.tgz",
  663. "integrity": "sha512-PsdONiFRp8hR8KgVjTWjZ9s7uA3uueWL0t74/cKHfM4dR5zXYv4AjB8BvA+QDToqxAFg4ZkcVEqeu5F7inoz5w==",
  664. "cpu": [
  665. "x64"
  666. ],
  667. "dev": true,
  668. "license": "MIT",
  669. "optional": true,
  670. "os": [
  671. "linux"
  672. ],
  673. "engines": {
  674. "node": "^20.19.0 || >=22.12.0"
  675. }
  676. },
  677. "node_modules/@rolldown/binding-openharmony-arm64": {
  678. "version": "1.0.0-rc.13",
  679. "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.13.tgz",
  680. "integrity": "sha512-hCNXgC5dI3TVOLrPT++PKFNZ+1EtS0mLQwfXXXSUD/+rGlB65gZDwN/IDuxLpQP4x8RYYHqGomlUXzpO8aVI2w==",
  681. "cpu": [
  682. "arm64"
  683. ],
  684. "dev": true,
  685. "license": "MIT",
  686. "optional": true,
  687. "os": [
  688. "openharmony"
  689. ],
  690. "engines": {
  691. "node": "^20.19.0 || >=22.12.0"
  692. }
  693. },
  694. "node_modules/@rolldown/binding-wasm32-wasi": {
  695. "version": "1.0.0-rc.13",
  696. "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.13.tgz",
  697. "integrity": "sha512-viLS5C5et8NFtLWw9Sw3M/w4vvnVkbWkO7wSNh3C+7G1+uCkGpr6PcjNDSFcNtmXY/4trjPBqUfcOL+P3sWy/g==",
  698. "cpu": [
  699. "wasm32"
  700. ],
  701. "dev": true,
  702. "license": "MIT",
  703. "optional": true,
  704. "dependencies": {
  705. "@emnapi/core": "1.9.1",
  706. "@emnapi/runtime": "1.9.1",
  707. "@napi-rs/wasm-runtime": "^1.1.2"
  708. },
  709. "engines": {
  710. "node": ">=14.0.0"
  711. }
  712. },
  713. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  714. "version": "1.0.0-rc.13",
  715. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.13.tgz",
  716. "integrity": "sha512-Fqa3Tlt1xL4wzmAYxGNFV36Hb+VfPc9PYU+E25DAnswXv3ODDu/yyWjQDbXMo5AGWkQVjLgQExuVu8I/UaZhPQ==",
  717. "cpu": [
  718. "arm64"
  719. ],
  720. "dev": true,
  721. "license": "MIT",
  722. "optional": true,
  723. "os": [
  724. "win32"
  725. ],
  726. "engines": {
  727. "node": "^20.19.0 || >=22.12.0"
  728. }
  729. },
  730. "node_modules/@rolldown/binding-win32-x64-msvc": {
  731. "version": "1.0.0-rc.13",
  732. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.13.tgz",
  733. "integrity": "sha512-/pLI5kPkGEi44TDlnbio3St/5gUFeN51YWNAk/Gnv6mEQBOahRBh52qVFVBpmrnU01n2yysvBML9Ynu7K4kGAQ==",
  734. "cpu": [
  735. "x64"
  736. ],
  737. "dev": true,
  738. "license": "MIT",
  739. "optional": true,
  740. "os": [
  741. "win32"
  742. ],
  743. "engines": {
  744. "node": "^20.19.0 || >=22.12.0"
  745. }
  746. },
  747. "node_modules/@rolldown/pluginutils": {
  748. "version": "1.0.0-rc.2",
  749. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
  750. "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
  751. "dev": true,
  752. "license": "MIT"
  753. },
  754. "node_modules/@tybys/wasm-util": {
  755. "version": "0.10.1",
  756. "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
  757. "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
  758. "dev": true,
  759. "license": "MIT",
  760. "optional": true,
  761. "dependencies": {
  762. "tslib": "^2.4.0"
  763. }
  764. },
  765. "node_modules/@types/lodash": {
  766. "version": "4.17.24",
  767. "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.24.tgz",
  768. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  769. "license": "MIT"
  770. },
  771. "node_modules/@types/lodash-es": {
  772. "version": "4.17.12",
  773. "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  774. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  775. "license": "MIT",
  776. "dependencies": {
  777. "@types/lodash": "*"
  778. }
  779. },
  780. "node_modules/@types/web-bluetooth": {
  781. "version": "0.0.20",
  782. "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz",
  783. "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==",
  784. "license": "MIT"
  785. },
  786. "node_modules/@vitejs/plugin-vue": {
  787. "version": "6.0.5",
  788. "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.5.tgz",
  789. "integrity": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==",
  790. "dev": true,
  791. "license": "MIT",
  792. "dependencies": {
  793. "@rolldown/pluginutils": "1.0.0-rc.2"
  794. },
  795. "engines": {
  796. "node": "^20.19.0 || >=22.12.0"
  797. },
  798. "peerDependencies": {
  799. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  800. "vue": "^3.2.25"
  801. }
  802. },
  803. "node_modules/@vue/compiler-core": {
  804. "version": "3.5.32",
  805. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.32.tgz",
  806. "integrity": "sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==",
  807. "license": "MIT",
  808. "dependencies": {
  809. "@babel/parser": "^7.29.2",
  810. "@vue/shared": "3.5.32",
  811. "entities": "^7.0.1",
  812. "estree-walker": "^2.0.2",
  813. "source-map-js": "^1.2.1"
  814. }
  815. },
  816. "node_modules/@vue/compiler-dom": {
  817. "version": "3.5.32",
  818. "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.32.tgz",
  819. "integrity": "sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==",
  820. "license": "MIT",
  821. "dependencies": {
  822. "@vue/compiler-core": "3.5.32",
  823. "@vue/shared": "3.5.32"
  824. }
  825. },
  826. "node_modules/@vue/compiler-sfc": {
  827. "version": "3.5.32",
  828. "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.32.tgz",
  829. "integrity": "sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==",
  830. "license": "MIT",
  831. "dependencies": {
  832. "@babel/parser": "^7.29.2",
  833. "@vue/compiler-core": "3.5.32",
  834. "@vue/compiler-dom": "3.5.32",
  835. "@vue/compiler-ssr": "3.5.32",
  836. "@vue/shared": "3.5.32",
  837. "estree-walker": "^2.0.2",
  838. "magic-string": "^0.30.21",
  839. "postcss": "^8.5.8",
  840. "source-map-js": "^1.2.1"
  841. }
  842. },
  843. "node_modules/@vue/compiler-ssr": {
  844. "version": "3.5.32",
  845. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.32.tgz",
  846. "integrity": "sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==",
  847. "license": "MIT",
  848. "dependencies": {
  849. "@vue/compiler-dom": "3.5.32",
  850. "@vue/shared": "3.5.32"
  851. }
  852. },
  853. "node_modules/@vue/devtools-api": {
  854. "version": "7.7.9",
  855. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
  856. "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
  857. "license": "MIT",
  858. "dependencies": {
  859. "@vue/devtools-kit": "^7.7.9"
  860. }
  861. },
  862. "node_modules/@vue/devtools-kit": {
  863. "version": "7.7.9",
  864. "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
  865. "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
  866. "license": "MIT",
  867. "dependencies": {
  868. "@vue/devtools-shared": "^7.7.9",
  869. "birpc": "^2.3.0",
  870. "hookable": "^5.5.3",
  871. "mitt": "^3.0.1",
  872. "perfect-debounce": "^1.0.0",
  873. "speakingurl": "^14.0.1",
  874. "superjson": "^2.2.2"
  875. }
  876. },
  877. "node_modules/@vue/devtools-shared": {
  878. "version": "7.7.9",
  879. "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
  880. "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
  881. "license": "MIT",
  882. "dependencies": {
  883. "rfdc": "^1.4.1"
  884. }
  885. },
  886. "node_modules/@vue/reactivity": {
  887. "version": "3.5.32",
  888. "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.32.tgz",
  889. "integrity": "sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==",
  890. "license": "MIT",
  891. "dependencies": {
  892. "@vue/shared": "3.5.32"
  893. }
  894. },
  895. "node_modules/@vue/runtime-core": {
  896. "version": "3.5.32",
  897. "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.32.tgz",
  898. "integrity": "sha512-pDrXCejn4UpFDFmMd27AcJEbHaLemaE5o4pbb7sLk79SRIhc6/t34BQA7SGNgYtbMnvbF/HHOftYBgFJtUoJUQ==",
  899. "license": "MIT",
  900. "dependencies": {
  901. "@vue/reactivity": "3.5.32",
  902. "@vue/shared": "3.5.32"
  903. }
  904. },
  905. "node_modules/@vue/runtime-dom": {
  906. "version": "3.5.32",
  907. "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.32.tgz",
  908. "integrity": "sha512-1CDVv7tv/IV13V8Nip1k/aaObVbWqRlVCVezTwx3K07p7Vxossp5JU1dcPNhJk3w347gonIUT9jQOGutyJrSVQ==",
  909. "license": "MIT",
  910. "dependencies": {
  911. "@vue/reactivity": "3.5.32",
  912. "@vue/runtime-core": "3.5.32",
  913. "@vue/shared": "3.5.32",
  914. "csstype": "^3.2.3"
  915. }
  916. },
  917. "node_modules/@vue/server-renderer": {
  918. "version": "3.5.32",
  919. "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.32.tgz",
  920. "integrity": "sha512-IOjm2+JQwRFS7W28HNuJeXQle9KdZbODFY7hFGVtnnghF51ta20EWAZJHX+zLGtsHhaU6uC9BGPV52KVpYryMQ==",
  921. "license": "MIT",
  922. "dependencies": {
  923. "@vue/compiler-ssr": "3.5.32",
  924. "@vue/shared": "3.5.32"
  925. },
  926. "peerDependencies": {
  927. "vue": "3.5.32"
  928. }
  929. },
  930. "node_modules/@vue/shared": {
  931. "version": "3.5.32",
  932. "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.32.tgz",
  933. "integrity": "sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==",
  934. "license": "MIT"
  935. },
  936. "node_modules/@vueuse/core": {
  937. "version": "12.0.0",
  938. "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-12.0.0.tgz",
  939. "integrity": "sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==",
  940. "license": "MIT",
  941. "dependencies": {
  942. "@types/web-bluetooth": "^0.0.20",
  943. "@vueuse/metadata": "12.0.0",
  944. "@vueuse/shared": "12.0.0",
  945. "vue": "^3.5.13"
  946. },
  947. "funding": {
  948. "url": "https://github.com/sponsors/antfu"
  949. }
  950. },
  951. "node_modules/@vueuse/metadata": {
  952. "version": "12.0.0",
  953. "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.0.0.tgz",
  954. "integrity": "sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==",
  955. "license": "MIT",
  956. "funding": {
  957. "url": "https://github.com/sponsors/antfu"
  958. }
  959. },
  960. "node_modules/@vueuse/shared": {
  961. "version": "12.0.0",
  962. "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-12.0.0.tgz",
  963. "integrity": "sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==",
  964. "license": "MIT",
  965. "dependencies": {
  966. "vue": "^3.5.13"
  967. },
  968. "funding": {
  969. "url": "https://github.com/sponsors/antfu"
  970. }
  971. },
  972. "node_modules/adler-32": {
  973. "version": "1.3.1",
  974. "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.3.1.tgz",
  975. "integrity": "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==",
  976. "license": "Apache-2.0",
  977. "engines": {
  978. "node": ">=0.8"
  979. }
  980. },
  981. "node_modules/async-validator": {
  982. "version": "4.2.5",
  983. "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz",
  984. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  985. "license": "MIT"
  986. },
  987. "node_modules/asynckit": {
  988. "version": "0.4.0",
  989. "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
  990. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  991. "license": "MIT"
  992. },
  993. "node_modules/axios": {
  994. "version": "1.14.0",
  995. "resolved": "https://registry.npmjs.org/axios/-/axios-1.14.0.tgz",
  996. "integrity": "sha512-3Y8yrqLSwjuzpXuZ0oIYZ/XGgLwUIBU3uLvbcpb0pidD9ctpShJd43KSlEEkVQg6DS0G9NKyzOvBfUtDKEyHvQ==",
  997. "license": "MIT",
  998. "dependencies": {
  999. "follow-redirects": "^1.15.11",
  1000. "form-data": "^4.0.5",
  1001. "proxy-from-env": "^2.1.0"
  1002. }
  1003. },
  1004. "node_modules/birpc": {
  1005. "version": "2.9.0",
  1006. "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
  1007. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1008. "license": "MIT",
  1009. "funding": {
  1010. "url": "https://github.com/sponsors/antfu"
  1011. }
  1012. },
  1013. "node_modules/call-bind-apply-helpers": {
  1014. "version": "1.0.2",
  1015. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1016. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1017. "license": "MIT",
  1018. "dependencies": {
  1019. "es-errors": "^1.3.0",
  1020. "function-bind": "^1.1.2"
  1021. },
  1022. "engines": {
  1023. "node": ">= 0.4"
  1024. }
  1025. },
  1026. "node_modules/cfb": {
  1027. "version": "1.2.2",
  1028. "resolved": "https://registry.npmjs.org/cfb/-/cfb-1.2.2.tgz",
  1029. "integrity": "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==",
  1030. "license": "Apache-2.0",
  1031. "dependencies": {
  1032. "adler-32": "~1.3.0",
  1033. "crc-32": "~1.2.0"
  1034. },
  1035. "engines": {
  1036. "node": ">=0.8"
  1037. }
  1038. },
  1039. "node_modules/chokidar": {
  1040. "version": "4.0.3",
  1041. "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
  1042. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  1043. "license": "MIT",
  1044. "dependencies": {
  1045. "readdirp": "^4.0.1"
  1046. },
  1047. "engines": {
  1048. "node": ">= 14.16.0"
  1049. },
  1050. "funding": {
  1051. "url": "https://paulmillr.com/funding/"
  1052. }
  1053. },
  1054. "node_modules/codepage": {
  1055. "version": "1.15.0",
  1056. "resolved": "https://registry.npmjs.org/codepage/-/codepage-1.15.0.tgz",
  1057. "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==",
  1058. "license": "Apache-2.0",
  1059. "engines": {
  1060. "node": ">=0.8"
  1061. }
  1062. },
  1063. "node_modules/combined-stream": {
  1064. "version": "1.0.8",
  1065. "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
  1066. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1067. "license": "MIT",
  1068. "dependencies": {
  1069. "delayed-stream": "~1.0.0"
  1070. },
  1071. "engines": {
  1072. "node": ">= 0.8"
  1073. }
  1074. },
  1075. "node_modules/copy-anything": {
  1076. "version": "4.0.5",
  1077. "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz",
  1078. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  1079. "license": "MIT",
  1080. "dependencies": {
  1081. "is-what": "^5.2.0"
  1082. },
  1083. "engines": {
  1084. "node": ">=18"
  1085. },
  1086. "funding": {
  1087. "url": "https://github.com/sponsors/mesqueeb"
  1088. }
  1089. },
  1090. "node_modules/crc-32": {
  1091. "version": "1.2.2",
  1092. "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
  1093. "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
  1094. "license": "Apache-2.0",
  1095. "bin": {
  1096. "crc32": "bin/crc32.njs"
  1097. },
  1098. "engines": {
  1099. "node": ">=0.8"
  1100. }
  1101. },
  1102. "node_modules/csstype": {
  1103. "version": "3.2.3",
  1104. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1105. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1106. "license": "MIT"
  1107. },
  1108. "node_modules/dayjs": {
  1109. "version": "1.11.20",
  1110. "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.20.tgz",
  1111. "integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==",
  1112. "license": "MIT"
  1113. },
  1114. "node_modules/delayed-stream": {
  1115. "version": "1.0.0",
  1116. "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1117. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1118. "license": "MIT",
  1119. "engines": {
  1120. "node": ">=0.4.0"
  1121. }
  1122. },
  1123. "node_modules/detect-libc": {
  1124. "version": "2.1.2",
  1125. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1126. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1127. "devOptional": true,
  1128. "license": "Apache-2.0",
  1129. "engines": {
  1130. "node": ">=8"
  1131. }
  1132. },
  1133. "node_modules/dunder-proto": {
  1134. "version": "1.0.1",
  1135. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1136. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1137. "license": "MIT",
  1138. "dependencies": {
  1139. "call-bind-apply-helpers": "^1.0.1",
  1140. "es-errors": "^1.3.0",
  1141. "gopd": "^1.2.0"
  1142. },
  1143. "engines": {
  1144. "node": ">= 0.4"
  1145. }
  1146. },
  1147. "node_modules/element-plus": {
  1148. "version": "2.13.6",
  1149. "resolved": "https://registry.npmjs.org/element-plus/-/element-plus-2.13.6.tgz",
  1150. "integrity": "sha512-XHgwXr8Fjz6i+6BaqFhAbae/dJbG7bBAAlHrY3pWL7dpj+JcqcOyKYt4Oy5KP86FQwS1k4uIZDjCx2FyUR5lDg==",
  1151. "license": "MIT",
  1152. "dependencies": {
  1153. "@ctrl/tinycolor": "^4.2.0",
  1154. "@element-plus/icons-vue": "^2.3.2",
  1155. "@floating-ui/dom": "^1.0.1",
  1156. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1157. "@types/lodash": "^4.17.20",
  1158. "@types/lodash-es": "^4.17.12",
  1159. "@vueuse/core": "12.0.0",
  1160. "async-validator": "^4.2.5",
  1161. "dayjs": "^1.11.19",
  1162. "lodash": "^4.17.23",
  1163. "lodash-es": "^4.17.23",
  1164. "lodash-unified": "^1.0.3",
  1165. "memoize-one": "^6.0.0",
  1166. "normalize-wheel-es": "^1.2.0",
  1167. "vue-component-type-helpers": "^3.2.4"
  1168. },
  1169. "peerDependencies": {
  1170. "vue": "^3.3.0"
  1171. }
  1172. },
  1173. "node_modules/entities": {
  1174. "version": "7.0.1",
  1175. "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
  1176. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1177. "license": "BSD-2-Clause",
  1178. "engines": {
  1179. "node": ">=0.12"
  1180. },
  1181. "funding": {
  1182. "url": "https://github.com/fb55/entities?sponsor=1"
  1183. }
  1184. },
  1185. "node_modules/es-define-property": {
  1186. "version": "1.0.1",
  1187. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  1188. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1189. "license": "MIT",
  1190. "engines": {
  1191. "node": ">= 0.4"
  1192. }
  1193. },
  1194. "node_modules/es-errors": {
  1195. "version": "1.3.0",
  1196. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  1197. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1198. "license": "MIT",
  1199. "engines": {
  1200. "node": ">= 0.4"
  1201. }
  1202. },
  1203. "node_modules/es-object-atoms": {
  1204. "version": "1.1.1",
  1205. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1206. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1207. "license": "MIT",
  1208. "dependencies": {
  1209. "es-errors": "^1.3.0"
  1210. },
  1211. "engines": {
  1212. "node": ">= 0.4"
  1213. }
  1214. },
  1215. "node_modules/es-set-tostringtag": {
  1216. "version": "2.1.0",
  1217. "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1218. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1219. "license": "MIT",
  1220. "dependencies": {
  1221. "es-errors": "^1.3.0",
  1222. "get-intrinsic": "^1.2.6",
  1223. "has-tostringtag": "^1.0.2",
  1224. "hasown": "^2.0.2"
  1225. },
  1226. "engines": {
  1227. "node": ">= 0.4"
  1228. }
  1229. },
  1230. "node_modules/estree-walker": {
  1231. "version": "2.0.2",
  1232. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  1233. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1234. "license": "MIT"
  1235. },
  1236. "node_modules/fdir": {
  1237. "version": "6.5.0",
  1238. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1239. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1240. "dev": true,
  1241. "license": "MIT",
  1242. "engines": {
  1243. "node": ">=12.0.0"
  1244. },
  1245. "peerDependencies": {
  1246. "picomatch": "^3 || ^4"
  1247. },
  1248. "peerDependenciesMeta": {
  1249. "picomatch": {
  1250. "optional": true
  1251. }
  1252. }
  1253. },
  1254. "node_modules/follow-redirects": {
  1255. "version": "1.15.11",
  1256. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
  1257. "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
  1258. "funding": [
  1259. {
  1260. "type": "individual",
  1261. "url": "https://github.com/sponsors/RubenVerborgh"
  1262. }
  1263. ],
  1264. "license": "MIT",
  1265. "engines": {
  1266. "node": ">=4.0"
  1267. },
  1268. "peerDependenciesMeta": {
  1269. "debug": {
  1270. "optional": true
  1271. }
  1272. }
  1273. },
  1274. "node_modules/form-data": {
  1275. "version": "4.0.5",
  1276. "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
  1277. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  1278. "license": "MIT",
  1279. "dependencies": {
  1280. "asynckit": "^0.4.0",
  1281. "combined-stream": "^1.0.8",
  1282. "es-set-tostringtag": "^2.1.0",
  1283. "hasown": "^2.0.2",
  1284. "mime-types": "^2.1.12"
  1285. },
  1286. "engines": {
  1287. "node": ">= 6"
  1288. }
  1289. },
  1290. "node_modules/frac": {
  1291. "version": "1.1.2",
  1292. "resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz",
  1293. "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==",
  1294. "license": "Apache-2.0",
  1295. "engines": {
  1296. "node": ">=0.8"
  1297. }
  1298. },
  1299. "node_modules/fsevents": {
  1300. "version": "2.3.3",
  1301. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1302. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1303. "dev": true,
  1304. "hasInstallScript": true,
  1305. "license": "MIT",
  1306. "optional": true,
  1307. "os": [
  1308. "darwin"
  1309. ],
  1310. "engines": {
  1311. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1312. }
  1313. },
  1314. "node_modules/function-bind": {
  1315. "version": "1.1.2",
  1316. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1317. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1318. "license": "MIT",
  1319. "funding": {
  1320. "url": "https://github.com/sponsors/ljharb"
  1321. }
  1322. },
  1323. "node_modules/get-intrinsic": {
  1324. "version": "1.3.0",
  1325. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1326. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1327. "license": "MIT",
  1328. "dependencies": {
  1329. "call-bind-apply-helpers": "^1.0.2",
  1330. "es-define-property": "^1.0.1",
  1331. "es-errors": "^1.3.0",
  1332. "es-object-atoms": "^1.1.1",
  1333. "function-bind": "^1.1.2",
  1334. "get-proto": "^1.0.1",
  1335. "gopd": "^1.2.0",
  1336. "has-symbols": "^1.1.0",
  1337. "hasown": "^2.0.2",
  1338. "math-intrinsics": "^1.1.0"
  1339. },
  1340. "engines": {
  1341. "node": ">= 0.4"
  1342. },
  1343. "funding": {
  1344. "url": "https://github.com/sponsors/ljharb"
  1345. }
  1346. },
  1347. "node_modules/get-proto": {
  1348. "version": "1.0.1",
  1349. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1350. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1351. "license": "MIT",
  1352. "dependencies": {
  1353. "dunder-proto": "^1.0.1",
  1354. "es-object-atoms": "^1.0.0"
  1355. },
  1356. "engines": {
  1357. "node": ">= 0.4"
  1358. }
  1359. },
  1360. "node_modules/gopd": {
  1361. "version": "1.2.0",
  1362. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1363. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1364. "license": "MIT",
  1365. "engines": {
  1366. "node": ">= 0.4"
  1367. },
  1368. "funding": {
  1369. "url": "https://github.com/sponsors/ljharb"
  1370. }
  1371. },
  1372. "node_modules/has-symbols": {
  1373. "version": "1.1.0",
  1374. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1375. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1376. "license": "MIT",
  1377. "engines": {
  1378. "node": ">= 0.4"
  1379. },
  1380. "funding": {
  1381. "url": "https://github.com/sponsors/ljharb"
  1382. }
  1383. },
  1384. "node_modules/has-tostringtag": {
  1385. "version": "1.0.2",
  1386. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1387. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1388. "license": "MIT",
  1389. "dependencies": {
  1390. "has-symbols": "^1.0.3"
  1391. },
  1392. "engines": {
  1393. "node": ">= 0.4"
  1394. },
  1395. "funding": {
  1396. "url": "https://github.com/sponsors/ljharb"
  1397. }
  1398. },
  1399. "node_modules/hasown": {
  1400. "version": "2.0.2",
  1401. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  1402. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1403. "license": "MIT",
  1404. "dependencies": {
  1405. "function-bind": "^1.1.2"
  1406. },
  1407. "engines": {
  1408. "node": ">= 0.4"
  1409. }
  1410. },
  1411. "node_modules/hookable": {
  1412. "version": "5.5.3",
  1413. "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
  1414. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1415. "license": "MIT"
  1416. },
  1417. "node_modules/immutable": {
  1418. "version": "5.1.5",
  1419. "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz",
  1420. "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==",
  1421. "license": "MIT"
  1422. },
  1423. "node_modules/is-extglob": {
  1424. "version": "2.1.1",
  1425. "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
  1426. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1427. "license": "MIT",
  1428. "optional": true,
  1429. "engines": {
  1430. "node": ">=0.10.0"
  1431. }
  1432. },
  1433. "node_modules/is-glob": {
  1434. "version": "4.0.3",
  1435. "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
  1436. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1437. "license": "MIT",
  1438. "optional": true,
  1439. "dependencies": {
  1440. "is-extglob": "^2.1.1"
  1441. },
  1442. "engines": {
  1443. "node": ">=0.10.0"
  1444. }
  1445. },
  1446. "node_modules/is-what": {
  1447. "version": "5.5.0",
  1448. "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz",
  1449. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  1450. "license": "MIT",
  1451. "engines": {
  1452. "node": ">=18"
  1453. },
  1454. "funding": {
  1455. "url": "https://github.com/sponsors/mesqueeb"
  1456. }
  1457. },
  1458. "node_modules/lightningcss": {
  1459. "version": "1.32.0",
  1460. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  1461. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  1462. "dev": true,
  1463. "license": "MPL-2.0",
  1464. "dependencies": {
  1465. "detect-libc": "^2.0.3"
  1466. },
  1467. "engines": {
  1468. "node": ">= 12.0.0"
  1469. },
  1470. "funding": {
  1471. "type": "opencollective",
  1472. "url": "https://opencollective.com/parcel"
  1473. },
  1474. "optionalDependencies": {
  1475. "lightningcss-android-arm64": "1.32.0",
  1476. "lightningcss-darwin-arm64": "1.32.0",
  1477. "lightningcss-darwin-x64": "1.32.0",
  1478. "lightningcss-freebsd-x64": "1.32.0",
  1479. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1480. "lightningcss-linux-arm64-gnu": "1.32.0",
  1481. "lightningcss-linux-arm64-musl": "1.32.0",
  1482. "lightningcss-linux-x64-gnu": "1.32.0",
  1483. "lightningcss-linux-x64-musl": "1.32.0",
  1484. "lightningcss-win32-arm64-msvc": "1.32.0",
  1485. "lightningcss-win32-x64-msvc": "1.32.0"
  1486. }
  1487. },
  1488. "node_modules/lightningcss-android-arm64": {
  1489. "version": "1.32.0",
  1490. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  1491. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  1492. "cpu": [
  1493. "arm64"
  1494. ],
  1495. "dev": true,
  1496. "license": "MPL-2.0",
  1497. "optional": true,
  1498. "os": [
  1499. "android"
  1500. ],
  1501. "engines": {
  1502. "node": ">= 12.0.0"
  1503. },
  1504. "funding": {
  1505. "type": "opencollective",
  1506. "url": "https://opencollective.com/parcel"
  1507. }
  1508. },
  1509. "node_modules/lightningcss-darwin-arm64": {
  1510. "version": "1.32.0",
  1511. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  1512. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  1513. "cpu": [
  1514. "arm64"
  1515. ],
  1516. "dev": true,
  1517. "license": "MPL-2.0",
  1518. "optional": true,
  1519. "os": [
  1520. "darwin"
  1521. ],
  1522. "engines": {
  1523. "node": ">= 12.0.0"
  1524. },
  1525. "funding": {
  1526. "type": "opencollective",
  1527. "url": "https://opencollective.com/parcel"
  1528. }
  1529. },
  1530. "node_modules/lightningcss-darwin-x64": {
  1531. "version": "1.32.0",
  1532. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  1533. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  1534. "cpu": [
  1535. "x64"
  1536. ],
  1537. "dev": true,
  1538. "license": "MPL-2.0",
  1539. "optional": true,
  1540. "os": [
  1541. "darwin"
  1542. ],
  1543. "engines": {
  1544. "node": ">= 12.0.0"
  1545. },
  1546. "funding": {
  1547. "type": "opencollective",
  1548. "url": "https://opencollective.com/parcel"
  1549. }
  1550. },
  1551. "node_modules/lightningcss-freebsd-x64": {
  1552. "version": "1.32.0",
  1553. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  1554. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  1555. "cpu": [
  1556. "x64"
  1557. ],
  1558. "dev": true,
  1559. "license": "MPL-2.0",
  1560. "optional": true,
  1561. "os": [
  1562. "freebsd"
  1563. ],
  1564. "engines": {
  1565. "node": ">= 12.0.0"
  1566. },
  1567. "funding": {
  1568. "type": "opencollective",
  1569. "url": "https://opencollective.com/parcel"
  1570. }
  1571. },
  1572. "node_modules/lightningcss-linux-arm-gnueabihf": {
  1573. "version": "1.32.0",
  1574. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  1575. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  1576. "cpu": [
  1577. "arm"
  1578. ],
  1579. "dev": true,
  1580. "license": "MPL-2.0",
  1581. "optional": true,
  1582. "os": [
  1583. "linux"
  1584. ],
  1585. "engines": {
  1586. "node": ">= 12.0.0"
  1587. },
  1588. "funding": {
  1589. "type": "opencollective",
  1590. "url": "https://opencollective.com/parcel"
  1591. }
  1592. },
  1593. "node_modules/lightningcss-linux-arm64-gnu": {
  1594. "version": "1.32.0",
  1595. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  1596. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  1597. "cpu": [
  1598. "arm64"
  1599. ],
  1600. "dev": true,
  1601. "license": "MPL-2.0",
  1602. "optional": true,
  1603. "os": [
  1604. "linux"
  1605. ],
  1606. "engines": {
  1607. "node": ">= 12.0.0"
  1608. },
  1609. "funding": {
  1610. "type": "opencollective",
  1611. "url": "https://opencollective.com/parcel"
  1612. }
  1613. },
  1614. "node_modules/lightningcss-linux-arm64-musl": {
  1615. "version": "1.32.0",
  1616. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  1617. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  1618. "cpu": [
  1619. "arm64"
  1620. ],
  1621. "dev": true,
  1622. "license": "MPL-2.0",
  1623. "optional": true,
  1624. "os": [
  1625. "linux"
  1626. ],
  1627. "engines": {
  1628. "node": ">= 12.0.0"
  1629. },
  1630. "funding": {
  1631. "type": "opencollective",
  1632. "url": "https://opencollective.com/parcel"
  1633. }
  1634. },
  1635. "node_modules/lightningcss-linux-x64-gnu": {
  1636. "version": "1.32.0",
  1637. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  1638. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  1639. "cpu": [
  1640. "x64"
  1641. ],
  1642. "dev": true,
  1643. "license": "MPL-2.0",
  1644. "optional": true,
  1645. "os": [
  1646. "linux"
  1647. ],
  1648. "engines": {
  1649. "node": ">= 12.0.0"
  1650. },
  1651. "funding": {
  1652. "type": "opencollective",
  1653. "url": "https://opencollective.com/parcel"
  1654. }
  1655. },
  1656. "node_modules/lightningcss-linux-x64-musl": {
  1657. "version": "1.32.0",
  1658. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  1659. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  1660. "cpu": [
  1661. "x64"
  1662. ],
  1663. "dev": true,
  1664. "license": "MPL-2.0",
  1665. "optional": true,
  1666. "os": [
  1667. "linux"
  1668. ],
  1669. "engines": {
  1670. "node": ">= 12.0.0"
  1671. },
  1672. "funding": {
  1673. "type": "opencollective",
  1674. "url": "https://opencollective.com/parcel"
  1675. }
  1676. },
  1677. "node_modules/lightningcss-win32-arm64-msvc": {
  1678. "version": "1.32.0",
  1679. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  1680. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  1681. "cpu": [
  1682. "arm64"
  1683. ],
  1684. "dev": true,
  1685. "license": "MPL-2.0",
  1686. "optional": true,
  1687. "os": [
  1688. "win32"
  1689. ],
  1690. "engines": {
  1691. "node": ">= 12.0.0"
  1692. },
  1693. "funding": {
  1694. "type": "opencollective",
  1695. "url": "https://opencollective.com/parcel"
  1696. }
  1697. },
  1698. "node_modules/lightningcss-win32-x64-msvc": {
  1699. "version": "1.32.0",
  1700. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  1701. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  1702. "cpu": [
  1703. "x64"
  1704. ],
  1705. "dev": true,
  1706. "license": "MPL-2.0",
  1707. "optional": true,
  1708. "os": [
  1709. "win32"
  1710. ],
  1711. "engines": {
  1712. "node": ">= 12.0.0"
  1713. },
  1714. "funding": {
  1715. "type": "opencollective",
  1716. "url": "https://opencollective.com/parcel"
  1717. }
  1718. },
  1719. "node_modules/lodash": {
  1720. "version": "4.18.1",
  1721. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
  1722. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  1723. "license": "MIT"
  1724. },
  1725. "node_modules/lodash-es": {
  1726. "version": "4.18.1",
  1727. "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
  1728. "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
  1729. "license": "MIT"
  1730. },
  1731. "node_modules/lodash-unified": {
  1732. "version": "1.0.3",
  1733. "resolved": "https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.3.tgz",
  1734. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  1735. "license": "MIT",
  1736. "peerDependencies": {
  1737. "@types/lodash-es": "*",
  1738. "lodash": "*",
  1739. "lodash-es": "*"
  1740. }
  1741. },
  1742. "node_modules/magic-string": {
  1743. "version": "0.30.21",
  1744. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  1745. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1746. "license": "MIT",
  1747. "dependencies": {
  1748. "@jridgewell/sourcemap-codec": "^1.5.5"
  1749. }
  1750. },
  1751. "node_modules/math-intrinsics": {
  1752. "version": "1.1.0",
  1753. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  1754. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  1755. "license": "MIT",
  1756. "engines": {
  1757. "node": ">= 0.4"
  1758. }
  1759. },
  1760. "node_modules/memoize-one": {
  1761. "version": "6.0.0",
  1762. "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz",
  1763. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  1764. "license": "MIT"
  1765. },
  1766. "node_modules/mime-db": {
  1767. "version": "1.52.0",
  1768. "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
  1769. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  1770. "license": "MIT",
  1771. "engines": {
  1772. "node": ">= 0.6"
  1773. }
  1774. },
  1775. "node_modules/mime-types": {
  1776. "version": "2.1.35",
  1777. "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
  1778. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  1779. "license": "MIT",
  1780. "dependencies": {
  1781. "mime-db": "1.52.0"
  1782. },
  1783. "engines": {
  1784. "node": ">= 0.6"
  1785. }
  1786. },
  1787. "node_modules/mitt": {
  1788. "version": "3.0.1",
  1789. "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
  1790. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  1791. "license": "MIT"
  1792. },
  1793. "node_modules/nanoid": {
  1794. "version": "3.3.11",
  1795. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  1796. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  1797. "funding": [
  1798. {
  1799. "type": "github",
  1800. "url": "https://github.com/sponsors/ai"
  1801. }
  1802. ],
  1803. "license": "MIT",
  1804. "bin": {
  1805. "nanoid": "bin/nanoid.cjs"
  1806. },
  1807. "engines": {
  1808. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1809. }
  1810. },
  1811. "node_modules/node-addon-api": {
  1812. "version": "7.1.1",
  1813. "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
  1814. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  1815. "license": "MIT",
  1816. "optional": true
  1817. },
  1818. "node_modules/normalize-wheel-es": {
  1819. "version": "1.2.0",
  1820. "resolved": "https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  1821. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  1822. "license": "BSD-3-Clause"
  1823. },
  1824. "node_modules/perfect-debounce": {
  1825. "version": "1.0.0",
  1826. "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  1827. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
  1828. "license": "MIT"
  1829. },
  1830. "node_modules/picocolors": {
  1831. "version": "1.1.1",
  1832. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  1833. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1834. "license": "ISC"
  1835. },
  1836. "node_modules/picomatch": {
  1837. "version": "4.0.4",
  1838. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
  1839. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  1840. "devOptional": true,
  1841. "license": "MIT",
  1842. "engines": {
  1843. "node": ">=12"
  1844. },
  1845. "funding": {
  1846. "url": "https://github.com/sponsors/jonschlinkert"
  1847. }
  1848. },
  1849. "node_modules/pinia": {
  1850. "version": "3.0.4",
  1851. "resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.4.tgz",
  1852. "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
  1853. "license": "MIT",
  1854. "dependencies": {
  1855. "@vue/devtools-api": "^7.7.7"
  1856. },
  1857. "funding": {
  1858. "url": "https://github.com/sponsors/posva"
  1859. },
  1860. "peerDependencies": {
  1861. "typescript": ">=4.5.0",
  1862. "vue": "^3.5.11"
  1863. },
  1864. "peerDependenciesMeta": {
  1865. "typescript": {
  1866. "optional": true
  1867. }
  1868. }
  1869. },
  1870. "node_modules/postcss": {
  1871. "version": "8.5.9",
  1872. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.9.tgz",
  1873. "integrity": "sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==",
  1874. "funding": [
  1875. {
  1876. "type": "opencollective",
  1877. "url": "https://opencollective.com/postcss/"
  1878. },
  1879. {
  1880. "type": "tidelift",
  1881. "url": "https://tidelift.com/funding/github/npm/postcss"
  1882. },
  1883. {
  1884. "type": "github",
  1885. "url": "https://github.com/sponsors/ai"
  1886. }
  1887. ],
  1888. "license": "MIT",
  1889. "dependencies": {
  1890. "nanoid": "^3.3.11",
  1891. "picocolors": "^1.1.1",
  1892. "source-map-js": "^1.2.1"
  1893. },
  1894. "engines": {
  1895. "node": "^10 || ^12 || >=14"
  1896. }
  1897. },
  1898. "node_modules/proxy-from-env": {
  1899. "version": "2.1.0",
  1900. "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
  1901. "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
  1902. "license": "MIT",
  1903. "engines": {
  1904. "node": ">=10"
  1905. }
  1906. },
  1907. "node_modules/readdirp": {
  1908. "version": "4.1.2",
  1909. "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
  1910. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  1911. "license": "MIT",
  1912. "engines": {
  1913. "node": ">= 14.18.0"
  1914. },
  1915. "funding": {
  1916. "type": "individual",
  1917. "url": "https://paulmillr.com/funding/"
  1918. }
  1919. },
  1920. "node_modules/rfdc": {
  1921. "version": "1.4.1",
  1922. "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
  1923. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  1924. "license": "MIT"
  1925. },
  1926. "node_modules/rolldown": {
  1927. "version": "1.0.0-rc.13",
  1928. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.13.tgz",
  1929. "integrity": "sha512-bvVj8YJmf0rq4pSFmH7laLa6pYrhghv3PRzrCdRAr23g66zOKVJ4wkvFtgohtPLWmthgg8/rkaqRHrpUEh0Zbw==",
  1930. "dev": true,
  1931. "license": "MIT",
  1932. "dependencies": {
  1933. "@oxc-project/types": "=0.123.0",
  1934. "@rolldown/pluginutils": "1.0.0-rc.13"
  1935. },
  1936. "bin": {
  1937. "rolldown": "bin/cli.mjs"
  1938. },
  1939. "engines": {
  1940. "node": "^20.19.0 || >=22.12.0"
  1941. },
  1942. "optionalDependencies": {
  1943. "@rolldown/binding-android-arm64": "1.0.0-rc.13",
  1944. "@rolldown/binding-darwin-arm64": "1.0.0-rc.13",
  1945. "@rolldown/binding-darwin-x64": "1.0.0-rc.13",
  1946. "@rolldown/binding-freebsd-x64": "1.0.0-rc.13",
  1947. "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.13",
  1948. "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.13",
  1949. "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.13",
  1950. "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.13",
  1951. "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.13",
  1952. "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.13",
  1953. "@rolldown/binding-linux-x64-musl": "1.0.0-rc.13",
  1954. "@rolldown/binding-openharmony-arm64": "1.0.0-rc.13",
  1955. "@rolldown/binding-wasm32-wasi": "1.0.0-rc.13",
  1956. "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.13",
  1957. "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.13"
  1958. }
  1959. },
  1960. "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
  1961. "version": "1.0.0-rc.13",
  1962. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.13.tgz",
  1963. "integrity": "sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==",
  1964. "dev": true,
  1965. "license": "MIT"
  1966. },
  1967. "node_modules/sass": {
  1968. "version": "1.99.0",
  1969. "resolved": "https://registry.npmjs.org/sass/-/sass-1.99.0.tgz",
  1970. "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==",
  1971. "license": "MIT",
  1972. "dependencies": {
  1973. "chokidar": "^4.0.0",
  1974. "immutable": "^5.1.5",
  1975. "source-map-js": ">=0.6.2 <2.0.0"
  1976. },
  1977. "bin": {
  1978. "sass": "sass.js"
  1979. },
  1980. "engines": {
  1981. "node": ">=14.0.0"
  1982. },
  1983. "optionalDependencies": {
  1984. "@parcel/watcher": "^2.4.1"
  1985. }
  1986. },
  1987. "node_modules/source-map-js": {
  1988. "version": "1.2.1",
  1989. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  1990. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  1991. "license": "BSD-3-Clause",
  1992. "engines": {
  1993. "node": ">=0.10.0"
  1994. }
  1995. },
  1996. "node_modules/speakingurl": {
  1997. "version": "14.0.1",
  1998. "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
  1999. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  2000. "license": "BSD-3-Clause",
  2001. "engines": {
  2002. "node": ">=0.10.0"
  2003. }
  2004. },
  2005. "node_modules/ssf": {
  2006. "version": "0.11.2",
  2007. "resolved": "https://registry.npmjs.org/ssf/-/ssf-0.11.2.tgz",
  2008. "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==",
  2009. "license": "Apache-2.0",
  2010. "dependencies": {
  2011. "frac": "~1.1.2"
  2012. },
  2013. "engines": {
  2014. "node": ">=0.8"
  2015. }
  2016. },
  2017. "node_modules/superjson": {
  2018. "version": "2.2.6",
  2019. "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz",
  2020. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  2021. "license": "MIT",
  2022. "dependencies": {
  2023. "copy-anything": "^4"
  2024. },
  2025. "engines": {
  2026. "node": ">=16"
  2027. }
  2028. },
  2029. "node_modules/tinyglobby": {
  2030. "version": "0.2.16",
  2031. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
  2032. "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
  2033. "dev": true,
  2034. "license": "MIT",
  2035. "dependencies": {
  2036. "fdir": "^6.5.0",
  2037. "picomatch": "^4.0.4"
  2038. },
  2039. "engines": {
  2040. "node": ">=12.0.0"
  2041. },
  2042. "funding": {
  2043. "url": "https://github.com/sponsors/SuperchupuDev"
  2044. }
  2045. },
  2046. "node_modules/tslib": {
  2047. "version": "2.8.1",
  2048. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  2049. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2050. "dev": true,
  2051. "license": "0BSD",
  2052. "optional": true
  2053. },
  2054. "node_modules/vite": {
  2055. "version": "8.0.7",
  2056. "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.7.tgz",
  2057. "integrity": "sha512-P1PbweD+2/udplnThz3btF4cf6AgPky7kk23RtHUkJIU5BIxwPprhRGmOAHs6FTI7UiGbTNrgNP6jSYD6JaRnw==",
  2058. "dev": true,
  2059. "license": "MIT",
  2060. "dependencies": {
  2061. "lightningcss": "^1.32.0",
  2062. "picomatch": "^4.0.4",
  2063. "postcss": "^8.5.8",
  2064. "rolldown": "1.0.0-rc.13",
  2065. "tinyglobby": "^0.2.15"
  2066. },
  2067. "bin": {
  2068. "vite": "bin/vite.js"
  2069. },
  2070. "engines": {
  2071. "node": "^20.19.0 || >=22.12.0"
  2072. },
  2073. "funding": {
  2074. "url": "https://github.com/vitejs/vite?sponsor=1"
  2075. },
  2076. "optionalDependencies": {
  2077. "fsevents": "~2.3.3"
  2078. },
  2079. "peerDependencies": {
  2080. "@types/node": "^20.19.0 || >=22.12.0",
  2081. "@vitejs/devtools": "^0.1.0",
  2082. "esbuild": "^0.27.0 || ^0.28.0",
  2083. "jiti": ">=1.21.0",
  2084. "less": "^4.0.0",
  2085. "sass": "^1.70.0",
  2086. "sass-embedded": "^1.70.0",
  2087. "stylus": ">=0.54.8",
  2088. "sugarss": "^5.0.0",
  2089. "terser": "^5.16.0",
  2090. "tsx": "^4.8.1",
  2091. "yaml": "^2.4.2"
  2092. },
  2093. "peerDependenciesMeta": {
  2094. "@types/node": {
  2095. "optional": true
  2096. },
  2097. "@vitejs/devtools": {
  2098. "optional": true
  2099. },
  2100. "esbuild": {
  2101. "optional": true
  2102. },
  2103. "jiti": {
  2104. "optional": true
  2105. },
  2106. "less": {
  2107. "optional": true
  2108. },
  2109. "sass": {
  2110. "optional": true
  2111. },
  2112. "sass-embedded": {
  2113. "optional": true
  2114. },
  2115. "stylus": {
  2116. "optional": true
  2117. },
  2118. "sugarss": {
  2119. "optional": true
  2120. },
  2121. "terser": {
  2122. "optional": true
  2123. },
  2124. "tsx": {
  2125. "optional": true
  2126. },
  2127. "yaml": {
  2128. "optional": true
  2129. }
  2130. }
  2131. },
  2132. "node_modules/vue": {
  2133. "version": "3.5.32",
  2134. "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.32.tgz",
  2135. "integrity": "sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==",
  2136. "license": "MIT",
  2137. "dependencies": {
  2138. "@vue/compiler-dom": "3.5.32",
  2139. "@vue/compiler-sfc": "3.5.32",
  2140. "@vue/runtime-dom": "3.5.32",
  2141. "@vue/server-renderer": "3.5.32",
  2142. "@vue/shared": "3.5.32"
  2143. },
  2144. "peerDependencies": {
  2145. "typescript": "*"
  2146. },
  2147. "peerDependenciesMeta": {
  2148. "typescript": {
  2149. "optional": true
  2150. }
  2151. }
  2152. },
  2153. "node_modules/vue-component-type-helpers": {
  2154. "version": "3.2.6",
  2155. "resolved": "https://registry.npmjs.org/vue-component-type-helpers/-/vue-component-type-helpers-3.2.6.tgz",
  2156. "integrity": "sha512-O02tnvIfOQVmnvoWwuSydwRoHjZVt8UEBR+2p4rT35p8GAy5VTlWP8o5qXfJR/GWCN0nVZoYWsVUvx2jwgdBmQ==",
  2157. "license": "MIT"
  2158. },
  2159. "node_modules/vue-router": {
  2160. "version": "4.6.4",
  2161. "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.6.4.tgz",
  2162. "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
  2163. "license": "MIT",
  2164. "dependencies": {
  2165. "@vue/devtools-api": "^6.6.4"
  2166. },
  2167. "funding": {
  2168. "url": "https://github.com/sponsors/posva"
  2169. },
  2170. "peerDependencies": {
  2171. "vue": "^3.5.0"
  2172. }
  2173. },
  2174. "node_modules/vue-router/node_modules/@vue/devtools-api": {
  2175. "version": "6.6.4",
  2176. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  2177. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  2178. "license": "MIT"
  2179. },
  2180. "node_modules/wmf": {
  2181. "version": "1.0.2",
  2182. "resolved": "https://registry.npmjs.org/wmf/-/wmf-1.0.2.tgz",
  2183. "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==",
  2184. "license": "Apache-2.0",
  2185. "engines": {
  2186. "node": ">=0.8"
  2187. }
  2188. },
  2189. "node_modules/word": {
  2190. "version": "0.3.0",
  2191. "resolved": "https://registry.npmjs.org/word/-/word-0.3.0.tgz",
  2192. "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==",
  2193. "license": "Apache-2.0",
  2194. "engines": {
  2195. "node": ">=0.8"
  2196. }
  2197. },
  2198. "node_modules/xlsx": {
  2199. "version": "0.18.5",
  2200. "resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.18.5.tgz",
  2201. "integrity": "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==",
  2202. "license": "Apache-2.0",
  2203. "dependencies": {
  2204. "adler-32": "~1.3.0",
  2205. "cfb": "~1.2.1",
  2206. "codepage": "~1.15.0",
  2207. "crc-32": "~1.2.1",
  2208. "ssf": "~0.11.2",
  2209. "wmf": "~1.0.1",
  2210. "word": "~0.3.0"
  2211. },
  2212. "bin": {
  2213. "xlsx": "bin/xlsx.njs"
  2214. },
  2215. "engines": {
  2216. "node": ">=0.8"
  2217. }
  2218. }
  2219. }
  2220. }