package-lock.json 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. {
  2. "name": "changsanjiao_new",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "changsanjiao_new",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "axios": "^1.16.1",
  12. "echarts": "^6.1.0",
  13. "element-plus": "^2.14.1",
  14. "vue": "^3.5.34",
  15. "vue-router": "^4.6.4"
  16. },
  17. "devDependencies": {
  18. "@vitejs/plugin-vue": "^6.0.6",
  19. "vite": "^8.0.12"
  20. }
  21. },
  22. "node_modules/@babel/helper-string-parser": {
  23. "version": "7.29.7",
  24. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
  25. "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
  26. "license": "MIT",
  27. "engines": {
  28. "node": ">=6.9.0"
  29. }
  30. },
  31. "node_modules/@babel/helper-validator-identifier": {
  32. "version": "7.29.7",
  33. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
  34. "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
  35. "license": "MIT",
  36. "engines": {
  37. "node": ">=6.9.0"
  38. }
  39. },
  40. "node_modules/@babel/parser": {
  41. "version": "7.29.7",
  42. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.7.tgz",
  43. "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
  44. "license": "MIT",
  45. "dependencies": {
  46. "@babel/types": "^7.29.7"
  47. },
  48. "bin": {
  49. "parser": "bin/babel-parser.js"
  50. },
  51. "engines": {
  52. "node": ">=6.0.0"
  53. }
  54. },
  55. "node_modules/@babel/types": {
  56. "version": "7.29.7",
  57. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.7.tgz",
  58. "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
  59. "license": "MIT",
  60. "dependencies": {
  61. "@babel/helper-string-parser": "^7.29.7",
  62. "@babel/helper-validator-identifier": "^7.29.7"
  63. },
  64. "engines": {
  65. "node": ">=6.9.0"
  66. }
  67. },
  68. "node_modules/@ctrl/tinycolor": {
  69. "version": "4.2.0",
  70. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz",
  71. "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==",
  72. "license": "MIT",
  73. "engines": {
  74. "node": ">=14"
  75. }
  76. },
  77. "node_modules/@element-plus/icons-vue": {
  78. "version": "2.3.2",
  79. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  80. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  81. "license": "MIT",
  82. "peerDependencies": {
  83. "vue": "^3.2.0"
  84. }
  85. },
  86. "node_modules/@emnapi/core": {
  87. "version": "1.10.0",
  88. "resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.10.0.tgz",
  89. "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
  90. "dev": true,
  91. "license": "MIT",
  92. "optional": true,
  93. "dependencies": {
  94. "@emnapi/wasi-threads": "1.2.1",
  95. "tslib": "^2.4.0"
  96. }
  97. },
  98. "node_modules/@emnapi/core/node_modules/tslib": {
  99. "version": "2.8.1",
  100. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  101. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  102. "dev": true,
  103. "license": "0BSD",
  104. "optional": true
  105. },
  106. "node_modules/@emnapi/runtime": {
  107. "version": "1.10.0",
  108. "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.10.0.tgz",
  109. "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
  110. "dev": true,
  111. "license": "MIT",
  112. "optional": true,
  113. "dependencies": {
  114. "tslib": "^2.4.0"
  115. }
  116. },
  117. "node_modules/@emnapi/runtime/node_modules/tslib": {
  118. "version": "2.8.1",
  119. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  120. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  121. "dev": true,
  122. "license": "0BSD",
  123. "optional": true
  124. },
  125. "node_modules/@emnapi/wasi-threads": {
  126. "version": "1.2.1",
  127. "resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
  128. "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
  129. "dev": true,
  130. "license": "MIT",
  131. "optional": true,
  132. "dependencies": {
  133. "tslib": "^2.4.0"
  134. }
  135. },
  136. "node_modules/@emnapi/wasi-threads/node_modules/tslib": {
  137. "version": "2.8.1",
  138. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  139. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  140. "dev": true,
  141. "license": "0BSD",
  142. "optional": true
  143. },
  144. "node_modules/@floating-ui/core": {
  145. "version": "1.7.5",
  146. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.5.tgz",
  147. "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
  148. "license": "MIT",
  149. "dependencies": {
  150. "@floating-ui/utils": "^0.2.11"
  151. }
  152. },
  153. "node_modules/@floating-ui/dom": {
  154. "version": "1.7.6",
  155. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.6.tgz",
  156. "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
  157. "license": "MIT",
  158. "dependencies": {
  159. "@floating-ui/core": "^1.7.5",
  160. "@floating-ui/utils": "^0.2.11"
  161. }
  162. },
  163. "node_modules/@floating-ui/utils": {
  164. "version": "0.2.11",
  165. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.11.tgz",
  166. "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
  167. "license": "MIT"
  168. },
  169. "node_modules/@jridgewell/sourcemap-codec": {
  170. "version": "1.5.5",
  171. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  172. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  173. "license": "MIT"
  174. },
  175. "node_modules/@napi-rs/wasm-runtime": {
  176. "version": "1.1.4",
  177. "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
  178. "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
  179. "dev": true,
  180. "license": "MIT",
  181. "optional": true,
  182. "dependencies": {
  183. "@tybys/wasm-util": "^0.10.1"
  184. },
  185. "funding": {
  186. "type": "github",
  187. "url": "https://github.com/sponsors/Brooooooklyn"
  188. },
  189. "peerDependencies": {
  190. "@emnapi/core": "^1.7.1",
  191. "@emnapi/runtime": "^1.7.1"
  192. }
  193. },
  194. "node_modules/@oxc-project/types": {
  195. "version": "0.133.0",
  196. "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.133.0.tgz",
  197. "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
  198. "dev": true,
  199. "license": "MIT",
  200. "funding": {
  201. "url": "https://github.com/sponsors/Boshen"
  202. }
  203. },
  204. "node_modules/@parcel/watcher": {
  205. "version": "2.5.6",
  206. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.6.tgz",
  207. "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
  208. "dev": true,
  209. "hasInstallScript": true,
  210. "license": "MIT",
  211. "optional": true,
  212. "peer": true,
  213. "dependencies": {
  214. "detect-libc": "^2.0.3",
  215. "is-glob": "^4.0.3",
  216. "node-addon-api": "^7.0.0",
  217. "picomatch": "^4.0.3"
  218. },
  219. "engines": {
  220. "node": ">= 10.0.0"
  221. },
  222. "funding": {
  223. "type": "opencollective",
  224. "url": "https://opencollective.com/parcel"
  225. },
  226. "optionalDependencies": {
  227. "@parcel/watcher-android-arm64": "2.5.6",
  228. "@parcel/watcher-darwin-arm64": "2.5.6",
  229. "@parcel/watcher-darwin-x64": "2.5.6",
  230. "@parcel/watcher-freebsd-x64": "2.5.6",
  231. "@parcel/watcher-linux-arm-glibc": "2.5.6",
  232. "@parcel/watcher-linux-arm-musl": "2.5.6",
  233. "@parcel/watcher-linux-arm64-glibc": "2.5.6",
  234. "@parcel/watcher-linux-arm64-musl": "2.5.6",
  235. "@parcel/watcher-linux-x64-glibc": "2.5.6",
  236. "@parcel/watcher-linux-x64-musl": "2.5.6",
  237. "@parcel/watcher-win32-arm64": "2.5.6",
  238. "@parcel/watcher-win32-ia32": "2.5.6",
  239. "@parcel/watcher-win32-x64": "2.5.6"
  240. }
  241. },
  242. "node_modules/@parcel/watcher-android-arm64": {
  243. "version": "2.5.6",
  244. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
  245. "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
  246. "cpu": [
  247. "arm64"
  248. ],
  249. "dev": true,
  250. "license": "MIT",
  251. "optional": true,
  252. "os": [
  253. "android"
  254. ],
  255. "peer": true,
  256. "engines": {
  257. "node": ">= 10.0.0"
  258. },
  259. "funding": {
  260. "type": "opencollective",
  261. "url": "https://opencollective.com/parcel"
  262. }
  263. },
  264. "node_modules/@parcel/watcher-darwin-arm64": {
  265. "version": "2.5.6",
  266. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
  267. "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
  268. "cpu": [
  269. "arm64"
  270. ],
  271. "dev": true,
  272. "license": "MIT",
  273. "optional": true,
  274. "os": [
  275. "darwin"
  276. ],
  277. "peer": true,
  278. "engines": {
  279. "node": ">= 10.0.0"
  280. },
  281. "funding": {
  282. "type": "opencollective",
  283. "url": "https://opencollective.com/parcel"
  284. }
  285. },
  286. "node_modules/@parcel/watcher-darwin-x64": {
  287. "version": "2.5.6",
  288. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
  289. "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
  290. "cpu": [
  291. "x64"
  292. ],
  293. "dev": true,
  294. "license": "MIT",
  295. "optional": true,
  296. "os": [
  297. "darwin"
  298. ],
  299. "peer": true,
  300. "engines": {
  301. "node": ">= 10.0.0"
  302. },
  303. "funding": {
  304. "type": "opencollective",
  305. "url": "https://opencollective.com/parcel"
  306. }
  307. },
  308. "node_modules/@parcel/watcher-freebsd-x64": {
  309. "version": "2.5.6",
  310. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
  311. "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
  312. "cpu": [
  313. "x64"
  314. ],
  315. "dev": true,
  316. "license": "MIT",
  317. "optional": true,
  318. "os": [
  319. "freebsd"
  320. ],
  321. "peer": true,
  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-glibc": {
  331. "version": "2.5.6",
  332. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
  333. "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
  334. "cpu": [
  335. "arm"
  336. ],
  337. "dev": true,
  338. "license": "MIT",
  339. "optional": true,
  340. "os": [
  341. "linux"
  342. ],
  343. "peer": true,
  344. "engines": {
  345. "node": ">= 10.0.0"
  346. },
  347. "funding": {
  348. "type": "opencollective",
  349. "url": "https://opencollective.com/parcel"
  350. }
  351. },
  352. "node_modules/@parcel/watcher-linux-arm-musl": {
  353. "version": "2.5.6",
  354. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
  355. "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
  356. "cpu": [
  357. "arm"
  358. ],
  359. "dev": true,
  360. "license": "MIT",
  361. "optional": true,
  362. "os": [
  363. "linux"
  364. ],
  365. "peer": true,
  366. "engines": {
  367. "node": ">= 10.0.0"
  368. },
  369. "funding": {
  370. "type": "opencollective",
  371. "url": "https://opencollective.com/parcel"
  372. }
  373. },
  374. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  375. "version": "2.5.6",
  376. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
  377. "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
  378. "cpu": [
  379. "arm64"
  380. ],
  381. "dev": true,
  382. "license": "MIT",
  383. "optional": true,
  384. "os": [
  385. "linux"
  386. ],
  387. "peer": true,
  388. "engines": {
  389. "node": ">= 10.0.0"
  390. },
  391. "funding": {
  392. "type": "opencollective",
  393. "url": "https://opencollective.com/parcel"
  394. }
  395. },
  396. "node_modules/@parcel/watcher-linux-arm64-musl": {
  397. "version": "2.5.6",
  398. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
  399. "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
  400. "cpu": [
  401. "arm64"
  402. ],
  403. "dev": true,
  404. "license": "MIT",
  405. "optional": true,
  406. "os": [
  407. "linux"
  408. ],
  409. "peer": true,
  410. "engines": {
  411. "node": ">= 10.0.0"
  412. },
  413. "funding": {
  414. "type": "opencollective",
  415. "url": "https://opencollective.com/parcel"
  416. }
  417. },
  418. "node_modules/@parcel/watcher-linux-x64-glibc": {
  419. "version": "2.5.6",
  420. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
  421. "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
  422. "cpu": [
  423. "x64"
  424. ],
  425. "dev": true,
  426. "license": "MIT",
  427. "optional": true,
  428. "os": [
  429. "linux"
  430. ],
  431. "peer": true,
  432. "engines": {
  433. "node": ">= 10.0.0"
  434. },
  435. "funding": {
  436. "type": "opencollective",
  437. "url": "https://opencollective.com/parcel"
  438. }
  439. },
  440. "node_modules/@parcel/watcher-linux-x64-musl": {
  441. "version": "2.5.6",
  442. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
  443. "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
  444. "cpu": [
  445. "x64"
  446. ],
  447. "dev": true,
  448. "license": "MIT",
  449. "optional": true,
  450. "os": [
  451. "linux"
  452. ],
  453. "peer": true,
  454. "engines": {
  455. "node": ">= 10.0.0"
  456. },
  457. "funding": {
  458. "type": "opencollective",
  459. "url": "https://opencollective.com/parcel"
  460. }
  461. },
  462. "node_modules/@parcel/watcher-win32-arm64": {
  463. "version": "2.5.6",
  464. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
  465. "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
  466. "cpu": [
  467. "arm64"
  468. ],
  469. "dev": true,
  470. "license": "MIT",
  471. "optional": true,
  472. "os": [
  473. "win32"
  474. ],
  475. "peer": true,
  476. "engines": {
  477. "node": ">= 10.0.0"
  478. },
  479. "funding": {
  480. "type": "opencollective",
  481. "url": "https://opencollective.com/parcel"
  482. }
  483. },
  484. "node_modules/@parcel/watcher-win32-ia32": {
  485. "version": "2.5.6",
  486. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
  487. "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
  488. "cpu": [
  489. "ia32"
  490. ],
  491. "dev": true,
  492. "license": "MIT",
  493. "optional": true,
  494. "os": [
  495. "win32"
  496. ],
  497. "peer": true,
  498. "engines": {
  499. "node": ">= 10.0.0"
  500. },
  501. "funding": {
  502. "type": "opencollective",
  503. "url": "https://opencollective.com/parcel"
  504. }
  505. },
  506. "node_modules/@parcel/watcher-win32-x64": {
  507. "version": "2.5.6",
  508. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
  509. "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
  510. "cpu": [
  511. "x64"
  512. ],
  513. "dev": true,
  514. "license": "MIT",
  515. "optional": true,
  516. "os": [
  517. "win32"
  518. ],
  519. "peer": true,
  520. "engines": {
  521. "node": ">= 10.0.0"
  522. },
  523. "funding": {
  524. "type": "opencollective",
  525. "url": "https://opencollective.com/parcel"
  526. }
  527. },
  528. "node_modules/@popperjs/core": {
  529. "name": "@sxzz/popperjs-es",
  530. "version": "2.11.8",
  531. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  532. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  533. "license": "MIT",
  534. "funding": {
  535. "type": "opencollective",
  536. "url": "https://opencollective.com/popperjs"
  537. }
  538. },
  539. "node_modules/@rolldown/binding-android-arm64": {
  540. "version": "1.0.3",
  541. "resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
  542. "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
  543. "cpu": [
  544. "arm64"
  545. ],
  546. "dev": true,
  547. "license": "MIT",
  548. "optional": true,
  549. "os": [
  550. "android"
  551. ],
  552. "engines": {
  553. "node": "^20.19.0 || >=22.12.0"
  554. }
  555. },
  556. "node_modules/@rolldown/binding-darwin-arm64": {
  557. "version": "1.0.3",
  558. "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
  559. "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
  560. "cpu": [
  561. "arm64"
  562. ],
  563. "dev": true,
  564. "license": "MIT",
  565. "optional": true,
  566. "os": [
  567. "darwin"
  568. ],
  569. "engines": {
  570. "node": "^20.19.0 || >=22.12.0"
  571. }
  572. },
  573. "node_modules/@rolldown/binding-darwin-x64": {
  574. "version": "1.0.3",
  575. "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
  576. "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
  577. "cpu": [
  578. "x64"
  579. ],
  580. "dev": true,
  581. "license": "MIT",
  582. "optional": true,
  583. "os": [
  584. "darwin"
  585. ],
  586. "engines": {
  587. "node": "^20.19.0 || >=22.12.0"
  588. }
  589. },
  590. "node_modules/@rolldown/binding-freebsd-x64": {
  591. "version": "1.0.3",
  592. "resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
  593. "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
  594. "cpu": [
  595. "x64"
  596. ],
  597. "dev": true,
  598. "license": "MIT",
  599. "optional": true,
  600. "os": [
  601. "freebsd"
  602. ],
  603. "engines": {
  604. "node": "^20.19.0 || >=22.12.0"
  605. }
  606. },
  607. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  608. "version": "1.0.3",
  609. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
  610. "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
  611. "cpu": [
  612. "arm"
  613. ],
  614. "dev": true,
  615. "license": "MIT",
  616. "optional": true,
  617. "os": [
  618. "linux"
  619. ],
  620. "engines": {
  621. "node": "^20.19.0 || >=22.12.0"
  622. }
  623. },
  624. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  625. "version": "1.0.3",
  626. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
  627. "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
  628. "cpu": [
  629. "arm64"
  630. ],
  631. "dev": true,
  632. "license": "MIT",
  633. "optional": true,
  634. "os": [
  635. "linux"
  636. ],
  637. "engines": {
  638. "node": "^20.19.0 || >=22.12.0"
  639. }
  640. },
  641. "node_modules/@rolldown/binding-linux-arm64-musl": {
  642. "version": "1.0.3",
  643. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
  644. "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
  645. "cpu": [
  646. "arm64"
  647. ],
  648. "dev": true,
  649. "license": "MIT",
  650. "optional": true,
  651. "os": [
  652. "linux"
  653. ],
  654. "engines": {
  655. "node": "^20.19.0 || >=22.12.0"
  656. }
  657. },
  658. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  659. "version": "1.0.3",
  660. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
  661. "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
  662. "cpu": [
  663. "ppc64"
  664. ],
  665. "dev": true,
  666. "license": "MIT",
  667. "optional": true,
  668. "os": [
  669. "linux"
  670. ],
  671. "engines": {
  672. "node": "^20.19.0 || >=22.12.0"
  673. }
  674. },
  675. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  676. "version": "1.0.3",
  677. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
  678. "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
  679. "cpu": [
  680. "s390x"
  681. ],
  682. "dev": true,
  683. "license": "MIT",
  684. "optional": true,
  685. "os": [
  686. "linux"
  687. ],
  688. "engines": {
  689. "node": "^20.19.0 || >=22.12.0"
  690. }
  691. },
  692. "node_modules/@rolldown/binding-linux-x64-gnu": {
  693. "version": "1.0.3",
  694. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
  695. "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
  696. "cpu": [
  697. "x64"
  698. ],
  699. "dev": true,
  700. "license": "MIT",
  701. "optional": true,
  702. "os": [
  703. "linux"
  704. ],
  705. "engines": {
  706. "node": "^20.19.0 || >=22.12.0"
  707. }
  708. },
  709. "node_modules/@rolldown/binding-linux-x64-musl": {
  710. "version": "1.0.3",
  711. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
  712. "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
  713. "cpu": [
  714. "x64"
  715. ],
  716. "dev": true,
  717. "license": "MIT",
  718. "optional": true,
  719. "os": [
  720. "linux"
  721. ],
  722. "engines": {
  723. "node": "^20.19.0 || >=22.12.0"
  724. }
  725. },
  726. "node_modules/@rolldown/binding-openharmony-arm64": {
  727. "version": "1.0.3",
  728. "resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
  729. "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
  730. "cpu": [
  731. "arm64"
  732. ],
  733. "dev": true,
  734. "license": "MIT",
  735. "optional": true,
  736. "os": [
  737. "openharmony"
  738. ],
  739. "engines": {
  740. "node": "^20.19.0 || >=22.12.0"
  741. }
  742. },
  743. "node_modules/@rolldown/binding-wasm32-wasi": {
  744. "version": "1.0.3",
  745. "resolved": "https://registry.npmmirror.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
  746. "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
  747. "cpu": [
  748. "wasm32"
  749. ],
  750. "dev": true,
  751. "license": "MIT",
  752. "optional": true,
  753. "dependencies": {
  754. "@emnapi/core": "1.10.0",
  755. "@emnapi/runtime": "1.10.0",
  756. "@napi-rs/wasm-runtime": "^1.1.4"
  757. },
  758. "engines": {
  759. "node": "^20.19.0 || >=22.12.0"
  760. }
  761. },
  762. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  763. "version": "1.0.3",
  764. "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
  765. "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
  766. "cpu": [
  767. "arm64"
  768. ],
  769. "dev": true,
  770. "license": "MIT",
  771. "optional": true,
  772. "os": [
  773. "win32"
  774. ],
  775. "engines": {
  776. "node": "^20.19.0 || >=22.12.0"
  777. }
  778. },
  779. "node_modules/@rolldown/binding-win32-x64-msvc": {
  780. "version": "1.0.3",
  781. "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
  782. "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
  783. "cpu": [
  784. "x64"
  785. ],
  786. "dev": true,
  787. "license": "MIT",
  788. "optional": true,
  789. "os": [
  790. "win32"
  791. ],
  792. "engines": {
  793. "node": "^20.19.0 || >=22.12.0"
  794. }
  795. },
  796. "node_modules/@rolldown/pluginutils": {
  797. "version": "1.0.1",
  798. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
  799. "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
  800. "dev": true,
  801. "license": "MIT"
  802. },
  803. "node_modules/@tybys/wasm-util": {
  804. "version": "0.10.2",
  805. "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
  806. "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
  807. "dev": true,
  808. "license": "MIT",
  809. "optional": true,
  810. "dependencies": {
  811. "tslib": "^2.4.0"
  812. }
  813. },
  814. "node_modules/@tybys/wasm-util/node_modules/tslib": {
  815. "version": "2.8.1",
  816. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  817. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  818. "dev": true,
  819. "license": "0BSD",
  820. "optional": true
  821. },
  822. "node_modules/@types/lodash": {
  823. "version": "4.17.24",
  824. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
  825. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  826. "license": "MIT"
  827. },
  828. "node_modules/@types/lodash-es": {
  829. "version": "4.17.12",
  830. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  831. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  832. "license": "MIT",
  833. "dependencies": {
  834. "@types/lodash": "*"
  835. }
  836. },
  837. "node_modules/@types/web-bluetooth": {
  838. "version": "0.0.21",
  839. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz",
  840. "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==",
  841. "license": "MIT"
  842. },
  843. "node_modules/@vitejs/plugin-vue": {
  844. "version": "6.0.7",
  845. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.7.tgz",
  846. "integrity": "sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==",
  847. "dev": true,
  848. "license": "MIT",
  849. "dependencies": {
  850. "@rolldown/pluginutils": "^1.0.1"
  851. },
  852. "engines": {
  853. "node": "^20.19.0 || >=22.12.0"
  854. },
  855. "peerDependencies": {
  856. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  857. "vue": "^3.2.25"
  858. }
  859. },
  860. "node_modules/@vue/compiler-core": {
  861. "version": "3.5.35",
  862. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.35.tgz",
  863. "integrity": "sha512-BUmHaR1J+O+CKZ9uJucdVTEr1LHsdyvv7vG3eNRhK3CczEHeMd/LtsHAuD7PbrxvI2envCY2v7HI1vC1aBRzKw==",
  864. "license": "MIT",
  865. "dependencies": {
  866. "@babel/parser": "^7.29.3",
  867. "@vue/shared": "3.5.35",
  868. "entities": "^7.0.1",
  869. "estree-walker": "^2.0.2",
  870. "source-map-js": "^1.2.1"
  871. }
  872. },
  873. "node_modules/@vue/compiler-dom": {
  874. "version": "3.5.35",
  875. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.35.tgz",
  876. "integrity": "sha512-k+bprkXxuqhVajgTx5mUHuir7TwQzUKOWR40ng1ncAqQRPnrLngGGgqVEEhOnTMlc8btHYVKmrP8s5Qyg0hvYA==",
  877. "license": "MIT",
  878. "dependencies": {
  879. "@vue/compiler-core": "3.5.35",
  880. "@vue/shared": "3.5.35"
  881. }
  882. },
  883. "node_modules/@vue/compiler-sfc": {
  884. "version": "3.5.35",
  885. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.35.tgz",
  886. "integrity": "sha512-G5VPMcXTSywXBgtFOZOnHKBxKSrwXUcvY1iaF5/hRcy7t0J6CH/d8ha9F4nzi00Fax1eLV0QHM7v4mQu68jydw==",
  887. "license": "MIT",
  888. "dependencies": {
  889. "@babel/parser": "^7.29.3",
  890. "@vue/compiler-core": "3.5.35",
  891. "@vue/compiler-dom": "3.5.35",
  892. "@vue/compiler-ssr": "3.5.35",
  893. "@vue/shared": "3.5.35",
  894. "estree-walker": "^2.0.2",
  895. "magic-string": "^0.30.21",
  896. "postcss": "^8.5.15",
  897. "source-map-js": "^1.2.1"
  898. }
  899. },
  900. "node_modules/@vue/compiler-ssr": {
  901. "version": "3.5.35",
  902. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.35.tgz",
  903. "integrity": "sha512-rGhAeXgdM7/ffTJGXT69rCCdTmjDewnFuUZfBQQHTdcEBeWdT5HCGY60y2ytLJr9/Dsu7IntUi5z/w0h6Rjnzw==",
  904. "license": "MIT",
  905. "dependencies": {
  906. "@vue/compiler-dom": "3.5.35",
  907. "@vue/shared": "3.5.35"
  908. }
  909. },
  910. "node_modules/@vue/devtools-api": {
  911. "version": "6.6.4",
  912. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  913. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  914. "license": "MIT"
  915. },
  916. "node_modules/@vue/reactivity": {
  917. "version": "3.5.35",
  918. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.35.tgz",
  919. "integrity": "sha512-tVc+SsHConvh/Lz64qq1pP3rYArBmK42xonovEcxY74SQtvctZodG/zhq54P5dr38cVuw25d27cPNRdlMidpGQ==",
  920. "license": "MIT",
  921. "dependencies": {
  922. "@vue/shared": "3.5.35"
  923. }
  924. },
  925. "node_modules/@vue/runtime-core": {
  926. "version": "3.5.35",
  927. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.35.tgz",
  928. "integrity": "sha512-A/xFNX9loIcWDygeQuNCfKuh0CoYBzxhqEMNah5TSFg9Z53DrFYEN2qi5CU9necjM1OWYegYREUTHmXTmhfXtg==",
  929. "license": "MIT",
  930. "dependencies": {
  931. "@vue/reactivity": "3.5.35",
  932. "@vue/shared": "3.5.35"
  933. }
  934. },
  935. "node_modules/@vue/runtime-dom": {
  936. "version": "3.5.35",
  937. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.35.tgz",
  938. "integrity": "sha512-odrJ1C391dbGnyDRh8U+rnP7J2amIEzfmRk5vXy7xi3aZhEXofTvpi0T4HJb6jlNqQZTNPR5MPHSB3RHNkIORA==",
  939. "license": "MIT",
  940. "dependencies": {
  941. "@vue/reactivity": "3.5.35",
  942. "@vue/runtime-core": "3.5.35",
  943. "@vue/shared": "3.5.35",
  944. "csstype": "^3.2.3"
  945. }
  946. },
  947. "node_modules/@vue/server-renderer": {
  948. "version": "3.5.35",
  949. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.35.tgz",
  950. "integrity": "sha512-NkebSOYdB97wi8OQcO3HqzZSlymJi/aWsN/7h74OSVhRTm6qGs3Jp3e0rCXynmWwSlKeRrnlIug+ilYoHBmQDA==",
  951. "license": "MIT",
  952. "dependencies": {
  953. "@vue/compiler-ssr": "3.5.35",
  954. "@vue/shared": "3.5.35"
  955. },
  956. "peerDependencies": {
  957. "vue": "3.5.35"
  958. }
  959. },
  960. "node_modules/@vue/shared": {
  961. "version": "3.5.35",
  962. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.35.tgz",
  963. "integrity": "sha512-zSbjL7gRXwks2ZQLRGCajBtBXEOXW9Ddhn/HvSdrGkE2dqGnumzW8XtusRrxrE9LvqtiqDXQ+A60Hp6mvdYxfA==",
  964. "license": "MIT"
  965. },
  966. "node_modules/@vueuse/core": {
  967. "version": "14.3.0",
  968. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-14.3.0.tgz",
  969. "integrity": "sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==",
  970. "license": "MIT",
  971. "dependencies": {
  972. "@types/web-bluetooth": "^0.0.21",
  973. "@vueuse/metadata": "14.3.0",
  974. "@vueuse/shared": "14.3.0"
  975. },
  976. "funding": {
  977. "url": "https://github.com/sponsors/antfu"
  978. },
  979. "peerDependencies": {
  980. "vue": "^3.5.0"
  981. }
  982. },
  983. "node_modules/@vueuse/metadata": {
  984. "version": "14.3.0",
  985. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-14.3.0.tgz",
  986. "integrity": "sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==",
  987. "license": "MIT",
  988. "funding": {
  989. "url": "https://github.com/sponsors/antfu"
  990. }
  991. },
  992. "node_modules/@vueuse/shared": {
  993. "version": "14.3.0",
  994. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-14.3.0.tgz",
  995. "integrity": "sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==",
  996. "license": "MIT",
  997. "funding": {
  998. "url": "https://github.com/sponsors/antfu"
  999. },
  1000. "peerDependencies": {
  1001. "vue": "^3.5.0"
  1002. }
  1003. },
  1004. "node_modules/agent-base": {
  1005. "version": "6.0.2",
  1006. "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz",
  1007. "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
  1008. "license": "MIT",
  1009. "dependencies": {
  1010. "debug": "4"
  1011. },
  1012. "engines": {
  1013. "node": ">= 6.0.0"
  1014. }
  1015. },
  1016. "node_modules/async-validator": {
  1017. "version": "4.2.5",
  1018. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1019. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1020. "license": "MIT"
  1021. },
  1022. "node_modules/asynckit": {
  1023. "version": "0.4.0",
  1024. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1025. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1026. "license": "MIT"
  1027. },
  1028. "node_modules/axios": {
  1029. "version": "1.16.1",
  1030. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.16.1.tgz",
  1031. "integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
  1032. "license": "MIT",
  1033. "dependencies": {
  1034. "follow-redirects": "^1.16.0",
  1035. "form-data": "^4.0.5",
  1036. "https-proxy-agent": "^5.0.1",
  1037. "proxy-from-env": "^2.1.0"
  1038. }
  1039. },
  1040. "node_modules/call-bind-apply-helpers": {
  1041. "version": "1.0.2",
  1042. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1043. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1044. "license": "MIT",
  1045. "dependencies": {
  1046. "es-errors": "^1.3.0",
  1047. "function-bind": "^1.1.2"
  1048. },
  1049. "engines": {
  1050. "node": ">= 0.4"
  1051. }
  1052. },
  1053. "node_modules/chokidar": {
  1054. "version": "5.0.0",
  1055. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-5.0.0.tgz",
  1056. "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
  1057. "dev": true,
  1058. "license": "MIT",
  1059. "optional": true,
  1060. "peer": true,
  1061. "dependencies": {
  1062. "readdirp": "^5.0.0"
  1063. },
  1064. "engines": {
  1065. "node": ">= 20.19.0"
  1066. },
  1067. "funding": {
  1068. "url": "https://paulmillr.com/funding/"
  1069. }
  1070. },
  1071. "node_modules/combined-stream": {
  1072. "version": "1.0.8",
  1073. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  1074. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1075. "license": "MIT",
  1076. "dependencies": {
  1077. "delayed-stream": "~1.0.0"
  1078. },
  1079. "engines": {
  1080. "node": ">= 0.8"
  1081. }
  1082. },
  1083. "node_modules/csstype": {
  1084. "version": "3.2.3",
  1085. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
  1086. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1087. "license": "MIT"
  1088. },
  1089. "node_modules/dayjs": {
  1090. "version": "1.11.21",
  1091. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.21.tgz",
  1092. "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
  1093. "license": "MIT"
  1094. },
  1095. "node_modules/debug": {
  1096. "version": "4.4.3",
  1097. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
  1098. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1099. "license": "MIT",
  1100. "dependencies": {
  1101. "ms": "^2.1.3"
  1102. },
  1103. "engines": {
  1104. "node": ">=6.0"
  1105. },
  1106. "peerDependenciesMeta": {
  1107. "supports-color": {
  1108. "optional": true
  1109. }
  1110. }
  1111. },
  1112. "node_modules/delayed-stream": {
  1113. "version": "1.0.0",
  1114. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1115. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1116. "license": "MIT",
  1117. "engines": {
  1118. "node": ">=0.4.0"
  1119. }
  1120. },
  1121. "node_modules/detect-libc": {
  1122. "version": "2.1.2",
  1123. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  1124. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1125. "dev": true,
  1126. "license": "Apache-2.0",
  1127. "engines": {
  1128. "node": ">=8"
  1129. }
  1130. },
  1131. "node_modules/dunder-proto": {
  1132. "version": "1.0.1",
  1133. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1134. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1135. "license": "MIT",
  1136. "dependencies": {
  1137. "call-bind-apply-helpers": "^1.0.1",
  1138. "es-errors": "^1.3.0",
  1139. "gopd": "^1.2.0"
  1140. },
  1141. "engines": {
  1142. "node": ">= 0.4"
  1143. }
  1144. },
  1145. "node_modules/echarts": {
  1146. "version": "6.1.0",
  1147. "resolved": "https://registry.npmmirror.com/echarts/-/echarts-6.1.0.tgz",
  1148. "integrity": "sha512-q0yaFPggC9FUdsWH4blavRWFmxdrIodbkoKNAjJudAI6CA9gNPxHtV2RcZNEepZVlk4yvBYkOkbk6HIVpIyHZA==",
  1149. "license": "Apache-2.0",
  1150. "dependencies": {
  1151. "tslib": "2.3.0",
  1152. "zrender": "6.1.0"
  1153. }
  1154. },
  1155. "node_modules/element-plus": {
  1156. "version": "2.14.1",
  1157. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.14.1.tgz",
  1158. "integrity": "sha512-UFnm1+BckNi+azkKJ7L32q1uXs9ekr99Z9pWTQPeDR05jqEWUwQq51ro4kZMVrANbjknX3Z7ukCZwTi2T6Tr9A==",
  1159. "license": "MIT",
  1160. "dependencies": {
  1161. "@ctrl/tinycolor": "^4.2.0",
  1162. "@element-plus/icons-vue": "^2.3.2",
  1163. "@floating-ui/dom": "^1.7.6",
  1164. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.8",
  1165. "@types/lodash": "^4.17.24",
  1166. "@types/lodash-es": "^4.17.12",
  1167. "@vueuse/core": "14.3.0",
  1168. "async-validator": "^4.2.5",
  1169. "dayjs": "^1.11.20",
  1170. "lodash": "^4.18.1",
  1171. "lodash-es": "^4.18.1",
  1172. "lodash-unified": "^1.0.3",
  1173. "memoize-one": "^6.0.0",
  1174. "normalize-wheel-es": "^1.2.0",
  1175. "vue-component-type-helpers": "^3.3.1"
  1176. },
  1177. "peerDependencies": {
  1178. "vue": "^3.3.7"
  1179. }
  1180. },
  1181. "node_modules/entities": {
  1182. "version": "7.0.1",
  1183. "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
  1184. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1185. "license": "BSD-2-Clause",
  1186. "engines": {
  1187. "node": ">=0.12"
  1188. },
  1189. "funding": {
  1190. "url": "https://github.com/fb55/entities?sponsor=1"
  1191. }
  1192. },
  1193. "node_modules/es-define-property": {
  1194. "version": "1.0.1",
  1195. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  1196. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1197. "license": "MIT",
  1198. "engines": {
  1199. "node": ">= 0.4"
  1200. }
  1201. },
  1202. "node_modules/es-errors": {
  1203. "version": "1.3.0",
  1204. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  1205. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1206. "license": "MIT",
  1207. "engines": {
  1208. "node": ">= 0.4"
  1209. }
  1210. },
  1211. "node_modules/es-object-atoms": {
  1212. "version": "1.1.2",
  1213. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
  1214. "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
  1215. "license": "MIT",
  1216. "dependencies": {
  1217. "es-errors": "^1.3.0"
  1218. },
  1219. "engines": {
  1220. "node": ">= 0.4"
  1221. }
  1222. },
  1223. "node_modules/es-set-tostringtag": {
  1224. "version": "2.1.0",
  1225. "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1226. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1227. "license": "MIT",
  1228. "dependencies": {
  1229. "es-errors": "^1.3.0",
  1230. "get-intrinsic": "^1.2.6",
  1231. "has-tostringtag": "^1.0.2",
  1232. "hasown": "^2.0.2"
  1233. },
  1234. "engines": {
  1235. "node": ">= 0.4"
  1236. }
  1237. },
  1238. "node_modules/estree-walker": {
  1239. "version": "2.0.2",
  1240. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1241. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1242. "license": "MIT"
  1243. },
  1244. "node_modules/fdir": {
  1245. "version": "6.5.0",
  1246. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
  1247. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1248. "dev": true,
  1249. "license": "MIT",
  1250. "engines": {
  1251. "node": ">=12.0.0"
  1252. },
  1253. "peerDependencies": {
  1254. "picomatch": "^3 || ^4"
  1255. },
  1256. "peerDependenciesMeta": {
  1257. "picomatch": {
  1258. "optional": true
  1259. }
  1260. }
  1261. },
  1262. "node_modules/follow-redirects": {
  1263. "version": "1.16.0",
  1264. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.16.0.tgz",
  1265. "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
  1266. "funding": [
  1267. {
  1268. "type": "individual",
  1269. "url": "https://github.com/sponsors/RubenVerborgh"
  1270. }
  1271. ],
  1272. "license": "MIT",
  1273. "engines": {
  1274. "node": ">=4.0"
  1275. },
  1276. "peerDependenciesMeta": {
  1277. "debug": {
  1278. "optional": true
  1279. }
  1280. }
  1281. },
  1282. "node_modules/form-data": {
  1283. "version": "4.0.5",
  1284. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz",
  1285. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  1286. "license": "MIT",
  1287. "dependencies": {
  1288. "asynckit": "^0.4.0",
  1289. "combined-stream": "^1.0.8",
  1290. "es-set-tostringtag": "^2.1.0",
  1291. "hasown": "^2.0.2",
  1292. "mime-types": "^2.1.12"
  1293. },
  1294. "engines": {
  1295. "node": ">= 6"
  1296. }
  1297. },
  1298. "node_modules/fsevents": {
  1299. "version": "2.3.3",
  1300. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1301. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1302. "dev": true,
  1303. "hasInstallScript": true,
  1304. "license": "MIT",
  1305. "optional": true,
  1306. "os": [
  1307. "darwin"
  1308. ],
  1309. "engines": {
  1310. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1311. }
  1312. },
  1313. "node_modules/function-bind": {
  1314. "version": "1.1.2",
  1315. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  1316. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1317. "license": "MIT",
  1318. "funding": {
  1319. "url": "https://github.com/sponsors/ljharb"
  1320. }
  1321. },
  1322. "node_modules/get-intrinsic": {
  1323. "version": "1.3.0",
  1324. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1325. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1326. "license": "MIT",
  1327. "dependencies": {
  1328. "call-bind-apply-helpers": "^1.0.2",
  1329. "es-define-property": "^1.0.1",
  1330. "es-errors": "^1.3.0",
  1331. "es-object-atoms": "^1.1.1",
  1332. "function-bind": "^1.1.2",
  1333. "get-proto": "^1.0.1",
  1334. "gopd": "^1.2.0",
  1335. "has-symbols": "^1.1.0",
  1336. "hasown": "^2.0.2",
  1337. "math-intrinsics": "^1.1.0"
  1338. },
  1339. "engines": {
  1340. "node": ">= 0.4"
  1341. },
  1342. "funding": {
  1343. "url": "https://github.com/sponsors/ljharb"
  1344. }
  1345. },
  1346. "node_modules/get-proto": {
  1347. "version": "1.0.1",
  1348. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  1349. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1350. "license": "MIT",
  1351. "dependencies": {
  1352. "dunder-proto": "^1.0.1",
  1353. "es-object-atoms": "^1.0.0"
  1354. },
  1355. "engines": {
  1356. "node": ">= 0.4"
  1357. }
  1358. },
  1359. "node_modules/gopd": {
  1360. "version": "1.2.0",
  1361. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  1362. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1363. "license": "MIT",
  1364. "engines": {
  1365. "node": ">= 0.4"
  1366. },
  1367. "funding": {
  1368. "url": "https://github.com/sponsors/ljharb"
  1369. }
  1370. },
  1371. "node_modules/has-symbols": {
  1372. "version": "1.1.0",
  1373. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  1374. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1375. "license": "MIT",
  1376. "engines": {
  1377. "node": ">= 0.4"
  1378. },
  1379. "funding": {
  1380. "url": "https://github.com/sponsors/ljharb"
  1381. }
  1382. },
  1383. "node_modules/has-tostringtag": {
  1384. "version": "1.0.2",
  1385. "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1386. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1387. "license": "MIT",
  1388. "dependencies": {
  1389. "has-symbols": "^1.0.3"
  1390. },
  1391. "engines": {
  1392. "node": ">= 0.4"
  1393. },
  1394. "funding": {
  1395. "url": "https://github.com/sponsors/ljharb"
  1396. }
  1397. },
  1398. "node_modules/hasown": {
  1399. "version": "2.0.4",
  1400. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.4.tgz",
  1401. "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
  1402. "license": "MIT",
  1403. "dependencies": {
  1404. "function-bind": "^1.1.2"
  1405. },
  1406. "engines": {
  1407. "node": ">= 0.4"
  1408. }
  1409. },
  1410. "node_modules/https-proxy-agent": {
  1411. "version": "5.0.1",
  1412. "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
  1413. "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
  1414. "license": "MIT",
  1415. "dependencies": {
  1416. "agent-base": "6",
  1417. "debug": "4"
  1418. },
  1419. "engines": {
  1420. "node": ">= 6"
  1421. }
  1422. },
  1423. "node_modules/immutable": {
  1424. "version": "5.1.6",
  1425. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.6.tgz",
  1426. "integrity": "sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ==",
  1427. "dev": true,
  1428. "license": "MIT",
  1429. "optional": true,
  1430. "peer": true
  1431. },
  1432. "node_modules/is-extglob": {
  1433. "version": "2.1.1",
  1434. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  1435. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1436. "dev": true,
  1437. "license": "MIT",
  1438. "optional": true,
  1439. "peer": true,
  1440. "engines": {
  1441. "node": ">=0.10.0"
  1442. }
  1443. },
  1444. "node_modules/is-glob": {
  1445. "version": "4.0.3",
  1446. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  1447. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1448. "dev": true,
  1449. "license": "MIT",
  1450. "optional": true,
  1451. "peer": true,
  1452. "dependencies": {
  1453. "is-extglob": "^2.1.1"
  1454. },
  1455. "engines": {
  1456. "node": ">=0.10.0"
  1457. }
  1458. },
  1459. "node_modules/lightningcss": {
  1460. "version": "1.32.0",
  1461. "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.32.0.tgz",
  1462. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  1463. "dev": true,
  1464. "license": "MPL-2.0",
  1465. "dependencies": {
  1466. "detect-libc": "^2.0.3"
  1467. },
  1468. "engines": {
  1469. "node": ">= 12.0.0"
  1470. },
  1471. "funding": {
  1472. "type": "opencollective",
  1473. "url": "https://opencollective.com/parcel"
  1474. },
  1475. "optionalDependencies": {
  1476. "lightningcss-android-arm64": "1.32.0",
  1477. "lightningcss-darwin-arm64": "1.32.0",
  1478. "lightningcss-darwin-x64": "1.32.0",
  1479. "lightningcss-freebsd-x64": "1.32.0",
  1480. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1481. "lightningcss-linux-arm64-gnu": "1.32.0",
  1482. "lightningcss-linux-arm64-musl": "1.32.0",
  1483. "lightningcss-linux-x64-gnu": "1.32.0",
  1484. "lightningcss-linux-x64-musl": "1.32.0",
  1485. "lightningcss-win32-arm64-msvc": "1.32.0",
  1486. "lightningcss-win32-x64-msvc": "1.32.0"
  1487. }
  1488. },
  1489. "node_modules/lightningcss-android-arm64": {
  1490. "version": "1.32.0",
  1491. "resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  1492. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  1493. "cpu": [
  1494. "arm64"
  1495. ],
  1496. "dev": true,
  1497. "license": "MPL-2.0",
  1498. "optional": true,
  1499. "os": [
  1500. "android"
  1501. ],
  1502. "engines": {
  1503. "node": ">= 12.0.0"
  1504. },
  1505. "funding": {
  1506. "type": "opencollective",
  1507. "url": "https://opencollective.com/parcel"
  1508. }
  1509. },
  1510. "node_modules/lightningcss-darwin-arm64": {
  1511. "version": "1.32.0",
  1512. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  1513. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  1514. "cpu": [
  1515. "arm64"
  1516. ],
  1517. "dev": true,
  1518. "license": "MPL-2.0",
  1519. "optional": true,
  1520. "os": [
  1521. "darwin"
  1522. ],
  1523. "engines": {
  1524. "node": ">= 12.0.0"
  1525. },
  1526. "funding": {
  1527. "type": "opencollective",
  1528. "url": "https://opencollective.com/parcel"
  1529. }
  1530. },
  1531. "node_modules/lightningcss-darwin-x64": {
  1532. "version": "1.32.0",
  1533. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  1534. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  1535. "cpu": [
  1536. "x64"
  1537. ],
  1538. "dev": true,
  1539. "license": "MPL-2.0",
  1540. "optional": true,
  1541. "os": [
  1542. "darwin"
  1543. ],
  1544. "engines": {
  1545. "node": ">= 12.0.0"
  1546. },
  1547. "funding": {
  1548. "type": "opencollective",
  1549. "url": "https://opencollective.com/parcel"
  1550. }
  1551. },
  1552. "node_modules/lightningcss-freebsd-x64": {
  1553. "version": "1.32.0",
  1554. "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  1555. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  1556. "cpu": [
  1557. "x64"
  1558. ],
  1559. "dev": true,
  1560. "license": "MPL-2.0",
  1561. "optional": true,
  1562. "os": [
  1563. "freebsd"
  1564. ],
  1565. "engines": {
  1566. "node": ">= 12.0.0"
  1567. },
  1568. "funding": {
  1569. "type": "opencollective",
  1570. "url": "https://opencollective.com/parcel"
  1571. }
  1572. },
  1573. "node_modules/lightningcss-linux-arm-gnueabihf": {
  1574. "version": "1.32.0",
  1575. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  1576. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  1577. "cpu": [
  1578. "arm"
  1579. ],
  1580. "dev": true,
  1581. "license": "MPL-2.0",
  1582. "optional": true,
  1583. "os": [
  1584. "linux"
  1585. ],
  1586. "engines": {
  1587. "node": ">= 12.0.0"
  1588. },
  1589. "funding": {
  1590. "type": "opencollective",
  1591. "url": "https://opencollective.com/parcel"
  1592. }
  1593. },
  1594. "node_modules/lightningcss-linux-arm64-gnu": {
  1595. "version": "1.32.0",
  1596. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  1597. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  1598. "cpu": [
  1599. "arm64"
  1600. ],
  1601. "dev": true,
  1602. "license": "MPL-2.0",
  1603. "optional": true,
  1604. "os": [
  1605. "linux"
  1606. ],
  1607. "engines": {
  1608. "node": ">= 12.0.0"
  1609. },
  1610. "funding": {
  1611. "type": "opencollective",
  1612. "url": "https://opencollective.com/parcel"
  1613. }
  1614. },
  1615. "node_modules/lightningcss-linux-arm64-musl": {
  1616. "version": "1.32.0",
  1617. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  1618. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  1619. "cpu": [
  1620. "arm64"
  1621. ],
  1622. "dev": true,
  1623. "license": "MPL-2.0",
  1624. "optional": true,
  1625. "os": [
  1626. "linux"
  1627. ],
  1628. "engines": {
  1629. "node": ">= 12.0.0"
  1630. },
  1631. "funding": {
  1632. "type": "opencollective",
  1633. "url": "https://opencollective.com/parcel"
  1634. }
  1635. },
  1636. "node_modules/lightningcss-linux-x64-gnu": {
  1637. "version": "1.32.0",
  1638. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  1639. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  1640. "cpu": [
  1641. "x64"
  1642. ],
  1643. "dev": true,
  1644. "license": "MPL-2.0",
  1645. "optional": true,
  1646. "os": [
  1647. "linux"
  1648. ],
  1649. "engines": {
  1650. "node": ">= 12.0.0"
  1651. },
  1652. "funding": {
  1653. "type": "opencollective",
  1654. "url": "https://opencollective.com/parcel"
  1655. }
  1656. },
  1657. "node_modules/lightningcss-linux-x64-musl": {
  1658. "version": "1.32.0",
  1659. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  1660. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  1661. "cpu": [
  1662. "x64"
  1663. ],
  1664. "dev": true,
  1665. "license": "MPL-2.0",
  1666. "optional": true,
  1667. "os": [
  1668. "linux"
  1669. ],
  1670. "engines": {
  1671. "node": ">= 12.0.0"
  1672. },
  1673. "funding": {
  1674. "type": "opencollective",
  1675. "url": "https://opencollective.com/parcel"
  1676. }
  1677. },
  1678. "node_modules/lightningcss-win32-arm64-msvc": {
  1679. "version": "1.32.0",
  1680. "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  1681. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  1682. "cpu": [
  1683. "arm64"
  1684. ],
  1685. "dev": true,
  1686. "license": "MPL-2.0",
  1687. "optional": true,
  1688. "os": [
  1689. "win32"
  1690. ],
  1691. "engines": {
  1692. "node": ">= 12.0.0"
  1693. },
  1694. "funding": {
  1695. "type": "opencollective",
  1696. "url": "https://opencollective.com/parcel"
  1697. }
  1698. },
  1699. "node_modules/lightningcss-win32-x64-msvc": {
  1700. "version": "1.32.0",
  1701. "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  1702. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  1703. "cpu": [
  1704. "x64"
  1705. ],
  1706. "dev": true,
  1707. "license": "MPL-2.0",
  1708. "optional": true,
  1709. "os": [
  1710. "win32"
  1711. ],
  1712. "engines": {
  1713. "node": ">= 12.0.0"
  1714. },
  1715. "funding": {
  1716. "type": "opencollective",
  1717. "url": "https://opencollective.com/parcel"
  1718. }
  1719. },
  1720. "node_modules/lodash": {
  1721. "version": "4.18.1",
  1722. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
  1723. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  1724. "license": "MIT"
  1725. },
  1726. "node_modules/lodash-es": {
  1727. "version": "4.18.1",
  1728. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.18.1.tgz",
  1729. "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
  1730. "license": "MIT"
  1731. },
  1732. "node_modules/lodash-unified": {
  1733. "version": "1.0.3",
  1734. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  1735. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  1736. "license": "MIT",
  1737. "peerDependencies": {
  1738. "@types/lodash-es": "*",
  1739. "lodash": "*",
  1740. "lodash-es": "*"
  1741. }
  1742. },
  1743. "node_modules/magic-string": {
  1744. "version": "0.30.21",
  1745. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
  1746. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1747. "license": "MIT",
  1748. "dependencies": {
  1749. "@jridgewell/sourcemap-codec": "^1.5.5"
  1750. }
  1751. },
  1752. "node_modules/math-intrinsics": {
  1753. "version": "1.1.0",
  1754. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  1755. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  1756. "license": "MIT",
  1757. "engines": {
  1758. "node": ">= 0.4"
  1759. }
  1760. },
  1761. "node_modules/memoize-one": {
  1762. "version": "6.0.0",
  1763. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  1764. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  1765. "license": "MIT"
  1766. },
  1767. "node_modules/mime-db": {
  1768. "version": "1.52.0",
  1769. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  1770. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  1771. "license": "MIT",
  1772. "engines": {
  1773. "node": ">= 0.6"
  1774. }
  1775. },
  1776. "node_modules/mime-types": {
  1777. "version": "2.1.35",
  1778. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  1779. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  1780. "license": "MIT",
  1781. "dependencies": {
  1782. "mime-db": "1.52.0"
  1783. },
  1784. "engines": {
  1785. "node": ">= 0.6"
  1786. }
  1787. },
  1788. "node_modules/ms": {
  1789. "version": "2.1.3",
  1790. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  1791. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  1792. "license": "MIT"
  1793. },
  1794. "node_modules/nanoid": {
  1795. "version": "3.3.12",
  1796. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.12.tgz",
  1797. "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
  1798. "funding": [
  1799. {
  1800. "type": "github",
  1801. "url": "https://github.com/sponsors/ai"
  1802. }
  1803. ],
  1804. "license": "MIT",
  1805. "bin": {
  1806. "nanoid": "bin/nanoid.cjs"
  1807. },
  1808. "engines": {
  1809. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1810. }
  1811. },
  1812. "node_modules/node-addon-api": {
  1813. "version": "7.1.1",
  1814. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  1815. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  1816. "dev": true,
  1817. "license": "MIT",
  1818. "optional": true,
  1819. "peer": true
  1820. },
  1821. "node_modules/normalize-wheel-es": {
  1822. "version": "1.2.0",
  1823. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  1824. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  1825. "license": "BSD-3-Clause"
  1826. },
  1827. "node_modules/picocolors": {
  1828. "version": "1.1.1",
  1829. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  1830. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1831. "license": "ISC"
  1832. },
  1833. "node_modules/picomatch": {
  1834. "version": "4.0.4",
  1835. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz",
  1836. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  1837. "dev": true,
  1838. "license": "MIT",
  1839. "engines": {
  1840. "node": ">=12"
  1841. },
  1842. "funding": {
  1843. "url": "https://github.com/sponsors/jonschlinkert"
  1844. }
  1845. },
  1846. "node_modules/postcss": {
  1847. "version": "8.5.15",
  1848. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.15.tgz",
  1849. "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
  1850. "funding": [
  1851. {
  1852. "type": "opencollective",
  1853. "url": "https://opencollective.com/postcss/"
  1854. },
  1855. {
  1856. "type": "tidelift",
  1857. "url": "https://tidelift.com/funding/github/npm/postcss"
  1858. },
  1859. {
  1860. "type": "github",
  1861. "url": "https://github.com/sponsors/ai"
  1862. }
  1863. ],
  1864. "license": "MIT",
  1865. "dependencies": {
  1866. "nanoid": "^3.3.12",
  1867. "picocolors": "^1.1.1",
  1868. "source-map-js": "^1.2.1"
  1869. },
  1870. "engines": {
  1871. "node": "^10 || ^12 || >=14"
  1872. }
  1873. },
  1874. "node_modules/proxy-from-env": {
  1875. "version": "2.1.0",
  1876. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
  1877. "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
  1878. "license": "MIT",
  1879. "engines": {
  1880. "node": ">=10"
  1881. }
  1882. },
  1883. "node_modules/readdirp": {
  1884. "version": "5.0.0",
  1885. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-5.0.0.tgz",
  1886. "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
  1887. "dev": true,
  1888. "license": "MIT",
  1889. "optional": true,
  1890. "peer": true,
  1891. "engines": {
  1892. "node": ">= 20.19.0"
  1893. },
  1894. "funding": {
  1895. "type": "individual",
  1896. "url": "https://paulmillr.com/funding/"
  1897. }
  1898. },
  1899. "node_modules/rolldown": {
  1900. "version": "1.0.3",
  1901. "resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.0.3.tgz",
  1902. "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
  1903. "dev": true,
  1904. "license": "MIT",
  1905. "dependencies": {
  1906. "@oxc-project/types": "=0.133.0",
  1907. "@rolldown/pluginutils": "^1.0.0"
  1908. },
  1909. "bin": {
  1910. "rolldown": "bin/cli.mjs"
  1911. },
  1912. "engines": {
  1913. "node": "^20.19.0 || >=22.12.0"
  1914. },
  1915. "optionalDependencies": {
  1916. "@rolldown/binding-android-arm64": "1.0.3",
  1917. "@rolldown/binding-darwin-arm64": "1.0.3",
  1918. "@rolldown/binding-darwin-x64": "1.0.3",
  1919. "@rolldown/binding-freebsd-x64": "1.0.3",
  1920. "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
  1921. "@rolldown/binding-linux-arm64-gnu": "1.0.3",
  1922. "@rolldown/binding-linux-arm64-musl": "1.0.3",
  1923. "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
  1924. "@rolldown/binding-linux-s390x-gnu": "1.0.3",
  1925. "@rolldown/binding-linux-x64-gnu": "1.0.3",
  1926. "@rolldown/binding-linux-x64-musl": "1.0.3",
  1927. "@rolldown/binding-openharmony-arm64": "1.0.3",
  1928. "@rolldown/binding-wasm32-wasi": "1.0.3",
  1929. "@rolldown/binding-win32-arm64-msvc": "1.0.3",
  1930. "@rolldown/binding-win32-x64-msvc": "1.0.3"
  1931. }
  1932. },
  1933. "node_modules/sass": {
  1934. "version": "1.100.0",
  1935. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.100.0.tgz",
  1936. "integrity": "sha512-B5j0rYMlinhhOo9tjQebMVVn0TfyXAF+wB3b2ggZUuJ/is/Y+7+JGjirAMxHZ9Z3hIP98NPfamlAkBHa1lAaXQ==",
  1937. "dev": true,
  1938. "license": "MIT",
  1939. "optional": true,
  1940. "peer": true,
  1941. "dependencies": {
  1942. "chokidar": "^5.0.0",
  1943. "immutable": "^5.1.5",
  1944. "source-map-js": ">=0.6.2 <2.0.0"
  1945. },
  1946. "bin": {
  1947. "sass": "sass.js"
  1948. },
  1949. "engines": {
  1950. "node": ">=20.19.0"
  1951. },
  1952. "optionalDependencies": {
  1953. "@parcel/watcher": "^2.4.1"
  1954. }
  1955. },
  1956. "node_modules/source-map-js": {
  1957. "version": "1.2.1",
  1958. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  1959. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  1960. "license": "BSD-3-Clause",
  1961. "engines": {
  1962. "node": ">=0.10.0"
  1963. }
  1964. },
  1965. "node_modules/tinyglobby": {
  1966. "version": "0.2.17",
  1967. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.17.tgz",
  1968. "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
  1969. "dev": true,
  1970. "license": "MIT",
  1971. "dependencies": {
  1972. "fdir": "^6.5.0",
  1973. "picomatch": "^4.0.4"
  1974. },
  1975. "engines": {
  1976. "node": ">=12.0.0"
  1977. },
  1978. "funding": {
  1979. "url": "https://github.com/sponsors/SuperchupuDev"
  1980. }
  1981. },
  1982. "node_modules/tslib": {
  1983. "version": "2.3.0",
  1984. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz",
  1985. "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
  1986. "license": "0BSD"
  1987. },
  1988. "node_modules/vite": {
  1989. "version": "8.0.16",
  1990. "resolved": "https://registry.npmmirror.com/vite/-/vite-8.0.16.tgz",
  1991. "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
  1992. "dev": true,
  1993. "license": "MIT",
  1994. "dependencies": {
  1995. "lightningcss": "^1.32.0",
  1996. "picomatch": "^4.0.4",
  1997. "postcss": "^8.5.15",
  1998. "rolldown": "1.0.3",
  1999. "tinyglobby": "^0.2.17"
  2000. },
  2001. "bin": {
  2002. "vite": "bin/vite.js"
  2003. },
  2004. "engines": {
  2005. "node": "^20.19.0 || >=22.12.0"
  2006. },
  2007. "funding": {
  2008. "url": "https://github.com/vitejs/vite?sponsor=1"
  2009. },
  2010. "optionalDependencies": {
  2011. "fsevents": "~2.3.3"
  2012. },
  2013. "peerDependencies": {
  2014. "@types/node": "^20.19.0 || >=22.12.0",
  2015. "@vitejs/devtools": "^0.1.18",
  2016. "esbuild": "^0.27.0 || ^0.28.0",
  2017. "jiti": ">=1.21.0",
  2018. "less": "^4.0.0",
  2019. "sass": "^1.70.0",
  2020. "sass-embedded": "^1.70.0",
  2021. "stylus": ">=0.54.8",
  2022. "sugarss": "^5.0.0",
  2023. "terser": "^5.16.0",
  2024. "tsx": "^4.8.1",
  2025. "yaml": "^2.4.2"
  2026. },
  2027. "peerDependenciesMeta": {
  2028. "@types/node": {
  2029. "optional": true
  2030. },
  2031. "@vitejs/devtools": {
  2032. "optional": true
  2033. },
  2034. "esbuild": {
  2035. "optional": true
  2036. },
  2037. "jiti": {
  2038. "optional": true
  2039. },
  2040. "less": {
  2041. "optional": true
  2042. },
  2043. "sass": {
  2044. "optional": true
  2045. },
  2046. "sass-embedded": {
  2047. "optional": true
  2048. },
  2049. "stylus": {
  2050. "optional": true
  2051. },
  2052. "sugarss": {
  2053. "optional": true
  2054. },
  2055. "terser": {
  2056. "optional": true
  2057. },
  2058. "tsx": {
  2059. "optional": true
  2060. },
  2061. "yaml": {
  2062. "optional": true
  2063. }
  2064. }
  2065. },
  2066. "node_modules/vue": {
  2067. "version": "3.5.35",
  2068. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.35.tgz",
  2069. "integrity": "sha512-cx89fnr+0kVGHiNFG6y6s0bdjypJRFNZn6x3WPstNdQR1bi1mbB7h4v5IBGTsPJU3nK1+0Iqj3Zf+hZWMieR4Q==",
  2070. "license": "MIT",
  2071. "dependencies": {
  2072. "@vue/compiler-dom": "3.5.35",
  2073. "@vue/compiler-sfc": "3.5.35",
  2074. "@vue/runtime-dom": "3.5.35",
  2075. "@vue/server-renderer": "3.5.35",
  2076. "@vue/shared": "3.5.35"
  2077. },
  2078. "peerDependencies": {
  2079. "typescript": "*"
  2080. },
  2081. "peerDependenciesMeta": {
  2082. "typescript": {
  2083. "optional": true
  2084. }
  2085. }
  2086. },
  2087. "node_modules/vue-component-type-helpers": {
  2088. "version": "3.3.3",
  2089. "resolved": "https://registry.npmmirror.com/vue-component-type-helpers/-/vue-component-type-helpers-3.3.3.tgz",
  2090. "integrity": "sha512-x4nsFpy5Pe8fqPzp/5vkTPeTTDBpAx4WVtV47Ejt0+2FQrq4pRRsJs7JmYRqMFzTu/LW+pCWEjQ3YVCkPV7f9g==",
  2091. "license": "MIT"
  2092. },
  2093. "node_modules/vue-router": {
  2094. "version": "4.6.4",
  2095. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz",
  2096. "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
  2097. "license": "MIT",
  2098. "dependencies": {
  2099. "@vue/devtools-api": "^6.6.4"
  2100. },
  2101. "funding": {
  2102. "url": "https://github.com/sponsors/posva"
  2103. },
  2104. "peerDependencies": {
  2105. "vue": "^3.5.0"
  2106. }
  2107. },
  2108. "node_modules/zrender": {
  2109. "version": "6.1.0",
  2110. "resolved": "https://registry.npmmirror.com/zrender/-/zrender-6.1.0.tgz",
  2111. "integrity": "sha512-oEGMDB6pOP2S6OwRR4PdVv610zrjnA3Bh+JnSG12fYJlBKjtNAoEb5fSUoCOOINlH96I2fU38/A2UpRKs67xYQ==",
  2112. "license": "BSD-3-Clause",
  2113. "dependencies": {
  2114. "tslib": "2.3.0"
  2115. }
  2116. }
  2117. }
  2118. }