ai-parrot 0.17.2__cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (535) hide show
  1. agentui/.prettierrc +15 -0
  2. agentui/QUICKSTART.md +272 -0
  3. agentui/README.md +59 -0
  4. agentui/env.example +16 -0
  5. agentui/jsconfig.json +14 -0
  6. agentui/package-lock.json +4242 -0
  7. agentui/package.json +34 -0
  8. agentui/scripts/postinstall/apply-patches.mjs +260 -0
  9. agentui/src/app.css +61 -0
  10. agentui/src/app.d.ts +13 -0
  11. agentui/src/app.html +12 -0
  12. agentui/src/components/LoadingSpinner.svelte +64 -0
  13. agentui/src/components/ThemeSwitcher.svelte +159 -0
  14. agentui/src/components/index.js +4 -0
  15. agentui/src/lib/api/bots.ts +60 -0
  16. agentui/src/lib/api/chat.ts +22 -0
  17. agentui/src/lib/api/http.ts +25 -0
  18. agentui/src/lib/components/BotCard.svelte +33 -0
  19. agentui/src/lib/components/ChatBubble.svelte +63 -0
  20. agentui/src/lib/components/Toast.svelte +21 -0
  21. agentui/src/lib/config.ts +20 -0
  22. agentui/src/lib/stores/auth.svelte.ts +73 -0
  23. agentui/src/lib/stores/theme.svelte.js +64 -0
  24. agentui/src/lib/stores/toast.svelte.ts +31 -0
  25. agentui/src/lib/utils/conversation.ts +39 -0
  26. agentui/src/routes/+layout.svelte +20 -0
  27. agentui/src/routes/+page.svelte +232 -0
  28. agentui/src/routes/login/+page.svelte +200 -0
  29. agentui/src/routes/talk/[agentId]/+page.svelte +297 -0
  30. agentui/src/routes/talk/[agentId]/+page.ts +7 -0
  31. agentui/static/README.md +1 -0
  32. agentui/svelte.config.js +11 -0
  33. agentui/tailwind.config.ts +53 -0
  34. agentui/tsconfig.json +3 -0
  35. agentui/vite.config.ts +10 -0
  36. ai_parrot-0.17.2.dist-info/METADATA +472 -0
  37. ai_parrot-0.17.2.dist-info/RECORD +535 -0
  38. ai_parrot-0.17.2.dist-info/WHEEL +6 -0
  39. ai_parrot-0.17.2.dist-info/entry_points.txt +2 -0
  40. ai_parrot-0.17.2.dist-info/licenses/LICENSE +21 -0
  41. ai_parrot-0.17.2.dist-info/top_level.txt +6 -0
  42. crew-builder/.prettierrc +15 -0
  43. crew-builder/QUICKSTART.md +259 -0
  44. crew-builder/README.md +113 -0
  45. crew-builder/env.example +17 -0
  46. crew-builder/jsconfig.json +14 -0
  47. crew-builder/package-lock.json +4182 -0
  48. crew-builder/package.json +37 -0
  49. crew-builder/scripts/postinstall/apply-patches.mjs +260 -0
  50. crew-builder/src/app.css +62 -0
  51. crew-builder/src/app.d.ts +13 -0
  52. crew-builder/src/app.html +12 -0
  53. crew-builder/src/components/LoadingSpinner.svelte +64 -0
  54. crew-builder/src/components/ThemeSwitcher.svelte +149 -0
  55. crew-builder/src/components/index.js +9 -0
  56. crew-builder/src/lib/api/bots.ts +60 -0
  57. crew-builder/src/lib/api/chat.ts +80 -0
  58. crew-builder/src/lib/api/client.ts +56 -0
  59. crew-builder/src/lib/api/crew/crew.ts +136 -0
  60. crew-builder/src/lib/api/index.ts +5 -0
  61. crew-builder/src/lib/api/o365/auth.ts +65 -0
  62. crew-builder/src/lib/auth/auth.ts +54 -0
  63. crew-builder/src/lib/components/AgentNode.svelte +43 -0
  64. crew-builder/src/lib/components/BotCard.svelte +33 -0
  65. crew-builder/src/lib/components/ChatBubble.svelte +67 -0
  66. crew-builder/src/lib/components/ConfigPanel.svelte +278 -0
  67. crew-builder/src/lib/components/JsonTreeNode.svelte +76 -0
  68. crew-builder/src/lib/components/JsonViewer.svelte +24 -0
  69. crew-builder/src/lib/components/MarkdownEditor.svelte +48 -0
  70. crew-builder/src/lib/components/ThemeToggle.svelte +36 -0
  71. crew-builder/src/lib/components/Toast.svelte +67 -0
  72. crew-builder/src/lib/components/Toolbar.svelte +157 -0
  73. crew-builder/src/lib/components/index.ts +10 -0
  74. crew-builder/src/lib/config.ts +8 -0
  75. crew-builder/src/lib/stores/auth.svelte.ts +228 -0
  76. crew-builder/src/lib/stores/crewStore.ts +369 -0
  77. crew-builder/src/lib/stores/theme.svelte.js +145 -0
  78. crew-builder/src/lib/stores/toast.svelte.ts +69 -0
  79. crew-builder/src/lib/utils/conversation.ts +39 -0
  80. crew-builder/src/lib/utils/markdown.ts +122 -0
  81. crew-builder/src/lib/utils/talkHistory.ts +47 -0
  82. crew-builder/src/routes/+layout.svelte +20 -0
  83. crew-builder/src/routes/+page.svelte +539 -0
  84. crew-builder/src/routes/agents/+page.svelte +247 -0
  85. crew-builder/src/routes/agents/[agentId]/+page.svelte +288 -0
  86. crew-builder/src/routes/agents/[agentId]/+page.ts +7 -0
  87. crew-builder/src/routes/builder/+page.svelte +204 -0
  88. crew-builder/src/routes/crew/ask/+page.svelte +1052 -0
  89. crew-builder/src/routes/crew/ask/+page.ts +1 -0
  90. crew-builder/src/routes/integrations/o365/+page.svelte +304 -0
  91. crew-builder/src/routes/login/+page.svelte +197 -0
  92. crew-builder/src/routes/talk/[agentId]/+page.svelte +487 -0
  93. crew-builder/src/routes/talk/[agentId]/+page.ts +7 -0
  94. crew-builder/static/README.md +1 -0
  95. crew-builder/svelte.config.js +11 -0
  96. crew-builder/tailwind.config.ts +53 -0
  97. crew-builder/tsconfig.json +3 -0
  98. crew-builder/vite.config.ts +10 -0
  99. mcp_servers/calculator_server.py +309 -0
  100. parrot/__init__.py +27 -0
  101. parrot/__pycache__/__init__.cpython-310.pyc +0 -0
  102. parrot/__pycache__/version.cpython-310.pyc +0 -0
  103. parrot/_version.py +34 -0
  104. parrot/a2a/__init__.py +48 -0
  105. parrot/a2a/client.py +658 -0
  106. parrot/a2a/discovery.py +89 -0
  107. parrot/a2a/mixin.py +257 -0
  108. parrot/a2a/models.py +376 -0
  109. parrot/a2a/server.py +770 -0
  110. parrot/agents/__init__.py +29 -0
  111. parrot/bots/__init__.py +12 -0
  112. parrot/bots/a2a_agent.py +19 -0
  113. parrot/bots/abstract.py +3139 -0
  114. parrot/bots/agent.py +1129 -0
  115. parrot/bots/basic.py +9 -0
  116. parrot/bots/chatbot.py +669 -0
  117. parrot/bots/data.py +1618 -0
  118. parrot/bots/database/__init__.py +5 -0
  119. parrot/bots/database/abstract.py +3071 -0
  120. parrot/bots/database/cache.py +286 -0
  121. parrot/bots/database/models.py +468 -0
  122. parrot/bots/database/prompts.py +154 -0
  123. parrot/bots/database/retries.py +98 -0
  124. parrot/bots/database/router.py +269 -0
  125. parrot/bots/database/sql.py +41 -0
  126. parrot/bots/db/__init__.py +6 -0
  127. parrot/bots/db/abstract.py +556 -0
  128. parrot/bots/db/bigquery.py +602 -0
  129. parrot/bots/db/cache.py +85 -0
  130. parrot/bots/db/documentdb.py +668 -0
  131. parrot/bots/db/elastic.py +1014 -0
  132. parrot/bots/db/influx.py +898 -0
  133. parrot/bots/db/mock.py +96 -0
  134. parrot/bots/db/multi.py +783 -0
  135. parrot/bots/db/prompts.py +185 -0
  136. parrot/bots/db/sql.py +1255 -0
  137. parrot/bots/db/tools.py +212 -0
  138. parrot/bots/document.py +680 -0
  139. parrot/bots/hrbot.py +15 -0
  140. parrot/bots/kb.py +170 -0
  141. parrot/bots/mcp.py +36 -0
  142. parrot/bots/orchestration/README.md +463 -0
  143. parrot/bots/orchestration/__init__.py +1 -0
  144. parrot/bots/orchestration/agent.py +155 -0
  145. parrot/bots/orchestration/crew.py +3330 -0
  146. parrot/bots/orchestration/fsm.py +1179 -0
  147. parrot/bots/orchestration/hr.py +434 -0
  148. parrot/bots/orchestration/storage/__init__.py +4 -0
  149. parrot/bots/orchestration/storage/memory.py +100 -0
  150. parrot/bots/orchestration/storage/mixin.py +119 -0
  151. parrot/bots/orchestration/verify.py +202 -0
  152. parrot/bots/product.py +204 -0
  153. parrot/bots/prompts/__init__.py +96 -0
  154. parrot/bots/prompts/agents.py +155 -0
  155. parrot/bots/prompts/data.py +216 -0
  156. parrot/bots/prompts/output_generation.py +8 -0
  157. parrot/bots/scraper/__init__.py +3 -0
  158. parrot/bots/scraper/models.py +122 -0
  159. parrot/bots/scraper/scraper.py +1173 -0
  160. parrot/bots/scraper/templates.py +115 -0
  161. parrot/bots/stores/__init__.py +5 -0
  162. parrot/bots/stores/local.py +172 -0
  163. parrot/bots/webdev.py +81 -0
  164. parrot/cli.py +17 -0
  165. parrot/clients/__init__.py +16 -0
  166. parrot/clients/base.py +1491 -0
  167. parrot/clients/claude.py +1191 -0
  168. parrot/clients/factory.py +129 -0
  169. parrot/clients/google.py +4567 -0
  170. parrot/clients/gpt.py +1975 -0
  171. parrot/clients/grok.py +432 -0
  172. parrot/clients/groq.py +986 -0
  173. parrot/clients/hf.py +582 -0
  174. parrot/clients/models.py +18 -0
  175. parrot/conf.py +395 -0
  176. parrot/embeddings/__init__.py +9 -0
  177. parrot/embeddings/base.py +157 -0
  178. parrot/embeddings/google.py +98 -0
  179. parrot/embeddings/huggingface.py +74 -0
  180. parrot/embeddings/openai.py +84 -0
  181. parrot/embeddings/processor.py +88 -0
  182. parrot/exceptions.c +13868 -0
  183. parrot/exceptions.cpython-310-x86_64-linux-gnu.so +0 -0
  184. parrot/exceptions.pxd +22 -0
  185. parrot/exceptions.pxi +15 -0
  186. parrot/exceptions.pyx +44 -0
  187. parrot/generators/__init__.py +29 -0
  188. parrot/generators/base.py +200 -0
  189. parrot/generators/html.py +293 -0
  190. parrot/generators/react.py +205 -0
  191. parrot/generators/streamlit.py +203 -0
  192. parrot/generators/template.py +105 -0
  193. parrot/handlers/__init__.py +4 -0
  194. parrot/handlers/agent.py +861 -0
  195. parrot/handlers/agents/__init__.py +1 -0
  196. parrot/handlers/agents/abstract.py +900 -0
  197. parrot/handlers/bots.py +338 -0
  198. parrot/handlers/chat.py +915 -0
  199. parrot/handlers/creation.sql +192 -0
  200. parrot/handlers/crew/ARCHITECTURE.md +362 -0
  201. parrot/handlers/crew/README_BOTMANAGER_PERSISTENCE.md +303 -0
  202. parrot/handlers/crew/README_REDIS_PERSISTENCE.md +366 -0
  203. parrot/handlers/crew/__init__.py +0 -0
  204. parrot/handlers/crew/handler.py +801 -0
  205. parrot/handlers/crew/models.py +229 -0
  206. parrot/handlers/crew/redis_persistence.py +523 -0
  207. parrot/handlers/jobs/__init__.py +10 -0
  208. parrot/handlers/jobs/job.py +384 -0
  209. parrot/handlers/jobs/mixin.py +627 -0
  210. parrot/handlers/jobs/models.py +115 -0
  211. parrot/handlers/jobs/worker.py +31 -0
  212. parrot/handlers/models.py +596 -0
  213. parrot/handlers/o365_auth.py +105 -0
  214. parrot/handlers/stream.py +337 -0
  215. parrot/interfaces/__init__.py +6 -0
  216. parrot/interfaces/aws.py +143 -0
  217. parrot/interfaces/credentials.py +113 -0
  218. parrot/interfaces/database.py +27 -0
  219. parrot/interfaces/google.py +1123 -0
  220. parrot/interfaces/hierarchy.py +1227 -0
  221. parrot/interfaces/http.py +651 -0
  222. parrot/interfaces/images/__init__.py +0 -0
  223. parrot/interfaces/images/plugins/__init__.py +24 -0
  224. parrot/interfaces/images/plugins/abstract.py +58 -0
  225. parrot/interfaces/images/plugins/analisys.py +148 -0
  226. parrot/interfaces/images/plugins/classify.py +150 -0
  227. parrot/interfaces/images/plugins/classifybase.py +182 -0
  228. parrot/interfaces/images/plugins/detect.py +150 -0
  229. parrot/interfaces/images/plugins/exif.py +1103 -0
  230. parrot/interfaces/images/plugins/hash.py +52 -0
  231. parrot/interfaces/images/plugins/vision.py +104 -0
  232. parrot/interfaces/images/plugins/yolo.py +66 -0
  233. parrot/interfaces/images/plugins/zerodetect.py +197 -0
  234. parrot/interfaces/o365.py +978 -0
  235. parrot/interfaces/onedrive.py +822 -0
  236. parrot/interfaces/sharepoint.py +1435 -0
  237. parrot/interfaces/soap.py +257 -0
  238. parrot/loaders/__init__.py +8 -0
  239. parrot/loaders/abstract.py +1131 -0
  240. parrot/loaders/audio.py +199 -0
  241. parrot/loaders/basepdf.py +53 -0
  242. parrot/loaders/basevideo.py +1568 -0
  243. parrot/loaders/csv.py +409 -0
  244. parrot/loaders/docx.py +116 -0
  245. parrot/loaders/epubloader.py +316 -0
  246. parrot/loaders/excel.py +199 -0
  247. parrot/loaders/factory.py +55 -0
  248. parrot/loaders/files/__init__.py +0 -0
  249. parrot/loaders/files/abstract.py +39 -0
  250. parrot/loaders/files/html.py +26 -0
  251. parrot/loaders/files/text.py +63 -0
  252. parrot/loaders/html.py +152 -0
  253. parrot/loaders/markdown.py +442 -0
  254. parrot/loaders/pdf.py +373 -0
  255. parrot/loaders/pdfmark.py +320 -0
  256. parrot/loaders/pdftables.py +506 -0
  257. parrot/loaders/ppt.py +476 -0
  258. parrot/loaders/qa.py +63 -0
  259. parrot/loaders/splitters/__init__.py +10 -0
  260. parrot/loaders/splitters/base.py +138 -0
  261. parrot/loaders/splitters/md.py +228 -0
  262. parrot/loaders/splitters/token.py +143 -0
  263. parrot/loaders/txt.py +26 -0
  264. parrot/loaders/video.py +89 -0
  265. parrot/loaders/videolocal.py +218 -0
  266. parrot/loaders/videounderstanding.py +377 -0
  267. parrot/loaders/vimeo.py +167 -0
  268. parrot/loaders/web.py +599 -0
  269. parrot/loaders/youtube.py +504 -0
  270. parrot/manager/__init__.py +5 -0
  271. parrot/manager/manager.py +1030 -0
  272. parrot/mcp/__init__.py +28 -0
  273. parrot/mcp/adapter.py +105 -0
  274. parrot/mcp/cli.py +174 -0
  275. parrot/mcp/client.py +119 -0
  276. parrot/mcp/config.py +75 -0
  277. parrot/mcp/integration.py +842 -0
  278. parrot/mcp/oauth.py +933 -0
  279. parrot/mcp/server.py +225 -0
  280. parrot/mcp/transports/__init__.py +3 -0
  281. parrot/mcp/transports/base.py +279 -0
  282. parrot/mcp/transports/grpc_session.py +163 -0
  283. parrot/mcp/transports/http.py +312 -0
  284. parrot/mcp/transports/mcp.proto +108 -0
  285. parrot/mcp/transports/quic.py +1082 -0
  286. parrot/mcp/transports/sse.py +330 -0
  287. parrot/mcp/transports/stdio.py +309 -0
  288. parrot/mcp/transports/unix.py +395 -0
  289. parrot/mcp/transports/websocket.py +547 -0
  290. parrot/memory/__init__.py +16 -0
  291. parrot/memory/abstract.py +209 -0
  292. parrot/memory/agent.py +32 -0
  293. parrot/memory/cache.py +175 -0
  294. parrot/memory/core.py +555 -0
  295. parrot/memory/file.py +153 -0
  296. parrot/memory/mem.py +131 -0
  297. parrot/memory/redis.py +613 -0
  298. parrot/models/__init__.py +46 -0
  299. parrot/models/basic.py +118 -0
  300. parrot/models/compliance.py +208 -0
  301. parrot/models/crew.py +395 -0
  302. parrot/models/detections.py +654 -0
  303. parrot/models/generation.py +85 -0
  304. parrot/models/google.py +223 -0
  305. parrot/models/groq.py +23 -0
  306. parrot/models/openai.py +30 -0
  307. parrot/models/outputs.py +285 -0
  308. parrot/models/responses.py +938 -0
  309. parrot/notifications/__init__.py +743 -0
  310. parrot/openapi/__init__.py +3 -0
  311. parrot/openapi/components.yaml +641 -0
  312. parrot/openapi/config.py +322 -0
  313. parrot/outputs/__init__.py +32 -0
  314. parrot/outputs/formats/__init__.py +108 -0
  315. parrot/outputs/formats/altair.py +359 -0
  316. parrot/outputs/formats/application.py +122 -0
  317. parrot/outputs/formats/base.py +351 -0
  318. parrot/outputs/formats/bokeh.py +356 -0
  319. parrot/outputs/formats/card.py +424 -0
  320. parrot/outputs/formats/chart.py +436 -0
  321. parrot/outputs/formats/d3.py +255 -0
  322. parrot/outputs/formats/echarts.py +310 -0
  323. parrot/outputs/formats/generators/__init__.py +0 -0
  324. parrot/outputs/formats/generators/abstract.py +61 -0
  325. parrot/outputs/formats/generators/panel.py +145 -0
  326. parrot/outputs/formats/generators/streamlit.py +86 -0
  327. parrot/outputs/formats/generators/terminal.py +63 -0
  328. parrot/outputs/formats/holoviews.py +310 -0
  329. parrot/outputs/formats/html.py +147 -0
  330. parrot/outputs/formats/jinja2.py +46 -0
  331. parrot/outputs/formats/json.py +87 -0
  332. parrot/outputs/formats/map.py +933 -0
  333. parrot/outputs/formats/markdown.py +172 -0
  334. parrot/outputs/formats/matplotlib.py +237 -0
  335. parrot/outputs/formats/mixins/__init__.py +0 -0
  336. parrot/outputs/formats/mixins/emaps.py +855 -0
  337. parrot/outputs/formats/plotly.py +341 -0
  338. parrot/outputs/formats/seaborn.py +310 -0
  339. parrot/outputs/formats/table.py +397 -0
  340. parrot/outputs/formats/template_report.py +138 -0
  341. parrot/outputs/formats/yaml.py +125 -0
  342. parrot/outputs/formatter.py +152 -0
  343. parrot/outputs/templates/__init__.py +95 -0
  344. parrot/pipelines/__init__.py +0 -0
  345. parrot/pipelines/abstract.py +210 -0
  346. parrot/pipelines/detector.py +124 -0
  347. parrot/pipelines/models.py +90 -0
  348. parrot/pipelines/planogram.py +3002 -0
  349. parrot/pipelines/table.sql +97 -0
  350. parrot/plugins/__init__.py +106 -0
  351. parrot/plugins/importer.py +80 -0
  352. parrot/py.typed +0 -0
  353. parrot/registry/__init__.py +18 -0
  354. parrot/registry/registry.py +594 -0
  355. parrot/scheduler/__init__.py +1189 -0
  356. parrot/scheduler/models.py +60 -0
  357. parrot/security/__init__.py +16 -0
  358. parrot/security/prompt_injection.py +268 -0
  359. parrot/security/security_events.sql +25 -0
  360. parrot/services/__init__.py +1 -0
  361. parrot/services/mcp/__init__.py +8 -0
  362. parrot/services/mcp/config.py +13 -0
  363. parrot/services/mcp/server.py +295 -0
  364. parrot/services/o365_remote_auth.py +235 -0
  365. parrot/stores/__init__.py +7 -0
  366. parrot/stores/abstract.py +352 -0
  367. parrot/stores/arango.py +1090 -0
  368. parrot/stores/bigquery.py +1377 -0
  369. parrot/stores/cache.py +106 -0
  370. parrot/stores/empty.py +10 -0
  371. parrot/stores/faiss_store.py +1157 -0
  372. parrot/stores/kb/__init__.py +9 -0
  373. parrot/stores/kb/abstract.py +68 -0
  374. parrot/stores/kb/cache.py +165 -0
  375. parrot/stores/kb/doc.py +325 -0
  376. parrot/stores/kb/hierarchy.py +346 -0
  377. parrot/stores/kb/local.py +457 -0
  378. parrot/stores/kb/prompt.py +28 -0
  379. parrot/stores/kb/redis.py +659 -0
  380. parrot/stores/kb/store.py +115 -0
  381. parrot/stores/kb/user.py +374 -0
  382. parrot/stores/models.py +59 -0
  383. parrot/stores/pgvector.py +3 -0
  384. parrot/stores/postgres.py +2853 -0
  385. parrot/stores/utils/__init__.py +0 -0
  386. parrot/stores/utils/chunking.py +197 -0
  387. parrot/telemetry/__init__.py +3 -0
  388. parrot/telemetry/mixin.py +111 -0
  389. parrot/template/__init__.py +3 -0
  390. parrot/template/engine.py +259 -0
  391. parrot/tools/__init__.py +23 -0
  392. parrot/tools/abstract.py +644 -0
  393. parrot/tools/agent.py +363 -0
  394. parrot/tools/arangodbsearch.py +537 -0
  395. parrot/tools/arxiv_tool.py +188 -0
  396. parrot/tools/calculator/__init__.py +3 -0
  397. parrot/tools/calculator/operations/__init__.py +38 -0
  398. parrot/tools/calculator/operations/calculus.py +80 -0
  399. parrot/tools/calculator/operations/statistics.py +76 -0
  400. parrot/tools/calculator/tool.py +150 -0
  401. parrot/tools/cloudwatch.py +988 -0
  402. parrot/tools/codeinterpreter/__init__.py +127 -0
  403. parrot/tools/codeinterpreter/executor.py +371 -0
  404. parrot/tools/codeinterpreter/internals.py +473 -0
  405. parrot/tools/codeinterpreter/models.py +643 -0
  406. parrot/tools/codeinterpreter/prompts.py +224 -0
  407. parrot/tools/codeinterpreter/tool.py +664 -0
  408. parrot/tools/company_info/__init__.py +6 -0
  409. parrot/tools/company_info/tool.py +1138 -0
  410. parrot/tools/correlationanalysis.py +437 -0
  411. parrot/tools/database/abstract.py +286 -0
  412. parrot/tools/database/bq.py +115 -0
  413. parrot/tools/database/cache.py +284 -0
  414. parrot/tools/database/models.py +95 -0
  415. parrot/tools/database/pg.py +343 -0
  416. parrot/tools/databasequery.py +1159 -0
  417. parrot/tools/db.py +1800 -0
  418. parrot/tools/ddgo.py +370 -0
  419. parrot/tools/decorators.py +271 -0
  420. parrot/tools/dftohtml.py +282 -0
  421. parrot/tools/document.py +549 -0
  422. parrot/tools/ecs.py +819 -0
  423. parrot/tools/edareport.py +368 -0
  424. parrot/tools/elasticsearch.py +1049 -0
  425. parrot/tools/employees.py +462 -0
  426. parrot/tools/epson/__init__.py +96 -0
  427. parrot/tools/excel.py +683 -0
  428. parrot/tools/file/__init__.py +13 -0
  429. parrot/tools/file/abstract.py +76 -0
  430. parrot/tools/file/gcs.py +378 -0
  431. parrot/tools/file/local.py +284 -0
  432. parrot/tools/file/s3.py +511 -0
  433. parrot/tools/file/tmp.py +309 -0
  434. parrot/tools/file/tool.py +501 -0
  435. parrot/tools/file_reader.py +129 -0
  436. parrot/tools/flowtask/__init__.py +19 -0
  437. parrot/tools/flowtask/tool.py +761 -0
  438. parrot/tools/gittoolkit.py +508 -0
  439. parrot/tools/google/__init__.py +18 -0
  440. parrot/tools/google/base.py +169 -0
  441. parrot/tools/google/tools.py +1251 -0
  442. parrot/tools/googlelocation.py +5 -0
  443. parrot/tools/googleroutes.py +5 -0
  444. parrot/tools/googlesearch.py +5 -0
  445. parrot/tools/googlesitesearch.py +5 -0
  446. parrot/tools/googlevoice.py +2 -0
  447. parrot/tools/gvoice.py +695 -0
  448. parrot/tools/ibisworld/README.md +225 -0
  449. parrot/tools/ibisworld/__init__.py +11 -0
  450. parrot/tools/ibisworld/tool.py +366 -0
  451. parrot/tools/jiratoolkit.py +1718 -0
  452. parrot/tools/manager.py +1098 -0
  453. parrot/tools/math.py +152 -0
  454. parrot/tools/metadata.py +476 -0
  455. parrot/tools/msteams.py +1621 -0
  456. parrot/tools/msword.py +635 -0
  457. parrot/tools/multidb.py +580 -0
  458. parrot/tools/multistoresearch.py +369 -0
  459. parrot/tools/networkninja.py +167 -0
  460. parrot/tools/nextstop/__init__.py +4 -0
  461. parrot/tools/nextstop/base.py +286 -0
  462. parrot/tools/nextstop/employee.py +733 -0
  463. parrot/tools/nextstop/store.py +462 -0
  464. parrot/tools/notification.py +435 -0
  465. parrot/tools/o365/__init__.py +42 -0
  466. parrot/tools/o365/base.py +295 -0
  467. parrot/tools/o365/bundle.py +522 -0
  468. parrot/tools/o365/events.py +554 -0
  469. parrot/tools/o365/mail.py +992 -0
  470. parrot/tools/o365/onedrive.py +497 -0
  471. parrot/tools/o365/sharepoint.py +641 -0
  472. parrot/tools/openapi_toolkit.py +904 -0
  473. parrot/tools/openweather.py +527 -0
  474. parrot/tools/pdfprint.py +1001 -0
  475. parrot/tools/powerbi.py +518 -0
  476. parrot/tools/powerpoint.py +1113 -0
  477. parrot/tools/pricestool.py +146 -0
  478. parrot/tools/products/__init__.py +246 -0
  479. parrot/tools/prophet_tool.py +171 -0
  480. parrot/tools/pythonpandas.py +630 -0
  481. parrot/tools/pythonrepl.py +910 -0
  482. parrot/tools/qsource.py +436 -0
  483. parrot/tools/querytoolkit.py +395 -0
  484. parrot/tools/quickeda.py +827 -0
  485. parrot/tools/resttool.py +553 -0
  486. parrot/tools/retail/__init__.py +0 -0
  487. parrot/tools/retail/bby.py +528 -0
  488. parrot/tools/sandboxtool.py +703 -0
  489. parrot/tools/sassie/__init__.py +352 -0
  490. parrot/tools/scraping/__init__.py +7 -0
  491. parrot/tools/scraping/docs/select.md +466 -0
  492. parrot/tools/scraping/documentation.md +1278 -0
  493. parrot/tools/scraping/driver.py +436 -0
  494. parrot/tools/scraping/models.py +576 -0
  495. parrot/tools/scraping/options.py +85 -0
  496. parrot/tools/scraping/orchestrator.py +517 -0
  497. parrot/tools/scraping/readme.md +740 -0
  498. parrot/tools/scraping/tool.py +3115 -0
  499. parrot/tools/seasonaldetection.py +642 -0
  500. parrot/tools/shell_tool/__init__.py +5 -0
  501. parrot/tools/shell_tool/actions.py +408 -0
  502. parrot/tools/shell_tool/engine.py +155 -0
  503. parrot/tools/shell_tool/models.py +322 -0
  504. parrot/tools/shell_tool/tool.py +442 -0
  505. parrot/tools/site_search.py +214 -0
  506. parrot/tools/textfile.py +418 -0
  507. parrot/tools/think.py +378 -0
  508. parrot/tools/toolkit.py +298 -0
  509. parrot/tools/webapp_tool.py +187 -0
  510. parrot/tools/whatif.py +1279 -0
  511. parrot/tools/workday/MULTI_WSDL_EXAMPLE.md +249 -0
  512. parrot/tools/workday/__init__.py +6 -0
  513. parrot/tools/workday/models.py +1389 -0
  514. parrot/tools/workday/tool.py +1293 -0
  515. parrot/tools/yfinance_tool.py +306 -0
  516. parrot/tools/zipcode.py +217 -0
  517. parrot/utils/__init__.py +2 -0
  518. parrot/utils/helpers.py +73 -0
  519. parrot/utils/parsers/__init__.py +5 -0
  520. parrot/utils/parsers/toml.c +12078 -0
  521. parrot/utils/parsers/toml.cpython-310-x86_64-linux-gnu.so +0 -0
  522. parrot/utils/parsers/toml.pyx +21 -0
  523. parrot/utils/toml.py +11 -0
  524. parrot/utils/types.cpp +20936 -0
  525. parrot/utils/types.cpython-310-x86_64-linux-gnu.so +0 -0
  526. parrot/utils/types.pyx +213 -0
  527. parrot/utils/uv.py +11 -0
  528. parrot/version.py +10 -0
  529. parrot/yaml-rs/Cargo.lock +350 -0
  530. parrot/yaml-rs/Cargo.toml +19 -0
  531. parrot/yaml-rs/pyproject.toml +19 -0
  532. parrot/yaml-rs/python/yaml_rs/__init__.py +81 -0
  533. parrot/yaml-rs/src/lib.rs +222 -0
  534. requirements/docker-compose.yml +24 -0
  535. requirements/requirements-dev.txt +21 -0
@@ -0,0 +1,4182 @@
1
+ {
2
+ "name": "agent-crew-builder",
3
+ "version": "0.2.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "agent-crew-builder",
9
+ "version": "0.2.0",
10
+ "hasInstallScript": true,
11
+ "dependencies": {
12
+ "@xyflow/svelte": "^0.1.0",
13
+ "axios": "^1.7.9",
14
+ "daisyui": "^5.0.0",
15
+ "echarts": "^6.0.0",
16
+ "gridstack": "^12.3.3",
17
+ "lodash-es": "^4.17.21",
18
+ "svelte-vega": "^4.0.1"
19
+ },
20
+ "devDependencies": {
21
+ "@sveltejs/adapter-auto": "^3.2.1",
22
+ "@sveltejs/kit": "next",
23
+ "@sveltejs/vite-plugin-svelte": "^4.0.0-next.0",
24
+ "@tailwindcss/vite": "^4.0.0",
25
+ "prettier": "^3.4.2",
26
+ "prettier-plugin-svelte": "^3.3.3",
27
+ "prettier-plugin-tailwindcss": "^0.6.11",
28
+ "svelte": "^5.0.0-next.1",
29
+ "svelte-check": "^3.8.4",
30
+ "tailwindcss": "^4.0.0",
31
+ "tslib": "^2.8.1",
32
+ "typescript": "^5.6.3",
33
+ "vite": "^5.4.10"
34
+ }
35
+ },
36
+ "node_modules/@esbuild/aix-ppc64": {
37
+ "version": "0.21.5",
38
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
39
+ "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
40
+ "cpu": [
41
+ "ppc64"
42
+ ],
43
+ "dev": true,
44
+ "license": "MIT",
45
+ "optional": true,
46
+ "os": [
47
+ "aix"
48
+ ],
49
+ "engines": {
50
+ "node": ">=12"
51
+ }
52
+ },
53
+ "node_modules/@esbuild/android-arm": {
54
+ "version": "0.21.5",
55
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
56
+ "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
57
+ "cpu": [
58
+ "arm"
59
+ ],
60
+ "dev": true,
61
+ "license": "MIT",
62
+ "optional": true,
63
+ "os": [
64
+ "android"
65
+ ],
66
+ "engines": {
67
+ "node": ">=12"
68
+ }
69
+ },
70
+ "node_modules/@esbuild/android-arm64": {
71
+ "version": "0.21.5",
72
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
73
+ "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
74
+ "cpu": [
75
+ "arm64"
76
+ ],
77
+ "dev": true,
78
+ "license": "MIT",
79
+ "optional": true,
80
+ "os": [
81
+ "android"
82
+ ],
83
+ "engines": {
84
+ "node": ">=12"
85
+ }
86
+ },
87
+ "node_modules/@esbuild/android-x64": {
88
+ "version": "0.21.5",
89
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
90
+ "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
91
+ "cpu": [
92
+ "x64"
93
+ ],
94
+ "dev": true,
95
+ "license": "MIT",
96
+ "optional": true,
97
+ "os": [
98
+ "android"
99
+ ],
100
+ "engines": {
101
+ "node": ">=12"
102
+ }
103
+ },
104
+ "node_modules/@esbuild/darwin-arm64": {
105
+ "version": "0.21.5",
106
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
107
+ "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
108
+ "cpu": [
109
+ "arm64"
110
+ ],
111
+ "dev": true,
112
+ "license": "MIT",
113
+ "optional": true,
114
+ "os": [
115
+ "darwin"
116
+ ],
117
+ "engines": {
118
+ "node": ">=12"
119
+ }
120
+ },
121
+ "node_modules/@esbuild/darwin-x64": {
122
+ "version": "0.21.5",
123
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
124
+ "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
125
+ "cpu": [
126
+ "x64"
127
+ ],
128
+ "dev": true,
129
+ "license": "MIT",
130
+ "optional": true,
131
+ "os": [
132
+ "darwin"
133
+ ],
134
+ "engines": {
135
+ "node": ">=12"
136
+ }
137
+ },
138
+ "node_modules/@esbuild/freebsd-arm64": {
139
+ "version": "0.21.5",
140
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
141
+ "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
142
+ "cpu": [
143
+ "arm64"
144
+ ],
145
+ "dev": true,
146
+ "license": "MIT",
147
+ "optional": true,
148
+ "os": [
149
+ "freebsd"
150
+ ],
151
+ "engines": {
152
+ "node": ">=12"
153
+ }
154
+ },
155
+ "node_modules/@esbuild/freebsd-x64": {
156
+ "version": "0.21.5",
157
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
158
+ "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
159
+ "cpu": [
160
+ "x64"
161
+ ],
162
+ "dev": true,
163
+ "license": "MIT",
164
+ "optional": true,
165
+ "os": [
166
+ "freebsd"
167
+ ],
168
+ "engines": {
169
+ "node": ">=12"
170
+ }
171
+ },
172
+ "node_modules/@esbuild/linux-arm": {
173
+ "version": "0.21.5",
174
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
175
+ "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
176
+ "cpu": [
177
+ "arm"
178
+ ],
179
+ "dev": true,
180
+ "license": "MIT",
181
+ "optional": true,
182
+ "os": [
183
+ "linux"
184
+ ],
185
+ "engines": {
186
+ "node": ">=12"
187
+ }
188
+ },
189
+ "node_modules/@esbuild/linux-arm64": {
190
+ "version": "0.21.5",
191
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
192
+ "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
193
+ "cpu": [
194
+ "arm64"
195
+ ],
196
+ "dev": true,
197
+ "license": "MIT",
198
+ "optional": true,
199
+ "os": [
200
+ "linux"
201
+ ],
202
+ "engines": {
203
+ "node": ">=12"
204
+ }
205
+ },
206
+ "node_modules/@esbuild/linux-ia32": {
207
+ "version": "0.21.5",
208
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
209
+ "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
210
+ "cpu": [
211
+ "ia32"
212
+ ],
213
+ "dev": true,
214
+ "license": "MIT",
215
+ "optional": true,
216
+ "os": [
217
+ "linux"
218
+ ],
219
+ "engines": {
220
+ "node": ">=12"
221
+ }
222
+ },
223
+ "node_modules/@esbuild/linux-loong64": {
224
+ "version": "0.21.5",
225
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
226
+ "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
227
+ "cpu": [
228
+ "loong64"
229
+ ],
230
+ "dev": true,
231
+ "license": "MIT",
232
+ "optional": true,
233
+ "os": [
234
+ "linux"
235
+ ],
236
+ "engines": {
237
+ "node": ">=12"
238
+ }
239
+ },
240
+ "node_modules/@esbuild/linux-mips64el": {
241
+ "version": "0.21.5",
242
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
243
+ "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
244
+ "cpu": [
245
+ "mips64el"
246
+ ],
247
+ "dev": true,
248
+ "license": "MIT",
249
+ "optional": true,
250
+ "os": [
251
+ "linux"
252
+ ],
253
+ "engines": {
254
+ "node": ">=12"
255
+ }
256
+ },
257
+ "node_modules/@esbuild/linux-ppc64": {
258
+ "version": "0.21.5",
259
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
260
+ "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
261
+ "cpu": [
262
+ "ppc64"
263
+ ],
264
+ "dev": true,
265
+ "license": "MIT",
266
+ "optional": true,
267
+ "os": [
268
+ "linux"
269
+ ],
270
+ "engines": {
271
+ "node": ">=12"
272
+ }
273
+ },
274
+ "node_modules/@esbuild/linux-riscv64": {
275
+ "version": "0.21.5",
276
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
277
+ "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
278
+ "cpu": [
279
+ "riscv64"
280
+ ],
281
+ "dev": true,
282
+ "license": "MIT",
283
+ "optional": true,
284
+ "os": [
285
+ "linux"
286
+ ],
287
+ "engines": {
288
+ "node": ">=12"
289
+ }
290
+ },
291
+ "node_modules/@esbuild/linux-s390x": {
292
+ "version": "0.21.5",
293
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
294
+ "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
295
+ "cpu": [
296
+ "s390x"
297
+ ],
298
+ "dev": true,
299
+ "license": "MIT",
300
+ "optional": true,
301
+ "os": [
302
+ "linux"
303
+ ],
304
+ "engines": {
305
+ "node": ">=12"
306
+ }
307
+ },
308
+ "node_modules/@esbuild/linux-x64": {
309
+ "version": "0.21.5",
310
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
311
+ "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
312
+ "cpu": [
313
+ "x64"
314
+ ],
315
+ "dev": true,
316
+ "license": "MIT",
317
+ "optional": true,
318
+ "os": [
319
+ "linux"
320
+ ],
321
+ "engines": {
322
+ "node": ">=12"
323
+ }
324
+ },
325
+ "node_modules/@esbuild/netbsd-x64": {
326
+ "version": "0.21.5",
327
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
328
+ "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
329
+ "cpu": [
330
+ "x64"
331
+ ],
332
+ "dev": true,
333
+ "license": "MIT",
334
+ "optional": true,
335
+ "os": [
336
+ "netbsd"
337
+ ],
338
+ "engines": {
339
+ "node": ">=12"
340
+ }
341
+ },
342
+ "node_modules/@esbuild/openbsd-x64": {
343
+ "version": "0.21.5",
344
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
345
+ "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
346
+ "cpu": [
347
+ "x64"
348
+ ],
349
+ "dev": true,
350
+ "license": "MIT",
351
+ "optional": true,
352
+ "os": [
353
+ "openbsd"
354
+ ],
355
+ "engines": {
356
+ "node": ">=12"
357
+ }
358
+ },
359
+ "node_modules/@esbuild/sunos-x64": {
360
+ "version": "0.21.5",
361
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
362
+ "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
363
+ "cpu": [
364
+ "x64"
365
+ ],
366
+ "dev": true,
367
+ "license": "MIT",
368
+ "optional": true,
369
+ "os": [
370
+ "sunos"
371
+ ],
372
+ "engines": {
373
+ "node": ">=12"
374
+ }
375
+ },
376
+ "node_modules/@esbuild/win32-arm64": {
377
+ "version": "0.21.5",
378
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
379
+ "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
380
+ "cpu": [
381
+ "arm64"
382
+ ],
383
+ "dev": true,
384
+ "license": "MIT",
385
+ "optional": true,
386
+ "os": [
387
+ "win32"
388
+ ],
389
+ "engines": {
390
+ "node": ">=12"
391
+ }
392
+ },
393
+ "node_modules/@esbuild/win32-ia32": {
394
+ "version": "0.21.5",
395
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
396
+ "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
397
+ "cpu": [
398
+ "ia32"
399
+ ],
400
+ "dev": true,
401
+ "license": "MIT",
402
+ "optional": true,
403
+ "os": [
404
+ "win32"
405
+ ],
406
+ "engines": {
407
+ "node": ">=12"
408
+ }
409
+ },
410
+ "node_modules/@esbuild/win32-x64": {
411
+ "version": "0.21.5",
412
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
413
+ "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
414
+ "cpu": [
415
+ "x64"
416
+ ],
417
+ "dev": true,
418
+ "license": "MIT",
419
+ "optional": true,
420
+ "os": [
421
+ "win32"
422
+ ],
423
+ "engines": {
424
+ "node": ">=12"
425
+ }
426
+ },
427
+ "node_modules/@isaacs/fs-minipass": {
428
+ "version": "4.0.1",
429
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
430
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
431
+ "dev": true,
432
+ "license": "ISC",
433
+ "dependencies": {
434
+ "minipass": "^7.0.4"
435
+ },
436
+ "engines": {
437
+ "node": ">=18.0.0"
438
+ }
439
+ },
440
+ "node_modules/@jridgewell/gen-mapping": {
441
+ "version": "0.3.13",
442
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
443
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
444
+ "license": "MIT",
445
+ "dependencies": {
446
+ "@jridgewell/sourcemap-codec": "^1.5.0",
447
+ "@jridgewell/trace-mapping": "^0.3.24"
448
+ }
449
+ },
450
+ "node_modules/@jridgewell/remapping": {
451
+ "version": "2.3.5",
452
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
453
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
454
+ "license": "MIT",
455
+ "dependencies": {
456
+ "@jridgewell/gen-mapping": "^0.3.5",
457
+ "@jridgewell/trace-mapping": "^0.3.24"
458
+ }
459
+ },
460
+ "node_modules/@jridgewell/resolve-uri": {
461
+ "version": "3.1.2",
462
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
463
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
464
+ "license": "MIT",
465
+ "engines": {
466
+ "node": ">=6.0.0"
467
+ }
468
+ },
469
+ "node_modules/@jridgewell/sourcemap-codec": {
470
+ "version": "1.5.5",
471
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
472
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
473
+ "license": "MIT"
474
+ },
475
+ "node_modules/@jridgewell/trace-mapping": {
476
+ "version": "0.3.31",
477
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
478
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
479
+ "license": "MIT",
480
+ "dependencies": {
481
+ "@jridgewell/resolve-uri": "^3.1.0",
482
+ "@jridgewell/sourcemap-codec": "^1.4.14"
483
+ }
484
+ },
485
+ "node_modules/@polka/url": {
486
+ "version": "1.0.0-next.29",
487
+ "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
488
+ "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
489
+ "dev": true,
490
+ "license": "MIT"
491
+ },
492
+ "node_modules/@rollup/rollup-android-arm-eabi": {
493
+ "version": "4.52.4",
494
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz",
495
+ "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==",
496
+ "cpu": [
497
+ "arm"
498
+ ],
499
+ "dev": true,
500
+ "license": "MIT",
501
+ "optional": true,
502
+ "os": [
503
+ "android"
504
+ ]
505
+ },
506
+ "node_modules/@rollup/rollup-android-arm64": {
507
+ "version": "4.52.4",
508
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz",
509
+ "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==",
510
+ "cpu": [
511
+ "arm64"
512
+ ],
513
+ "dev": true,
514
+ "license": "MIT",
515
+ "optional": true,
516
+ "os": [
517
+ "android"
518
+ ]
519
+ },
520
+ "node_modules/@rollup/rollup-darwin-arm64": {
521
+ "version": "4.52.4",
522
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz",
523
+ "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==",
524
+ "cpu": [
525
+ "arm64"
526
+ ],
527
+ "dev": true,
528
+ "license": "MIT",
529
+ "optional": true,
530
+ "os": [
531
+ "darwin"
532
+ ]
533
+ },
534
+ "node_modules/@rollup/rollup-darwin-x64": {
535
+ "version": "4.52.4",
536
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz",
537
+ "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==",
538
+ "cpu": [
539
+ "x64"
540
+ ],
541
+ "dev": true,
542
+ "license": "MIT",
543
+ "optional": true,
544
+ "os": [
545
+ "darwin"
546
+ ]
547
+ },
548
+ "node_modules/@rollup/rollup-freebsd-arm64": {
549
+ "version": "4.52.4",
550
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz",
551
+ "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==",
552
+ "cpu": [
553
+ "arm64"
554
+ ],
555
+ "dev": true,
556
+ "license": "MIT",
557
+ "optional": true,
558
+ "os": [
559
+ "freebsd"
560
+ ]
561
+ },
562
+ "node_modules/@rollup/rollup-freebsd-x64": {
563
+ "version": "4.52.4",
564
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz",
565
+ "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==",
566
+ "cpu": [
567
+ "x64"
568
+ ],
569
+ "dev": true,
570
+ "license": "MIT",
571
+ "optional": true,
572
+ "os": [
573
+ "freebsd"
574
+ ]
575
+ },
576
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
577
+ "version": "4.52.4",
578
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz",
579
+ "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==",
580
+ "cpu": [
581
+ "arm"
582
+ ],
583
+ "dev": true,
584
+ "license": "MIT",
585
+ "optional": true,
586
+ "os": [
587
+ "linux"
588
+ ]
589
+ },
590
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
591
+ "version": "4.52.4",
592
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz",
593
+ "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==",
594
+ "cpu": [
595
+ "arm"
596
+ ],
597
+ "dev": true,
598
+ "license": "MIT",
599
+ "optional": true,
600
+ "os": [
601
+ "linux"
602
+ ]
603
+ },
604
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
605
+ "version": "4.52.4",
606
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz",
607
+ "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==",
608
+ "cpu": [
609
+ "arm64"
610
+ ],
611
+ "dev": true,
612
+ "license": "MIT",
613
+ "optional": true,
614
+ "os": [
615
+ "linux"
616
+ ]
617
+ },
618
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
619
+ "version": "4.52.4",
620
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz",
621
+ "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==",
622
+ "cpu": [
623
+ "arm64"
624
+ ],
625
+ "dev": true,
626
+ "license": "MIT",
627
+ "optional": true,
628
+ "os": [
629
+ "linux"
630
+ ]
631
+ },
632
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
633
+ "version": "4.52.4",
634
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz",
635
+ "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==",
636
+ "cpu": [
637
+ "loong64"
638
+ ],
639
+ "dev": true,
640
+ "license": "MIT",
641
+ "optional": true,
642
+ "os": [
643
+ "linux"
644
+ ]
645
+ },
646
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
647
+ "version": "4.52.4",
648
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz",
649
+ "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==",
650
+ "cpu": [
651
+ "ppc64"
652
+ ],
653
+ "dev": true,
654
+ "license": "MIT",
655
+ "optional": true,
656
+ "os": [
657
+ "linux"
658
+ ]
659
+ },
660
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
661
+ "version": "4.52.4",
662
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz",
663
+ "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==",
664
+ "cpu": [
665
+ "riscv64"
666
+ ],
667
+ "dev": true,
668
+ "license": "MIT",
669
+ "optional": true,
670
+ "os": [
671
+ "linux"
672
+ ]
673
+ },
674
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
675
+ "version": "4.52.4",
676
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz",
677
+ "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==",
678
+ "cpu": [
679
+ "riscv64"
680
+ ],
681
+ "dev": true,
682
+ "license": "MIT",
683
+ "optional": true,
684
+ "os": [
685
+ "linux"
686
+ ]
687
+ },
688
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
689
+ "version": "4.52.4",
690
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz",
691
+ "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==",
692
+ "cpu": [
693
+ "s390x"
694
+ ],
695
+ "dev": true,
696
+ "license": "MIT",
697
+ "optional": true,
698
+ "os": [
699
+ "linux"
700
+ ]
701
+ },
702
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
703
+ "version": "4.52.4",
704
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz",
705
+ "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==",
706
+ "cpu": [
707
+ "x64"
708
+ ],
709
+ "dev": true,
710
+ "license": "MIT",
711
+ "optional": true,
712
+ "os": [
713
+ "linux"
714
+ ]
715
+ },
716
+ "node_modules/@rollup/rollup-linux-x64-musl": {
717
+ "version": "4.52.4",
718
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz",
719
+ "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==",
720
+ "cpu": [
721
+ "x64"
722
+ ],
723
+ "dev": true,
724
+ "license": "MIT",
725
+ "optional": true,
726
+ "os": [
727
+ "linux"
728
+ ]
729
+ },
730
+ "node_modules/@rollup/rollup-openharmony-arm64": {
731
+ "version": "4.52.4",
732
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz",
733
+ "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==",
734
+ "cpu": [
735
+ "arm64"
736
+ ],
737
+ "dev": true,
738
+ "license": "MIT",
739
+ "optional": true,
740
+ "os": [
741
+ "openharmony"
742
+ ]
743
+ },
744
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
745
+ "version": "4.52.4",
746
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz",
747
+ "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==",
748
+ "cpu": [
749
+ "arm64"
750
+ ],
751
+ "dev": true,
752
+ "license": "MIT",
753
+ "optional": true,
754
+ "os": [
755
+ "win32"
756
+ ]
757
+ },
758
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
759
+ "version": "4.52.4",
760
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz",
761
+ "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==",
762
+ "cpu": [
763
+ "ia32"
764
+ ],
765
+ "dev": true,
766
+ "license": "MIT",
767
+ "optional": true,
768
+ "os": [
769
+ "win32"
770
+ ]
771
+ },
772
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
773
+ "version": "4.52.4",
774
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz",
775
+ "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==",
776
+ "cpu": [
777
+ "x64"
778
+ ],
779
+ "dev": true,
780
+ "license": "MIT",
781
+ "optional": true,
782
+ "os": [
783
+ "win32"
784
+ ]
785
+ },
786
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
787
+ "version": "4.52.4",
788
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz",
789
+ "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==",
790
+ "cpu": [
791
+ "x64"
792
+ ],
793
+ "dev": true,
794
+ "license": "MIT",
795
+ "optional": true,
796
+ "os": [
797
+ "win32"
798
+ ]
799
+ },
800
+ "node_modules/@standard-schema/spec": {
801
+ "version": "1.0.0",
802
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz",
803
+ "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==",
804
+ "dev": true,
805
+ "license": "MIT"
806
+ },
807
+ "node_modules/@svelte-put/shortcut": {
808
+ "version": "3.1.1",
809
+ "resolved": "https://registry.npmjs.org/@svelte-put/shortcut/-/shortcut-3.1.1.tgz",
810
+ "integrity": "sha512-2L5EYTZXiaKvbEelVkg5znxqvfZGZai3m97+cAiUBhLZwXnGtviTDpHxOoZBsqz41szlfRMcamW/8o0+fbW3ZQ==",
811
+ "license": "MIT",
812
+ "peerDependencies": {
813
+ "svelte": "^3.55.0 || ^4.0.0 || ^5.0.0"
814
+ }
815
+ },
816
+ "node_modules/@sveltejs/acorn-typescript": {
817
+ "version": "1.0.6",
818
+ "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.6.tgz",
819
+ "integrity": "sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==",
820
+ "license": "MIT",
821
+ "peerDependencies": {
822
+ "acorn": "^8.9.0"
823
+ }
824
+ },
825
+ "node_modules/@sveltejs/adapter-auto": {
826
+ "version": "3.3.1",
827
+ "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-3.3.1.tgz",
828
+ "integrity": "sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==",
829
+ "dev": true,
830
+ "license": "MIT",
831
+ "dependencies": {
832
+ "import-meta-resolve": "^4.1.0"
833
+ },
834
+ "peerDependencies": {
835
+ "@sveltejs/kit": "^2.0.0"
836
+ }
837
+ },
838
+ "node_modules/@sveltejs/kit": {
839
+ "version": "2.46.5",
840
+ "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.46.5.tgz",
841
+ "integrity": "sha512-7TSvMrCdmig5TMyYDW876C5FljhA0wlGixtvASCiqUqtLfmyEEpaysXjC7GhR5mWcGRrCGF+L2Bl1eEaW1wTCA==",
842
+ "dev": true,
843
+ "license": "MIT",
844
+ "peer": true,
845
+ "dependencies": {
846
+ "@standard-schema/spec": "^1.0.0",
847
+ "@sveltejs/acorn-typescript": "^1.0.5",
848
+ "@types/cookie": "^0.6.0",
849
+ "acorn": "^8.14.1",
850
+ "cookie": "^0.6.0",
851
+ "devalue": "^5.3.2",
852
+ "esm-env": "^1.2.2",
853
+ "kleur": "^4.1.5",
854
+ "magic-string": "^0.30.5",
855
+ "mrmime": "^2.0.0",
856
+ "sade": "^1.8.1",
857
+ "set-cookie-parser": "^2.6.0",
858
+ "sirv": "^3.0.0"
859
+ },
860
+ "bin": {
861
+ "svelte-kit": "svelte-kit.js"
862
+ },
863
+ "engines": {
864
+ "node": ">=18.13"
865
+ },
866
+ "peerDependencies": {
867
+ "@opentelemetry/api": "^1.0.0",
868
+ "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0",
869
+ "svelte": "^4.0.0 || ^5.0.0-next.0",
870
+ "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0"
871
+ },
872
+ "peerDependenciesMeta": {
873
+ "@opentelemetry/api": {
874
+ "optional": true
875
+ }
876
+ }
877
+ },
878
+ "node_modules/@sveltejs/vite-plugin-svelte": {
879
+ "version": "4.0.4",
880
+ "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-4.0.4.tgz",
881
+ "integrity": "sha512-0ba1RQ/PHen5FGpdSrW7Y3fAMQjrXantECALeOiOdBdzR5+5vPP6HVZRLmZaQL+W8m++o+haIAKq5qT+MiZ7VA==",
882
+ "dev": true,
883
+ "license": "MIT",
884
+ "peer": true,
885
+ "dependencies": {
886
+ "@sveltejs/vite-plugin-svelte-inspector": "^3.0.0-next.0||^3.0.0",
887
+ "debug": "^4.3.7",
888
+ "deepmerge": "^4.3.1",
889
+ "kleur": "^4.1.5",
890
+ "magic-string": "^0.30.12",
891
+ "vitefu": "^1.0.3"
892
+ },
893
+ "engines": {
894
+ "node": "^18.0.0 || ^20.0.0 || >=22"
895
+ },
896
+ "peerDependencies": {
897
+ "svelte": "^5.0.0-next.96 || ^5.0.0",
898
+ "vite": "^5.0.0"
899
+ }
900
+ },
901
+ "node_modules/@sveltejs/vite-plugin-svelte-inspector": {
902
+ "version": "3.0.1",
903
+ "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-3.0.1.tgz",
904
+ "integrity": "sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==",
905
+ "dev": true,
906
+ "license": "MIT",
907
+ "dependencies": {
908
+ "debug": "^4.3.7"
909
+ },
910
+ "engines": {
911
+ "node": "^18.0.0 || ^20.0.0 || >=22"
912
+ },
913
+ "peerDependencies": {
914
+ "@sveltejs/vite-plugin-svelte": "^4.0.0-next.0||^4.0.0",
915
+ "svelte": "^5.0.0-next.96 || ^5.0.0",
916
+ "vite": "^5.0.0"
917
+ }
918
+ },
919
+ "node_modules/@tailwindcss/node": {
920
+ "version": "4.1.14",
921
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.14.tgz",
922
+ "integrity": "sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==",
923
+ "dev": true,
924
+ "license": "MIT",
925
+ "dependencies": {
926
+ "@jridgewell/remapping": "^2.3.4",
927
+ "enhanced-resolve": "^5.18.3",
928
+ "jiti": "^2.6.0",
929
+ "lightningcss": "1.30.1",
930
+ "magic-string": "^0.30.19",
931
+ "source-map-js": "^1.2.1",
932
+ "tailwindcss": "4.1.14"
933
+ }
934
+ },
935
+ "node_modules/@tailwindcss/oxide": {
936
+ "version": "4.1.14",
937
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.14.tgz",
938
+ "integrity": "sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==",
939
+ "dev": true,
940
+ "hasInstallScript": true,
941
+ "license": "MIT",
942
+ "dependencies": {
943
+ "detect-libc": "^2.0.4",
944
+ "tar": "^7.5.1"
945
+ },
946
+ "engines": {
947
+ "node": ">= 10"
948
+ },
949
+ "optionalDependencies": {
950
+ "@tailwindcss/oxide-android-arm64": "4.1.14",
951
+ "@tailwindcss/oxide-darwin-arm64": "4.1.14",
952
+ "@tailwindcss/oxide-darwin-x64": "4.1.14",
953
+ "@tailwindcss/oxide-freebsd-x64": "4.1.14",
954
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.14",
955
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.14",
956
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.14",
957
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.14",
958
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.14",
959
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.14",
960
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.14",
961
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.14"
962
+ }
963
+ },
964
+ "node_modules/@tailwindcss/oxide-android-arm64": {
965
+ "version": "4.1.14",
966
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.14.tgz",
967
+ "integrity": "sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==",
968
+ "cpu": [
969
+ "arm64"
970
+ ],
971
+ "dev": true,
972
+ "license": "MIT",
973
+ "optional": true,
974
+ "os": [
975
+ "android"
976
+ ],
977
+ "engines": {
978
+ "node": ">= 10"
979
+ }
980
+ },
981
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
982
+ "version": "4.1.14",
983
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.14.tgz",
984
+ "integrity": "sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==",
985
+ "cpu": [
986
+ "arm64"
987
+ ],
988
+ "dev": true,
989
+ "license": "MIT",
990
+ "optional": true,
991
+ "os": [
992
+ "darwin"
993
+ ],
994
+ "engines": {
995
+ "node": ">= 10"
996
+ }
997
+ },
998
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
999
+ "version": "4.1.14",
1000
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.14.tgz",
1001
+ "integrity": "sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==",
1002
+ "cpu": [
1003
+ "x64"
1004
+ ],
1005
+ "dev": true,
1006
+ "license": "MIT",
1007
+ "optional": true,
1008
+ "os": [
1009
+ "darwin"
1010
+ ],
1011
+ "engines": {
1012
+ "node": ">= 10"
1013
+ }
1014
+ },
1015
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1016
+ "version": "4.1.14",
1017
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.14.tgz",
1018
+ "integrity": "sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==",
1019
+ "cpu": [
1020
+ "x64"
1021
+ ],
1022
+ "dev": true,
1023
+ "license": "MIT",
1024
+ "optional": true,
1025
+ "os": [
1026
+ "freebsd"
1027
+ ],
1028
+ "engines": {
1029
+ "node": ">= 10"
1030
+ }
1031
+ },
1032
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1033
+ "version": "4.1.14",
1034
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.14.tgz",
1035
+ "integrity": "sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==",
1036
+ "cpu": [
1037
+ "arm"
1038
+ ],
1039
+ "dev": true,
1040
+ "license": "MIT",
1041
+ "optional": true,
1042
+ "os": [
1043
+ "linux"
1044
+ ],
1045
+ "engines": {
1046
+ "node": ">= 10"
1047
+ }
1048
+ },
1049
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1050
+ "version": "4.1.14",
1051
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.14.tgz",
1052
+ "integrity": "sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==",
1053
+ "cpu": [
1054
+ "arm64"
1055
+ ],
1056
+ "dev": true,
1057
+ "license": "MIT",
1058
+ "optional": true,
1059
+ "os": [
1060
+ "linux"
1061
+ ],
1062
+ "engines": {
1063
+ "node": ">= 10"
1064
+ }
1065
+ },
1066
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1067
+ "version": "4.1.14",
1068
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.14.tgz",
1069
+ "integrity": "sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==",
1070
+ "cpu": [
1071
+ "arm64"
1072
+ ],
1073
+ "dev": true,
1074
+ "license": "MIT",
1075
+ "optional": true,
1076
+ "os": [
1077
+ "linux"
1078
+ ],
1079
+ "engines": {
1080
+ "node": ">= 10"
1081
+ }
1082
+ },
1083
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1084
+ "version": "4.1.14",
1085
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.14.tgz",
1086
+ "integrity": "sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==",
1087
+ "cpu": [
1088
+ "x64"
1089
+ ],
1090
+ "dev": true,
1091
+ "license": "MIT",
1092
+ "optional": true,
1093
+ "os": [
1094
+ "linux"
1095
+ ],
1096
+ "engines": {
1097
+ "node": ">= 10"
1098
+ }
1099
+ },
1100
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1101
+ "version": "4.1.14",
1102
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.14.tgz",
1103
+ "integrity": "sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==",
1104
+ "cpu": [
1105
+ "x64"
1106
+ ],
1107
+ "dev": true,
1108
+ "license": "MIT",
1109
+ "optional": true,
1110
+ "os": [
1111
+ "linux"
1112
+ ],
1113
+ "engines": {
1114
+ "node": ">= 10"
1115
+ }
1116
+ },
1117
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1118
+ "version": "4.1.14",
1119
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.14.tgz",
1120
+ "integrity": "sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==",
1121
+ "bundleDependencies": [
1122
+ "@napi-rs/wasm-runtime",
1123
+ "@emnapi/core",
1124
+ "@emnapi/runtime",
1125
+ "@tybys/wasm-util",
1126
+ "@emnapi/wasi-threads",
1127
+ "tslib"
1128
+ ],
1129
+ "cpu": [
1130
+ "wasm32"
1131
+ ],
1132
+ "dev": true,
1133
+ "license": "MIT",
1134
+ "optional": true,
1135
+ "dependencies": {
1136
+ "@emnapi/core": "^1.5.0",
1137
+ "@emnapi/runtime": "^1.5.0",
1138
+ "@emnapi/wasi-threads": "^1.1.0",
1139
+ "@napi-rs/wasm-runtime": "^1.0.5",
1140
+ "@tybys/wasm-util": "^0.10.1",
1141
+ "tslib": "^2.4.0"
1142
+ },
1143
+ "engines": {
1144
+ "node": ">=14.0.0"
1145
+ }
1146
+ },
1147
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1148
+ "version": "4.1.14",
1149
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.14.tgz",
1150
+ "integrity": "sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==",
1151
+ "cpu": [
1152
+ "arm64"
1153
+ ],
1154
+ "dev": true,
1155
+ "license": "MIT",
1156
+ "optional": true,
1157
+ "os": [
1158
+ "win32"
1159
+ ],
1160
+ "engines": {
1161
+ "node": ">= 10"
1162
+ }
1163
+ },
1164
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1165
+ "version": "4.1.14",
1166
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.14.tgz",
1167
+ "integrity": "sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==",
1168
+ "cpu": [
1169
+ "x64"
1170
+ ],
1171
+ "dev": true,
1172
+ "license": "MIT",
1173
+ "optional": true,
1174
+ "os": [
1175
+ "win32"
1176
+ ],
1177
+ "engines": {
1178
+ "node": ">= 10"
1179
+ }
1180
+ },
1181
+ "node_modules/@tailwindcss/vite": {
1182
+ "version": "4.1.14",
1183
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.14.tgz",
1184
+ "integrity": "sha512-BoFUoU0XqgCUS1UXWhmDJroKKhNXeDzD7/XwabjkDIAbMnc4ULn5e2FuEuBbhZ6ENZoSYzKlzvZ44Yr6EUDUSA==",
1185
+ "dev": true,
1186
+ "license": "MIT",
1187
+ "dependencies": {
1188
+ "@tailwindcss/node": "4.1.14",
1189
+ "@tailwindcss/oxide": "4.1.14",
1190
+ "tailwindcss": "4.1.14"
1191
+ },
1192
+ "peerDependencies": {
1193
+ "vite": "^5.2.0 || ^6 || ^7"
1194
+ }
1195
+ },
1196
+ "node_modules/@types/cookie": {
1197
+ "version": "0.6.0",
1198
+ "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz",
1199
+ "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==",
1200
+ "dev": true,
1201
+ "license": "MIT"
1202
+ },
1203
+ "node_modules/@types/d3-color": {
1204
+ "version": "3.1.3",
1205
+ "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
1206
+ "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
1207
+ "license": "MIT"
1208
+ },
1209
+ "node_modules/@types/d3-drag": {
1210
+ "version": "3.0.7",
1211
+ "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
1212
+ "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
1213
+ "license": "MIT",
1214
+ "dependencies": {
1215
+ "@types/d3-selection": "*"
1216
+ }
1217
+ },
1218
+ "node_modules/@types/d3-interpolate": {
1219
+ "version": "3.0.4",
1220
+ "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
1221
+ "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
1222
+ "license": "MIT",
1223
+ "dependencies": {
1224
+ "@types/d3-color": "*"
1225
+ }
1226
+ },
1227
+ "node_modules/@types/d3-selection": {
1228
+ "version": "3.0.11",
1229
+ "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
1230
+ "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
1231
+ "license": "MIT"
1232
+ },
1233
+ "node_modules/@types/d3-transition": {
1234
+ "version": "3.0.9",
1235
+ "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
1236
+ "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
1237
+ "license": "MIT",
1238
+ "dependencies": {
1239
+ "@types/d3-selection": "*"
1240
+ }
1241
+ },
1242
+ "node_modules/@types/d3-zoom": {
1243
+ "version": "3.0.8",
1244
+ "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
1245
+ "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
1246
+ "license": "MIT",
1247
+ "dependencies": {
1248
+ "@types/d3-interpolate": "*",
1249
+ "@types/d3-selection": "*"
1250
+ }
1251
+ },
1252
+ "node_modules/@types/estree": {
1253
+ "version": "1.0.8",
1254
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1255
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1256
+ "license": "MIT"
1257
+ },
1258
+ "node_modules/@types/geojson": {
1259
+ "version": "7946.0.16",
1260
+ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz",
1261
+ "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
1262
+ "license": "MIT"
1263
+ },
1264
+ "node_modules/@types/pug": {
1265
+ "version": "2.0.10",
1266
+ "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz",
1267
+ "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==",
1268
+ "dev": true,
1269
+ "license": "MIT"
1270
+ },
1271
+ "node_modules/@xyflow/svelte": {
1272
+ "version": "0.1.39",
1273
+ "resolved": "https://registry.npmjs.org/@xyflow/svelte/-/svelte-0.1.39.tgz",
1274
+ "integrity": "sha512-QZ5mzNysvJeJW7DxmqI4Urhhef9tclqtPr7WAS5zQF5Gk6k9INwzey4CYNtEZo8XMj9H8lzgoJRmgMPnJEc1kw==",
1275
+ "license": "MIT",
1276
+ "dependencies": {
1277
+ "@svelte-put/shortcut": "3.1.1",
1278
+ "@xyflow/system": "0.0.59",
1279
+ "classcat": "^5.0.4"
1280
+ },
1281
+ "peerDependencies": {
1282
+ "svelte": "^3.0.0 || ^4.0.0 || ^5.0.0"
1283
+ }
1284
+ },
1285
+ "node_modules/@xyflow/system": {
1286
+ "version": "0.0.59",
1287
+ "resolved": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.59.tgz",
1288
+ "integrity": "sha512-+xgqYhoBv5F10TQx0SiKZR/DcWtuxFYR+e/LluHb7DMtX4SsMDutZWEJ4da4fDco25jZxw5G9fOlmk7MWvYd5Q==",
1289
+ "license": "MIT",
1290
+ "dependencies": {
1291
+ "@types/d3-drag": "^3.0.7",
1292
+ "@types/d3-selection": "^3.0.10",
1293
+ "@types/d3-transition": "^3.0.8",
1294
+ "@types/d3-zoom": "^3.0.8",
1295
+ "d3-drag": "^3.0.0",
1296
+ "d3-selection": "^3.0.0",
1297
+ "d3-zoom": "^3.0.0"
1298
+ }
1299
+ },
1300
+ "node_modules/acorn": {
1301
+ "version": "8.15.0",
1302
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
1303
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
1304
+ "license": "MIT",
1305
+ "peer": true,
1306
+ "bin": {
1307
+ "acorn": "bin/acorn"
1308
+ },
1309
+ "engines": {
1310
+ "node": ">=0.4.0"
1311
+ }
1312
+ },
1313
+ "node_modules/ansi-regex": {
1314
+ "version": "6.2.2",
1315
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
1316
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
1317
+ "license": "MIT",
1318
+ "engines": {
1319
+ "node": ">=12"
1320
+ },
1321
+ "funding": {
1322
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
1323
+ }
1324
+ },
1325
+ "node_modules/ansi-styles": {
1326
+ "version": "6.2.3",
1327
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
1328
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
1329
+ "license": "MIT",
1330
+ "engines": {
1331
+ "node": ">=12"
1332
+ },
1333
+ "funding": {
1334
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1335
+ }
1336
+ },
1337
+ "node_modules/anymatch": {
1338
+ "version": "3.1.3",
1339
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1340
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1341
+ "dev": true,
1342
+ "license": "ISC",
1343
+ "dependencies": {
1344
+ "normalize-path": "^3.0.0",
1345
+ "picomatch": "^2.0.4"
1346
+ },
1347
+ "engines": {
1348
+ "node": ">= 8"
1349
+ }
1350
+ },
1351
+ "node_modules/aria-query": {
1352
+ "version": "5.3.2",
1353
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
1354
+ "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
1355
+ "license": "Apache-2.0",
1356
+ "engines": {
1357
+ "node": ">= 0.4"
1358
+ }
1359
+ },
1360
+ "node_modules/asynckit": {
1361
+ "version": "0.4.0",
1362
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
1363
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
1364
+ "license": "MIT"
1365
+ },
1366
+ "node_modules/axios": {
1367
+ "version": "1.12.2",
1368
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz",
1369
+ "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==",
1370
+ "license": "MIT",
1371
+ "dependencies": {
1372
+ "follow-redirects": "^1.15.6",
1373
+ "form-data": "^4.0.4",
1374
+ "proxy-from-env": "^1.1.0"
1375
+ }
1376
+ },
1377
+ "node_modules/axobject-query": {
1378
+ "version": "4.1.0",
1379
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
1380
+ "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
1381
+ "license": "Apache-2.0",
1382
+ "engines": {
1383
+ "node": ">= 0.4"
1384
+ }
1385
+ },
1386
+ "node_modules/balanced-match": {
1387
+ "version": "1.0.2",
1388
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1389
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1390
+ "dev": true,
1391
+ "license": "MIT"
1392
+ },
1393
+ "node_modules/binary-extensions": {
1394
+ "version": "2.3.0",
1395
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
1396
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
1397
+ "dev": true,
1398
+ "license": "MIT",
1399
+ "engines": {
1400
+ "node": ">=8"
1401
+ },
1402
+ "funding": {
1403
+ "url": "https://github.com/sponsors/sindresorhus"
1404
+ }
1405
+ },
1406
+ "node_modules/brace-expansion": {
1407
+ "version": "1.1.12",
1408
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
1409
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
1410
+ "dev": true,
1411
+ "license": "MIT",
1412
+ "dependencies": {
1413
+ "balanced-match": "^1.0.0",
1414
+ "concat-map": "0.0.1"
1415
+ }
1416
+ },
1417
+ "node_modules/braces": {
1418
+ "version": "3.0.3",
1419
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1420
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1421
+ "dev": true,
1422
+ "license": "MIT",
1423
+ "dependencies": {
1424
+ "fill-range": "^7.1.1"
1425
+ },
1426
+ "engines": {
1427
+ "node": ">=8"
1428
+ }
1429
+ },
1430
+ "node_modules/buffer-crc32": {
1431
+ "version": "1.0.0",
1432
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
1433
+ "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
1434
+ "dev": true,
1435
+ "license": "MIT",
1436
+ "engines": {
1437
+ "node": ">=8.0.0"
1438
+ }
1439
+ },
1440
+ "node_modules/call-bind-apply-helpers": {
1441
+ "version": "1.0.2",
1442
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
1443
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
1444
+ "license": "MIT",
1445
+ "dependencies": {
1446
+ "es-errors": "^1.3.0",
1447
+ "function-bind": "^1.1.2"
1448
+ },
1449
+ "engines": {
1450
+ "node": ">= 0.4"
1451
+ }
1452
+ },
1453
+ "node_modules/chokidar": {
1454
+ "version": "3.6.0",
1455
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
1456
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
1457
+ "dev": true,
1458
+ "license": "MIT",
1459
+ "dependencies": {
1460
+ "anymatch": "~3.1.2",
1461
+ "braces": "~3.0.2",
1462
+ "glob-parent": "~5.1.2",
1463
+ "is-binary-path": "~2.1.0",
1464
+ "is-glob": "~4.0.1",
1465
+ "normalize-path": "~3.0.0",
1466
+ "readdirp": "~3.6.0"
1467
+ },
1468
+ "engines": {
1469
+ "node": ">= 8.10.0"
1470
+ },
1471
+ "funding": {
1472
+ "url": "https://paulmillr.com/funding/"
1473
+ },
1474
+ "optionalDependencies": {
1475
+ "fsevents": "~2.3.2"
1476
+ }
1477
+ },
1478
+ "node_modules/chownr": {
1479
+ "version": "3.0.0",
1480
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
1481
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
1482
+ "dev": true,
1483
+ "license": "BlueOak-1.0.0",
1484
+ "engines": {
1485
+ "node": ">=18"
1486
+ }
1487
+ },
1488
+ "node_modules/classcat": {
1489
+ "version": "5.0.5",
1490
+ "resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz",
1491
+ "integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==",
1492
+ "license": "MIT"
1493
+ },
1494
+ "node_modules/cliui": {
1495
+ "version": "9.0.1",
1496
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-9.0.1.tgz",
1497
+ "integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==",
1498
+ "license": "ISC",
1499
+ "dependencies": {
1500
+ "string-width": "^7.2.0",
1501
+ "strip-ansi": "^7.1.0",
1502
+ "wrap-ansi": "^9.0.0"
1503
+ },
1504
+ "engines": {
1505
+ "node": ">=20"
1506
+ }
1507
+ },
1508
+ "node_modules/clsx": {
1509
+ "version": "2.1.1",
1510
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1511
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1512
+ "license": "MIT",
1513
+ "engines": {
1514
+ "node": ">=6"
1515
+ }
1516
+ },
1517
+ "node_modules/combined-stream": {
1518
+ "version": "1.0.8",
1519
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1520
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1521
+ "license": "MIT",
1522
+ "dependencies": {
1523
+ "delayed-stream": "~1.0.0"
1524
+ },
1525
+ "engines": {
1526
+ "node": ">= 0.8"
1527
+ }
1528
+ },
1529
+ "node_modules/commander": {
1530
+ "version": "7.2.0",
1531
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
1532
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
1533
+ "license": "MIT",
1534
+ "engines": {
1535
+ "node": ">= 10"
1536
+ }
1537
+ },
1538
+ "node_modules/concat-map": {
1539
+ "version": "0.0.1",
1540
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1541
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1542
+ "dev": true,
1543
+ "license": "MIT"
1544
+ },
1545
+ "node_modules/cookie": {
1546
+ "version": "0.6.0",
1547
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
1548
+ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
1549
+ "dev": true,
1550
+ "license": "MIT",
1551
+ "engines": {
1552
+ "node": ">= 0.6"
1553
+ }
1554
+ },
1555
+ "node_modules/d3-array": {
1556
+ "version": "3.2.4",
1557
+ "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
1558
+ "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
1559
+ "license": "ISC",
1560
+ "dependencies": {
1561
+ "internmap": "1 - 2"
1562
+ },
1563
+ "engines": {
1564
+ "node": ">=12"
1565
+ }
1566
+ },
1567
+ "node_modules/d3-color": {
1568
+ "version": "3.1.0",
1569
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
1570
+ "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
1571
+ "license": "ISC",
1572
+ "engines": {
1573
+ "node": ">=12"
1574
+ }
1575
+ },
1576
+ "node_modules/d3-delaunay": {
1577
+ "version": "6.0.4",
1578
+ "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
1579
+ "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==",
1580
+ "license": "ISC",
1581
+ "dependencies": {
1582
+ "delaunator": "5"
1583
+ },
1584
+ "engines": {
1585
+ "node": ">=12"
1586
+ }
1587
+ },
1588
+ "node_modules/d3-dispatch": {
1589
+ "version": "3.0.1",
1590
+ "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
1591
+ "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
1592
+ "license": "ISC",
1593
+ "engines": {
1594
+ "node": ">=12"
1595
+ }
1596
+ },
1597
+ "node_modules/d3-drag": {
1598
+ "version": "3.0.0",
1599
+ "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
1600
+ "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
1601
+ "license": "ISC",
1602
+ "dependencies": {
1603
+ "d3-dispatch": "1 - 3",
1604
+ "d3-selection": "3"
1605
+ },
1606
+ "engines": {
1607
+ "node": ">=12"
1608
+ }
1609
+ },
1610
+ "node_modules/d3-dsv": {
1611
+ "version": "3.0.1",
1612
+ "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
1613
+ "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
1614
+ "license": "ISC",
1615
+ "dependencies": {
1616
+ "commander": "7",
1617
+ "iconv-lite": "0.6",
1618
+ "rw": "1"
1619
+ },
1620
+ "bin": {
1621
+ "csv2json": "bin/dsv2json.js",
1622
+ "csv2tsv": "bin/dsv2dsv.js",
1623
+ "dsv2dsv": "bin/dsv2dsv.js",
1624
+ "dsv2json": "bin/dsv2json.js",
1625
+ "json2csv": "bin/json2dsv.js",
1626
+ "json2dsv": "bin/json2dsv.js",
1627
+ "json2tsv": "bin/json2dsv.js",
1628
+ "tsv2csv": "bin/dsv2dsv.js",
1629
+ "tsv2json": "bin/dsv2json.js"
1630
+ },
1631
+ "engines": {
1632
+ "node": ">=12"
1633
+ }
1634
+ },
1635
+ "node_modules/d3-ease": {
1636
+ "version": "3.0.1",
1637
+ "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
1638
+ "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
1639
+ "license": "BSD-3-Clause",
1640
+ "engines": {
1641
+ "node": ">=12"
1642
+ }
1643
+ },
1644
+ "node_modules/d3-force": {
1645
+ "version": "3.0.0",
1646
+ "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
1647
+ "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
1648
+ "license": "ISC",
1649
+ "dependencies": {
1650
+ "d3-dispatch": "1 - 3",
1651
+ "d3-quadtree": "1 - 3",
1652
+ "d3-timer": "1 - 3"
1653
+ },
1654
+ "engines": {
1655
+ "node": ">=12"
1656
+ }
1657
+ },
1658
+ "node_modules/d3-format": {
1659
+ "version": "3.1.0",
1660
+ "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
1661
+ "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
1662
+ "license": "ISC",
1663
+ "engines": {
1664
+ "node": ">=12"
1665
+ }
1666
+ },
1667
+ "node_modules/d3-geo": {
1668
+ "version": "3.1.1",
1669
+ "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz",
1670
+ "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==",
1671
+ "license": "ISC",
1672
+ "dependencies": {
1673
+ "d3-array": "2.5.0 - 3"
1674
+ },
1675
+ "engines": {
1676
+ "node": ">=12"
1677
+ }
1678
+ },
1679
+ "node_modules/d3-geo-projection": {
1680
+ "version": "4.0.0",
1681
+ "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
1682
+ "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
1683
+ "license": "ISC",
1684
+ "dependencies": {
1685
+ "commander": "7",
1686
+ "d3-array": "1 - 3",
1687
+ "d3-geo": "1.12.0 - 3"
1688
+ },
1689
+ "bin": {
1690
+ "geo2svg": "bin/geo2svg.js",
1691
+ "geograticule": "bin/geograticule.js",
1692
+ "geoproject": "bin/geoproject.js",
1693
+ "geoquantize": "bin/geoquantize.js",
1694
+ "geostitch": "bin/geostitch.js"
1695
+ },
1696
+ "engines": {
1697
+ "node": ">=12"
1698
+ }
1699
+ },
1700
+ "node_modules/d3-hierarchy": {
1701
+ "version": "3.1.2",
1702
+ "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
1703
+ "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
1704
+ "license": "ISC",
1705
+ "engines": {
1706
+ "node": ">=12"
1707
+ }
1708
+ },
1709
+ "node_modules/d3-interpolate": {
1710
+ "version": "3.0.1",
1711
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
1712
+ "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
1713
+ "license": "ISC",
1714
+ "dependencies": {
1715
+ "d3-color": "1 - 3"
1716
+ },
1717
+ "engines": {
1718
+ "node": ">=12"
1719
+ }
1720
+ },
1721
+ "node_modules/d3-path": {
1722
+ "version": "3.1.0",
1723
+ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
1724
+ "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
1725
+ "license": "ISC",
1726
+ "engines": {
1727
+ "node": ">=12"
1728
+ }
1729
+ },
1730
+ "node_modules/d3-quadtree": {
1731
+ "version": "3.0.1",
1732
+ "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
1733
+ "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
1734
+ "license": "ISC",
1735
+ "engines": {
1736
+ "node": ">=12"
1737
+ }
1738
+ },
1739
+ "node_modules/d3-scale": {
1740
+ "version": "4.0.2",
1741
+ "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
1742
+ "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
1743
+ "license": "ISC",
1744
+ "dependencies": {
1745
+ "d3-array": "2.10.0 - 3",
1746
+ "d3-format": "1 - 3",
1747
+ "d3-interpolate": "1.2.0 - 3",
1748
+ "d3-time": "2.1.1 - 3",
1749
+ "d3-time-format": "2 - 4"
1750
+ },
1751
+ "engines": {
1752
+ "node": ">=12"
1753
+ }
1754
+ },
1755
+ "node_modules/d3-scale-chromatic": {
1756
+ "version": "3.1.0",
1757
+ "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
1758
+ "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==",
1759
+ "license": "ISC",
1760
+ "dependencies": {
1761
+ "d3-color": "1 - 3",
1762
+ "d3-interpolate": "1 - 3"
1763
+ },
1764
+ "engines": {
1765
+ "node": ">=12"
1766
+ }
1767
+ },
1768
+ "node_modules/d3-selection": {
1769
+ "version": "3.0.0",
1770
+ "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
1771
+ "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
1772
+ "license": "ISC",
1773
+ "peer": true,
1774
+ "engines": {
1775
+ "node": ">=12"
1776
+ }
1777
+ },
1778
+ "node_modules/d3-shape": {
1779
+ "version": "3.2.0",
1780
+ "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
1781
+ "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
1782
+ "license": "ISC",
1783
+ "dependencies": {
1784
+ "d3-path": "^3.1.0"
1785
+ },
1786
+ "engines": {
1787
+ "node": ">=12"
1788
+ }
1789
+ },
1790
+ "node_modules/d3-time": {
1791
+ "version": "3.1.0",
1792
+ "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
1793
+ "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
1794
+ "license": "ISC",
1795
+ "dependencies": {
1796
+ "d3-array": "2 - 3"
1797
+ },
1798
+ "engines": {
1799
+ "node": ">=12"
1800
+ }
1801
+ },
1802
+ "node_modules/d3-time-format": {
1803
+ "version": "4.1.0",
1804
+ "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
1805
+ "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
1806
+ "license": "ISC",
1807
+ "dependencies": {
1808
+ "d3-time": "1 - 3"
1809
+ },
1810
+ "engines": {
1811
+ "node": ">=12"
1812
+ }
1813
+ },
1814
+ "node_modules/d3-timer": {
1815
+ "version": "3.0.1",
1816
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
1817
+ "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
1818
+ "license": "ISC",
1819
+ "engines": {
1820
+ "node": ">=12"
1821
+ }
1822
+ },
1823
+ "node_modules/d3-transition": {
1824
+ "version": "3.0.1",
1825
+ "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
1826
+ "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
1827
+ "license": "ISC",
1828
+ "dependencies": {
1829
+ "d3-color": "1 - 3",
1830
+ "d3-dispatch": "1 - 3",
1831
+ "d3-ease": "1 - 3",
1832
+ "d3-interpolate": "1 - 3",
1833
+ "d3-timer": "1 - 3"
1834
+ },
1835
+ "engines": {
1836
+ "node": ">=12"
1837
+ },
1838
+ "peerDependencies": {
1839
+ "d3-selection": "2 - 3"
1840
+ }
1841
+ },
1842
+ "node_modules/d3-zoom": {
1843
+ "version": "3.0.0",
1844
+ "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
1845
+ "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
1846
+ "license": "ISC",
1847
+ "dependencies": {
1848
+ "d3-dispatch": "1 - 3",
1849
+ "d3-drag": "2 - 3",
1850
+ "d3-interpolate": "1 - 3",
1851
+ "d3-selection": "2 - 3",
1852
+ "d3-transition": "2 - 3"
1853
+ },
1854
+ "engines": {
1855
+ "node": ">=12"
1856
+ }
1857
+ },
1858
+ "node_modules/daisyui": {
1859
+ "version": "5.3.0",
1860
+ "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.3.0.tgz",
1861
+ "integrity": "sha512-MgkNzabeGQ/rMbXujoUkjVzBiFL8gQRELKOfDY7efeLxHAQ8wf9VsRgcjDPDMsmI5rOV5iQ2DFMDo92RsRAcBg==",
1862
+ "license": "MIT",
1863
+ "funding": {
1864
+ "url": "https://github.com/saadeghi/daisyui?sponsor=1"
1865
+ }
1866
+ },
1867
+ "node_modules/debug": {
1868
+ "version": "4.4.3",
1869
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1870
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1871
+ "dev": true,
1872
+ "license": "MIT",
1873
+ "dependencies": {
1874
+ "ms": "^2.1.3"
1875
+ },
1876
+ "engines": {
1877
+ "node": ">=6.0"
1878
+ },
1879
+ "peerDependenciesMeta": {
1880
+ "supports-color": {
1881
+ "optional": true
1882
+ }
1883
+ }
1884
+ },
1885
+ "node_modules/deepmerge": {
1886
+ "version": "4.3.1",
1887
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
1888
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
1889
+ "dev": true,
1890
+ "license": "MIT",
1891
+ "engines": {
1892
+ "node": ">=0.10.0"
1893
+ }
1894
+ },
1895
+ "node_modules/delaunator": {
1896
+ "version": "5.0.1",
1897
+ "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz",
1898
+ "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==",
1899
+ "license": "ISC",
1900
+ "dependencies": {
1901
+ "robust-predicates": "^3.0.2"
1902
+ }
1903
+ },
1904
+ "node_modules/delayed-stream": {
1905
+ "version": "1.0.0",
1906
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1907
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
1908
+ "license": "MIT",
1909
+ "engines": {
1910
+ "node": ">=0.4.0"
1911
+ }
1912
+ },
1913
+ "node_modules/detect-indent": {
1914
+ "version": "6.1.0",
1915
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
1916
+ "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==",
1917
+ "dev": true,
1918
+ "license": "MIT",
1919
+ "engines": {
1920
+ "node": ">=8"
1921
+ }
1922
+ },
1923
+ "node_modules/detect-libc": {
1924
+ "version": "2.1.2",
1925
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1926
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1927
+ "dev": true,
1928
+ "license": "Apache-2.0",
1929
+ "engines": {
1930
+ "node": ">=8"
1931
+ }
1932
+ },
1933
+ "node_modules/devalue": {
1934
+ "version": "5.3.2",
1935
+ "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.3.2.tgz",
1936
+ "integrity": "sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==",
1937
+ "dev": true,
1938
+ "license": "MIT"
1939
+ },
1940
+ "node_modules/dunder-proto": {
1941
+ "version": "1.0.1",
1942
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1943
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1944
+ "license": "MIT",
1945
+ "dependencies": {
1946
+ "call-bind-apply-helpers": "^1.0.1",
1947
+ "es-errors": "^1.3.0",
1948
+ "gopd": "^1.2.0"
1949
+ },
1950
+ "engines": {
1951
+ "node": ">= 0.4"
1952
+ }
1953
+ },
1954
+ "node_modules/echarts": {
1955
+ "version": "6.0.0",
1956
+ "resolved": "https://registry.npmjs.org/echarts/-/echarts-6.0.0.tgz",
1957
+ "integrity": "sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==",
1958
+ "license": "Apache-2.0",
1959
+ "dependencies": {
1960
+ "tslib": "2.3.0",
1961
+ "zrender": "6.0.0"
1962
+ }
1963
+ },
1964
+ "node_modules/echarts/node_modules/tslib": {
1965
+ "version": "2.3.0",
1966
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
1967
+ "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
1968
+ "license": "0BSD"
1969
+ },
1970
+ "node_modules/emoji-regex": {
1971
+ "version": "10.6.0",
1972
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
1973
+ "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
1974
+ "license": "MIT"
1975
+ },
1976
+ "node_modules/enhanced-resolve": {
1977
+ "version": "5.18.3",
1978
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz",
1979
+ "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==",
1980
+ "dev": true,
1981
+ "license": "MIT",
1982
+ "dependencies": {
1983
+ "graceful-fs": "^4.2.4",
1984
+ "tapable": "^2.2.0"
1985
+ },
1986
+ "engines": {
1987
+ "node": ">=10.13.0"
1988
+ }
1989
+ },
1990
+ "node_modules/es-define-property": {
1991
+ "version": "1.0.1",
1992
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1993
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1994
+ "license": "MIT",
1995
+ "engines": {
1996
+ "node": ">= 0.4"
1997
+ }
1998
+ },
1999
+ "node_modules/es-errors": {
2000
+ "version": "1.3.0",
2001
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
2002
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
2003
+ "license": "MIT",
2004
+ "engines": {
2005
+ "node": ">= 0.4"
2006
+ }
2007
+ },
2008
+ "node_modules/es-object-atoms": {
2009
+ "version": "1.1.1",
2010
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
2011
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
2012
+ "license": "MIT",
2013
+ "dependencies": {
2014
+ "es-errors": "^1.3.0"
2015
+ },
2016
+ "engines": {
2017
+ "node": ">= 0.4"
2018
+ }
2019
+ },
2020
+ "node_modules/es-set-tostringtag": {
2021
+ "version": "2.1.0",
2022
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
2023
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
2024
+ "license": "MIT",
2025
+ "dependencies": {
2026
+ "es-errors": "^1.3.0",
2027
+ "get-intrinsic": "^1.2.6",
2028
+ "has-tostringtag": "^1.0.2",
2029
+ "hasown": "^2.0.2"
2030
+ },
2031
+ "engines": {
2032
+ "node": ">= 0.4"
2033
+ }
2034
+ },
2035
+ "node_modules/es6-promise": {
2036
+ "version": "3.3.1",
2037
+ "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz",
2038
+ "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==",
2039
+ "dev": true,
2040
+ "license": "MIT"
2041
+ },
2042
+ "node_modules/esbuild": {
2043
+ "version": "0.21.5",
2044
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
2045
+ "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
2046
+ "dev": true,
2047
+ "hasInstallScript": true,
2048
+ "license": "MIT",
2049
+ "bin": {
2050
+ "esbuild": "bin/esbuild"
2051
+ },
2052
+ "engines": {
2053
+ "node": ">=12"
2054
+ },
2055
+ "optionalDependencies": {
2056
+ "@esbuild/aix-ppc64": "0.21.5",
2057
+ "@esbuild/android-arm": "0.21.5",
2058
+ "@esbuild/android-arm64": "0.21.5",
2059
+ "@esbuild/android-x64": "0.21.5",
2060
+ "@esbuild/darwin-arm64": "0.21.5",
2061
+ "@esbuild/darwin-x64": "0.21.5",
2062
+ "@esbuild/freebsd-arm64": "0.21.5",
2063
+ "@esbuild/freebsd-x64": "0.21.5",
2064
+ "@esbuild/linux-arm": "0.21.5",
2065
+ "@esbuild/linux-arm64": "0.21.5",
2066
+ "@esbuild/linux-ia32": "0.21.5",
2067
+ "@esbuild/linux-loong64": "0.21.5",
2068
+ "@esbuild/linux-mips64el": "0.21.5",
2069
+ "@esbuild/linux-ppc64": "0.21.5",
2070
+ "@esbuild/linux-riscv64": "0.21.5",
2071
+ "@esbuild/linux-s390x": "0.21.5",
2072
+ "@esbuild/linux-x64": "0.21.5",
2073
+ "@esbuild/netbsd-x64": "0.21.5",
2074
+ "@esbuild/openbsd-x64": "0.21.5",
2075
+ "@esbuild/sunos-x64": "0.21.5",
2076
+ "@esbuild/win32-arm64": "0.21.5",
2077
+ "@esbuild/win32-ia32": "0.21.5",
2078
+ "@esbuild/win32-x64": "0.21.5"
2079
+ }
2080
+ },
2081
+ "node_modules/escalade": {
2082
+ "version": "3.2.0",
2083
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2084
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2085
+ "license": "MIT",
2086
+ "engines": {
2087
+ "node": ">=6"
2088
+ }
2089
+ },
2090
+ "node_modules/esm-env": {
2091
+ "version": "1.2.2",
2092
+ "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz",
2093
+ "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==",
2094
+ "license": "MIT"
2095
+ },
2096
+ "node_modules/esrap": {
2097
+ "version": "2.1.0",
2098
+ "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.0.tgz",
2099
+ "integrity": "sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==",
2100
+ "license": "MIT",
2101
+ "dependencies": {
2102
+ "@jridgewell/sourcemap-codec": "^1.4.15"
2103
+ }
2104
+ },
2105
+ "node_modules/fast-json-patch": {
2106
+ "version": "3.1.1",
2107
+ "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz",
2108
+ "integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==",
2109
+ "license": "MIT"
2110
+ },
2111
+ "node_modules/fill-range": {
2112
+ "version": "7.1.1",
2113
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2114
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2115
+ "dev": true,
2116
+ "license": "MIT",
2117
+ "dependencies": {
2118
+ "to-regex-range": "^5.0.1"
2119
+ },
2120
+ "engines": {
2121
+ "node": ">=8"
2122
+ }
2123
+ },
2124
+ "node_modules/follow-redirects": {
2125
+ "version": "1.15.11",
2126
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
2127
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
2128
+ "funding": [
2129
+ {
2130
+ "type": "individual",
2131
+ "url": "https://github.com/sponsors/RubenVerborgh"
2132
+ }
2133
+ ],
2134
+ "license": "MIT",
2135
+ "engines": {
2136
+ "node": ">=4.0"
2137
+ },
2138
+ "peerDependenciesMeta": {
2139
+ "debug": {
2140
+ "optional": true
2141
+ }
2142
+ }
2143
+ },
2144
+ "node_modules/form-data": {
2145
+ "version": "4.0.4",
2146
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
2147
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
2148
+ "license": "MIT",
2149
+ "dependencies": {
2150
+ "asynckit": "^0.4.0",
2151
+ "combined-stream": "^1.0.8",
2152
+ "es-set-tostringtag": "^2.1.0",
2153
+ "hasown": "^2.0.2",
2154
+ "mime-types": "^2.1.12"
2155
+ },
2156
+ "engines": {
2157
+ "node": ">= 6"
2158
+ }
2159
+ },
2160
+ "node_modules/fs.realpath": {
2161
+ "version": "1.0.0",
2162
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2163
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
2164
+ "dev": true,
2165
+ "license": "ISC"
2166
+ },
2167
+ "node_modules/fsevents": {
2168
+ "version": "2.3.3",
2169
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2170
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2171
+ "dev": true,
2172
+ "hasInstallScript": true,
2173
+ "license": "MIT",
2174
+ "optional": true,
2175
+ "os": [
2176
+ "darwin"
2177
+ ],
2178
+ "engines": {
2179
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2180
+ }
2181
+ },
2182
+ "node_modules/function-bind": {
2183
+ "version": "1.1.2",
2184
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
2185
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2186
+ "license": "MIT",
2187
+ "funding": {
2188
+ "url": "https://github.com/sponsors/ljharb"
2189
+ }
2190
+ },
2191
+ "node_modules/get-caller-file": {
2192
+ "version": "2.0.5",
2193
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
2194
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2195
+ "license": "ISC",
2196
+ "engines": {
2197
+ "node": "6.* || 8.* || >= 10.*"
2198
+ }
2199
+ },
2200
+ "node_modules/get-east-asian-width": {
2201
+ "version": "1.4.0",
2202
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz",
2203
+ "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==",
2204
+ "license": "MIT",
2205
+ "engines": {
2206
+ "node": ">=18"
2207
+ },
2208
+ "funding": {
2209
+ "url": "https://github.com/sponsors/sindresorhus"
2210
+ }
2211
+ },
2212
+ "node_modules/get-intrinsic": {
2213
+ "version": "1.3.0",
2214
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
2215
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
2216
+ "license": "MIT",
2217
+ "dependencies": {
2218
+ "call-bind-apply-helpers": "^1.0.2",
2219
+ "es-define-property": "^1.0.1",
2220
+ "es-errors": "^1.3.0",
2221
+ "es-object-atoms": "^1.1.1",
2222
+ "function-bind": "^1.1.2",
2223
+ "get-proto": "^1.0.1",
2224
+ "gopd": "^1.2.0",
2225
+ "has-symbols": "^1.1.0",
2226
+ "hasown": "^2.0.2",
2227
+ "math-intrinsics": "^1.1.0"
2228
+ },
2229
+ "engines": {
2230
+ "node": ">= 0.4"
2231
+ },
2232
+ "funding": {
2233
+ "url": "https://github.com/sponsors/ljharb"
2234
+ }
2235
+ },
2236
+ "node_modules/get-proto": {
2237
+ "version": "1.0.1",
2238
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
2239
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
2240
+ "license": "MIT",
2241
+ "dependencies": {
2242
+ "dunder-proto": "^1.0.1",
2243
+ "es-object-atoms": "^1.0.0"
2244
+ },
2245
+ "engines": {
2246
+ "node": ">= 0.4"
2247
+ }
2248
+ },
2249
+ "node_modules/glob": {
2250
+ "version": "7.2.3",
2251
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2252
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2253
+ "deprecated": "Glob versions prior to v9 are no longer supported",
2254
+ "dev": true,
2255
+ "license": "ISC",
2256
+ "dependencies": {
2257
+ "fs.realpath": "^1.0.0",
2258
+ "inflight": "^1.0.4",
2259
+ "inherits": "2",
2260
+ "minimatch": "^3.1.1",
2261
+ "once": "^1.3.0",
2262
+ "path-is-absolute": "^1.0.0"
2263
+ },
2264
+ "engines": {
2265
+ "node": "*"
2266
+ },
2267
+ "funding": {
2268
+ "url": "https://github.com/sponsors/isaacs"
2269
+ }
2270
+ },
2271
+ "node_modules/glob-parent": {
2272
+ "version": "5.1.2",
2273
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2274
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2275
+ "dev": true,
2276
+ "license": "ISC",
2277
+ "dependencies": {
2278
+ "is-glob": "^4.0.1"
2279
+ },
2280
+ "engines": {
2281
+ "node": ">= 6"
2282
+ }
2283
+ },
2284
+ "node_modules/gopd": {
2285
+ "version": "1.2.0",
2286
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
2287
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
2288
+ "license": "MIT",
2289
+ "engines": {
2290
+ "node": ">= 0.4"
2291
+ },
2292
+ "funding": {
2293
+ "url": "https://github.com/sponsors/ljharb"
2294
+ }
2295
+ },
2296
+ "node_modules/graceful-fs": {
2297
+ "version": "4.2.11",
2298
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2299
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2300
+ "dev": true,
2301
+ "license": "ISC"
2302
+ },
2303
+ "node_modules/gridstack": {
2304
+ "version": "12.3.3",
2305
+ "resolved": "https://registry.npmjs.org/gridstack/-/gridstack-12.3.3.tgz",
2306
+ "integrity": "sha512-Bboi4gj7HXGnx1VFXQNde4Nwi5srdUSuCCnOSszKhFjBs8EtMEWhsKX02BjIKkErq/FjQUkNUbXUYeQaVMQ0jQ==",
2307
+ "funding": [
2308
+ {
2309
+ "type": "paypal",
2310
+ "url": "https://www.paypal.me/alaind831"
2311
+ },
2312
+ {
2313
+ "type": "venmo",
2314
+ "url": "https://www.venmo.com/adumesny"
2315
+ }
2316
+ ],
2317
+ "license": "MIT"
2318
+ },
2319
+ "node_modules/has-symbols": {
2320
+ "version": "1.1.0",
2321
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
2322
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
2323
+ "license": "MIT",
2324
+ "engines": {
2325
+ "node": ">= 0.4"
2326
+ },
2327
+ "funding": {
2328
+ "url": "https://github.com/sponsors/ljharb"
2329
+ }
2330
+ },
2331
+ "node_modules/has-tostringtag": {
2332
+ "version": "1.0.2",
2333
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
2334
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
2335
+ "license": "MIT",
2336
+ "dependencies": {
2337
+ "has-symbols": "^1.0.3"
2338
+ },
2339
+ "engines": {
2340
+ "node": ">= 0.4"
2341
+ },
2342
+ "funding": {
2343
+ "url": "https://github.com/sponsors/ljharb"
2344
+ }
2345
+ },
2346
+ "node_modules/hasown": {
2347
+ "version": "2.0.2",
2348
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2349
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2350
+ "license": "MIT",
2351
+ "dependencies": {
2352
+ "function-bind": "^1.1.2"
2353
+ },
2354
+ "engines": {
2355
+ "node": ">= 0.4"
2356
+ }
2357
+ },
2358
+ "node_modules/iconv-lite": {
2359
+ "version": "0.6.3",
2360
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
2361
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
2362
+ "license": "MIT",
2363
+ "dependencies": {
2364
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
2365
+ },
2366
+ "engines": {
2367
+ "node": ">=0.10.0"
2368
+ }
2369
+ },
2370
+ "node_modules/import-meta-resolve": {
2371
+ "version": "4.2.0",
2372
+ "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz",
2373
+ "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==",
2374
+ "dev": true,
2375
+ "license": "MIT",
2376
+ "funding": {
2377
+ "type": "github",
2378
+ "url": "https://github.com/sponsors/wooorm"
2379
+ }
2380
+ },
2381
+ "node_modules/inflight": {
2382
+ "version": "1.0.6",
2383
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2384
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2385
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
2386
+ "dev": true,
2387
+ "license": "ISC",
2388
+ "dependencies": {
2389
+ "once": "^1.3.0",
2390
+ "wrappy": "1"
2391
+ }
2392
+ },
2393
+ "node_modules/inherits": {
2394
+ "version": "2.0.4",
2395
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2396
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2397
+ "dev": true,
2398
+ "license": "ISC"
2399
+ },
2400
+ "node_modules/internmap": {
2401
+ "version": "2.0.3",
2402
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
2403
+ "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
2404
+ "license": "ISC",
2405
+ "engines": {
2406
+ "node": ">=12"
2407
+ }
2408
+ },
2409
+ "node_modules/is-binary-path": {
2410
+ "version": "2.1.0",
2411
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
2412
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
2413
+ "dev": true,
2414
+ "license": "MIT",
2415
+ "dependencies": {
2416
+ "binary-extensions": "^2.0.0"
2417
+ },
2418
+ "engines": {
2419
+ "node": ">=8"
2420
+ }
2421
+ },
2422
+ "node_modules/is-extglob": {
2423
+ "version": "2.1.1",
2424
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2425
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2426
+ "dev": true,
2427
+ "license": "MIT",
2428
+ "engines": {
2429
+ "node": ">=0.10.0"
2430
+ }
2431
+ },
2432
+ "node_modules/is-glob": {
2433
+ "version": "4.0.3",
2434
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2435
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2436
+ "dev": true,
2437
+ "license": "MIT",
2438
+ "dependencies": {
2439
+ "is-extglob": "^2.1.1"
2440
+ },
2441
+ "engines": {
2442
+ "node": ">=0.10.0"
2443
+ }
2444
+ },
2445
+ "node_modules/is-number": {
2446
+ "version": "7.0.0",
2447
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2448
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2449
+ "dev": true,
2450
+ "license": "MIT",
2451
+ "engines": {
2452
+ "node": ">=0.12.0"
2453
+ }
2454
+ },
2455
+ "node_modules/is-reference": {
2456
+ "version": "3.0.3",
2457
+ "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz",
2458
+ "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==",
2459
+ "license": "MIT",
2460
+ "dependencies": {
2461
+ "@types/estree": "^1.0.6"
2462
+ }
2463
+ },
2464
+ "node_modules/jiti": {
2465
+ "version": "2.6.1",
2466
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2467
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2468
+ "dev": true,
2469
+ "license": "MIT",
2470
+ "bin": {
2471
+ "jiti": "lib/jiti-cli.mjs"
2472
+ }
2473
+ },
2474
+ "node_modules/json-stringify-pretty-compact": {
2475
+ "version": "4.0.0",
2476
+ "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-4.0.0.tgz",
2477
+ "integrity": "sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==",
2478
+ "license": "MIT"
2479
+ },
2480
+ "node_modules/kleur": {
2481
+ "version": "4.1.5",
2482
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
2483
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
2484
+ "dev": true,
2485
+ "license": "MIT",
2486
+ "engines": {
2487
+ "node": ">=6"
2488
+ }
2489
+ },
2490
+ "node_modules/lightningcss": {
2491
+ "version": "1.30.1",
2492
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
2493
+ "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
2494
+ "dev": true,
2495
+ "license": "MPL-2.0",
2496
+ "dependencies": {
2497
+ "detect-libc": "^2.0.3"
2498
+ },
2499
+ "engines": {
2500
+ "node": ">= 12.0.0"
2501
+ },
2502
+ "funding": {
2503
+ "type": "opencollective",
2504
+ "url": "https://opencollective.com/parcel"
2505
+ },
2506
+ "optionalDependencies": {
2507
+ "lightningcss-darwin-arm64": "1.30.1",
2508
+ "lightningcss-darwin-x64": "1.30.1",
2509
+ "lightningcss-freebsd-x64": "1.30.1",
2510
+ "lightningcss-linux-arm-gnueabihf": "1.30.1",
2511
+ "lightningcss-linux-arm64-gnu": "1.30.1",
2512
+ "lightningcss-linux-arm64-musl": "1.30.1",
2513
+ "lightningcss-linux-x64-gnu": "1.30.1",
2514
+ "lightningcss-linux-x64-musl": "1.30.1",
2515
+ "lightningcss-win32-arm64-msvc": "1.30.1",
2516
+ "lightningcss-win32-x64-msvc": "1.30.1"
2517
+ }
2518
+ },
2519
+ "node_modules/lightningcss-darwin-arm64": {
2520
+ "version": "1.30.1",
2521
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
2522
+ "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
2523
+ "cpu": [
2524
+ "arm64"
2525
+ ],
2526
+ "dev": true,
2527
+ "license": "MPL-2.0",
2528
+ "optional": true,
2529
+ "os": [
2530
+ "darwin"
2531
+ ],
2532
+ "engines": {
2533
+ "node": ">= 12.0.0"
2534
+ },
2535
+ "funding": {
2536
+ "type": "opencollective",
2537
+ "url": "https://opencollective.com/parcel"
2538
+ }
2539
+ },
2540
+ "node_modules/lightningcss-darwin-x64": {
2541
+ "version": "1.30.1",
2542
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
2543
+ "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
2544
+ "cpu": [
2545
+ "x64"
2546
+ ],
2547
+ "dev": true,
2548
+ "license": "MPL-2.0",
2549
+ "optional": true,
2550
+ "os": [
2551
+ "darwin"
2552
+ ],
2553
+ "engines": {
2554
+ "node": ">= 12.0.0"
2555
+ },
2556
+ "funding": {
2557
+ "type": "opencollective",
2558
+ "url": "https://opencollective.com/parcel"
2559
+ }
2560
+ },
2561
+ "node_modules/lightningcss-freebsd-x64": {
2562
+ "version": "1.30.1",
2563
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
2564
+ "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
2565
+ "cpu": [
2566
+ "x64"
2567
+ ],
2568
+ "dev": true,
2569
+ "license": "MPL-2.0",
2570
+ "optional": true,
2571
+ "os": [
2572
+ "freebsd"
2573
+ ],
2574
+ "engines": {
2575
+ "node": ">= 12.0.0"
2576
+ },
2577
+ "funding": {
2578
+ "type": "opencollective",
2579
+ "url": "https://opencollective.com/parcel"
2580
+ }
2581
+ },
2582
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2583
+ "version": "1.30.1",
2584
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
2585
+ "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
2586
+ "cpu": [
2587
+ "arm"
2588
+ ],
2589
+ "dev": true,
2590
+ "license": "MPL-2.0",
2591
+ "optional": true,
2592
+ "os": [
2593
+ "linux"
2594
+ ],
2595
+ "engines": {
2596
+ "node": ">= 12.0.0"
2597
+ },
2598
+ "funding": {
2599
+ "type": "opencollective",
2600
+ "url": "https://opencollective.com/parcel"
2601
+ }
2602
+ },
2603
+ "node_modules/lightningcss-linux-arm64-gnu": {
2604
+ "version": "1.30.1",
2605
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
2606
+ "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
2607
+ "cpu": [
2608
+ "arm64"
2609
+ ],
2610
+ "dev": true,
2611
+ "license": "MPL-2.0",
2612
+ "optional": true,
2613
+ "os": [
2614
+ "linux"
2615
+ ],
2616
+ "engines": {
2617
+ "node": ">= 12.0.0"
2618
+ },
2619
+ "funding": {
2620
+ "type": "opencollective",
2621
+ "url": "https://opencollective.com/parcel"
2622
+ }
2623
+ },
2624
+ "node_modules/lightningcss-linux-arm64-musl": {
2625
+ "version": "1.30.1",
2626
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
2627
+ "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
2628
+ "cpu": [
2629
+ "arm64"
2630
+ ],
2631
+ "dev": true,
2632
+ "license": "MPL-2.0",
2633
+ "optional": true,
2634
+ "os": [
2635
+ "linux"
2636
+ ],
2637
+ "engines": {
2638
+ "node": ">= 12.0.0"
2639
+ },
2640
+ "funding": {
2641
+ "type": "opencollective",
2642
+ "url": "https://opencollective.com/parcel"
2643
+ }
2644
+ },
2645
+ "node_modules/lightningcss-linux-x64-gnu": {
2646
+ "version": "1.30.1",
2647
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
2648
+ "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
2649
+ "cpu": [
2650
+ "x64"
2651
+ ],
2652
+ "dev": true,
2653
+ "license": "MPL-2.0",
2654
+ "optional": true,
2655
+ "os": [
2656
+ "linux"
2657
+ ],
2658
+ "engines": {
2659
+ "node": ">= 12.0.0"
2660
+ },
2661
+ "funding": {
2662
+ "type": "opencollective",
2663
+ "url": "https://opencollective.com/parcel"
2664
+ }
2665
+ },
2666
+ "node_modules/lightningcss-linux-x64-musl": {
2667
+ "version": "1.30.1",
2668
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
2669
+ "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
2670
+ "cpu": [
2671
+ "x64"
2672
+ ],
2673
+ "dev": true,
2674
+ "license": "MPL-2.0",
2675
+ "optional": true,
2676
+ "os": [
2677
+ "linux"
2678
+ ],
2679
+ "engines": {
2680
+ "node": ">= 12.0.0"
2681
+ },
2682
+ "funding": {
2683
+ "type": "opencollective",
2684
+ "url": "https://opencollective.com/parcel"
2685
+ }
2686
+ },
2687
+ "node_modules/lightningcss-win32-arm64-msvc": {
2688
+ "version": "1.30.1",
2689
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
2690
+ "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
2691
+ "cpu": [
2692
+ "arm64"
2693
+ ],
2694
+ "dev": true,
2695
+ "license": "MPL-2.0",
2696
+ "optional": true,
2697
+ "os": [
2698
+ "win32"
2699
+ ],
2700
+ "engines": {
2701
+ "node": ">= 12.0.0"
2702
+ },
2703
+ "funding": {
2704
+ "type": "opencollective",
2705
+ "url": "https://opencollective.com/parcel"
2706
+ }
2707
+ },
2708
+ "node_modules/lightningcss-win32-x64-msvc": {
2709
+ "version": "1.30.1",
2710
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
2711
+ "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
2712
+ "cpu": [
2713
+ "x64"
2714
+ ],
2715
+ "dev": true,
2716
+ "license": "MPL-2.0",
2717
+ "optional": true,
2718
+ "os": [
2719
+ "win32"
2720
+ ],
2721
+ "engines": {
2722
+ "node": ">= 12.0.0"
2723
+ },
2724
+ "funding": {
2725
+ "type": "opencollective",
2726
+ "url": "https://opencollective.com/parcel"
2727
+ }
2728
+ },
2729
+ "node_modules/locate-character": {
2730
+ "version": "3.0.0",
2731
+ "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz",
2732
+ "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==",
2733
+ "license": "MIT"
2734
+ },
2735
+ "node_modules/lodash-es": {
2736
+ "version": "4.17.21",
2737
+ "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
2738
+ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
2739
+ "license": "MIT"
2740
+ },
2741
+ "node_modules/magic-string": {
2742
+ "version": "0.30.19",
2743
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz",
2744
+ "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==",
2745
+ "license": "MIT",
2746
+ "dependencies": {
2747
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2748
+ }
2749
+ },
2750
+ "node_modules/math-intrinsics": {
2751
+ "version": "1.1.0",
2752
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
2753
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
2754
+ "license": "MIT",
2755
+ "engines": {
2756
+ "node": ">= 0.4"
2757
+ }
2758
+ },
2759
+ "node_modules/mime-db": {
2760
+ "version": "1.52.0",
2761
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
2762
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
2763
+ "license": "MIT",
2764
+ "engines": {
2765
+ "node": ">= 0.6"
2766
+ }
2767
+ },
2768
+ "node_modules/mime-types": {
2769
+ "version": "2.1.35",
2770
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
2771
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
2772
+ "license": "MIT",
2773
+ "dependencies": {
2774
+ "mime-db": "1.52.0"
2775
+ },
2776
+ "engines": {
2777
+ "node": ">= 0.6"
2778
+ }
2779
+ },
2780
+ "node_modules/min-indent": {
2781
+ "version": "1.0.1",
2782
+ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
2783
+ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
2784
+ "dev": true,
2785
+ "license": "MIT",
2786
+ "engines": {
2787
+ "node": ">=4"
2788
+ }
2789
+ },
2790
+ "node_modules/minimatch": {
2791
+ "version": "3.1.2",
2792
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2793
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2794
+ "dev": true,
2795
+ "license": "ISC",
2796
+ "dependencies": {
2797
+ "brace-expansion": "^1.1.7"
2798
+ },
2799
+ "engines": {
2800
+ "node": "*"
2801
+ }
2802
+ },
2803
+ "node_modules/minimist": {
2804
+ "version": "1.2.8",
2805
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
2806
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
2807
+ "dev": true,
2808
+ "license": "MIT",
2809
+ "funding": {
2810
+ "url": "https://github.com/sponsors/ljharb"
2811
+ }
2812
+ },
2813
+ "node_modules/minipass": {
2814
+ "version": "7.1.2",
2815
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
2816
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
2817
+ "dev": true,
2818
+ "license": "ISC",
2819
+ "engines": {
2820
+ "node": ">=16 || 14 >=14.17"
2821
+ }
2822
+ },
2823
+ "node_modules/minizlib": {
2824
+ "version": "3.1.0",
2825
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
2826
+ "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==",
2827
+ "dev": true,
2828
+ "license": "MIT",
2829
+ "dependencies": {
2830
+ "minipass": "^7.1.2"
2831
+ },
2832
+ "engines": {
2833
+ "node": ">= 18"
2834
+ }
2835
+ },
2836
+ "node_modules/mkdirp": {
2837
+ "version": "0.5.6",
2838
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
2839
+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
2840
+ "dev": true,
2841
+ "license": "MIT",
2842
+ "dependencies": {
2843
+ "minimist": "^1.2.6"
2844
+ },
2845
+ "bin": {
2846
+ "mkdirp": "bin/cmd.js"
2847
+ }
2848
+ },
2849
+ "node_modules/mri": {
2850
+ "version": "1.2.0",
2851
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
2852
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
2853
+ "dev": true,
2854
+ "license": "MIT",
2855
+ "engines": {
2856
+ "node": ">=4"
2857
+ }
2858
+ },
2859
+ "node_modules/mrmime": {
2860
+ "version": "2.0.1",
2861
+ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
2862
+ "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
2863
+ "dev": true,
2864
+ "license": "MIT",
2865
+ "engines": {
2866
+ "node": ">=10"
2867
+ }
2868
+ },
2869
+ "node_modules/ms": {
2870
+ "version": "2.1.3",
2871
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2872
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2873
+ "dev": true,
2874
+ "license": "MIT"
2875
+ },
2876
+ "node_modules/nanoid": {
2877
+ "version": "3.3.11",
2878
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
2879
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2880
+ "dev": true,
2881
+ "funding": [
2882
+ {
2883
+ "type": "github",
2884
+ "url": "https://github.com/sponsors/ai"
2885
+ }
2886
+ ],
2887
+ "license": "MIT",
2888
+ "bin": {
2889
+ "nanoid": "bin/nanoid.cjs"
2890
+ },
2891
+ "engines": {
2892
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2893
+ }
2894
+ },
2895
+ "node_modules/normalize-path": {
2896
+ "version": "3.0.0",
2897
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
2898
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
2899
+ "dev": true,
2900
+ "license": "MIT",
2901
+ "engines": {
2902
+ "node": ">=0.10.0"
2903
+ }
2904
+ },
2905
+ "node_modules/once": {
2906
+ "version": "1.4.0",
2907
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2908
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2909
+ "dev": true,
2910
+ "license": "ISC",
2911
+ "dependencies": {
2912
+ "wrappy": "1"
2913
+ }
2914
+ },
2915
+ "node_modules/path-is-absolute": {
2916
+ "version": "1.0.1",
2917
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2918
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
2919
+ "dev": true,
2920
+ "license": "MIT",
2921
+ "engines": {
2922
+ "node": ">=0.10.0"
2923
+ }
2924
+ },
2925
+ "node_modules/picocolors": {
2926
+ "version": "1.1.1",
2927
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2928
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2929
+ "dev": true,
2930
+ "license": "ISC"
2931
+ },
2932
+ "node_modules/picomatch": {
2933
+ "version": "2.3.1",
2934
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2935
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2936
+ "dev": true,
2937
+ "license": "MIT",
2938
+ "engines": {
2939
+ "node": ">=8.6"
2940
+ },
2941
+ "funding": {
2942
+ "url": "https://github.com/sponsors/jonschlinkert"
2943
+ }
2944
+ },
2945
+ "node_modules/postcss": {
2946
+ "version": "8.5.6",
2947
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
2948
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
2949
+ "dev": true,
2950
+ "funding": [
2951
+ {
2952
+ "type": "opencollective",
2953
+ "url": "https://opencollective.com/postcss/"
2954
+ },
2955
+ {
2956
+ "type": "tidelift",
2957
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2958
+ },
2959
+ {
2960
+ "type": "github",
2961
+ "url": "https://github.com/sponsors/ai"
2962
+ }
2963
+ ],
2964
+ "license": "MIT",
2965
+ "peer": true,
2966
+ "dependencies": {
2967
+ "nanoid": "^3.3.11",
2968
+ "picocolors": "^1.1.1",
2969
+ "source-map-js": "^1.2.1"
2970
+ },
2971
+ "engines": {
2972
+ "node": "^10 || ^12 || >=14"
2973
+ }
2974
+ },
2975
+ "node_modules/prettier": {
2976
+ "version": "3.6.2",
2977
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
2978
+ "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
2979
+ "dev": true,
2980
+ "license": "MIT",
2981
+ "peer": true,
2982
+ "bin": {
2983
+ "prettier": "bin/prettier.cjs"
2984
+ },
2985
+ "engines": {
2986
+ "node": ">=14"
2987
+ },
2988
+ "funding": {
2989
+ "url": "https://github.com/prettier/prettier?sponsor=1"
2990
+ }
2991
+ },
2992
+ "node_modules/prettier-plugin-svelte": {
2993
+ "version": "3.4.0",
2994
+ "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.4.0.tgz",
2995
+ "integrity": "sha512-pn1ra/0mPObzqoIQn/vUTR3ZZI6UuZ0sHqMK5x2jMLGrs53h0sXhkVuDcrlssHwIMk7FYrMjHBPoUSyyEEDlBQ==",
2996
+ "dev": true,
2997
+ "license": "MIT",
2998
+ "peer": true,
2999
+ "peerDependencies": {
3000
+ "prettier": "^3.0.0",
3001
+ "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0"
3002
+ }
3003
+ },
3004
+ "node_modules/prettier-plugin-tailwindcss": {
3005
+ "version": "0.6.14",
3006
+ "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.14.tgz",
3007
+ "integrity": "sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==",
3008
+ "dev": true,
3009
+ "license": "MIT",
3010
+ "engines": {
3011
+ "node": ">=14.21.3"
3012
+ },
3013
+ "peerDependencies": {
3014
+ "@ianvs/prettier-plugin-sort-imports": "*",
3015
+ "@prettier/plugin-hermes": "*",
3016
+ "@prettier/plugin-oxc": "*",
3017
+ "@prettier/plugin-pug": "*",
3018
+ "@shopify/prettier-plugin-liquid": "*",
3019
+ "@trivago/prettier-plugin-sort-imports": "*",
3020
+ "@zackad/prettier-plugin-twig": "*",
3021
+ "prettier": "^3.0",
3022
+ "prettier-plugin-astro": "*",
3023
+ "prettier-plugin-css-order": "*",
3024
+ "prettier-plugin-import-sort": "*",
3025
+ "prettier-plugin-jsdoc": "*",
3026
+ "prettier-plugin-marko": "*",
3027
+ "prettier-plugin-multiline-arrays": "*",
3028
+ "prettier-plugin-organize-attributes": "*",
3029
+ "prettier-plugin-organize-imports": "*",
3030
+ "prettier-plugin-sort-imports": "*",
3031
+ "prettier-plugin-style-order": "*",
3032
+ "prettier-plugin-svelte": "*"
3033
+ },
3034
+ "peerDependenciesMeta": {
3035
+ "@ianvs/prettier-plugin-sort-imports": {
3036
+ "optional": true
3037
+ },
3038
+ "@prettier/plugin-hermes": {
3039
+ "optional": true
3040
+ },
3041
+ "@prettier/plugin-oxc": {
3042
+ "optional": true
3043
+ },
3044
+ "@prettier/plugin-pug": {
3045
+ "optional": true
3046
+ },
3047
+ "@shopify/prettier-plugin-liquid": {
3048
+ "optional": true
3049
+ },
3050
+ "@trivago/prettier-plugin-sort-imports": {
3051
+ "optional": true
3052
+ },
3053
+ "@zackad/prettier-plugin-twig": {
3054
+ "optional": true
3055
+ },
3056
+ "prettier-plugin-astro": {
3057
+ "optional": true
3058
+ },
3059
+ "prettier-plugin-css-order": {
3060
+ "optional": true
3061
+ },
3062
+ "prettier-plugin-import-sort": {
3063
+ "optional": true
3064
+ },
3065
+ "prettier-plugin-jsdoc": {
3066
+ "optional": true
3067
+ },
3068
+ "prettier-plugin-marko": {
3069
+ "optional": true
3070
+ },
3071
+ "prettier-plugin-multiline-arrays": {
3072
+ "optional": true
3073
+ },
3074
+ "prettier-plugin-organize-attributes": {
3075
+ "optional": true
3076
+ },
3077
+ "prettier-plugin-organize-imports": {
3078
+ "optional": true
3079
+ },
3080
+ "prettier-plugin-sort-imports": {
3081
+ "optional": true
3082
+ },
3083
+ "prettier-plugin-style-order": {
3084
+ "optional": true
3085
+ },
3086
+ "prettier-plugin-svelte": {
3087
+ "optional": true
3088
+ }
3089
+ }
3090
+ },
3091
+ "node_modules/proxy-from-env": {
3092
+ "version": "1.1.0",
3093
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
3094
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
3095
+ "license": "MIT"
3096
+ },
3097
+ "node_modules/readdirp": {
3098
+ "version": "3.6.0",
3099
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
3100
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
3101
+ "dev": true,
3102
+ "license": "MIT",
3103
+ "dependencies": {
3104
+ "picomatch": "^2.2.1"
3105
+ },
3106
+ "engines": {
3107
+ "node": ">=8.10.0"
3108
+ }
3109
+ },
3110
+ "node_modules/rimraf": {
3111
+ "version": "2.7.1",
3112
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
3113
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
3114
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
3115
+ "dev": true,
3116
+ "license": "ISC",
3117
+ "dependencies": {
3118
+ "glob": "^7.1.3"
3119
+ },
3120
+ "bin": {
3121
+ "rimraf": "bin.js"
3122
+ }
3123
+ },
3124
+ "node_modules/robust-predicates": {
3125
+ "version": "3.0.2",
3126
+ "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz",
3127
+ "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==",
3128
+ "license": "Unlicense"
3129
+ },
3130
+ "node_modules/rollup": {
3131
+ "version": "4.52.4",
3132
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz",
3133
+ "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==",
3134
+ "dev": true,
3135
+ "license": "MIT",
3136
+ "dependencies": {
3137
+ "@types/estree": "1.0.8"
3138
+ },
3139
+ "bin": {
3140
+ "rollup": "dist/bin/rollup"
3141
+ },
3142
+ "engines": {
3143
+ "node": ">=18.0.0",
3144
+ "npm": ">=8.0.0"
3145
+ },
3146
+ "optionalDependencies": {
3147
+ "@rollup/rollup-android-arm-eabi": "4.52.4",
3148
+ "@rollup/rollup-android-arm64": "4.52.4",
3149
+ "@rollup/rollup-darwin-arm64": "4.52.4",
3150
+ "@rollup/rollup-darwin-x64": "4.52.4",
3151
+ "@rollup/rollup-freebsd-arm64": "4.52.4",
3152
+ "@rollup/rollup-freebsd-x64": "4.52.4",
3153
+ "@rollup/rollup-linux-arm-gnueabihf": "4.52.4",
3154
+ "@rollup/rollup-linux-arm-musleabihf": "4.52.4",
3155
+ "@rollup/rollup-linux-arm64-gnu": "4.52.4",
3156
+ "@rollup/rollup-linux-arm64-musl": "4.52.4",
3157
+ "@rollup/rollup-linux-loong64-gnu": "4.52.4",
3158
+ "@rollup/rollup-linux-ppc64-gnu": "4.52.4",
3159
+ "@rollup/rollup-linux-riscv64-gnu": "4.52.4",
3160
+ "@rollup/rollup-linux-riscv64-musl": "4.52.4",
3161
+ "@rollup/rollup-linux-s390x-gnu": "4.52.4",
3162
+ "@rollup/rollup-linux-x64-gnu": "4.52.4",
3163
+ "@rollup/rollup-linux-x64-musl": "4.52.4",
3164
+ "@rollup/rollup-openharmony-arm64": "4.52.4",
3165
+ "@rollup/rollup-win32-arm64-msvc": "4.52.4",
3166
+ "@rollup/rollup-win32-ia32-msvc": "4.52.4",
3167
+ "@rollup/rollup-win32-x64-gnu": "4.52.4",
3168
+ "@rollup/rollup-win32-x64-msvc": "4.52.4",
3169
+ "fsevents": "~2.3.2"
3170
+ }
3171
+ },
3172
+ "node_modules/rw": {
3173
+ "version": "1.3.3",
3174
+ "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
3175
+ "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==",
3176
+ "license": "BSD-3-Clause"
3177
+ },
3178
+ "node_modules/sade": {
3179
+ "version": "1.8.1",
3180
+ "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
3181
+ "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
3182
+ "dev": true,
3183
+ "license": "MIT",
3184
+ "dependencies": {
3185
+ "mri": "^1.1.0"
3186
+ },
3187
+ "engines": {
3188
+ "node": ">=6"
3189
+ }
3190
+ },
3191
+ "node_modules/safer-buffer": {
3192
+ "version": "2.1.2",
3193
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
3194
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
3195
+ "license": "MIT"
3196
+ },
3197
+ "node_modules/sander": {
3198
+ "version": "0.5.1",
3199
+ "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz",
3200
+ "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==",
3201
+ "dev": true,
3202
+ "license": "MIT",
3203
+ "dependencies": {
3204
+ "es6-promise": "^3.1.2",
3205
+ "graceful-fs": "^4.1.3",
3206
+ "mkdirp": "^0.5.1",
3207
+ "rimraf": "^2.5.2"
3208
+ }
3209
+ },
3210
+ "node_modules/semver": {
3211
+ "version": "7.7.3",
3212
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
3213
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
3214
+ "license": "ISC",
3215
+ "bin": {
3216
+ "semver": "bin/semver.js"
3217
+ },
3218
+ "engines": {
3219
+ "node": ">=10"
3220
+ }
3221
+ },
3222
+ "node_modules/set-cookie-parser": {
3223
+ "version": "2.7.1",
3224
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz",
3225
+ "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==",
3226
+ "dev": true,
3227
+ "license": "MIT"
3228
+ },
3229
+ "node_modules/sirv": {
3230
+ "version": "3.0.2",
3231
+ "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz",
3232
+ "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==",
3233
+ "dev": true,
3234
+ "license": "MIT",
3235
+ "dependencies": {
3236
+ "@polka/url": "^1.0.0-next.24",
3237
+ "mrmime": "^2.0.0",
3238
+ "totalist": "^3.0.0"
3239
+ },
3240
+ "engines": {
3241
+ "node": ">=18"
3242
+ }
3243
+ },
3244
+ "node_modules/sorcery": {
3245
+ "version": "0.11.1",
3246
+ "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.1.tgz",
3247
+ "integrity": "sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==",
3248
+ "dev": true,
3249
+ "license": "MIT",
3250
+ "dependencies": {
3251
+ "@jridgewell/sourcemap-codec": "^1.4.14",
3252
+ "buffer-crc32": "^1.0.0",
3253
+ "minimist": "^1.2.0",
3254
+ "sander": "^0.5.0"
3255
+ },
3256
+ "bin": {
3257
+ "sorcery": "bin/sorcery"
3258
+ }
3259
+ },
3260
+ "node_modules/source-map-js": {
3261
+ "version": "1.2.1",
3262
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3263
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3264
+ "dev": true,
3265
+ "license": "BSD-3-Clause",
3266
+ "engines": {
3267
+ "node": ">=0.10.0"
3268
+ }
3269
+ },
3270
+ "node_modules/string-width": {
3271
+ "version": "7.2.0",
3272
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
3273
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
3274
+ "license": "MIT",
3275
+ "dependencies": {
3276
+ "emoji-regex": "^10.3.0",
3277
+ "get-east-asian-width": "^1.0.0",
3278
+ "strip-ansi": "^7.1.0"
3279
+ },
3280
+ "engines": {
3281
+ "node": ">=18"
3282
+ },
3283
+ "funding": {
3284
+ "url": "https://github.com/sponsors/sindresorhus"
3285
+ }
3286
+ },
3287
+ "node_modules/strip-ansi": {
3288
+ "version": "7.1.2",
3289
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
3290
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
3291
+ "license": "MIT",
3292
+ "dependencies": {
3293
+ "ansi-regex": "^6.0.1"
3294
+ },
3295
+ "engines": {
3296
+ "node": ">=12"
3297
+ },
3298
+ "funding": {
3299
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
3300
+ }
3301
+ },
3302
+ "node_modules/strip-indent": {
3303
+ "version": "3.0.0",
3304
+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
3305
+ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
3306
+ "dev": true,
3307
+ "license": "MIT",
3308
+ "dependencies": {
3309
+ "min-indent": "^1.0.0"
3310
+ },
3311
+ "engines": {
3312
+ "node": ">=8"
3313
+ }
3314
+ },
3315
+ "node_modules/svelte": {
3316
+ "version": "5.39.12",
3317
+ "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.39.12.tgz",
3318
+ "integrity": "sha512-CEzwxFuEycokU8K8CE/OuwVbmei+ivu2HvBGYIdASfMa1hCRSNr4RRkzNSvbAvu6h+BOig2CsZTAEY+WKvwZpA==",
3319
+ "license": "MIT",
3320
+ "peer": true,
3321
+ "dependencies": {
3322
+ "@jridgewell/remapping": "^2.3.4",
3323
+ "@jridgewell/sourcemap-codec": "^1.5.0",
3324
+ "@sveltejs/acorn-typescript": "^1.0.5",
3325
+ "@types/estree": "^1.0.5",
3326
+ "acorn": "^8.12.1",
3327
+ "aria-query": "^5.3.1",
3328
+ "axobject-query": "^4.1.0",
3329
+ "clsx": "^2.1.1",
3330
+ "esm-env": "^1.2.1",
3331
+ "esrap": "^2.1.0",
3332
+ "is-reference": "^3.0.3",
3333
+ "locate-character": "^3.0.0",
3334
+ "magic-string": "^0.30.11",
3335
+ "zimmerframe": "^1.1.2"
3336
+ },
3337
+ "engines": {
3338
+ "node": ">=18"
3339
+ }
3340
+ },
3341
+ "node_modules/svelte-check": {
3342
+ "version": "3.8.6",
3343
+ "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.8.6.tgz",
3344
+ "integrity": "sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==",
3345
+ "dev": true,
3346
+ "license": "MIT",
3347
+ "dependencies": {
3348
+ "@jridgewell/trace-mapping": "^0.3.17",
3349
+ "chokidar": "^3.4.1",
3350
+ "picocolors": "^1.0.0",
3351
+ "sade": "^1.7.4",
3352
+ "svelte-preprocess": "^5.1.3",
3353
+ "typescript": "^5.0.3"
3354
+ },
3355
+ "bin": {
3356
+ "svelte-check": "bin/svelte-check"
3357
+ },
3358
+ "peerDependencies": {
3359
+ "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0"
3360
+ }
3361
+ },
3362
+ "node_modules/svelte-preprocess": {
3363
+ "version": "5.1.4",
3364
+ "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz",
3365
+ "integrity": "sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==",
3366
+ "dev": true,
3367
+ "hasInstallScript": true,
3368
+ "license": "MIT",
3369
+ "dependencies": {
3370
+ "@types/pug": "^2.0.6",
3371
+ "detect-indent": "^6.1.0",
3372
+ "magic-string": "^0.30.5",
3373
+ "sorcery": "^0.11.0",
3374
+ "strip-indent": "^3.0.0"
3375
+ },
3376
+ "engines": {
3377
+ "node": ">= 16.0.0"
3378
+ },
3379
+ "peerDependencies": {
3380
+ "@babel/core": "^7.10.2",
3381
+ "coffeescript": "^2.5.1",
3382
+ "less": "^3.11.3 || ^4.0.0",
3383
+ "postcss": "^7 || ^8",
3384
+ "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
3385
+ "pug": "^3.0.0",
3386
+ "sass": "^1.26.8",
3387
+ "stylus": "^0.55.0",
3388
+ "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0",
3389
+ "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0",
3390
+ "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0"
3391
+ },
3392
+ "peerDependenciesMeta": {
3393
+ "@babel/core": {
3394
+ "optional": true
3395
+ },
3396
+ "coffeescript": {
3397
+ "optional": true
3398
+ },
3399
+ "less": {
3400
+ "optional": true
3401
+ },
3402
+ "postcss": {
3403
+ "optional": true
3404
+ },
3405
+ "postcss-load-config": {
3406
+ "optional": true
3407
+ },
3408
+ "pug": {
3409
+ "optional": true
3410
+ },
3411
+ "sass": {
3412
+ "optional": true
3413
+ },
3414
+ "stylus": {
3415
+ "optional": true
3416
+ },
3417
+ "sugarss": {
3418
+ "optional": true
3419
+ },
3420
+ "typescript": {
3421
+ "optional": true
3422
+ }
3423
+ }
3424
+ },
3425
+ "node_modules/svelte-vega": {
3426
+ "version": "4.0.1",
3427
+ "resolved": "https://registry.npmjs.org/svelte-vega/-/svelte-vega-4.0.1.tgz",
3428
+ "integrity": "sha512-kioks+mJ3Gqv9GoFH3Pb9KTd2COTAQxVgZTf3qZJvcgwp0qDg2EIPDHeYEIjPA6+bdpPDPIBqBRHfKU4CRCafw==",
3429
+ "license": "BSD-3-Clause",
3430
+ "peerDependencies": {
3431
+ "svelte": "^5.0.0",
3432
+ "vega": "^6.0.0",
3433
+ "vega-embed": "^7.0.0",
3434
+ "vega-lite": "^6.0.0"
3435
+ }
3436
+ },
3437
+ "node_modules/tailwindcss": {
3438
+ "version": "4.1.14",
3439
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.14.tgz",
3440
+ "integrity": "sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==",
3441
+ "dev": true,
3442
+ "license": "MIT"
3443
+ },
3444
+ "node_modules/tapable": {
3445
+ "version": "2.3.0",
3446
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
3447
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
3448
+ "dev": true,
3449
+ "license": "MIT",
3450
+ "engines": {
3451
+ "node": ">=6"
3452
+ },
3453
+ "funding": {
3454
+ "type": "opencollective",
3455
+ "url": "https://opencollective.com/webpack"
3456
+ }
3457
+ },
3458
+ "node_modules/tar": {
3459
+ "version": "7.5.2",
3460
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.2.tgz",
3461
+ "integrity": "sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==",
3462
+ "dev": true,
3463
+ "license": "BlueOak-1.0.0",
3464
+ "dependencies": {
3465
+ "@isaacs/fs-minipass": "^4.0.0",
3466
+ "chownr": "^3.0.0",
3467
+ "minipass": "^7.1.2",
3468
+ "minizlib": "^3.1.0",
3469
+ "yallist": "^5.0.0"
3470
+ },
3471
+ "engines": {
3472
+ "node": ">=18"
3473
+ }
3474
+ },
3475
+ "node_modules/to-regex-range": {
3476
+ "version": "5.0.1",
3477
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3478
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3479
+ "dev": true,
3480
+ "license": "MIT",
3481
+ "dependencies": {
3482
+ "is-number": "^7.0.0"
3483
+ },
3484
+ "engines": {
3485
+ "node": ">=8.0"
3486
+ }
3487
+ },
3488
+ "node_modules/topojson-client": {
3489
+ "version": "3.1.0",
3490
+ "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
3491
+ "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
3492
+ "license": "ISC",
3493
+ "dependencies": {
3494
+ "commander": "2"
3495
+ },
3496
+ "bin": {
3497
+ "topo2geo": "bin/topo2geo",
3498
+ "topomerge": "bin/topomerge",
3499
+ "topoquantize": "bin/topoquantize"
3500
+ }
3501
+ },
3502
+ "node_modules/topojson-client/node_modules/commander": {
3503
+ "version": "2.20.3",
3504
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
3505
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
3506
+ "license": "MIT"
3507
+ },
3508
+ "node_modules/totalist": {
3509
+ "version": "3.0.1",
3510
+ "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
3511
+ "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
3512
+ "dev": true,
3513
+ "license": "MIT",
3514
+ "engines": {
3515
+ "node": ">=6"
3516
+ }
3517
+ },
3518
+ "node_modules/tslib": {
3519
+ "version": "2.8.1",
3520
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3521
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3522
+ "license": "0BSD"
3523
+ },
3524
+ "node_modules/typescript": {
3525
+ "version": "5.9.3",
3526
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
3527
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
3528
+ "dev": true,
3529
+ "license": "Apache-2.0",
3530
+ "peer": true,
3531
+ "bin": {
3532
+ "tsc": "bin/tsc",
3533
+ "tsserver": "bin/tsserver"
3534
+ },
3535
+ "engines": {
3536
+ "node": ">=14.17"
3537
+ }
3538
+ },
3539
+ "node_modules/vega": {
3540
+ "version": "6.2.0",
3541
+ "resolved": "https://registry.npmjs.org/vega/-/vega-6.2.0.tgz",
3542
+ "integrity": "sha512-BIwalIcEGysJdQDjeVUmMWB3e50jPDNAMfLJscjEvpunU9bSt7X1OYnQxkg3uBwuRRI4nWfFZO9uIW910nLeGw==",
3543
+ "license": "BSD-3-Clause",
3544
+ "peer": true,
3545
+ "dependencies": {
3546
+ "vega-crossfilter": "~5.1.0",
3547
+ "vega-dataflow": "~6.1.0",
3548
+ "vega-encode": "~5.1.0",
3549
+ "vega-event-selector": "~4.0.0",
3550
+ "vega-expression": "~6.1.0",
3551
+ "vega-force": "~5.1.0",
3552
+ "vega-format": "~2.1.0",
3553
+ "vega-functions": "~6.1.0",
3554
+ "vega-geo": "~5.1.0",
3555
+ "vega-hierarchy": "~5.1.0",
3556
+ "vega-label": "~2.1.0",
3557
+ "vega-loader": "~5.1.0",
3558
+ "vega-parser": "~7.1.0",
3559
+ "vega-projection": "~2.1.0",
3560
+ "vega-regression": "~2.1.0",
3561
+ "vega-runtime": "~7.1.0",
3562
+ "vega-scale": "~8.1.0",
3563
+ "vega-scenegraph": "~5.1.0",
3564
+ "vega-statistics": "~2.0.0",
3565
+ "vega-time": "~3.1.0",
3566
+ "vega-transforms": "~5.1.0",
3567
+ "vega-typings": "~2.1.0",
3568
+ "vega-util": "~2.1.0",
3569
+ "vega-view": "~6.1.0",
3570
+ "vega-view-transforms": "~5.1.0",
3571
+ "vega-voronoi": "~5.1.0",
3572
+ "vega-wordcloud": "~5.1.0"
3573
+ },
3574
+ "funding": {
3575
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3576
+ }
3577
+ },
3578
+ "node_modules/vega-canvas": {
3579
+ "version": "2.0.0",
3580
+ "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-2.0.0.tgz",
3581
+ "integrity": "sha512-9x+4TTw/USYST5nx4yN272sy9WcqSRjAR0tkQYZJ4cQIeon7uVsnohvoPQK1JZu7K1QXGUqzj08z0u/UegBVMA==",
3582
+ "license": "BSD-3-Clause"
3583
+ },
3584
+ "node_modules/vega-crossfilter": {
3585
+ "version": "5.1.0",
3586
+ "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-5.1.0.tgz",
3587
+ "integrity": "sha512-EmVhfP3p6AM7o/lPan/QAoqjblI19BxWUlvl2TSs0xjQd8KbaYYbS4Ixt3cmEvl0QjRdBMF6CdJJ/cy9DTS4Fw==",
3588
+ "license": "BSD-3-Clause",
3589
+ "dependencies": {
3590
+ "d3-array": "^3.2.4",
3591
+ "vega-dataflow": "^6.1.0",
3592
+ "vega-util": "^2.1.0"
3593
+ }
3594
+ },
3595
+ "node_modules/vega-dataflow": {
3596
+ "version": "6.1.0",
3597
+ "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-6.1.0.tgz",
3598
+ "integrity": "sha512-JxumGlODtFbzoQ4c/jQK8Tb/68ih0lrexlCozcMfTAwQ12XhTqCvlafh7MAKKTMBizjOfaQTHm4Jkyb1H5CfyQ==",
3599
+ "license": "BSD-3-Clause",
3600
+ "dependencies": {
3601
+ "vega-format": "^2.1.0",
3602
+ "vega-loader": "^5.1.0",
3603
+ "vega-util": "^2.1.0"
3604
+ }
3605
+ },
3606
+ "node_modules/vega-embed": {
3607
+ "version": "7.1.0",
3608
+ "resolved": "https://registry.npmjs.org/vega-embed/-/vega-embed-7.1.0.tgz",
3609
+ "integrity": "sha512-ZmEIn5XJrQt7fSh2lwtSdXG/9uf3yIqZnvXFEwBJRppiBgrEWZcZbj6VK3xn8sNTFQ+sQDXW5sl/6kmbAW3s5A==",
3610
+ "license": "BSD-3-Clause",
3611
+ "peer": true,
3612
+ "dependencies": {
3613
+ "fast-json-patch": "^3.1.1",
3614
+ "json-stringify-pretty-compact": "^4.0.0",
3615
+ "semver": "^7.7.2",
3616
+ "tslib": "^2.8.1",
3617
+ "vega-interpreter": "^2.0.0",
3618
+ "vega-schema-url-parser": "^3.0.2",
3619
+ "vega-themes": "3.0.0",
3620
+ "vega-tooltip": "1.0.0"
3621
+ },
3622
+ "funding": {
3623
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3624
+ },
3625
+ "peerDependencies": {
3626
+ "vega": "*",
3627
+ "vega-lite": "*"
3628
+ }
3629
+ },
3630
+ "node_modules/vega-encode": {
3631
+ "version": "5.1.0",
3632
+ "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-5.1.0.tgz",
3633
+ "integrity": "sha512-q26oI7B+MBQYcTQcr5/c1AMsX3FvjZLQOBi7yI0vV+GEn93fElDgvhQiYrgeYSD4Exi/jBPeUXuN6p4bLz16kA==",
3634
+ "license": "BSD-3-Clause",
3635
+ "dependencies": {
3636
+ "d3-array": "^3.2.4",
3637
+ "d3-interpolate": "^3.0.1",
3638
+ "vega-dataflow": "^6.1.0",
3639
+ "vega-scale": "^8.1.0",
3640
+ "vega-util": "^2.1.0"
3641
+ }
3642
+ },
3643
+ "node_modules/vega-event-selector": {
3644
+ "version": "4.0.0",
3645
+ "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-4.0.0.tgz",
3646
+ "integrity": "sha512-CcWF4m4KL/al1Oa5qSzZ5R776q8lRxCj3IafCHs5xipoEHrkgu1BWa7F/IH5HrDNXeIDnqOpSV1pFsAWRak4gQ==",
3647
+ "license": "BSD-3-Clause"
3648
+ },
3649
+ "node_modules/vega-expression": {
3650
+ "version": "6.1.0",
3651
+ "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-6.1.0.tgz",
3652
+ "integrity": "sha512-hHgNx/fQ1Vn1u6vHSamH7lRMsOa/yQeHGGcWVmh8fZafLdwdhCM91kZD9p7+AleNpgwiwzfGogtpATFaMmDFYg==",
3653
+ "license": "BSD-3-Clause",
3654
+ "dependencies": {
3655
+ "@types/estree": "^1.0.8",
3656
+ "vega-util": "^2.1.0"
3657
+ }
3658
+ },
3659
+ "node_modules/vega-force": {
3660
+ "version": "5.1.0",
3661
+ "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-5.1.0.tgz",
3662
+ "integrity": "sha512-wdnchOSeXpF9Xx8Yp0s6Do9F7YkFeOn/E/nENtsI7NOcyHpICJ5+UkgjUo9QaQ/Yu+dIDU+sP/4NXsUtq6SMaQ==",
3663
+ "license": "BSD-3-Clause",
3664
+ "dependencies": {
3665
+ "d3-force": "^3.0.0",
3666
+ "vega-dataflow": "^6.1.0",
3667
+ "vega-util": "^2.1.0"
3668
+ }
3669
+ },
3670
+ "node_modules/vega-format": {
3671
+ "version": "2.1.0",
3672
+ "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-2.1.0.tgz",
3673
+ "integrity": "sha512-i9Ht33IgqG36+S1gFDpAiKvXCPz+q+1vDhDGKK8YsgMxGOG4PzinKakI66xd7SdV4q97FgpR7odAXqtDN2wKqw==",
3674
+ "license": "BSD-3-Clause",
3675
+ "dependencies": {
3676
+ "d3-array": "^3.2.4",
3677
+ "d3-format": "^3.1.0",
3678
+ "d3-time-format": "^4.1.0",
3679
+ "vega-time": "^3.1.0",
3680
+ "vega-util": "^2.1.0"
3681
+ }
3682
+ },
3683
+ "node_modules/vega-functions": {
3684
+ "version": "6.1.0",
3685
+ "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-6.1.0.tgz",
3686
+ "integrity": "sha512-yooEbWt0FWMBNoohwLsl25lEh08WsWabTXbbS+q0IXZzWSpX4Cyi45+q7IFyy/2L4oaIfGIIV14dgn3srQQcGA==",
3687
+ "license": "BSD-3-Clause",
3688
+ "dependencies": {
3689
+ "d3-array": "^3.2.4",
3690
+ "d3-color": "^3.1.0",
3691
+ "d3-geo": "^3.1.1",
3692
+ "vega-dataflow": "^6.1.0",
3693
+ "vega-expression": "^6.1.0",
3694
+ "vega-scale": "^8.1.0",
3695
+ "vega-scenegraph": "^5.1.0",
3696
+ "vega-selections": "^6.1.0",
3697
+ "vega-statistics": "^2.0.0",
3698
+ "vega-time": "^3.1.0",
3699
+ "vega-util": "^2.1.0"
3700
+ }
3701
+ },
3702
+ "node_modules/vega-geo": {
3703
+ "version": "5.1.0",
3704
+ "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-5.1.0.tgz",
3705
+ "integrity": "sha512-H8aBBHfthc3rzDbz/Th18+Nvp00J73q3uXGAPDQqizioDm/CoXCK8cX4pMePydBY9S6ikBiGJrLKFDa80wI20g==",
3706
+ "license": "BSD-3-Clause",
3707
+ "dependencies": {
3708
+ "d3-array": "^3.2.4",
3709
+ "d3-color": "^3.1.0",
3710
+ "d3-geo": "^3.1.1",
3711
+ "vega-canvas": "^2.0.0",
3712
+ "vega-dataflow": "^6.1.0",
3713
+ "vega-projection": "^2.1.0",
3714
+ "vega-statistics": "^2.0.0",
3715
+ "vega-util": "^2.1.0"
3716
+ }
3717
+ },
3718
+ "node_modules/vega-hierarchy": {
3719
+ "version": "5.1.0",
3720
+ "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-5.1.0.tgz",
3721
+ "integrity": "sha512-rZlU8QJNETlB6o73lGCPybZtw2fBBsRIRuFE77aCLFHdGsh6wIifhplVarqE9icBqjUHRRUOmcEYfzwVIPr65g==",
3722
+ "license": "BSD-3-Clause",
3723
+ "dependencies": {
3724
+ "d3-hierarchy": "^3.1.2",
3725
+ "vega-dataflow": "^6.1.0",
3726
+ "vega-util": "^2.1.0"
3727
+ }
3728
+ },
3729
+ "node_modules/vega-interpreter": {
3730
+ "version": "2.2.1",
3731
+ "resolved": "https://registry.npmjs.org/vega-interpreter/-/vega-interpreter-2.2.1.tgz",
3732
+ "integrity": "sha512-o+4ZEme2mdFLewlpF76dwPWW2VkZ3TAF3DMcq75/NzA5KPvnN4wnlCM8At2FVawbaHRyGdVkJSS5ROF5KwpHPQ==",
3733
+ "license": "BSD-3-Clause",
3734
+ "dependencies": {
3735
+ "vega-util": "^2.1.0"
3736
+ }
3737
+ },
3738
+ "node_modules/vega-label": {
3739
+ "version": "2.1.0",
3740
+ "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-2.1.0.tgz",
3741
+ "integrity": "sha512-/hgf+zoA3FViDBehrQT42Lta3t8In6YwtMnwjYlh72zNn1p3c7E3YUBwqmAqTM1x+tudgzMRGLYig+bX1ewZxQ==",
3742
+ "license": "BSD-3-Clause",
3743
+ "dependencies": {
3744
+ "vega-canvas": "^2.0.0",
3745
+ "vega-dataflow": "^6.1.0",
3746
+ "vega-scenegraph": "^5.1.0",
3747
+ "vega-util": "^2.1.0"
3748
+ }
3749
+ },
3750
+ "node_modules/vega-lite": {
3751
+ "version": "6.4.1",
3752
+ "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-6.4.1.tgz",
3753
+ "integrity": "sha512-KO3ybHNouRK4A0al/+2fN9UqgTEfxrd/ntGLY933Hg5UOYotDVQdshR3zn7OfXwQ7uj0W96Vfa5R+QxO8am3IQ==",
3754
+ "license": "BSD-3-Clause",
3755
+ "peer": true,
3756
+ "dependencies": {
3757
+ "json-stringify-pretty-compact": "~4.0.0",
3758
+ "tslib": "~2.8.1",
3759
+ "vega-event-selector": "~4.0.0",
3760
+ "vega-expression": "~6.1.0",
3761
+ "vega-util": "~2.1.0",
3762
+ "yargs": "~18.0.0"
3763
+ },
3764
+ "bin": {
3765
+ "vl2pdf": "bin/vl2pdf",
3766
+ "vl2png": "bin/vl2png",
3767
+ "vl2svg": "bin/vl2svg",
3768
+ "vl2vg": "bin/vl2vg"
3769
+ },
3770
+ "engines": {
3771
+ "node": ">=18"
3772
+ },
3773
+ "funding": {
3774
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3775
+ },
3776
+ "peerDependencies": {
3777
+ "vega": "^6.0.0"
3778
+ }
3779
+ },
3780
+ "node_modules/vega-loader": {
3781
+ "version": "5.1.0",
3782
+ "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-5.1.0.tgz",
3783
+ "integrity": "sha512-GaY3BdSPbPNdtrBz8SYUBNmNd8mdPc3mtdZfdkFazQ0RD9m+Toz5oR8fKnTamNSk9fRTJX0Lp3uEqxrAlQVreg==",
3784
+ "license": "BSD-3-Clause",
3785
+ "dependencies": {
3786
+ "d3-dsv": "^3.0.1",
3787
+ "topojson-client": "^3.1.0",
3788
+ "vega-format": "^2.1.0",
3789
+ "vega-util": "^2.1.0"
3790
+ }
3791
+ },
3792
+ "node_modules/vega-parser": {
3793
+ "version": "7.1.0",
3794
+ "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-7.1.0.tgz",
3795
+ "integrity": "sha512-g0lrYxtmYVW8G6yXpIS4J3Uxt9OUSkc0bLu5afoYDo4rZmoOOdll3x3ebActp5LHPW+usZIE+p5nukRS2vEc7Q==",
3796
+ "license": "BSD-3-Clause",
3797
+ "dependencies": {
3798
+ "vega-dataflow": "^6.1.0",
3799
+ "vega-event-selector": "^4.0.0",
3800
+ "vega-functions": "^6.1.0",
3801
+ "vega-scale": "^8.1.0",
3802
+ "vega-util": "^2.1.0"
3803
+ }
3804
+ },
3805
+ "node_modules/vega-projection": {
3806
+ "version": "2.1.0",
3807
+ "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-2.1.0.tgz",
3808
+ "integrity": "sha512-EjRjVSoMR5ibrU7q8LaOQKP327NcOAM1+eZ+NO4ANvvAutwmbNVTmfA1VpPH+AD0AlBYc39ND/wnRk7SieDiXA==",
3809
+ "license": "BSD-3-Clause",
3810
+ "dependencies": {
3811
+ "d3-geo": "^3.1.1",
3812
+ "d3-geo-projection": "^4.0.0",
3813
+ "vega-scale": "^8.1.0"
3814
+ }
3815
+ },
3816
+ "node_modules/vega-regression": {
3817
+ "version": "2.1.0",
3818
+ "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-2.1.0.tgz",
3819
+ "integrity": "sha512-HzC7MuoEwG1rIxRaNTqgcaYF03z/ZxYkQR2D5BN0N45kLnHY1HJXiEcZkcffTsqXdspLjn47yLi44UoCwF5fxQ==",
3820
+ "license": "BSD-3-Clause",
3821
+ "dependencies": {
3822
+ "d3-array": "^3.2.4",
3823
+ "vega-dataflow": "^6.1.0",
3824
+ "vega-statistics": "^2.0.0",
3825
+ "vega-util": "^2.1.0"
3826
+ }
3827
+ },
3828
+ "node_modules/vega-runtime": {
3829
+ "version": "7.1.0",
3830
+ "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-7.1.0.tgz",
3831
+ "integrity": "sha512-mItI+WHimyEcZlZrQ/zYR3LwHVeyHCWwp7MKaBjkU8EwkSxEEGVceyGUY9X2YuJLiOgkLz/6juYDbMv60pfwYA==",
3832
+ "license": "BSD-3-Clause",
3833
+ "dependencies": {
3834
+ "vega-dataflow": "^6.1.0",
3835
+ "vega-util": "^2.1.0"
3836
+ }
3837
+ },
3838
+ "node_modules/vega-scale": {
3839
+ "version": "8.1.0",
3840
+ "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-8.1.0.tgz",
3841
+ "integrity": "sha512-VEgDuEcOec8+C8+FzLcnAmcXrv2gAJKqQifCdQhkgnsLa978vYUgVfCut/mBSMMHbH8wlUV1D0fKZTjRukA1+A==",
3842
+ "license": "BSD-3-Clause",
3843
+ "dependencies": {
3844
+ "d3-array": "^3.2.4",
3845
+ "d3-interpolate": "^3.0.1",
3846
+ "d3-scale": "^4.0.2",
3847
+ "d3-scale-chromatic": "^3.1.0",
3848
+ "vega-time": "^3.1.0",
3849
+ "vega-util": "^2.1.0"
3850
+ }
3851
+ },
3852
+ "node_modules/vega-scenegraph": {
3853
+ "version": "5.1.0",
3854
+ "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-5.1.0.tgz",
3855
+ "integrity": "sha512-4gA89CFIxkZX+4Nvl8SZF2MBOqnlj9J5zgdPh/HPx+JOwtzSlUqIhxFpFj7GWYfwzr/PyZnguBLPihPw1Og/cA==",
3856
+ "license": "BSD-3-Clause",
3857
+ "dependencies": {
3858
+ "d3-path": "^3.1.0",
3859
+ "d3-shape": "^3.2.0",
3860
+ "vega-canvas": "^2.0.0",
3861
+ "vega-loader": "^5.1.0",
3862
+ "vega-scale": "^8.1.0",
3863
+ "vega-util": "^2.1.0"
3864
+ }
3865
+ },
3866
+ "node_modules/vega-schema-url-parser": {
3867
+ "version": "3.0.2",
3868
+ "resolved": "https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-3.0.2.tgz",
3869
+ "integrity": "sha512-xAnR7KAvNPYewI3O0l5QGdT8Tv0+GCZQjqfP39cW/hbe/b3aYMAQ39vm8O2wfXUHzm04xTe7nolcsx8WQNVLRQ==",
3870
+ "license": "BSD-3-Clause"
3871
+ },
3872
+ "node_modules/vega-selections": {
3873
+ "version": "6.1.0",
3874
+ "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-6.1.0.tgz",
3875
+ "integrity": "sha512-WaHM7D7ghHceEfMsgFeaZnDToWL0mgCFtStVOobNh/OJLh0CL7yNKeKQBqRXJv2Lx74dPNf6nj08+52ytWfW7g==",
3876
+ "license": "BSD-3-Clause",
3877
+ "dependencies": {
3878
+ "d3-array": "3.2.4",
3879
+ "vega-expression": "^6.1.0",
3880
+ "vega-util": "^2.1.0"
3881
+ }
3882
+ },
3883
+ "node_modules/vega-statistics": {
3884
+ "version": "2.0.0",
3885
+ "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-2.0.0.tgz",
3886
+ "integrity": "sha512-dGPfDXnBlgXbZF3oxtkb8JfeRXd5TYHx25Z/tIoaa9jWua4Vf/AoW2wwh8J1qmMy8J03/29aowkp1yk4DOPazQ==",
3887
+ "license": "BSD-3-Clause",
3888
+ "dependencies": {
3889
+ "d3-array": "^3.2.4"
3890
+ }
3891
+ },
3892
+ "node_modules/vega-themes": {
3893
+ "version": "3.0.0",
3894
+ "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-3.0.0.tgz",
3895
+ "integrity": "sha512-1iFiI3BNmW9FrsLnDLx0ZKEddsCitRY3XmUAwp6qmp+p+IXyJYc9pfjlVj9E6KXBPfm4cQyU++s0smKNiWzO4g==",
3896
+ "license": "BSD-3-Clause",
3897
+ "funding": {
3898
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3899
+ },
3900
+ "peerDependencies": {
3901
+ "vega": "*",
3902
+ "vega-lite": "*"
3903
+ }
3904
+ },
3905
+ "node_modules/vega-time": {
3906
+ "version": "3.1.0",
3907
+ "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-3.1.0.tgz",
3908
+ "integrity": "sha512-G93mWzPwNa6UYQRkr8Ujur9uqxbBDjDT/WpXjbDY0yygdSkRT+zXF+Sb4gjhW0nPaqdiwkn0R6kZcSPMj1bMNA==",
3909
+ "license": "BSD-3-Clause",
3910
+ "dependencies": {
3911
+ "d3-array": "^3.2.4",
3912
+ "d3-time": "^3.1.0",
3913
+ "vega-util": "^2.1.0"
3914
+ }
3915
+ },
3916
+ "node_modules/vega-tooltip": {
3917
+ "version": "1.0.0",
3918
+ "resolved": "https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-1.0.0.tgz",
3919
+ "integrity": "sha512-P1R0JP29v0qnTuwzCQ0SPJlkjAzr6qeyj+H4VgUFSykHmHc1OBxda//XBaFDl/bZgIscEMvjKSjZpXd84x3aZQ==",
3920
+ "license": "BSD-3-Clause",
3921
+ "dependencies": {
3922
+ "vega-util": "^2.0.0"
3923
+ },
3924
+ "funding": {
3925
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3926
+ }
3927
+ },
3928
+ "node_modules/vega-transforms": {
3929
+ "version": "5.1.0",
3930
+ "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-5.1.0.tgz",
3931
+ "integrity": "sha512-mj/sO2tSuzzpiXX8JSl4DDlhEmVwM/46MTAzTNQUQzJPMI/n4ChCjr/SdEbfEyzlD4DPm1bjohZGjLc010yuMg==",
3932
+ "license": "BSD-3-Clause",
3933
+ "dependencies": {
3934
+ "d3-array": "^3.2.4",
3935
+ "vega-dataflow": "^6.1.0",
3936
+ "vega-statistics": "^2.0.0",
3937
+ "vega-time": "^3.1.0",
3938
+ "vega-util": "^2.1.0"
3939
+ }
3940
+ },
3941
+ "node_modules/vega-typings": {
3942
+ "version": "2.1.0",
3943
+ "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-2.1.0.tgz",
3944
+ "integrity": "sha512-zdis4Fg4gv37yEvTTSZEVMNhp8hwyEl7GZ4X4HHddRVRKxWFsbyKvZx/YW5Z9Ox4sjxVA2qHzEbod4Fdx+SEJA==",
3945
+ "license": "BSD-3-Clause",
3946
+ "dependencies": {
3947
+ "@types/geojson": "7946.0.16",
3948
+ "vega-event-selector": "^4.0.0",
3949
+ "vega-expression": "^6.1.0",
3950
+ "vega-util": "^2.1.0"
3951
+ }
3952
+ },
3953
+ "node_modules/vega-util": {
3954
+ "version": "2.1.0",
3955
+ "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-2.1.0.tgz",
3956
+ "integrity": "sha512-PGfp0m0QCufDmcxKJCWQy4Ov23FoF8DSXmoJwSezi3itQaa2hbxK0+xwsTMP2vy4PR16Pu25HMzgMwXVW1+33w==",
3957
+ "license": "BSD-3-Clause"
3958
+ },
3959
+ "node_modules/vega-view": {
3960
+ "version": "6.1.0",
3961
+ "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-6.1.0.tgz",
3962
+ "integrity": "sha512-hmHDm/zC65lb23mb9Tr9Gx0wkxP0TMS31LpMPYxIZpvInxvUn7TYitkOtz1elr63k2YZrgmF7ztdGyQ4iCQ5fQ==",
3963
+ "license": "BSD-3-Clause",
3964
+ "dependencies": {
3965
+ "d3-array": "^3.2.4",
3966
+ "d3-timer": "^3.0.1",
3967
+ "vega-dataflow": "^6.1.0",
3968
+ "vega-format": "^2.1.0",
3969
+ "vega-functions": "^6.1.0",
3970
+ "vega-runtime": "^7.1.0",
3971
+ "vega-scenegraph": "^5.1.0",
3972
+ "vega-util": "^2.1.0"
3973
+ }
3974
+ },
3975
+ "node_modules/vega-view-transforms": {
3976
+ "version": "5.1.0",
3977
+ "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-5.1.0.tgz",
3978
+ "integrity": "sha512-fpigh/xn/32t+An1ShoY3MLeGzNdlbAp2+HvFKzPpmpMTZqJEWkk/J/wHU7Swyc28Ta7W1z3fO+8dZkOYO5TWQ==",
3979
+ "license": "BSD-3-Clause",
3980
+ "dependencies": {
3981
+ "vega-dataflow": "^6.1.0",
3982
+ "vega-scenegraph": "^5.1.0",
3983
+ "vega-util": "^2.1.0"
3984
+ }
3985
+ },
3986
+ "node_modules/vega-voronoi": {
3987
+ "version": "5.1.0",
3988
+ "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-5.1.0.tgz",
3989
+ "integrity": "sha512-uKdsoR9x60mz7eYtVG+NhlkdQXeVdMr6jHNAHxs+W+i6kawkUp5S9jp1xf1FmW/uZvtO1eqinHQNwATcDRsiUg==",
3990
+ "license": "BSD-3-Clause",
3991
+ "dependencies": {
3992
+ "d3-delaunay": "^6.0.4",
3993
+ "vega-dataflow": "^6.1.0",
3994
+ "vega-util": "^2.1.0"
3995
+ }
3996
+ },
3997
+ "node_modules/vega-wordcloud": {
3998
+ "version": "5.1.0",
3999
+ "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-5.1.0.tgz",
4000
+ "integrity": "sha512-sSdNmT8y2D7xXhM2h76dKyaYn3PA4eV49WUUkfYfqHz/vpcu10GSAoFxLhQQTkbZXR+q5ZB63tFUow9W2IFo6g==",
4001
+ "license": "BSD-3-Clause",
4002
+ "dependencies": {
4003
+ "vega-canvas": "^2.0.0",
4004
+ "vega-dataflow": "^6.1.0",
4005
+ "vega-scale": "^8.1.0",
4006
+ "vega-statistics": "^2.0.0",
4007
+ "vega-util": "^2.1.0"
4008
+ }
4009
+ },
4010
+ "node_modules/vite": {
4011
+ "version": "5.4.21",
4012
+ "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
4013
+ "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
4014
+ "dev": true,
4015
+ "license": "MIT",
4016
+ "peer": true,
4017
+ "dependencies": {
4018
+ "esbuild": "^0.21.3",
4019
+ "postcss": "^8.4.43",
4020
+ "rollup": "^4.20.0"
4021
+ },
4022
+ "bin": {
4023
+ "vite": "bin/vite.js"
4024
+ },
4025
+ "engines": {
4026
+ "node": "^18.0.0 || >=20.0.0"
4027
+ },
4028
+ "funding": {
4029
+ "url": "https://github.com/vitejs/vite?sponsor=1"
4030
+ },
4031
+ "optionalDependencies": {
4032
+ "fsevents": "~2.3.3"
4033
+ },
4034
+ "peerDependencies": {
4035
+ "@types/node": "^18.0.0 || >=20.0.0",
4036
+ "less": "*",
4037
+ "lightningcss": "^1.21.0",
4038
+ "sass": "*",
4039
+ "sass-embedded": "*",
4040
+ "stylus": "*",
4041
+ "sugarss": "*",
4042
+ "terser": "^5.4.0"
4043
+ },
4044
+ "peerDependenciesMeta": {
4045
+ "@types/node": {
4046
+ "optional": true
4047
+ },
4048
+ "less": {
4049
+ "optional": true
4050
+ },
4051
+ "lightningcss": {
4052
+ "optional": true
4053
+ },
4054
+ "sass": {
4055
+ "optional": true
4056
+ },
4057
+ "sass-embedded": {
4058
+ "optional": true
4059
+ },
4060
+ "stylus": {
4061
+ "optional": true
4062
+ },
4063
+ "sugarss": {
4064
+ "optional": true
4065
+ },
4066
+ "terser": {
4067
+ "optional": true
4068
+ }
4069
+ }
4070
+ },
4071
+ "node_modules/vitefu": {
4072
+ "version": "1.1.1",
4073
+ "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz",
4074
+ "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==",
4075
+ "dev": true,
4076
+ "license": "MIT",
4077
+ "workspaces": [
4078
+ "tests/deps/*",
4079
+ "tests/projects/*",
4080
+ "tests/projects/workspace/packages/*"
4081
+ ],
4082
+ "peerDependencies": {
4083
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0"
4084
+ },
4085
+ "peerDependenciesMeta": {
4086
+ "vite": {
4087
+ "optional": true
4088
+ }
4089
+ }
4090
+ },
4091
+ "node_modules/wrap-ansi": {
4092
+ "version": "9.0.2",
4093
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz",
4094
+ "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==",
4095
+ "license": "MIT",
4096
+ "dependencies": {
4097
+ "ansi-styles": "^6.2.1",
4098
+ "string-width": "^7.0.0",
4099
+ "strip-ansi": "^7.1.0"
4100
+ },
4101
+ "engines": {
4102
+ "node": ">=18"
4103
+ },
4104
+ "funding": {
4105
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4106
+ }
4107
+ },
4108
+ "node_modules/wrappy": {
4109
+ "version": "1.0.2",
4110
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4111
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
4112
+ "dev": true,
4113
+ "license": "ISC"
4114
+ },
4115
+ "node_modules/y18n": {
4116
+ "version": "5.0.8",
4117
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
4118
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
4119
+ "license": "ISC",
4120
+ "engines": {
4121
+ "node": ">=10"
4122
+ }
4123
+ },
4124
+ "node_modules/yallist": {
4125
+ "version": "5.0.0",
4126
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
4127
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
4128
+ "dev": true,
4129
+ "license": "BlueOak-1.0.0",
4130
+ "engines": {
4131
+ "node": ">=18"
4132
+ }
4133
+ },
4134
+ "node_modules/yargs": {
4135
+ "version": "18.0.0",
4136
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-18.0.0.tgz",
4137
+ "integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==",
4138
+ "license": "MIT",
4139
+ "dependencies": {
4140
+ "cliui": "^9.0.1",
4141
+ "escalade": "^3.1.1",
4142
+ "get-caller-file": "^2.0.5",
4143
+ "string-width": "^7.2.0",
4144
+ "y18n": "^5.0.5",
4145
+ "yargs-parser": "^22.0.0"
4146
+ },
4147
+ "engines": {
4148
+ "node": "^20.19.0 || ^22.12.0 || >=23"
4149
+ }
4150
+ },
4151
+ "node_modules/yargs-parser": {
4152
+ "version": "22.0.0",
4153
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
4154
+ "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
4155
+ "license": "ISC",
4156
+ "engines": {
4157
+ "node": "^20.19.0 || ^22.12.0 || >=23"
4158
+ }
4159
+ },
4160
+ "node_modules/zimmerframe": {
4161
+ "version": "1.1.4",
4162
+ "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz",
4163
+ "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==",
4164
+ "license": "MIT"
4165
+ },
4166
+ "node_modules/zrender": {
4167
+ "version": "6.0.0",
4168
+ "resolved": "https://registry.npmjs.org/zrender/-/zrender-6.0.0.tgz",
4169
+ "integrity": "sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==",
4170
+ "license": "BSD-3-Clause",
4171
+ "dependencies": {
4172
+ "tslib": "2.3.0"
4173
+ }
4174
+ },
4175
+ "node_modules/zrender/node_modules/tslib": {
4176
+ "version": "2.3.0",
4177
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
4178
+ "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
4179
+ "license": "0BSD"
4180
+ }
4181
+ }
4182
+ }