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,4242 @@
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
+ "dependencies": {
845
+ "@standard-schema/spec": "^1.0.0",
846
+ "@sveltejs/acorn-typescript": "^1.0.5",
847
+ "@types/cookie": "^0.6.0",
848
+ "acorn": "^8.14.1",
849
+ "cookie": "^0.6.0",
850
+ "devalue": "^5.3.2",
851
+ "esm-env": "^1.2.2",
852
+ "kleur": "^4.1.5",
853
+ "magic-string": "^0.30.5",
854
+ "mrmime": "^2.0.0",
855
+ "sade": "^1.8.1",
856
+ "set-cookie-parser": "^2.6.0",
857
+ "sirv": "^3.0.0"
858
+ },
859
+ "bin": {
860
+ "svelte-kit": "svelte-kit.js"
861
+ },
862
+ "engines": {
863
+ "node": ">=18.13"
864
+ },
865
+ "peerDependencies": {
866
+ "@opentelemetry/api": "^1.0.0",
867
+ "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0",
868
+ "svelte": "^4.0.0 || ^5.0.0-next.0",
869
+ "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0"
870
+ },
871
+ "peerDependenciesMeta": {
872
+ "@opentelemetry/api": {
873
+ "optional": true
874
+ }
875
+ }
876
+ },
877
+ "node_modules/@sveltejs/vite-plugin-svelte": {
878
+ "version": "4.0.4",
879
+ "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-4.0.4.tgz",
880
+ "integrity": "sha512-0ba1RQ/PHen5FGpdSrW7Y3fAMQjrXantECALeOiOdBdzR5+5vPP6HVZRLmZaQL+W8m++o+haIAKq5qT+MiZ7VA==",
881
+ "dev": true,
882
+ "license": "MIT",
883
+ "dependencies": {
884
+ "@sveltejs/vite-plugin-svelte-inspector": "^3.0.0-next.0||^3.0.0",
885
+ "debug": "^4.3.7",
886
+ "deepmerge": "^4.3.1",
887
+ "kleur": "^4.1.5",
888
+ "magic-string": "^0.30.12",
889
+ "vitefu": "^1.0.3"
890
+ },
891
+ "engines": {
892
+ "node": "^18.0.0 || ^20.0.0 || >=22"
893
+ },
894
+ "peerDependencies": {
895
+ "svelte": "^5.0.0-next.96 || ^5.0.0",
896
+ "vite": "^5.0.0"
897
+ }
898
+ },
899
+ "node_modules/@sveltejs/vite-plugin-svelte-inspector": {
900
+ "version": "3.0.1",
901
+ "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-3.0.1.tgz",
902
+ "integrity": "sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==",
903
+ "dev": true,
904
+ "license": "MIT",
905
+ "dependencies": {
906
+ "debug": "^4.3.7"
907
+ },
908
+ "engines": {
909
+ "node": "^18.0.0 || ^20.0.0 || >=22"
910
+ },
911
+ "peerDependencies": {
912
+ "@sveltejs/vite-plugin-svelte": "^4.0.0-next.0||^4.0.0",
913
+ "svelte": "^5.0.0-next.96 || ^5.0.0",
914
+ "vite": "^5.0.0"
915
+ }
916
+ },
917
+ "node_modules/@tailwindcss/node": {
918
+ "version": "4.1.14",
919
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.14.tgz",
920
+ "integrity": "sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==",
921
+ "dev": true,
922
+ "license": "MIT",
923
+ "dependencies": {
924
+ "@jridgewell/remapping": "^2.3.4",
925
+ "enhanced-resolve": "^5.18.3",
926
+ "jiti": "^2.6.0",
927
+ "lightningcss": "1.30.1",
928
+ "magic-string": "^0.30.19",
929
+ "source-map-js": "^1.2.1",
930
+ "tailwindcss": "4.1.14"
931
+ }
932
+ },
933
+ "node_modules/@tailwindcss/oxide": {
934
+ "version": "4.1.14",
935
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.14.tgz",
936
+ "integrity": "sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==",
937
+ "dev": true,
938
+ "hasInstallScript": true,
939
+ "license": "MIT",
940
+ "dependencies": {
941
+ "detect-libc": "^2.0.4",
942
+ "tar": "^7.5.1"
943
+ },
944
+ "engines": {
945
+ "node": ">= 10"
946
+ },
947
+ "optionalDependencies": {
948
+ "@tailwindcss/oxide-android-arm64": "4.1.14",
949
+ "@tailwindcss/oxide-darwin-arm64": "4.1.14",
950
+ "@tailwindcss/oxide-darwin-x64": "4.1.14",
951
+ "@tailwindcss/oxide-freebsd-x64": "4.1.14",
952
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.14",
953
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.14",
954
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.14",
955
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.14",
956
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.14",
957
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.14",
958
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.14",
959
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.14"
960
+ }
961
+ },
962
+ "node_modules/@tailwindcss/oxide-android-arm64": {
963
+ "version": "4.1.14",
964
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.14.tgz",
965
+ "integrity": "sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==",
966
+ "cpu": [
967
+ "arm64"
968
+ ],
969
+ "dev": true,
970
+ "license": "MIT",
971
+ "optional": true,
972
+ "os": [
973
+ "android"
974
+ ],
975
+ "engines": {
976
+ "node": ">= 10"
977
+ }
978
+ },
979
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
980
+ "version": "4.1.14",
981
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.14.tgz",
982
+ "integrity": "sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==",
983
+ "cpu": [
984
+ "arm64"
985
+ ],
986
+ "dev": true,
987
+ "license": "MIT",
988
+ "optional": true,
989
+ "os": [
990
+ "darwin"
991
+ ],
992
+ "engines": {
993
+ "node": ">= 10"
994
+ }
995
+ },
996
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
997
+ "version": "4.1.14",
998
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.14.tgz",
999
+ "integrity": "sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==",
1000
+ "cpu": [
1001
+ "x64"
1002
+ ],
1003
+ "dev": true,
1004
+ "license": "MIT",
1005
+ "optional": true,
1006
+ "os": [
1007
+ "darwin"
1008
+ ],
1009
+ "engines": {
1010
+ "node": ">= 10"
1011
+ }
1012
+ },
1013
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1014
+ "version": "4.1.14",
1015
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.14.tgz",
1016
+ "integrity": "sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==",
1017
+ "cpu": [
1018
+ "x64"
1019
+ ],
1020
+ "dev": true,
1021
+ "license": "MIT",
1022
+ "optional": true,
1023
+ "os": [
1024
+ "freebsd"
1025
+ ],
1026
+ "engines": {
1027
+ "node": ">= 10"
1028
+ }
1029
+ },
1030
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1031
+ "version": "4.1.14",
1032
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.14.tgz",
1033
+ "integrity": "sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==",
1034
+ "cpu": [
1035
+ "arm"
1036
+ ],
1037
+ "dev": true,
1038
+ "license": "MIT",
1039
+ "optional": true,
1040
+ "os": [
1041
+ "linux"
1042
+ ],
1043
+ "engines": {
1044
+ "node": ">= 10"
1045
+ }
1046
+ },
1047
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1048
+ "version": "4.1.14",
1049
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.14.tgz",
1050
+ "integrity": "sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==",
1051
+ "cpu": [
1052
+ "arm64"
1053
+ ],
1054
+ "dev": true,
1055
+ "license": "MIT",
1056
+ "optional": true,
1057
+ "os": [
1058
+ "linux"
1059
+ ],
1060
+ "engines": {
1061
+ "node": ">= 10"
1062
+ }
1063
+ },
1064
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1065
+ "version": "4.1.14",
1066
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.14.tgz",
1067
+ "integrity": "sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==",
1068
+ "cpu": [
1069
+ "arm64"
1070
+ ],
1071
+ "dev": true,
1072
+ "license": "MIT",
1073
+ "optional": true,
1074
+ "os": [
1075
+ "linux"
1076
+ ],
1077
+ "engines": {
1078
+ "node": ">= 10"
1079
+ }
1080
+ },
1081
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1082
+ "version": "4.1.14",
1083
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.14.tgz",
1084
+ "integrity": "sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==",
1085
+ "cpu": [
1086
+ "x64"
1087
+ ],
1088
+ "dev": true,
1089
+ "license": "MIT",
1090
+ "optional": true,
1091
+ "os": [
1092
+ "linux"
1093
+ ],
1094
+ "engines": {
1095
+ "node": ">= 10"
1096
+ }
1097
+ },
1098
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1099
+ "version": "4.1.14",
1100
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.14.tgz",
1101
+ "integrity": "sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==",
1102
+ "cpu": [
1103
+ "x64"
1104
+ ],
1105
+ "dev": true,
1106
+ "license": "MIT",
1107
+ "optional": true,
1108
+ "os": [
1109
+ "linux"
1110
+ ],
1111
+ "engines": {
1112
+ "node": ">= 10"
1113
+ }
1114
+ },
1115
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1116
+ "version": "4.1.14",
1117
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.14.tgz",
1118
+ "integrity": "sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==",
1119
+ "bundleDependencies": [
1120
+ "@napi-rs/wasm-runtime",
1121
+ "@emnapi/core",
1122
+ "@emnapi/runtime",
1123
+ "@tybys/wasm-util",
1124
+ "@emnapi/wasi-threads",
1125
+ "tslib"
1126
+ ],
1127
+ "cpu": [
1128
+ "wasm32"
1129
+ ],
1130
+ "dev": true,
1131
+ "license": "MIT",
1132
+ "optional": true,
1133
+ "dependencies": {
1134
+ "@emnapi/core": "^1.5.0",
1135
+ "@emnapi/runtime": "^1.5.0",
1136
+ "@emnapi/wasi-threads": "^1.1.0",
1137
+ "@napi-rs/wasm-runtime": "^1.0.5",
1138
+ "@tybys/wasm-util": "^0.10.1",
1139
+ "tslib": "^2.4.0"
1140
+ },
1141
+ "engines": {
1142
+ "node": ">=14.0.0"
1143
+ }
1144
+ },
1145
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1146
+ "version": "4.1.14",
1147
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.14.tgz",
1148
+ "integrity": "sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==",
1149
+ "cpu": [
1150
+ "arm64"
1151
+ ],
1152
+ "dev": true,
1153
+ "license": "MIT",
1154
+ "optional": true,
1155
+ "os": [
1156
+ "win32"
1157
+ ],
1158
+ "engines": {
1159
+ "node": ">= 10"
1160
+ }
1161
+ },
1162
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1163
+ "version": "4.1.14",
1164
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.14.tgz",
1165
+ "integrity": "sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==",
1166
+ "cpu": [
1167
+ "x64"
1168
+ ],
1169
+ "dev": true,
1170
+ "license": "MIT",
1171
+ "optional": true,
1172
+ "os": [
1173
+ "win32"
1174
+ ],
1175
+ "engines": {
1176
+ "node": ">= 10"
1177
+ }
1178
+ },
1179
+ "node_modules/@tailwindcss/vite": {
1180
+ "version": "4.1.14",
1181
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.14.tgz",
1182
+ "integrity": "sha512-BoFUoU0XqgCUS1UXWhmDJroKKhNXeDzD7/XwabjkDIAbMnc4ULn5e2FuEuBbhZ6ENZoSYzKlzvZ44Yr6EUDUSA==",
1183
+ "dev": true,
1184
+ "license": "MIT",
1185
+ "dependencies": {
1186
+ "@tailwindcss/node": "4.1.14",
1187
+ "@tailwindcss/oxide": "4.1.14",
1188
+ "tailwindcss": "4.1.14"
1189
+ },
1190
+ "peerDependencies": {
1191
+ "vite": "^5.2.0 || ^6 || ^7"
1192
+ }
1193
+ },
1194
+ "node_modules/@types/cookie": {
1195
+ "version": "0.6.0",
1196
+ "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz",
1197
+ "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==",
1198
+ "dev": true,
1199
+ "license": "MIT"
1200
+ },
1201
+ "node_modules/@types/d3-color": {
1202
+ "version": "3.1.3",
1203
+ "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
1204
+ "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
1205
+ "license": "MIT"
1206
+ },
1207
+ "node_modules/@types/d3-drag": {
1208
+ "version": "3.0.7",
1209
+ "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
1210
+ "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
1211
+ "license": "MIT",
1212
+ "dependencies": {
1213
+ "@types/d3-selection": "*"
1214
+ }
1215
+ },
1216
+ "node_modules/@types/d3-interpolate": {
1217
+ "version": "3.0.4",
1218
+ "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
1219
+ "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
1220
+ "license": "MIT",
1221
+ "dependencies": {
1222
+ "@types/d3-color": "*"
1223
+ }
1224
+ },
1225
+ "node_modules/@types/d3-selection": {
1226
+ "version": "3.0.11",
1227
+ "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
1228
+ "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
1229
+ "license": "MIT"
1230
+ },
1231
+ "node_modules/@types/d3-transition": {
1232
+ "version": "3.0.9",
1233
+ "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
1234
+ "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
1235
+ "license": "MIT",
1236
+ "dependencies": {
1237
+ "@types/d3-selection": "*"
1238
+ }
1239
+ },
1240
+ "node_modules/@types/d3-zoom": {
1241
+ "version": "3.0.8",
1242
+ "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
1243
+ "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
1244
+ "license": "MIT",
1245
+ "dependencies": {
1246
+ "@types/d3-interpolate": "*",
1247
+ "@types/d3-selection": "*"
1248
+ }
1249
+ },
1250
+ "node_modules/@types/estree": {
1251
+ "version": "1.0.8",
1252
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1253
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1254
+ "license": "MIT"
1255
+ },
1256
+ "node_modules/@types/geojson": {
1257
+ "version": "7946.0.16",
1258
+ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz",
1259
+ "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
1260
+ "license": "MIT",
1261
+ "peer": true
1262
+ },
1263
+ "node_modules/@types/pug": {
1264
+ "version": "2.0.10",
1265
+ "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz",
1266
+ "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==",
1267
+ "dev": true,
1268
+ "license": "MIT"
1269
+ },
1270
+ "node_modules/@xyflow/svelte": {
1271
+ "version": "0.1.39",
1272
+ "resolved": "https://registry.npmjs.org/@xyflow/svelte/-/svelte-0.1.39.tgz",
1273
+ "integrity": "sha512-QZ5mzNysvJeJW7DxmqI4Urhhef9tclqtPr7WAS5zQF5Gk6k9INwzey4CYNtEZo8XMj9H8lzgoJRmgMPnJEc1kw==",
1274
+ "license": "MIT",
1275
+ "dependencies": {
1276
+ "@svelte-put/shortcut": "3.1.1",
1277
+ "@xyflow/system": "0.0.59",
1278
+ "classcat": "^5.0.4"
1279
+ },
1280
+ "peerDependencies": {
1281
+ "svelte": "^3.0.0 || ^4.0.0 || ^5.0.0"
1282
+ }
1283
+ },
1284
+ "node_modules/@xyflow/system": {
1285
+ "version": "0.0.59",
1286
+ "resolved": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.59.tgz",
1287
+ "integrity": "sha512-+xgqYhoBv5F10TQx0SiKZR/DcWtuxFYR+e/LluHb7DMtX4SsMDutZWEJ4da4fDco25jZxw5G9fOlmk7MWvYd5Q==",
1288
+ "license": "MIT",
1289
+ "dependencies": {
1290
+ "@types/d3-drag": "^3.0.7",
1291
+ "@types/d3-selection": "^3.0.10",
1292
+ "@types/d3-transition": "^3.0.8",
1293
+ "@types/d3-zoom": "^3.0.8",
1294
+ "d3-drag": "^3.0.0",
1295
+ "d3-selection": "^3.0.0",
1296
+ "d3-zoom": "^3.0.0"
1297
+ }
1298
+ },
1299
+ "node_modules/acorn": {
1300
+ "version": "8.15.0",
1301
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
1302
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
1303
+ "license": "MIT",
1304
+ "bin": {
1305
+ "acorn": "bin/acorn"
1306
+ },
1307
+ "engines": {
1308
+ "node": ">=0.4.0"
1309
+ }
1310
+ },
1311
+ "node_modules/ansi-regex": {
1312
+ "version": "6.2.2",
1313
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
1314
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
1315
+ "license": "MIT",
1316
+ "peer": true,
1317
+ "engines": {
1318
+ "node": ">=12"
1319
+ },
1320
+ "funding": {
1321
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
1322
+ }
1323
+ },
1324
+ "node_modules/ansi-styles": {
1325
+ "version": "6.2.3",
1326
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
1327
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
1328
+ "license": "MIT",
1329
+ "peer": true,
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
+ "peer": true,
1500
+ "dependencies": {
1501
+ "string-width": "^7.2.0",
1502
+ "strip-ansi": "^7.1.0",
1503
+ "wrap-ansi": "^9.0.0"
1504
+ },
1505
+ "engines": {
1506
+ "node": ">=20"
1507
+ }
1508
+ },
1509
+ "node_modules/clsx": {
1510
+ "version": "2.1.1",
1511
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1512
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1513
+ "license": "MIT",
1514
+ "engines": {
1515
+ "node": ">=6"
1516
+ }
1517
+ },
1518
+ "node_modules/combined-stream": {
1519
+ "version": "1.0.8",
1520
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1521
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1522
+ "license": "MIT",
1523
+ "dependencies": {
1524
+ "delayed-stream": "~1.0.0"
1525
+ },
1526
+ "engines": {
1527
+ "node": ">= 0.8"
1528
+ }
1529
+ },
1530
+ "node_modules/commander": {
1531
+ "version": "7.2.0",
1532
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
1533
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
1534
+ "license": "MIT",
1535
+ "peer": true,
1536
+ "engines": {
1537
+ "node": ">= 10"
1538
+ }
1539
+ },
1540
+ "node_modules/concat-map": {
1541
+ "version": "0.0.1",
1542
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1543
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1544
+ "dev": true,
1545
+ "license": "MIT"
1546
+ },
1547
+ "node_modules/cookie": {
1548
+ "version": "0.6.0-patched",
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
+ "peer": true,
1561
+ "dependencies": {
1562
+ "internmap": "1 - 2"
1563
+ },
1564
+ "engines": {
1565
+ "node": ">=12"
1566
+ }
1567
+ },
1568
+ "node_modules/d3-color": {
1569
+ "version": "3.1.0",
1570
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
1571
+ "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
1572
+ "license": "ISC",
1573
+ "engines": {
1574
+ "node": ">=12"
1575
+ }
1576
+ },
1577
+ "node_modules/d3-delaunay": {
1578
+ "version": "6.0.4",
1579
+ "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
1580
+ "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==",
1581
+ "license": "ISC",
1582
+ "peer": true,
1583
+ "dependencies": {
1584
+ "delaunator": "5"
1585
+ },
1586
+ "engines": {
1587
+ "node": ">=12"
1588
+ }
1589
+ },
1590
+ "node_modules/d3-dispatch": {
1591
+ "version": "3.0.1",
1592
+ "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
1593
+ "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
1594
+ "license": "ISC",
1595
+ "engines": {
1596
+ "node": ">=12"
1597
+ }
1598
+ },
1599
+ "node_modules/d3-drag": {
1600
+ "version": "3.0.0",
1601
+ "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
1602
+ "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
1603
+ "license": "ISC",
1604
+ "dependencies": {
1605
+ "d3-dispatch": "1 - 3",
1606
+ "d3-selection": "3"
1607
+ },
1608
+ "engines": {
1609
+ "node": ">=12"
1610
+ }
1611
+ },
1612
+ "node_modules/d3-dsv": {
1613
+ "version": "3.0.1",
1614
+ "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
1615
+ "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
1616
+ "license": "ISC",
1617
+ "peer": true,
1618
+ "dependencies": {
1619
+ "commander": "7",
1620
+ "iconv-lite": "0.6",
1621
+ "rw": "1"
1622
+ },
1623
+ "bin": {
1624
+ "csv2json": "bin/dsv2json.js",
1625
+ "csv2tsv": "bin/dsv2dsv.js",
1626
+ "dsv2dsv": "bin/dsv2dsv.js",
1627
+ "dsv2json": "bin/dsv2json.js",
1628
+ "json2csv": "bin/json2dsv.js",
1629
+ "json2dsv": "bin/json2dsv.js",
1630
+ "json2tsv": "bin/json2dsv.js",
1631
+ "tsv2csv": "bin/dsv2dsv.js",
1632
+ "tsv2json": "bin/dsv2json.js"
1633
+ },
1634
+ "engines": {
1635
+ "node": ">=12"
1636
+ }
1637
+ },
1638
+ "node_modules/d3-ease": {
1639
+ "version": "3.0.1",
1640
+ "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
1641
+ "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
1642
+ "license": "BSD-3-Clause",
1643
+ "engines": {
1644
+ "node": ">=12"
1645
+ }
1646
+ },
1647
+ "node_modules/d3-force": {
1648
+ "version": "3.0.0",
1649
+ "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
1650
+ "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
1651
+ "license": "ISC",
1652
+ "peer": true,
1653
+ "dependencies": {
1654
+ "d3-dispatch": "1 - 3",
1655
+ "d3-quadtree": "1 - 3",
1656
+ "d3-timer": "1 - 3"
1657
+ },
1658
+ "engines": {
1659
+ "node": ">=12"
1660
+ }
1661
+ },
1662
+ "node_modules/d3-format": {
1663
+ "version": "3.1.0",
1664
+ "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
1665
+ "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
1666
+ "license": "ISC",
1667
+ "peer": true,
1668
+ "engines": {
1669
+ "node": ">=12"
1670
+ }
1671
+ },
1672
+ "node_modules/d3-geo": {
1673
+ "version": "3.1.1",
1674
+ "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz",
1675
+ "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==",
1676
+ "license": "ISC",
1677
+ "peer": true,
1678
+ "dependencies": {
1679
+ "d3-array": "2.5.0 - 3"
1680
+ },
1681
+ "engines": {
1682
+ "node": ">=12"
1683
+ }
1684
+ },
1685
+ "node_modules/d3-geo-projection": {
1686
+ "version": "4.0.0",
1687
+ "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
1688
+ "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
1689
+ "license": "ISC",
1690
+ "peer": true,
1691
+ "dependencies": {
1692
+ "commander": "7",
1693
+ "d3-array": "1 - 3",
1694
+ "d3-geo": "1.12.0 - 3"
1695
+ },
1696
+ "bin": {
1697
+ "geo2svg": "bin/geo2svg.js",
1698
+ "geograticule": "bin/geograticule.js",
1699
+ "geoproject": "bin/geoproject.js",
1700
+ "geoquantize": "bin/geoquantize.js",
1701
+ "geostitch": "bin/geostitch.js"
1702
+ },
1703
+ "engines": {
1704
+ "node": ">=12"
1705
+ }
1706
+ },
1707
+ "node_modules/d3-hierarchy": {
1708
+ "version": "3.1.2",
1709
+ "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
1710
+ "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
1711
+ "license": "ISC",
1712
+ "peer": true,
1713
+ "engines": {
1714
+ "node": ">=12"
1715
+ }
1716
+ },
1717
+ "node_modules/d3-interpolate": {
1718
+ "version": "3.0.1",
1719
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
1720
+ "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
1721
+ "license": "ISC",
1722
+ "dependencies": {
1723
+ "d3-color": "1 - 3"
1724
+ },
1725
+ "engines": {
1726
+ "node": ">=12"
1727
+ }
1728
+ },
1729
+ "node_modules/d3-path": {
1730
+ "version": "3.1.0",
1731
+ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
1732
+ "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
1733
+ "license": "ISC",
1734
+ "peer": true,
1735
+ "engines": {
1736
+ "node": ">=12"
1737
+ }
1738
+ },
1739
+ "node_modules/d3-quadtree": {
1740
+ "version": "3.0.1",
1741
+ "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
1742
+ "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
1743
+ "license": "ISC",
1744
+ "peer": true,
1745
+ "engines": {
1746
+ "node": ">=12"
1747
+ }
1748
+ },
1749
+ "node_modules/d3-scale": {
1750
+ "version": "4.0.2",
1751
+ "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
1752
+ "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
1753
+ "license": "ISC",
1754
+ "peer": true,
1755
+ "dependencies": {
1756
+ "d3-array": "2.10.0 - 3",
1757
+ "d3-format": "1 - 3",
1758
+ "d3-interpolate": "1.2.0 - 3",
1759
+ "d3-time": "2.1.1 - 3",
1760
+ "d3-time-format": "2 - 4"
1761
+ },
1762
+ "engines": {
1763
+ "node": ">=12"
1764
+ }
1765
+ },
1766
+ "node_modules/d3-scale-chromatic": {
1767
+ "version": "3.1.0",
1768
+ "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
1769
+ "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==",
1770
+ "license": "ISC",
1771
+ "peer": true,
1772
+ "dependencies": {
1773
+ "d3-color": "1 - 3",
1774
+ "d3-interpolate": "1 - 3"
1775
+ },
1776
+ "engines": {
1777
+ "node": ">=12"
1778
+ }
1779
+ },
1780
+ "node_modules/d3-selection": {
1781
+ "version": "3.0.0",
1782
+ "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
1783
+ "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
1784
+ "license": "ISC",
1785
+ "engines": {
1786
+ "node": ">=12"
1787
+ }
1788
+ },
1789
+ "node_modules/d3-shape": {
1790
+ "version": "3.2.0",
1791
+ "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
1792
+ "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
1793
+ "license": "ISC",
1794
+ "peer": true,
1795
+ "dependencies": {
1796
+ "d3-path": "^3.1.0"
1797
+ },
1798
+ "engines": {
1799
+ "node": ">=12"
1800
+ }
1801
+ },
1802
+ "node_modules/d3-time": {
1803
+ "version": "3.1.0",
1804
+ "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
1805
+ "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
1806
+ "license": "ISC",
1807
+ "peer": true,
1808
+ "dependencies": {
1809
+ "d3-array": "2 - 3"
1810
+ },
1811
+ "engines": {
1812
+ "node": ">=12"
1813
+ }
1814
+ },
1815
+ "node_modules/d3-time-format": {
1816
+ "version": "4.1.0",
1817
+ "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
1818
+ "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
1819
+ "license": "ISC",
1820
+ "peer": true,
1821
+ "dependencies": {
1822
+ "d3-time": "1 - 3"
1823
+ },
1824
+ "engines": {
1825
+ "node": ">=12"
1826
+ }
1827
+ },
1828
+ "node_modules/d3-timer": {
1829
+ "version": "3.0.1",
1830
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
1831
+ "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
1832
+ "license": "ISC",
1833
+ "engines": {
1834
+ "node": ">=12"
1835
+ }
1836
+ },
1837
+ "node_modules/d3-transition": {
1838
+ "version": "3.0.1",
1839
+ "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
1840
+ "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
1841
+ "license": "ISC",
1842
+ "dependencies": {
1843
+ "d3-color": "1 - 3",
1844
+ "d3-dispatch": "1 - 3",
1845
+ "d3-ease": "1 - 3",
1846
+ "d3-interpolate": "1 - 3",
1847
+ "d3-timer": "1 - 3"
1848
+ },
1849
+ "engines": {
1850
+ "node": ">=12"
1851
+ },
1852
+ "peerDependencies": {
1853
+ "d3-selection": "2 - 3"
1854
+ }
1855
+ },
1856
+ "node_modules/d3-zoom": {
1857
+ "version": "3.0.0",
1858
+ "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
1859
+ "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
1860
+ "license": "ISC",
1861
+ "dependencies": {
1862
+ "d3-dispatch": "1 - 3",
1863
+ "d3-drag": "2 - 3",
1864
+ "d3-interpolate": "1 - 3",
1865
+ "d3-selection": "2 - 3",
1866
+ "d3-transition": "2 - 3"
1867
+ },
1868
+ "engines": {
1869
+ "node": ">=12"
1870
+ }
1871
+ },
1872
+ "node_modules/daisyui": {
1873
+ "version": "5.3.0",
1874
+ "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.3.0.tgz",
1875
+ "integrity": "sha512-MgkNzabeGQ/rMbXujoUkjVzBiFL8gQRELKOfDY7efeLxHAQ8wf9VsRgcjDPDMsmI5rOV5iQ2DFMDo92RsRAcBg==",
1876
+ "license": "MIT",
1877
+ "funding": {
1878
+ "url": "https://github.com/saadeghi/daisyui?sponsor=1"
1879
+ }
1880
+ },
1881
+ "node_modules/debug": {
1882
+ "version": "4.4.3",
1883
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1884
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1885
+ "dev": true,
1886
+ "license": "MIT",
1887
+ "dependencies": {
1888
+ "ms": "^2.1.3"
1889
+ },
1890
+ "engines": {
1891
+ "node": ">=6.0"
1892
+ },
1893
+ "peerDependenciesMeta": {
1894
+ "supports-color": {
1895
+ "optional": true
1896
+ }
1897
+ }
1898
+ },
1899
+ "node_modules/deepmerge": {
1900
+ "version": "4.3.1",
1901
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
1902
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
1903
+ "dev": true,
1904
+ "license": "MIT",
1905
+ "engines": {
1906
+ "node": ">=0.10.0"
1907
+ }
1908
+ },
1909
+ "node_modules/delaunator": {
1910
+ "version": "5.0.1",
1911
+ "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz",
1912
+ "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==",
1913
+ "license": "ISC",
1914
+ "peer": true,
1915
+ "dependencies": {
1916
+ "robust-predicates": "^3.0.2"
1917
+ }
1918
+ },
1919
+ "node_modules/delayed-stream": {
1920
+ "version": "1.0.0",
1921
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1922
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
1923
+ "license": "MIT",
1924
+ "engines": {
1925
+ "node": ">=0.4.0"
1926
+ }
1927
+ },
1928
+ "node_modules/detect-indent": {
1929
+ "version": "6.1.0",
1930
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
1931
+ "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==",
1932
+ "dev": true,
1933
+ "license": "MIT",
1934
+ "engines": {
1935
+ "node": ">=8"
1936
+ }
1937
+ },
1938
+ "node_modules/detect-libc": {
1939
+ "version": "2.1.2",
1940
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1941
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1942
+ "dev": true,
1943
+ "license": "Apache-2.0",
1944
+ "engines": {
1945
+ "node": ">=8"
1946
+ }
1947
+ },
1948
+ "node_modules/devalue": {
1949
+ "version": "5.3.2",
1950
+ "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.3.2.tgz",
1951
+ "integrity": "sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==",
1952
+ "dev": true,
1953
+ "license": "MIT"
1954
+ },
1955
+ "node_modules/dunder-proto": {
1956
+ "version": "1.0.1",
1957
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1958
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1959
+ "license": "MIT",
1960
+ "dependencies": {
1961
+ "call-bind-apply-helpers": "^1.0.1",
1962
+ "es-errors": "^1.3.0",
1963
+ "gopd": "^1.2.0"
1964
+ },
1965
+ "engines": {
1966
+ "node": ">= 0.4"
1967
+ }
1968
+ },
1969
+ "node_modules/echarts": {
1970
+ "version": "6.0.0",
1971
+ "resolved": "https://registry.npmjs.org/echarts/-/echarts-6.0.0.tgz",
1972
+ "integrity": "sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==",
1973
+ "license": "Apache-2.0",
1974
+ "dependencies": {
1975
+ "tslib": "2.3.0",
1976
+ "zrender": "6.0.0"
1977
+ }
1978
+ },
1979
+ "node_modules/echarts/node_modules/tslib": {
1980
+ "version": "2.3.0",
1981
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
1982
+ "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
1983
+ "license": "0BSD"
1984
+ },
1985
+ "node_modules/emoji-regex": {
1986
+ "version": "10.6.0",
1987
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
1988
+ "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
1989
+ "license": "MIT",
1990
+ "peer": true
1991
+ },
1992
+ "node_modules/enhanced-resolve": {
1993
+ "version": "5.18.3",
1994
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz",
1995
+ "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==",
1996
+ "dev": true,
1997
+ "license": "MIT",
1998
+ "dependencies": {
1999
+ "graceful-fs": "^4.2.4",
2000
+ "tapable": "^2.2.0"
2001
+ },
2002
+ "engines": {
2003
+ "node": ">=10.13.0"
2004
+ }
2005
+ },
2006
+ "node_modules/es-define-property": {
2007
+ "version": "1.0.1",
2008
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
2009
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
2010
+ "license": "MIT",
2011
+ "engines": {
2012
+ "node": ">= 0.4"
2013
+ }
2014
+ },
2015
+ "node_modules/es-errors": {
2016
+ "version": "1.3.0",
2017
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
2018
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
2019
+ "license": "MIT",
2020
+ "engines": {
2021
+ "node": ">= 0.4"
2022
+ }
2023
+ },
2024
+ "node_modules/es-object-atoms": {
2025
+ "version": "1.1.1",
2026
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
2027
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
2028
+ "license": "MIT",
2029
+ "dependencies": {
2030
+ "es-errors": "^1.3.0"
2031
+ },
2032
+ "engines": {
2033
+ "node": ">= 0.4"
2034
+ }
2035
+ },
2036
+ "node_modules/es-set-tostringtag": {
2037
+ "version": "2.1.0",
2038
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
2039
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
2040
+ "license": "MIT",
2041
+ "dependencies": {
2042
+ "es-errors": "^1.3.0",
2043
+ "get-intrinsic": "^1.2.6",
2044
+ "has-tostringtag": "^1.0.2",
2045
+ "hasown": "^2.0.2"
2046
+ },
2047
+ "engines": {
2048
+ "node": ">= 0.4"
2049
+ }
2050
+ },
2051
+ "node_modules/es6-promise": {
2052
+ "version": "3.3.1",
2053
+ "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz",
2054
+ "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==",
2055
+ "dev": true,
2056
+ "license": "MIT"
2057
+ },
2058
+ "node_modules/esbuild": {
2059
+ "version": "0.21.5-patched",
2060
+ "dev": true,
2061
+ "hasInstallScript": true,
2062
+ "license": "MIT",
2063
+ "bin": {
2064
+ "esbuild": "bin/esbuild"
2065
+ },
2066
+ "engines": {
2067
+ "node": ">=12"
2068
+ },
2069
+ "optionalDependencies": {
2070
+ "@esbuild/aix-ppc64": "0.21.5",
2071
+ "@esbuild/android-arm": "0.21.5",
2072
+ "@esbuild/android-arm64": "0.21.5",
2073
+ "@esbuild/android-x64": "0.21.5",
2074
+ "@esbuild/darwin-arm64": "0.21.5",
2075
+ "@esbuild/darwin-x64": "0.21.5",
2076
+ "@esbuild/freebsd-arm64": "0.21.5",
2077
+ "@esbuild/freebsd-x64": "0.21.5",
2078
+ "@esbuild/linux-arm": "0.21.5",
2079
+ "@esbuild/linux-arm64": "0.21.5",
2080
+ "@esbuild/linux-ia32": "0.21.5",
2081
+ "@esbuild/linux-loong64": "0.21.5",
2082
+ "@esbuild/linux-mips64el": "0.21.5",
2083
+ "@esbuild/linux-ppc64": "0.21.5",
2084
+ "@esbuild/linux-riscv64": "0.21.5",
2085
+ "@esbuild/linux-s390x": "0.21.5",
2086
+ "@esbuild/linux-x64": "0.21.5",
2087
+ "@esbuild/netbsd-x64": "0.21.5",
2088
+ "@esbuild/openbsd-x64": "0.21.5",
2089
+ "@esbuild/sunos-x64": "0.21.5",
2090
+ "@esbuild/win32-arm64": "0.21.5",
2091
+ "@esbuild/win32-ia32": "0.21.5",
2092
+ "@esbuild/win32-x64": "0.21.5"
2093
+ }
2094
+ },
2095
+ "node_modules/escalade": {
2096
+ "version": "3.2.0",
2097
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2098
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2099
+ "license": "MIT",
2100
+ "peer": true,
2101
+ "engines": {
2102
+ "node": ">=6"
2103
+ }
2104
+ },
2105
+ "node_modules/esm-env": {
2106
+ "version": "1.2.2",
2107
+ "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz",
2108
+ "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==",
2109
+ "license": "MIT"
2110
+ },
2111
+ "node_modules/esrap": {
2112
+ "version": "2.1.0",
2113
+ "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.0.tgz",
2114
+ "integrity": "sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==",
2115
+ "license": "MIT",
2116
+ "dependencies": {
2117
+ "@jridgewell/sourcemap-codec": "^1.4.15"
2118
+ }
2119
+ },
2120
+ "node_modules/fast-json-patch": {
2121
+ "version": "3.1.1",
2122
+ "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz",
2123
+ "integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==",
2124
+ "license": "MIT",
2125
+ "peer": true
2126
+ },
2127
+ "node_modules/fill-range": {
2128
+ "version": "7.1.1",
2129
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2130
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2131
+ "dev": true,
2132
+ "license": "MIT",
2133
+ "dependencies": {
2134
+ "to-regex-range": "^5.0.1"
2135
+ },
2136
+ "engines": {
2137
+ "node": ">=8"
2138
+ }
2139
+ },
2140
+ "node_modules/follow-redirects": {
2141
+ "version": "1.15.11",
2142
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
2143
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
2144
+ "funding": [
2145
+ {
2146
+ "type": "individual",
2147
+ "url": "https://github.com/sponsors/RubenVerborgh"
2148
+ }
2149
+ ],
2150
+ "license": "MIT",
2151
+ "engines": {
2152
+ "node": ">=4.0"
2153
+ },
2154
+ "peerDependenciesMeta": {
2155
+ "debug": {
2156
+ "optional": true
2157
+ }
2158
+ }
2159
+ },
2160
+ "node_modules/form-data": {
2161
+ "version": "4.0.4",
2162
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
2163
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
2164
+ "license": "MIT",
2165
+ "dependencies": {
2166
+ "asynckit": "^0.4.0",
2167
+ "combined-stream": "^1.0.8",
2168
+ "es-set-tostringtag": "^2.1.0",
2169
+ "hasown": "^2.0.2",
2170
+ "mime-types": "^2.1.12"
2171
+ },
2172
+ "engines": {
2173
+ "node": ">= 6"
2174
+ }
2175
+ },
2176
+ "node_modules/fs.realpath": {
2177
+ "version": "1.0.0",
2178
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2179
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
2180
+ "dev": true,
2181
+ "license": "ISC"
2182
+ },
2183
+ "node_modules/fsevents": {
2184
+ "version": "2.3.3",
2185
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2186
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2187
+ "dev": true,
2188
+ "hasInstallScript": true,
2189
+ "license": "MIT",
2190
+ "optional": true,
2191
+ "os": [
2192
+ "darwin"
2193
+ ],
2194
+ "engines": {
2195
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2196
+ }
2197
+ },
2198
+ "node_modules/function-bind": {
2199
+ "version": "1.1.2",
2200
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
2201
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2202
+ "license": "MIT",
2203
+ "funding": {
2204
+ "url": "https://github.com/sponsors/ljharb"
2205
+ }
2206
+ },
2207
+ "node_modules/get-caller-file": {
2208
+ "version": "2.0.5",
2209
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
2210
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2211
+ "license": "ISC",
2212
+ "peer": true,
2213
+ "engines": {
2214
+ "node": "6.* || 8.* || >= 10.*"
2215
+ }
2216
+ },
2217
+ "node_modules/get-east-asian-width": {
2218
+ "version": "1.4.0",
2219
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz",
2220
+ "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==",
2221
+ "license": "MIT",
2222
+ "peer": true,
2223
+ "engines": {
2224
+ "node": ">=18"
2225
+ },
2226
+ "funding": {
2227
+ "url": "https://github.com/sponsors/sindresorhus"
2228
+ }
2229
+ },
2230
+ "node_modules/get-intrinsic": {
2231
+ "version": "1.3.0",
2232
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
2233
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
2234
+ "license": "MIT",
2235
+ "dependencies": {
2236
+ "call-bind-apply-helpers": "^1.0.2",
2237
+ "es-define-property": "^1.0.1",
2238
+ "es-errors": "^1.3.0",
2239
+ "es-object-atoms": "^1.1.1",
2240
+ "function-bind": "^1.1.2",
2241
+ "get-proto": "^1.0.1",
2242
+ "gopd": "^1.2.0",
2243
+ "has-symbols": "^1.1.0",
2244
+ "hasown": "^2.0.2",
2245
+ "math-intrinsics": "^1.1.0"
2246
+ },
2247
+ "engines": {
2248
+ "node": ">= 0.4"
2249
+ },
2250
+ "funding": {
2251
+ "url": "https://github.com/sponsors/ljharb"
2252
+ }
2253
+ },
2254
+ "node_modules/get-proto": {
2255
+ "version": "1.0.1",
2256
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
2257
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
2258
+ "license": "MIT",
2259
+ "dependencies": {
2260
+ "dunder-proto": "^1.0.1",
2261
+ "es-object-atoms": "^1.0.0"
2262
+ },
2263
+ "engines": {
2264
+ "node": ">= 0.4"
2265
+ }
2266
+ },
2267
+ "node_modules/glob": {
2268
+ "version": "7.2.3",
2269
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2270
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2271
+ "deprecated": "Glob versions prior to v9 are no longer supported",
2272
+ "dev": true,
2273
+ "license": "ISC",
2274
+ "dependencies": {
2275
+ "fs.realpath": "^1.0.0",
2276
+ "inflight": "^1.0.4",
2277
+ "inherits": "2",
2278
+ "minimatch": "^3.1.1",
2279
+ "once": "^1.3.0",
2280
+ "path-is-absolute": "^1.0.0"
2281
+ },
2282
+ "engines": {
2283
+ "node": "*"
2284
+ },
2285
+ "funding": {
2286
+ "url": "https://github.com/sponsors/isaacs"
2287
+ }
2288
+ },
2289
+ "node_modules/glob-parent": {
2290
+ "version": "5.1.2",
2291
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2292
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2293
+ "dev": true,
2294
+ "license": "ISC",
2295
+ "dependencies": {
2296
+ "is-glob": "^4.0.1"
2297
+ },
2298
+ "engines": {
2299
+ "node": ">= 6"
2300
+ }
2301
+ },
2302
+ "node_modules/gopd": {
2303
+ "version": "1.2.0",
2304
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
2305
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
2306
+ "license": "MIT",
2307
+ "engines": {
2308
+ "node": ">= 0.4"
2309
+ },
2310
+ "funding": {
2311
+ "url": "https://github.com/sponsors/ljharb"
2312
+ }
2313
+ },
2314
+ "node_modules/graceful-fs": {
2315
+ "version": "4.2.11",
2316
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2317
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2318
+ "dev": true,
2319
+ "license": "ISC"
2320
+ },
2321
+ "node_modules/gridstack": {
2322
+ "version": "12.3.3",
2323
+ "resolved": "https://registry.npmjs.org/gridstack/-/gridstack-12.3.3.tgz",
2324
+ "integrity": "sha512-Bboi4gj7HXGnx1VFXQNde4Nwi5srdUSuCCnOSszKhFjBs8EtMEWhsKX02BjIKkErq/FjQUkNUbXUYeQaVMQ0jQ==",
2325
+ "funding": [
2326
+ {
2327
+ "type": "paypal",
2328
+ "url": "https://www.paypal.me/alaind831"
2329
+ },
2330
+ {
2331
+ "type": "venmo",
2332
+ "url": "https://www.venmo.com/adumesny"
2333
+ }
2334
+ ],
2335
+ "license": "MIT"
2336
+ },
2337
+ "node_modules/has-symbols": {
2338
+ "version": "1.1.0",
2339
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
2340
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
2341
+ "license": "MIT",
2342
+ "engines": {
2343
+ "node": ">= 0.4"
2344
+ },
2345
+ "funding": {
2346
+ "url": "https://github.com/sponsors/ljharb"
2347
+ }
2348
+ },
2349
+ "node_modules/has-tostringtag": {
2350
+ "version": "1.0.2",
2351
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
2352
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
2353
+ "license": "MIT",
2354
+ "dependencies": {
2355
+ "has-symbols": "^1.0.3"
2356
+ },
2357
+ "engines": {
2358
+ "node": ">= 0.4"
2359
+ },
2360
+ "funding": {
2361
+ "url": "https://github.com/sponsors/ljharb"
2362
+ }
2363
+ },
2364
+ "node_modules/hasown": {
2365
+ "version": "2.0.2",
2366
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2367
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2368
+ "license": "MIT",
2369
+ "dependencies": {
2370
+ "function-bind": "^1.1.2"
2371
+ },
2372
+ "engines": {
2373
+ "node": ">= 0.4"
2374
+ }
2375
+ },
2376
+ "node_modules/iconv-lite": {
2377
+ "version": "0.6.3",
2378
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
2379
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
2380
+ "license": "MIT",
2381
+ "peer": true,
2382
+ "dependencies": {
2383
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
2384
+ },
2385
+ "engines": {
2386
+ "node": ">=0.10.0"
2387
+ }
2388
+ },
2389
+ "node_modules/import-meta-resolve": {
2390
+ "version": "4.2.0",
2391
+ "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz",
2392
+ "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==",
2393
+ "dev": true,
2394
+ "license": "MIT",
2395
+ "funding": {
2396
+ "type": "github",
2397
+ "url": "https://github.com/sponsors/wooorm"
2398
+ }
2399
+ },
2400
+ "node_modules/inflight": {
2401
+ "version": "1.0.6",
2402
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2403
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2404
+ "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.",
2405
+ "dev": true,
2406
+ "license": "ISC",
2407
+ "dependencies": {
2408
+ "once": "^1.3.0",
2409
+ "wrappy": "1"
2410
+ }
2411
+ },
2412
+ "node_modules/inherits": {
2413
+ "version": "2.0.4",
2414
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2415
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2416
+ "dev": true,
2417
+ "license": "ISC"
2418
+ },
2419
+ "node_modules/internmap": {
2420
+ "version": "2.0.3",
2421
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
2422
+ "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
2423
+ "license": "ISC",
2424
+ "peer": true,
2425
+ "engines": {
2426
+ "node": ">=12"
2427
+ }
2428
+ },
2429
+ "node_modules/is-binary-path": {
2430
+ "version": "2.1.0",
2431
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
2432
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
2433
+ "dev": true,
2434
+ "license": "MIT",
2435
+ "dependencies": {
2436
+ "binary-extensions": "^2.0.0"
2437
+ },
2438
+ "engines": {
2439
+ "node": ">=8"
2440
+ }
2441
+ },
2442
+ "node_modules/is-extglob": {
2443
+ "version": "2.1.1",
2444
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2445
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2446
+ "dev": true,
2447
+ "license": "MIT",
2448
+ "engines": {
2449
+ "node": ">=0.10.0"
2450
+ }
2451
+ },
2452
+ "node_modules/is-glob": {
2453
+ "version": "4.0.3",
2454
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2455
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2456
+ "dev": true,
2457
+ "license": "MIT",
2458
+ "dependencies": {
2459
+ "is-extglob": "^2.1.1"
2460
+ },
2461
+ "engines": {
2462
+ "node": ">=0.10.0"
2463
+ }
2464
+ },
2465
+ "node_modules/is-number": {
2466
+ "version": "7.0.0",
2467
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2468
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2469
+ "dev": true,
2470
+ "license": "MIT",
2471
+ "engines": {
2472
+ "node": ">=0.12.0"
2473
+ }
2474
+ },
2475
+ "node_modules/is-reference": {
2476
+ "version": "3.0.3",
2477
+ "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz",
2478
+ "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==",
2479
+ "license": "MIT",
2480
+ "dependencies": {
2481
+ "@types/estree": "^1.0.6"
2482
+ }
2483
+ },
2484
+ "node_modules/jiti": {
2485
+ "version": "2.6.1",
2486
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2487
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2488
+ "dev": true,
2489
+ "license": "MIT",
2490
+ "bin": {
2491
+ "jiti": "lib/jiti-cli.mjs"
2492
+ }
2493
+ },
2494
+ "node_modules/json-stringify-pretty-compact": {
2495
+ "version": "4.0.0",
2496
+ "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-4.0.0.tgz",
2497
+ "integrity": "sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==",
2498
+ "license": "MIT",
2499
+ "peer": true
2500
+ },
2501
+ "node_modules/kleur": {
2502
+ "version": "4.1.5",
2503
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
2504
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
2505
+ "dev": true,
2506
+ "license": "MIT",
2507
+ "engines": {
2508
+ "node": ">=6"
2509
+ }
2510
+ },
2511
+ "node_modules/lightningcss": {
2512
+ "version": "1.30.1",
2513
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
2514
+ "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
2515
+ "dev": true,
2516
+ "license": "MPL-2.0",
2517
+ "dependencies": {
2518
+ "detect-libc": "^2.0.3"
2519
+ },
2520
+ "engines": {
2521
+ "node": ">= 12.0.0"
2522
+ },
2523
+ "funding": {
2524
+ "type": "opencollective",
2525
+ "url": "https://opencollective.com/parcel"
2526
+ },
2527
+ "optionalDependencies": {
2528
+ "lightningcss-darwin-arm64": "1.30.1",
2529
+ "lightningcss-darwin-x64": "1.30.1",
2530
+ "lightningcss-freebsd-x64": "1.30.1",
2531
+ "lightningcss-linux-arm-gnueabihf": "1.30.1",
2532
+ "lightningcss-linux-arm64-gnu": "1.30.1",
2533
+ "lightningcss-linux-arm64-musl": "1.30.1",
2534
+ "lightningcss-linux-x64-gnu": "1.30.1",
2535
+ "lightningcss-linux-x64-musl": "1.30.1",
2536
+ "lightningcss-win32-arm64-msvc": "1.30.1",
2537
+ "lightningcss-win32-x64-msvc": "1.30.1"
2538
+ }
2539
+ },
2540
+ "node_modules/lightningcss-darwin-arm64": {
2541
+ "version": "1.30.1",
2542
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
2543
+ "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
2544
+ "cpu": [
2545
+ "arm64"
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-darwin-x64": {
2562
+ "version": "1.30.1",
2563
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
2564
+ "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
2565
+ "cpu": [
2566
+ "x64"
2567
+ ],
2568
+ "dev": true,
2569
+ "license": "MPL-2.0",
2570
+ "optional": true,
2571
+ "os": [
2572
+ "darwin"
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-freebsd-x64": {
2583
+ "version": "1.30.1",
2584
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
2585
+ "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
2586
+ "cpu": [
2587
+ "x64"
2588
+ ],
2589
+ "dev": true,
2590
+ "license": "MPL-2.0",
2591
+ "optional": true,
2592
+ "os": [
2593
+ "freebsd"
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-arm-gnueabihf": {
2604
+ "version": "1.30.1",
2605
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
2606
+ "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
2607
+ "cpu": [
2608
+ "arm"
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-gnu": {
2625
+ "version": "1.30.1",
2626
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
2627
+ "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
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-arm64-musl": {
2646
+ "version": "1.30.1",
2647
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
2648
+ "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
2649
+ "cpu": [
2650
+ "arm64"
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-gnu": {
2667
+ "version": "1.30.1",
2668
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
2669
+ "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
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-linux-x64-musl": {
2688
+ "version": "1.30.1",
2689
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
2690
+ "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
2691
+ "cpu": [
2692
+ "x64"
2693
+ ],
2694
+ "dev": true,
2695
+ "license": "MPL-2.0",
2696
+ "optional": true,
2697
+ "os": [
2698
+ "linux"
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-arm64-msvc": {
2709
+ "version": "1.30.1",
2710
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
2711
+ "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
2712
+ "cpu": [
2713
+ "arm64"
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/lightningcss-win32-x64-msvc": {
2730
+ "version": "1.30.1",
2731
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
2732
+ "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
2733
+ "cpu": [
2734
+ "x64"
2735
+ ],
2736
+ "dev": true,
2737
+ "license": "MPL-2.0",
2738
+ "optional": true,
2739
+ "os": [
2740
+ "win32"
2741
+ ],
2742
+ "engines": {
2743
+ "node": ">= 12.0.0"
2744
+ },
2745
+ "funding": {
2746
+ "type": "opencollective",
2747
+ "url": "https://opencollective.com/parcel"
2748
+ }
2749
+ },
2750
+ "node_modules/locate-character": {
2751
+ "version": "3.0.0",
2752
+ "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz",
2753
+ "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==",
2754
+ "license": "MIT"
2755
+ },
2756
+ "node_modules/lodash-es": {
2757
+ "version": "4.17.21",
2758
+ "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
2759
+ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
2760
+ "license": "MIT"
2761
+ },
2762
+ "node_modules/magic-string": {
2763
+ "version": "0.30.19",
2764
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz",
2765
+ "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==",
2766
+ "license": "MIT",
2767
+ "dependencies": {
2768
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2769
+ }
2770
+ },
2771
+ "node_modules/math-intrinsics": {
2772
+ "version": "1.1.0",
2773
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
2774
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
2775
+ "license": "MIT",
2776
+ "engines": {
2777
+ "node": ">= 0.4"
2778
+ }
2779
+ },
2780
+ "node_modules/mime-db": {
2781
+ "version": "1.52.0",
2782
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
2783
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
2784
+ "license": "MIT",
2785
+ "engines": {
2786
+ "node": ">= 0.6"
2787
+ }
2788
+ },
2789
+ "node_modules/mime-types": {
2790
+ "version": "2.1.35",
2791
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
2792
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
2793
+ "license": "MIT",
2794
+ "dependencies": {
2795
+ "mime-db": "1.52.0"
2796
+ },
2797
+ "engines": {
2798
+ "node": ">= 0.6"
2799
+ }
2800
+ },
2801
+ "node_modules/min-indent": {
2802
+ "version": "1.0.1",
2803
+ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
2804
+ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
2805
+ "dev": true,
2806
+ "license": "MIT",
2807
+ "engines": {
2808
+ "node": ">=4"
2809
+ }
2810
+ },
2811
+ "node_modules/minimatch": {
2812
+ "version": "3.1.2",
2813
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2814
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2815
+ "dev": true,
2816
+ "license": "ISC",
2817
+ "dependencies": {
2818
+ "brace-expansion": "^1.1.7"
2819
+ },
2820
+ "engines": {
2821
+ "node": "*"
2822
+ }
2823
+ },
2824
+ "node_modules/minimist": {
2825
+ "version": "1.2.8",
2826
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
2827
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
2828
+ "dev": true,
2829
+ "license": "MIT",
2830
+ "funding": {
2831
+ "url": "https://github.com/sponsors/ljharb"
2832
+ }
2833
+ },
2834
+ "node_modules/minipass": {
2835
+ "version": "7.1.2",
2836
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
2837
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
2838
+ "dev": true,
2839
+ "license": "ISC",
2840
+ "engines": {
2841
+ "node": ">=16 || 14 >=14.17"
2842
+ }
2843
+ },
2844
+ "node_modules/minizlib": {
2845
+ "version": "3.1.0",
2846
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
2847
+ "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==",
2848
+ "dev": true,
2849
+ "license": "MIT",
2850
+ "dependencies": {
2851
+ "minipass": "^7.1.2"
2852
+ },
2853
+ "engines": {
2854
+ "node": ">= 18"
2855
+ }
2856
+ },
2857
+ "node_modules/mkdirp": {
2858
+ "version": "0.5.6",
2859
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
2860
+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
2861
+ "dev": true,
2862
+ "license": "MIT",
2863
+ "dependencies": {
2864
+ "minimist": "^1.2.6"
2865
+ },
2866
+ "bin": {
2867
+ "mkdirp": "bin/cmd.js"
2868
+ }
2869
+ },
2870
+ "node_modules/mri": {
2871
+ "version": "1.2.0",
2872
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
2873
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
2874
+ "dev": true,
2875
+ "license": "MIT",
2876
+ "engines": {
2877
+ "node": ">=4"
2878
+ }
2879
+ },
2880
+ "node_modules/mrmime": {
2881
+ "version": "2.0.1",
2882
+ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
2883
+ "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
2884
+ "dev": true,
2885
+ "license": "MIT",
2886
+ "engines": {
2887
+ "node": ">=10"
2888
+ }
2889
+ },
2890
+ "node_modules/ms": {
2891
+ "version": "2.1.3",
2892
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2893
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2894
+ "dev": true,
2895
+ "license": "MIT"
2896
+ },
2897
+ "node_modules/nanoid": {
2898
+ "version": "3.3.11",
2899
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
2900
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2901
+ "dev": true,
2902
+ "funding": [
2903
+ {
2904
+ "type": "github",
2905
+ "url": "https://github.com/sponsors/ai"
2906
+ }
2907
+ ],
2908
+ "license": "MIT",
2909
+ "bin": {
2910
+ "nanoid": "bin/nanoid.cjs"
2911
+ },
2912
+ "engines": {
2913
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2914
+ }
2915
+ },
2916
+ "node_modules/normalize-path": {
2917
+ "version": "3.0.0",
2918
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
2919
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
2920
+ "dev": true,
2921
+ "license": "MIT",
2922
+ "engines": {
2923
+ "node": ">=0.10.0"
2924
+ }
2925
+ },
2926
+ "node_modules/once": {
2927
+ "version": "1.4.0",
2928
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2929
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2930
+ "dev": true,
2931
+ "license": "ISC",
2932
+ "dependencies": {
2933
+ "wrappy": "1"
2934
+ }
2935
+ },
2936
+ "node_modules/path-is-absolute": {
2937
+ "version": "1.0.1",
2938
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2939
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
2940
+ "dev": true,
2941
+ "license": "MIT",
2942
+ "engines": {
2943
+ "node": ">=0.10.0"
2944
+ }
2945
+ },
2946
+ "node_modules/picocolors": {
2947
+ "version": "1.1.1",
2948
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2949
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2950
+ "dev": true,
2951
+ "license": "ISC"
2952
+ },
2953
+ "node_modules/picomatch": {
2954
+ "version": "2.3.1",
2955
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2956
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2957
+ "dev": true,
2958
+ "license": "MIT",
2959
+ "engines": {
2960
+ "node": ">=8.6"
2961
+ },
2962
+ "funding": {
2963
+ "url": "https://github.com/sponsors/jonschlinkert"
2964
+ }
2965
+ },
2966
+ "node_modules/postcss": {
2967
+ "version": "8.5.6",
2968
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
2969
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
2970
+ "dev": true,
2971
+ "funding": [
2972
+ {
2973
+ "type": "opencollective",
2974
+ "url": "https://opencollective.com/postcss/"
2975
+ },
2976
+ {
2977
+ "type": "tidelift",
2978
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2979
+ },
2980
+ {
2981
+ "type": "github",
2982
+ "url": "https://github.com/sponsors/ai"
2983
+ }
2984
+ ],
2985
+ "license": "MIT",
2986
+ "dependencies": {
2987
+ "nanoid": "^3.3.11",
2988
+ "picocolors": "^1.1.1",
2989
+ "source-map-js": "^1.2.1"
2990
+ },
2991
+ "engines": {
2992
+ "node": "^10 || ^12 || >=14"
2993
+ }
2994
+ },
2995
+ "node_modules/prettier": {
2996
+ "version": "3.6.2",
2997
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
2998
+ "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
2999
+ "dev": true,
3000
+ "license": "MIT",
3001
+ "bin": {
3002
+ "prettier": "bin/prettier.cjs"
3003
+ },
3004
+ "engines": {
3005
+ "node": ">=14"
3006
+ },
3007
+ "funding": {
3008
+ "url": "https://github.com/prettier/prettier?sponsor=1"
3009
+ }
3010
+ },
3011
+ "node_modules/prettier-plugin-svelte": {
3012
+ "version": "3.4.0",
3013
+ "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.4.0.tgz",
3014
+ "integrity": "sha512-pn1ra/0mPObzqoIQn/vUTR3ZZI6UuZ0sHqMK5x2jMLGrs53h0sXhkVuDcrlssHwIMk7FYrMjHBPoUSyyEEDlBQ==",
3015
+ "dev": true,
3016
+ "license": "MIT",
3017
+ "peerDependencies": {
3018
+ "prettier": "^3.0.0",
3019
+ "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0"
3020
+ }
3021
+ },
3022
+ "node_modules/prettier-plugin-tailwindcss": {
3023
+ "version": "0.6.14",
3024
+ "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.14.tgz",
3025
+ "integrity": "sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==",
3026
+ "dev": true,
3027
+ "license": "MIT",
3028
+ "engines": {
3029
+ "node": ">=14.21.3"
3030
+ },
3031
+ "peerDependencies": {
3032
+ "@ianvs/prettier-plugin-sort-imports": "*",
3033
+ "@prettier/plugin-hermes": "*",
3034
+ "@prettier/plugin-oxc": "*",
3035
+ "@prettier/plugin-pug": "*",
3036
+ "@shopify/prettier-plugin-liquid": "*",
3037
+ "@trivago/prettier-plugin-sort-imports": "*",
3038
+ "@zackad/prettier-plugin-twig": "*",
3039
+ "prettier": "^3.0",
3040
+ "prettier-plugin-astro": "*",
3041
+ "prettier-plugin-css-order": "*",
3042
+ "prettier-plugin-import-sort": "*",
3043
+ "prettier-plugin-jsdoc": "*",
3044
+ "prettier-plugin-marko": "*",
3045
+ "prettier-plugin-multiline-arrays": "*",
3046
+ "prettier-plugin-organize-attributes": "*",
3047
+ "prettier-plugin-organize-imports": "*",
3048
+ "prettier-plugin-sort-imports": "*",
3049
+ "prettier-plugin-style-order": "*",
3050
+ "prettier-plugin-svelte": "*"
3051
+ },
3052
+ "peerDependenciesMeta": {
3053
+ "@ianvs/prettier-plugin-sort-imports": {
3054
+ "optional": true
3055
+ },
3056
+ "@prettier/plugin-hermes": {
3057
+ "optional": true
3058
+ },
3059
+ "@prettier/plugin-oxc": {
3060
+ "optional": true
3061
+ },
3062
+ "@prettier/plugin-pug": {
3063
+ "optional": true
3064
+ },
3065
+ "@shopify/prettier-plugin-liquid": {
3066
+ "optional": true
3067
+ },
3068
+ "@trivago/prettier-plugin-sort-imports": {
3069
+ "optional": true
3070
+ },
3071
+ "@zackad/prettier-plugin-twig": {
3072
+ "optional": true
3073
+ },
3074
+ "prettier-plugin-astro": {
3075
+ "optional": true
3076
+ },
3077
+ "prettier-plugin-css-order": {
3078
+ "optional": true
3079
+ },
3080
+ "prettier-plugin-import-sort": {
3081
+ "optional": true
3082
+ },
3083
+ "prettier-plugin-jsdoc": {
3084
+ "optional": true
3085
+ },
3086
+ "prettier-plugin-marko": {
3087
+ "optional": true
3088
+ },
3089
+ "prettier-plugin-multiline-arrays": {
3090
+ "optional": true
3091
+ },
3092
+ "prettier-plugin-organize-attributes": {
3093
+ "optional": true
3094
+ },
3095
+ "prettier-plugin-organize-imports": {
3096
+ "optional": true
3097
+ },
3098
+ "prettier-plugin-sort-imports": {
3099
+ "optional": true
3100
+ },
3101
+ "prettier-plugin-style-order": {
3102
+ "optional": true
3103
+ },
3104
+ "prettier-plugin-svelte": {
3105
+ "optional": true
3106
+ }
3107
+ }
3108
+ },
3109
+ "node_modules/proxy-from-env": {
3110
+ "version": "1.1.0",
3111
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
3112
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
3113
+ "license": "MIT"
3114
+ },
3115
+ "node_modules/readdirp": {
3116
+ "version": "3.6.0",
3117
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
3118
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
3119
+ "dev": true,
3120
+ "license": "MIT",
3121
+ "dependencies": {
3122
+ "picomatch": "^2.2.1"
3123
+ },
3124
+ "engines": {
3125
+ "node": ">=8.10.0"
3126
+ }
3127
+ },
3128
+ "node_modules/rimraf": {
3129
+ "version": "2.7.1",
3130
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
3131
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
3132
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
3133
+ "dev": true,
3134
+ "license": "ISC",
3135
+ "dependencies": {
3136
+ "glob": "^7.1.3"
3137
+ },
3138
+ "bin": {
3139
+ "rimraf": "bin.js"
3140
+ }
3141
+ },
3142
+ "node_modules/robust-predicates": {
3143
+ "version": "3.0.2",
3144
+ "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz",
3145
+ "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==",
3146
+ "license": "Unlicense",
3147
+ "peer": true
3148
+ },
3149
+ "node_modules/rollup": {
3150
+ "version": "4.52.4",
3151
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz",
3152
+ "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==",
3153
+ "dev": true,
3154
+ "license": "MIT",
3155
+ "dependencies": {
3156
+ "@types/estree": "1.0.8"
3157
+ },
3158
+ "bin": {
3159
+ "rollup": "dist/bin/rollup"
3160
+ },
3161
+ "engines": {
3162
+ "node": ">=18.0.0",
3163
+ "npm": ">=8.0.0"
3164
+ },
3165
+ "optionalDependencies": {
3166
+ "@rollup/rollup-android-arm-eabi": "4.52.4",
3167
+ "@rollup/rollup-android-arm64": "4.52.4",
3168
+ "@rollup/rollup-darwin-arm64": "4.52.4",
3169
+ "@rollup/rollup-darwin-x64": "4.52.4",
3170
+ "@rollup/rollup-freebsd-arm64": "4.52.4",
3171
+ "@rollup/rollup-freebsd-x64": "4.52.4",
3172
+ "@rollup/rollup-linux-arm-gnueabihf": "4.52.4",
3173
+ "@rollup/rollup-linux-arm-musleabihf": "4.52.4",
3174
+ "@rollup/rollup-linux-arm64-gnu": "4.52.4",
3175
+ "@rollup/rollup-linux-arm64-musl": "4.52.4",
3176
+ "@rollup/rollup-linux-loong64-gnu": "4.52.4",
3177
+ "@rollup/rollup-linux-ppc64-gnu": "4.52.4",
3178
+ "@rollup/rollup-linux-riscv64-gnu": "4.52.4",
3179
+ "@rollup/rollup-linux-riscv64-musl": "4.52.4",
3180
+ "@rollup/rollup-linux-s390x-gnu": "4.52.4",
3181
+ "@rollup/rollup-linux-x64-gnu": "4.52.4",
3182
+ "@rollup/rollup-linux-x64-musl": "4.52.4",
3183
+ "@rollup/rollup-openharmony-arm64": "4.52.4",
3184
+ "@rollup/rollup-win32-arm64-msvc": "4.52.4",
3185
+ "@rollup/rollup-win32-ia32-msvc": "4.52.4",
3186
+ "@rollup/rollup-win32-x64-gnu": "4.52.4",
3187
+ "@rollup/rollup-win32-x64-msvc": "4.52.4",
3188
+ "fsevents": "~2.3.2"
3189
+ }
3190
+ },
3191
+ "node_modules/rw": {
3192
+ "version": "1.3.3",
3193
+ "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
3194
+ "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==",
3195
+ "license": "BSD-3-Clause",
3196
+ "peer": true
3197
+ },
3198
+ "node_modules/sade": {
3199
+ "version": "1.8.1",
3200
+ "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
3201
+ "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
3202
+ "dev": true,
3203
+ "license": "MIT",
3204
+ "dependencies": {
3205
+ "mri": "^1.1.0"
3206
+ },
3207
+ "engines": {
3208
+ "node": ">=6"
3209
+ }
3210
+ },
3211
+ "node_modules/safer-buffer": {
3212
+ "version": "2.1.2",
3213
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
3214
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
3215
+ "license": "MIT",
3216
+ "peer": true
3217
+ },
3218
+ "node_modules/sander": {
3219
+ "version": "0.5.1",
3220
+ "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz",
3221
+ "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==",
3222
+ "dev": true,
3223
+ "license": "MIT",
3224
+ "dependencies": {
3225
+ "es6-promise": "^3.1.2",
3226
+ "graceful-fs": "^4.1.3",
3227
+ "mkdirp": "^0.5.1",
3228
+ "rimraf": "^2.5.2"
3229
+ }
3230
+ },
3231
+ "node_modules/semver": {
3232
+ "version": "7.7.3",
3233
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
3234
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
3235
+ "license": "ISC",
3236
+ "peer": true,
3237
+ "bin": {
3238
+ "semver": "bin/semver.js"
3239
+ },
3240
+ "engines": {
3241
+ "node": ">=10"
3242
+ }
3243
+ },
3244
+ "node_modules/set-cookie-parser": {
3245
+ "version": "2.7.1",
3246
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz",
3247
+ "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==",
3248
+ "dev": true,
3249
+ "license": "MIT"
3250
+ },
3251
+ "node_modules/sirv": {
3252
+ "version": "3.0.2",
3253
+ "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz",
3254
+ "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==",
3255
+ "dev": true,
3256
+ "license": "MIT",
3257
+ "dependencies": {
3258
+ "@polka/url": "^1.0.0-next.24",
3259
+ "mrmime": "^2.0.0",
3260
+ "totalist": "^3.0.0"
3261
+ },
3262
+ "engines": {
3263
+ "node": ">=18"
3264
+ }
3265
+ },
3266
+ "node_modules/sorcery": {
3267
+ "version": "0.11.1",
3268
+ "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.1.tgz",
3269
+ "integrity": "sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==",
3270
+ "dev": true,
3271
+ "license": "MIT",
3272
+ "dependencies": {
3273
+ "@jridgewell/sourcemap-codec": "^1.4.14",
3274
+ "buffer-crc32": "^1.0.0",
3275
+ "minimist": "^1.2.0",
3276
+ "sander": "^0.5.0"
3277
+ },
3278
+ "bin": {
3279
+ "sorcery": "bin/sorcery"
3280
+ }
3281
+ },
3282
+ "node_modules/source-map-js": {
3283
+ "version": "1.2.1",
3284
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3285
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3286
+ "dev": true,
3287
+ "license": "BSD-3-Clause",
3288
+ "engines": {
3289
+ "node": ">=0.10.0"
3290
+ }
3291
+ },
3292
+ "node_modules/string-width": {
3293
+ "version": "7.2.0",
3294
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
3295
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
3296
+ "license": "MIT",
3297
+ "peer": true,
3298
+ "dependencies": {
3299
+ "emoji-regex": "^10.3.0",
3300
+ "get-east-asian-width": "^1.0.0",
3301
+ "strip-ansi": "^7.1.0"
3302
+ },
3303
+ "engines": {
3304
+ "node": ">=18"
3305
+ },
3306
+ "funding": {
3307
+ "url": "https://github.com/sponsors/sindresorhus"
3308
+ }
3309
+ },
3310
+ "node_modules/strip-ansi": {
3311
+ "version": "7.1.2",
3312
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
3313
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
3314
+ "license": "MIT",
3315
+ "peer": true,
3316
+ "dependencies": {
3317
+ "ansi-regex": "^6.0.1"
3318
+ },
3319
+ "engines": {
3320
+ "node": ">=12"
3321
+ },
3322
+ "funding": {
3323
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
3324
+ }
3325
+ },
3326
+ "node_modules/strip-indent": {
3327
+ "version": "3.0.0",
3328
+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
3329
+ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
3330
+ "dev": true,
3331
+ "license": "MIT",
3332
+ "dependencies": {
3333
+ "min-indent": "^1.0.0"
3334
+ },
3335
+ "engines": {
3336
+ "node": ">=8"
3337
+ }
3338
+ },
3339
+ "node_modules/svelte": {
3340
+ "version": "5.39.12",
3341
+ "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.39.12.tgz",
3342
+ "integrity": "sha512-CEzwxFuEycokU8K8CE/OuwVbmei+ivu2HvBGYIdASfMa1hCRSNr4RRkzNSvbAvu6h+BOig2CsZTAEY+WKvwZpA==",
3343
+ "license": "MIT",
3344
+ "dependencies": {
3345
+ "@jridgewell/remapping": "^2.3.4",
3346
+ "@jridgewell/sourcemap-codec": "^1.5.0",
3347
+ "@sveltejs/acorn-typescript": "^1.0.5",
3348
+ "@types/estree": "^1.0.5",
3349
+ "acorn": "^8.12.1",
3350
+ "aria-query": "^5.3.1",
3351
+ "axobject-query": "^4.1.0",
3352
+ "clsx": "^2.1.1",
3353
+ "esm-env": "^1.2.1",
3354
+ "esrap": "^2.1.0",
3355
+ "is-reference": "^3.0.3",
3356
+ "locate-character": "^3.0.0",
3357
+ "magic-string": "^0.30.11",
3358
+ "zimmerframe": "^1.1.2"
3359
+ },
3360
+ "engines": {
3361
+ "node": ">=18"
3362
+ }
3363
+ },
3364
+ "node_modules/svelte-check": {
3365
+ "version": "3.8.6",
3366
+ "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.8.6.tgz",
3367
+ "integrity": "sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==",
3368
+ "dev": true,
3369
+ "license": "MIT",
3370
+ "dependencies": {
3371
+ "@jridgewell/trace-mapping": "^0.3.17",
3372
+ "chokidar": "^3.4.1",
3373
+ "picocolors": "^1.0.0",
3374
+ "sade": "^1.7.4",
3375
+ "svelte-preprocess": "^5.1.3",
3376
+ "typescript": "^5.0.3"
3377
+ },
3378
+ "bin": {
3379
+ "svelte-check": "bin/svelte-check"
3380
+ },
3381
+ "peerDependencies": {
3382
+ "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0"
3383
+ }
3384
+ },
3385
+ "node_modules/svelte-preprocess": {
3386
+ "version": "5.1.4",
3387
+ "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz",
3388
+ "integrity": "sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==",
3389
+ "dev": true,
3390
+ "hasInstallScript": true,
3391
+ "license": "MIT",
3392
+ "dependencies": {
3393
+ "@types/pug": "^2.0.6",
3394
+ "detect-indent": "^6.1.0",
3395
+ "magic-string": "^0.30.5",
3396
+ "sorcery": "^0.11.0",
3397
+ "strip-indent": "^3.0.0"
3398
+ },
3399
+ "engines": {
3400
+ "node": ">= 16.0.0"
3401
+ },
3402
+ "peerDependencies": {
3403
+ "@babel/core": "^7.10.2",
3404
+ "coffeescript": "^2.5.1",
3405
+ "less": "^3.11.3 || ^4.0.0",
3406
+ "postcss": "^7 || ^8",
3407
+ "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
3408
+ "pug": "^3.0.0",
3409
+ "sass": "^1.26.8",
3410
+ "stylus": "^0.55.0",
3411
+ "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0",
3412
+ "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0",
3413
+ "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0"
3414
+ },
3415
+ "peerDependenciesMeta": {
3416
+ "@babel/core": {
3417
+ "optional": true
3418
+ },
3419
+ "coffeescript": {
3420
+ "optional": true
3421
+ },
3422
+ "less": {
3423
+ "optional": true
3424
+ },
3425
+ "postcss": {
3426
+ "optional": true
3427
+ },
3428
+ "postcss-load-config": {
3429
+ "optional": true
3430
+ },
3431
+ "pug": {
3432
+ "optional": true
3433
+ },
3434
+ "sass": {
3435
+ "optional": true
3436
+ },
3437
+ "stylus": {
3438
+ "optional": true
3439
+ },
3440
+ "sugarss": {
3441
+ "optional": true
3442
+ },
3443
+ "typescript": {
3444
+ "optional": true
3445
+ }
3446
+ }
3447
+ },
3448
+ "node_modules/svelte-vega": {
3449
+ "version": "4.0.1",
3450
+ "resolved": "https://registry.npmjs.org/svelte-vega/-/svelte-vega-4.0.1.tgz",
3451
+ "integrity": "sha512-kioks+mJ3Gqv9GoFH3Pb9KTd2COTAQxVgZTf3qZJvcgwp0qDg2EIPDHeYEIjPA6+bdpPDPIBqBRHfKU4CRCafw==",
3452
+ "license": "BSD-3-Clause",
3453
+ "peerDependencies": {
3454
+ "svelte": "^5.0.0",
3455
+ "vega": "^6.0.0",
3456
+ "vega-embed": "^7.0.0",
3457
+ "vega-lite": "^6.0.0"
3458
+ }
3459
+ },
3460
+ "node_modules/tailwindcss": {
3461
+ "version": "4.1.14",
3462
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.14.tgz",
3463
+ "integrity": "sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==",
3464
+ "dev": true,
3465
+ "license": "MIT"
3466
+ },
3467
+ "node_modules/tapable": {
3468
+ "version": "2.3.0",
3469
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
3470
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
3471
+ "dev": true,
3472
+ "license": "MIT",
3473
+ "engines": {
3474
+ "node": ">=6"
3475
+ },
3476
+ "funding": {
3477
+ "type": "opencollective",
3478
+ "url": "https://opencollective.com/webpack"
3479
+ }
3480
+ },
3481
+ "node_modules/tar": {
3482
+ "version": "7.5.1",
3483
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.1.tgz",
3484
+ "integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==",
3485
+ "dev": true,
3486
+ "license": "ISC",
3487
+ "dependencies": {
3488
+ "@isaacs/fs-minipass": "^4.0.0",
3489
+ "chownr": "^3.0.0",
3490
+ "minipass": "^7.1.2",
3491
+ "minizlib": "^3.1.0",
3492
+ "yallist": "^5.0.0"
3493
+ },
3494
+ "engines": {
3495
+ "node": ">=18"
3496
+ }
3497
+ },
3498
+ "node_modules/to-regex-range": {
3499
+ "version": "5.0.1",
3500
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3501
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3502
+ "dev": true,
3503
+ "license": "MIT",
3504
+ "dependencies": {
3505
+ "is-number": "^7.0.0"
3506
+ },
3507
+ "engines": {
3508
+ "node": ">=8.0"
3509
+ }
3510
+ },
3511
+ "node_modules/topojson-client": {
3512
+ "version": "3.1.0",
3513
+ "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
3514
+ "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
3515
+ "license": "ISC",
3516
+ "peer": true,
3517
+ "dependencies": {
3518
+ "commander": "2"
3519
+ },
3520
+ "bin": {
3521
+ "topo2geo": "bin/topo2geo",
3522
+ "topomerge": "bin/topomerge",
3523
+ "topoquantize": "bin/topoquantize"
3524
+ }
3525
+ },
3526
+ "node_modules/topojson-client/node_modules/commander": {
3527
+ "version": "2.20.3",
3528
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
3529
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
3530
+ "license": "MIT",
3531
+ "peer": true
3532
+ },
3533
+ "node_modules/totalist": {
3534
+ "version": "3.0.1",
3535
+ "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
3536
+ "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
3537
+ "dev": true,
3538
+ "license": "MIT",
3539
+ "engines": {
3540
+ "node": ">=6"
3541
+ }
3542
+ },
3543
+ "node_modules/tslib": {
3544
+ "version": "2.8.1",
3545
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3546
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3547
+ "license": "0BSD"
3548
+ },
3549
+ "node_modules/typescript": {
3550
+ "version": "5.9.3",
3551
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
3552
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
3553
+ "dev": true,
3554
+ "license": "Apache-2.0",
3555
+ "bin": {
3556
+ "tsc": "bin/tsc",
3557
+ "tsserver": "bin/tsserver"
3558
+ },
3559
+ "engines": {
3560
+ "node": ">=14.17"
3561
+ }
3562
+ },
3563
+ "node_modules/vega": {
3564
+ "version": "6.2.0",
3565
+ "resolved": "https://registry.npmjs.org/vega/-/vega-6.2.0.tgz",
3566
+ "integrity": "sha512-BIwalIcEGysJdQDjeVUmMWB3e50jPDNAMfLJscjEvpunU9bSt7X1OYnQxkg3uBwuRRI4nWfFZO9uIW910nLeGw==",
3567
+ "license": "BSD-3-Clause",
3568
+ "peer": true,
3569
+ "dependencies": {
3570
+ "vega-crossfilter": "~5.1.0",
3571
+ "vega-dataflow": "~6.1.0",
3572
+ "vega-encode": "~5.1.0",
3573
+ "vega-event-selector": "~4.0.0",
3574
+ "vega-expression": "~6.1.0",
3575
+ "vega-force": "~5.1.0",
3576
+ "vega-format": "~2.1.0",
3577
+ "vega-functions": "~6.1.0",
3578
+ "vega-geo": "~5.1.0",
3579
+ "vega-hierarchy": "~5.1.0",
3580
+ "vega-label": "~2.1.0",
3581
+ "vega-loader": "~5.1.0",
3582
+ "vega-parser": "~7.1.0",
3583
+ "vega-projection": "~2.1.0",
3584
+ "vega-regression": "~2.1.0",
3585
+ "vega-runtime": "~7.1.0",
3586
+ "vega-scale": "~8.1.0",
3587
+ "vega-scenegraph": "~5.1.0",
3588
+ "vega-statistics": "~2.0.0",
3589
+ "vega-time": "~3.1.0",
3590
+ "vega-transforms": "~5.1.0",
3591
+ "vega-typings": "~2.1.0",
3592
+ "vega-util": "~2.1.0",
3593
+ "vega-view": "~6.1.0",
3594
+ "vega-view-transforms": "~5.1.0",
3595
+ "vega-voronoi": "~5.1.0",
3596
+ "vega-wordcloud": "~5.1.0"
3597
+ },
3598
+ "funding": {
3599
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3600
+ }
3601
+ },
3602
+ "node_modules/vega-canvas": {
3603
+ "version": "2.0.0",
3604
+ "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-2.0.0.tgz",
3605
+ "integrity": "sha512-9x+4TTw/USYST5nx4yN272sy9WcqSRjAR0tkQYZJ4cQIeon7uVsnohvoPQK1JZu7K1QXGUqzj08z0u/UegBVMA==",
3606
+ "license": "BSD-3-Clause",
3607
+ "peer": true
3608
+ },
3609
+ "node_modules/vega-crossfilter": {
3610
+ "version": "5.1.0",
3611
+ "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-5.1.0.tgz",
3612
+ "integrity": "sha512-EmVhfP3p6AM7o/lPan/QAoqjblI19BxWUlvl2TSs0xjQd8KbaYYbS4Ixt3cmEvl0QjRdBMF6CdJJ/cy9DTS4Fw==",
3613
+ "license": "BSD-3-Clause",
3614
+ "peer": true,
3615
+ "dependencies": {
3616
+ "d3-array": "^3.2.4",
3617
+ "vega-dataflow": "^6.1.0",
3618
+ "vega-util": "^2.1.0"
3619
+ }
3620
+ },
3621
+ "node_modules/vega-dataflow": {
3622
+ "version": "6.1.0",
3623
+ "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-6.1.0.tgz",
3624
+ "integrity": "sha512-JxumGlODtFbzoQ4c/jQK8Tb/68ih0lrexlCozcMfTAwQ12XhTqCvlafh7MAKKTMBizjOfaQTHm4Jkyb1H5CfyQ==",
3625
+ "license": "BSD-3-Clause",
3626
+ "peer": true,
3627
+ "dependencies": {
3628
+ "vega-format": "^2.1.0",
3629
+ "vega-loader": "^5.1.0",
3630
+ "vega-util": "^2.1.0"
3631
+ }
3632
+ },
3633
+ "node_modules/vega-embed": {
3634
+ "version": "7.1.0",
3635
+ "resolved": "https://registry.npmjs.org/vega-embed/-/vega-embed-7.1.0.tgz",
3636
+ "integrity": "sha512-ZmEIn5XJrQt7fSh2lwtSdXG/9uf3yIqZnvXFEwBJRppiBgrEWZcZbj6VK3xn8sNTFQ+sQDXW5sl/6kmbAW3s5A==",
3637
+ "license": "BSD-3-Clause",
3638
+ "peer": true,
3639
+ "dependencies": {
3640
+ "fast-json-patch": "^3.1.1",
3641
+ "json-stringify-pretty-compact": "^4.0.0",
3642
+ "semver": "^7.7.2",
3643
+ "tslib": "^2.8.1",
3644
+ "vega-interpreter": "^2.0.0",
3645
+ "vega-schema-url-parser": "^3.0.2",
3646
+ "vega-themes": "3.0.0",
3647
+ "vega-tooltip": "1.0.0"
3648
+ },
3649
+ "funding": {
3650
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3651
+ },
3652
+ "peerDependencies": {
3653
+ "vega": "*",
3654
+ "vega-lite": "*"
3655
+ }
3656
+ },
3657
+ "node_modules/vega-encode": {
3658
+ "version": "5.1.0",
3659
+ "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-5.1.0.tgz",
3660
+ "integrity": "sha512-q26oI7B+MBQYcTQcr5/c1AMsX3FvjZLQOBi7yI0vV+GEn93fElDgvhQiYrgeYSD4Exi/jBPeUXuN6p4bLz16kA==",
3661
+ "license": "BSD-3-Clause",
3662
+ "peer": true,
3663
+ "dependencies": {
3664
+ "d3-array": "^3.2.4",
3665
+ "d3-interpolate": "^3.0.1",
3666
+ "vega-dataflow": "^6.1.0",
3667
+ "vega-scale": "^8.1.0",
3668
+ "vega-util": "^2.1.0"
3669
+ }
3670
+ },
3671
+ "node_modules/vega-event-selector": {
3672
+ "version": "4.0.0",
3673
+ "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-4.0.0.tgz",
3674
+ "integrity": "sha512-CcWF4m4KL/al1Oa5qSzZ5R776q8lRxCj3IafCHs5xipoEHrkgu1BWa7F/IH5HrDNXeIDnqOpSV1pFsAWRak4gQ==",
3675
+ "license": "BSD-3-Clause",
3676
+ "peer": true
3677
+ },
3678
+ "node_modules/vega-expression": {
3679
+ "version": "6.1.0",
3680
+ "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-6.1.0.tgz",
3681
+ "integrity": "sha512-hHgNx/fQ1Vn1u6vHSamH7lRMsOa/yQeHGGcWVmh8fZafLdwdhCM91kZD9p7+AleNpgwiwzfGogtpATFaMmDFYg==",
3682
+ "license": "BSD-3-Clause",
3683
+ "peer": true,
3684
+ "dependencies": {
3685
+ "@types/estree": "^1.0.8",
3686
+ "vega-util": "^2.1.0"
3687
+ }
3688
+ },
3689
+ "node_modules/vega-force": {
3690
+ "version": "5.1.0",
3691
+ "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-5.1.0.tgz",
3692
+ "integrity": "sha512-wdnchOSeXpF9Xx8Yp0s6Do9F7YkFeOn/E/nENtsI7NOcyHpICJ5+UkgjUo9QaQ/Yu+dIDU+sP/4NXsUtq6SMaQ==",
3693
+ "license": "BSD-3-Clause",
3694
+ "peer": true,
3695
+ "dependencies": {
3696
+ "d3-force": "^3.0.0",
3697
+ "vega-dataflow": "^6.1.0",
3698
+ "vega-util": "^2.1.0"
3699
+ }
3700
+ },
3701
+ "node_modules/vega-format": {
3702
+ "version": "2.1.0",
3703
+ "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-2.1.0.tgz",
3704
+ "integrity": "sha512-i9Ht33IgqG36+S1gFDpAiKvXCPz+q+1vDhDGKK8YsgMxGOG4PzinKakI66xd7SdV4q97FgpR7odAXqtDN2wKqw==",
3705
+ "license": "BSD-3-Clause",
3706
+ "peer": true,
3707
+ "dependencies": {
3708
+ "d3-array": "^3.2.4",
3709
+ "d3-format": "^3.1.0",
3710
+ "d3-time-format": "^4.1.0",
3711
+ "vega-time": "^3.1.0",
3712
+ "vega-util": "^2.1.0"
3713
+ }
3714
+ },
3715
+ "node_modules/vega-functions": {
3716
+ "version": "6.1.0",
3717
+ "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-6.1.0.tgz",
3718
+ "integrity": "sha512-yooEbWt0FWMBNoohwLsl25lEh08WsWabTXbbS+q0IXZzWSpX4Cyi45+q7IFyy/2L4oaIfGIIV14dgn3srQQcGA==",
3719
+ "license": "BSD-3-Clause",
3720
+ "peer": true,
3721
+ "dependencies": {
3722
+ "d3-array": "^3.2.4",
3723
+ "d3-color": "^3.1.0",
3724
+ "d3-geo": "^3.1.1",
3725
+ "vega-dataflow": "^6.1.0",
3726
+ "vega-expression": "^6.1.0",
3727
+ "vega-scale": "^8.1.0",
3728
+ "vega-scenegraph": "^5.1.0",
3729
+ "vega-selections": "^6.1.0",
3730
+ "vega-statistics": "^2.0.0",
3731
+ "vega-time": "^3.1.0",
3732
+ "vega-util": "^2.1.0"
3733
+ }
3734
+ },
3735
+ "node_modules/vega-geo": {
3736
+ "version": "5.1.0",
3737
+ "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-5.1.0.tgz",
3738
+ "integrity": "sha512-H8aBBHfthc3rzDbz/Th18+Nvp00J73q3uXGAPDQqizioDm/CoXCK8cX4pMePydBY9S6ikBiGJrLKFDa80wI20g==",
3739
+ "license": "BSD-3-Clause",
3740
+ "peer": true,
3741
+ "dependencies": {
3742
+ "d3-array": "^3.2.4",
3743
+ "d3-color": "^3.1.0",
3744
+ "d3-geo": "^3.1.1",
3745
+ "vega-canvas": "^2.0.0",
3746
+ "vega-dataflow": "^6.1.0",
3747
+ "vega-projection": "^2.1.0",
3748
+ "vega-statistics": "^2.0.0",
3749
+ "vega-util": "^2.1.0"
3750
+ }
3751
+ },
3752
+ "node_modules/vega-hierarchy": {
3753
+ "version": "5.1.0",
3754
+ "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-5.1.0.tgz",
3755
+ "integrity": "sha512-rZlU8QJNETlB6o73lGCPybZtw2fBBsRIRuFE77aCLFHdGsh6wIifhplVarqE9icBqjUHRRUOmcEYfzwVIPr65g==",
3756
+ "license": "BSD-3-Clause",
3757
+ "peer": true,
3758
+ "dependencies": {
3759
+ "d3-hierarchy": "^3.1.2",
3760
+ "vega-dataflow": "^6.1.0",
3761
+ "vega-util": "^2.1.0"
3762
+ }
3763
+ },
3764
+ "node_modules/vega-interpreter": {
3765
+ "version": "2.2.1",
3766
+ "resolved": "https://registry.npmjs.org/vega-interpreter/-/vega-interpreter-2.2.1.tgz",
3767
+ "integrity": "sha512-o+4ZEme2mdFLewlpF76dwPWW2VkZ3TAF3DMcq75/NzA5KPvnN4wnlCM8At2FVawbaHRyGdVkJSS5ROF5KwpHPQ==",
3768
+ "license": "BSD-3-Clause",
3769
+ "peer": true,
3770
+ "dependencies": {
3771
+ "vega-util": "^2.1.0"
3772
+ }
3773
+ },
3774
+ "node_modules/vega-label": {
3775
+ "version": "2.1.0",
3776
+ "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-2.1.0.tgz",
3777
+ "integrity": "sha512-/hgf+zoA3FViDBehrQT42Lta3t8In6YwtMnwjYlh72zNn1p3c7E3YUBwqmAqTM1x+tudgzMRGLYig+bX1ewZxQ==",
3778
+ "license": "BSD-3-Clause",
3779
+ "peer": true,
3780
+ "dependencies": {
3781
+ "vega-canvas": "^2.0.0",
3782
+ "vega-dataflow": "^6.1.0",
3783
+ "vega-scenegraph": "^5.1.0",
3784
+ "vega-util": "^2.1.0"
3785
+ }
3786
+ },
3787
+ "node_modules/vega-lite": {
3788
+ "version": "6.4.1",
3789
+ "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-6.4.1.tgz",
3790
+ "integrity": "sha512-KO3ybHNouRK4A0al/+2fN9UqgTEfxrd/ntGLY933Hg5UOYotDVQdshR3zn7OfXwQ7uj0W96Vfa5R+QxO8am3IQ==",
3791
+ "license": "BSD-3-Clause",
3792
+ "peer": true,
3793
+ "dependencies": {
3794
+ "json-stringify-pretty-compact": "~4.0.0",
3795
+ "tslib": "~2.8.1",
3796
+ "vega-event-selector": "~4.0.0",
3797
+ "vega-expression": "~6.1.0",
3798
+ "vega-util": "~2.1.0",
3799
+ "yargs": "~18.0.0"
3800
+ },
3801
+ "bin": {
3802
+ "vl2pdf": "bin/vl2pdf",
3803
+ "vl2png": "bin/vl2png",
3804
+ "vl2svg": "bin/vl2svg",
3805
+ "vl2vg": "bin/vl2vg"
3806
+ },
3807
+ "engines": {
3808
+ "node": ">=18"
3809
+ },
3810
+ "funding": {
3811
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3812
+ },
3813
+ "peerDependencies": {
3814
+ "vega": "^6.0.0"
3815
+ }
3816
+ },
3817
+ "node_modules/vega-loader": {
3818
+ "version": "5.1.0",
3819
+ "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-5.1.0.tgz",
3820
+ "integrity": "sha512-GaY3BdSPbPNdtrBz8SYUBNmNd8mdPc3mtdZfdkFazQ0RD9m+Toz5oR8fKnTamNSk9fRTJX0Lp3uEqxrAlQVreg==",
3821
+ "license": "BSD-3-Clause",
3822
+ "peer": true,
3823
+ "dependencies": {
3824
+ "d3-dsv": "^3.0.1",
3825
+ "topojson-client": "^3.1.0",
3826
+ "vega-format": "^2.1.0",
3827
+ "vega-util": "^2.1.0"
3828
+ }
3829
+ },
3830
+ "node_modules/vega-parser": {
3831
+ "version": "7.1.0",
3832
+ "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-7.1.0.tgz",
3833
+ "integrity": "sha512-g0lrYxtmYVW8G6yXpIS4J3Uxt9OUSkc0bLu5afoYDo4rZmoOOdll3x3ebActp5LHPW+usZIE+p5nukRS2vEc7Q==",
3834
+ "license": "BSD-3-Clause",
3835
+ "peer": true,
3836
+ "dependencies": {
3837
+ "vega-dataflow": "^6.1.0",
3838
+ "vega-event-selector": "^4.0.0",
3839
+ "vega-functions": "^6.1.0",
3840
+ "vega-scale": "^8.1.0",
3841
+ "vega-util": "^2.1.0"
3842
+ }
3843
+ },
3844
+ "node_modules/vega-projection": {
3845
+ "version": "2.1.0",
3846
+ "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-2.1.0.tgz",
3847
+ "integrity": "sha512-EjRjVSoMR5ibrU7q8LaOQKP327NcOAM1+eZ+NO4ANvvAutwmbNVTmfA1VpPH+AD0AlBYc39ND/wnRk7SieDiXA==",
3848
+ "license": "BSD-3-Clause",
3849
+ "peer": true,
3850
+ "dependencies": {
3851
+ "d3-geo": "^3.1.1",
3852
+ "d3-geo-projection": "^4.0.0",
3853
+ "vega-scale": "^8.1.0"
3854
+ }
3855
+ },
3856
+ "node_modules/vega-regression": {
3857
+ "version": "2.1.0",
3858
+ "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-2.1.0.tgz",
3859
+ "integrity": "sha512-HzC7MuoEwG1rIxRaNTqgcaYF03z/ZxYkQR2D5BN0N45kLnHY1HJXiEcZkcffTsqXdspLjn47yLi44UoCwF5fxQ==",
3860
+ "license": "BSD-3-Clause",
3861
+ "peer": true,
3862
+ "dependencies": {
3863
+ "d3-array": "^3.2.4",
3864
+ "vega-dataflow": "^6.1.0",
3865
+ "vega-statistics": "^2.0.0",
3866
+ "vega-util": "^2.1.0"
3867
+ }
3868
+ },
3869
+ "node_modules/vega-runtime": {
3870
+ "version": "7.1.0",
3871
+ "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-7.1.0.tgz",
3872
+ "integrity": "sha512-mItI+WHimyEcZlZrQ/zYR3LwHVeyHCWwp7MKaBjkU8EwkSxEEGVceyGUY9X2YuJLiOgkLz/6juYDbMv60pfwYA==",
3873
+ "license": "BSD-3-Clause",
3874
+ "peer": true,
3875
+ "dependencies": {
3876
+ "vega-dataflow": "^6.1.0",
3877
+ "vega-util": "^2.1.0"
3878
+ }
3879
+ },
3880
+ "node_modules/vega-scale": {
3881
+ "version": "8.1.0",
3882
+ "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-8.1.0.tgz",
3883
+ "integrity": "sha512-VEgDuEcOec8+C8+FzLcnAmcXrv2gAJKqQifCdQhkgnsLa978vYUgVfCut/mBSMMHbH8wlUV1D0fKZTjRukA1+A==",
3884
+ "license": "BSD-3-Clause",
3885
+ "peer": true,
3886
+ "dependencies": {
3887
+ "d3-array": "^3.2.4",
3888
+ "d3-interpolate": "^3.0.1",
3889
+ "d3-scale": "^4.0.2",
3890
+ "d3-scale-chromatic": "^3.1.0",
3891
+ "vega-time": "^3.1.0",
3892
+ "vega-util": "^2.1.0"
3893
+ }
3894
+ },
3895
+ "node_modules/vega-scenegraph": {
3896
+ "version": "5.1.0",
3897
+ "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-5.1.0.tgz",
3898
+ "integrity": "sha512-4gA89CFIxkZX+4Nvl8SZF2MBOqnlj9J5zgdPh/HPx+JOwtzSlUqIhxFpFj7GWYfwzr/PyZnguBLPihPw1Og/cA==",
3899
+ "license": "BSD-3-Clause",
3900
+ "peer": true,
3901
+ "dependencies": {
3902
+ "d3-path": "^3.1.0",
3903
+ "d3-shape": "^3.2.0",
3904
+ "vega-canvas": "^2.0.0",
3905
+ "vega-loader": "^5.1.0",
3906
+ "vega-scale": "^8.1.0",
3907
+ "vega-util": "^2.1.0"
3908
+ }
3909
+ },
3910
+ "node_modules/vega-schema-url-parser": {
3911
+ "version": "3.0.2",
3912
+ "resolved": "https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-3.0.2.tgz",
3913
+ "integrity": "sha512-xAnR7KAvNPYewI3O0l5QGdT8Tv0+GCZQjqfP39cW/hbe/b3aYMAQ39vm8O2wfXUHzm04xTe7nolcsx8WQNVLRQ==",
3914
+ "license": "BSD-3-Clause",
3915
+ "peer": true
3916
+ },
3917
+ "node_modules/vega-selections": {
3918
+ "version": "6.1.0",
3919
+ "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-6.1.0.tgz",
3920
+ "integrity": "sha512-WaHM7D7ghHceEfMsgFeaZnDToWL0mgCFtStVOobNh/OJLh0CL7yNKeKQBqRXJv2Lx74dPNf6nj08+52ytWfW7g==",
3921
+ "license": "BSD-3-Clause",
3922
+ "peer": true,
3923
+ "dependencies": {
3924
+ "d3-array": "3.2.4",
3925
+ "vega-expression": "^6.1.0",
3926
+ "vega-util": "^2.1.0"
3927
+ }
3928
+ },
3929
+ "node_modules/vega-statistics": {
3930
+ "version": "2.0.0",
3931
+ "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-2.0.0.tgz",
3932
+ "integrity": "sha512-dGPfDXnBlgXbZF3oxtkb8JfeRXd5TYHx25Z/tIoaa9jWua4Vf/AoW2wwh8J1qmMy8J03/29aowkp1yk4DOPazQ==",
3933
+ "license": "BSD-3-Clause",
3934
+ "peer": true,
3935
+ "dependencies": {
3936
+ "d3-array": "^3.2.4"
3937
+ }
3938
+ },
3939
+ "node_modules/vega-themes": {
3940
+ "version": "3.0.0",
3941
+ "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-3.0.0.tgz",
3942
+ "integrity": "sha512-1iFiI3BNmW9FrsLnDLx0ZKEddsCitRY3XmUAwp6qmp+p+IXyJYc9pfjlVj9E6KXBPfm4cQyU++s0smKNiWzO4g==",
3943
+ "license": "BSD-3-Clause",
3944
+ "peer": true,
3945
+ "funding": {
3946
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3947
+ },
3948
+ "peerDependencies": {
3949
+ "vega": "*",
3950
+ "vega-lite": "*"
3951
+ }
3952
+ },
3953
+ "node_modules/vega-time": {
3954
+ "version": "3.1.0",
3955
+ "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-3.1.0.tgz",
3956
+ "integrity": "sha512-G93mWzPwNa6UYQRkr8Ujur9uqxbBDjDT/WpXjbDY0yygdSkRT+zXF+Sb4gjhW0nPaqdiwkn0R6kZcSPMj1bMNA==",
3957
+ "license": "BSD-3-Clause",
3958
+ "peer": true,
3959
+ "dependencies": {
3960
+ "d3-array": "^3.2.4",
3961
+ "d3-time": "^3.1.0",
3962
+ "vega-util": "^2.1.0"
3963
+ }
3964
+ },
3965
+ "node_modules/vega-tooltip": {
3966
+ "version": "1.0.0",
3967
+ "resolved": "https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-1.0.0.tgz",
3968
+ "integrity": "sha512-P1R0JP29v0qnTuwzCQ0SPJlkjAzr6qeyj+H4VgUFSykHmHc1OBxda//XBaFDl/bZgIscEMvjKSjZpXd84x3aZQ==",
3969
+ "license": "BSD-3-Clause",
3970
+ "peer": true,
3971
+ "dependencies": {
3972
+ "vega-util": "^2.0.0"
3973
+ },
3974
+ "funding": {
3975
+ "url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
3976
+ }
3977
+ },
3978
+ "node_modules/vega-transforms": {
3979
+ "version": "5.1.0",
3980
+ "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-5.1.0.tgz",
3981
+ "integrity": "sha512-mj/sO2tSuzzpiXX8JSl4DDlhEmVwM/46MTAzTNQUQzJPMI/n4ChCjr/SdEbfEyzlD4DPm1bjohZGjLc010yuMg==",
3982
+ "license": "BSD-3-Clause",
3983
+ "peer": true,
3984
+ "dependencies": {
3985
+ "d3-array": "^3.2.4",
3986
+ "vega-dataflow": "^6.1.0",
3987
+ "vega-statistics": "^2.0.0",
3988
+ "vega-time": "^3.1.0",
3989
+ "vega-util": "^2.1.0"
3990
+ }
3991
+ },
3992
+ "node_modules/vega-typings": {
3993
+ "version": "2.1.0",
3994
+ "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-2.1.0.tgz",
3995
+ "integrity": "sha512-zdis4Fg4gv37yEvTTSZEVMNhp8hwyEl7GZ4X4HHddRVRKxWFsbyKvZx/YW5Z9Ox4sjxVA2qHzEbod4Fdx+SEJA==",
3996
+ "license": "BSD-3-Clause",
3997
+ "peer": true,
3998
+ "dependencies": {
3999
+ "@types/geojson": "7946.0.16",
4000
+ "vega-event-selector": "^4.0.0",
4001
+ "vega-expression": "^6.1.0",
4002
+ "vega-util": "^2.1.0"
4003
+ }
4004
+ },
4005
+ "node_modules/vega-util": {
4006
+ "version": "2.1.0",
4007
+ "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-2.1.0.tgz",
4008
+ "integrity": "sha512-PGfp0m0QCufDmcxKJCWQy4Ov23FoF8DSXmoJwSezi3itQaa2hbxK0+xwsTMP2vy4PR16Pu25HMzgMwXVW1+33w==",
4009
+ "license": "BSD-3-Clause",
4010
+ "peer": true
4011
+ },
4012
+ "node_modules/vega-view": {
4013
+ "version": "6.1.0",
4014
+ "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-6.1.0.tgz",
4015
+ "integrity": "sha512-hmHDm/zC65lb23mb9Tr9Gx0wkxP0TMS31LpMPYxIZpvInxvUn7TYitkOtz1elr63k2YZrgmF7ztdGyQ4iCQ5fQ==",
4016
+ "license": "BSD-3-Clause",
4017
+ "peer": true,
4018
+ "dependencies": {
4019
+ "d3-array": "^3.2.4",
4020
+ "d3-timer": "^3.0.1",
4021
+ "vega-dataflow": "^6.1.0",
4022
+ "vega-format": "^2.1.0",
4023
+ "vega-functions": "^6.1.0",
4024
+ "vega-runtime": "^7.1.0",
4025
+ "vega-scenegraph": "^5.1.0",
4026
+ "vega-util": "^2.1.0"
4027
+ }
4028
+ },
4029
+ "node_modules/vega-view-transforms": {
4030
+ "version": "5.1.0",
4031
+ "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-5.1.0.tgz",
4032
+ "integrity": "sha512-fpigh/xn/32t+An1ShoY3MLeGzNdlbAp2+HvFKzPpmpMTZqJEWkk/J/wHU7Swyc28Ta7W1z3fO+8dZkOYO5TWQ==",
4033
+ "license": "BSD-3-Clause",
4034
+ "peer": true,
4035
+ "dependencies": {
4036
+ "vega-dataflow": "^6.1.0",
4037
+ "vega-scenegraph": "^5.1.0",
4038
+ "vega-util": "^2.1.0"
4039
+ }
4040
+ },
4041
+ "node_modules/vega-voronoi": {
4042
+ "version": "5.1.0",
4043
+ "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-5.1.0.tgz",
4044
+ "integrity": "sha512-uKdsoR9x60mz7eYtVG+NhlkdQXeVdMr6jHNAHxs+W+i6kawkUp5S9jp1xf1FmW/uZvtO1eqinHQNwATcDRsiUg==",
4045
+ "license": "BSD-3-Clause",
4046
+ "peer": true,
4047
+ "dependencies": {
4048
+ "d3-delaunay": "^6.0.4",
4049
+ "vega-dataflow": "^6.1.0",
4050
+ "vega-util": "^2.1.0"
4051
+ }
4052
+ },
4053
+ "node_modules/vega-wordcloud": {
4054
+ "version": "5.1.0",
4055
+ "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-5.1.0.tgz",
4056
+ "integrity": "sha512-sSdNmT8y2D7xXhM2h76dKyaYn3PA4eV49WUUkfYfqHz/vpcu10GSAoFxLhQQTkbZXR+q5ZB63tFUow9W2IFo6g==",
4057
+ "license": "BSD-3-Clause",
4058
+ "peer": true,
4059
+ "dependencies": {
4060
+ "vega-canvas": "^2.0.0",
4061
+ "vega-dataflow": "^6.1.0",
4062
+ "vega-scale": "^8.1.0",
4063
+ "vega-statistics": "^2.0.0",
4064
+ "vega-util": "^2.1.0"
4065
+ }
4066
+ },
4067
+ "node_modules/vite": {
4068
+ "version": "5.4.20",
4069
+ "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.20.tgz",
4070
+ "integrity": "sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==",
4071
+ "dev": true,
4072
+ "license": "MIT",
4073
+ "dependencies": {
4074
+ "esbuild": "^0.21.3",
4075
+ "postcss": "^8.4.43",
4076
+ "rollup": "^4.20.0"
4077
+ },
4078
+ "bin": {
4079
+ "vite": "bin/vite.js"
4080
+ },
4081
+ "engines": {
4082
+ "node": "^18.0.0 || >=20.0.0"
4083
+ },
4084
+ "funding": {
4085
+ "url": "https://github.com/vitejs/vite?sponsor=1"
4086
+ },
4087
+ "optionalDependencies": {
4088
+ "fsevents": "~2.3.3"
4089
+ },
4090
+ "peerDependencies": {
4091
+ "@types/node": "^18.0.0 || >=20.0.0",
4092
+ "less": "*",
4093
+ "lightningcss": "^1.21.0",
4094
+ "sass": "*",
4095
+ "sass-embedded": "*",
4096
+ "stylus": "*",
4097
+ "sugarss": "*",
4098
+ "terser": "^5.4.0"
4099
+ },
4100
+ "peerDependenciesMeta": {
4101
+ "@types/node": {
4102
+ "optional": true
4103
+ },
4104
+ "less": {
4105
+ "optional": true
4106
+ },
4107
+ "lightningcss": {
4108
+ "optional": true
4109
+ },
4110
+ "sass": {
4111
+ "optional": true
4112
+ },
4113
+ "sass-embedded": {
4114
+ "optional": true
4115
+ },
4116
+ "stylus": {
4117
+ "optional": true
4118
+ },
4119
+ "sugarss": {
4120
+ "optional": true
4121
+ },
4122
+ "terser": {
4123
+ "optional": true
4124
+ }
4125
+ }
4126
+ },
4127
+ "node_modules/vitefu": {
4128
+ "version": "1.1.1",
4129
+ "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz",
4130
+ "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==",
4131
+ "dev": true,
4132
+ "license": "MIT",
4133
+ "workspaces": [
4134
+ "tests/deps/*",
4135
+ "tests/projects/*",
4136
+ "tests/projects/workspace/packages/*"
4137
+ ],
4138
+ "peerDependencies": {
4139
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0"
4140
+ },
4141
+ "peerDependenciesMeta": {
4142
+ "vite": {
4143
+ "optional": true
4144
+ }
4145
+ }
4146
+ },
4147
+ "node_modules/wrap-ansi": {
4148
+ "version": "9.0.2",
4149
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz",
4150
+ "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==",
4151
+ "license": "MIT",
4152
+ "peer": true,
4153
+ "dependencies": {
4154
+ "ansi-styles": "^6.2.1",
4155
+ "string-width": "^7.0.0",
4156
+ "strip-ansi": "^7.1.0"
4157
+ },
4158
+ "engines": {
4159
+ "node": ">=18"
4160
+ },
4161
+ "funding": {
4162
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4163
+ }
4164
+ },
4165
+ "node_modules/wrappy": {
4166
+ "version": "1.0.2",
4167
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4168
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
4169
+ "dev": true,
4170
+ "license": "ISC"
4171
+ },
4172
+ "node_modules/y18n": {
4173
+ "version": "5.0.8",
4174
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
4175
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
4176
+ "license": "ISC",
4177
+ "peer": true,
4178
+ "engines": {
4179
+ "node": ">=10"
4180
+ }
4181
+ },
4182
+ "node_modules/yallist": {
4183
+ "version": "5.0.0",
4184
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
4185
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
4186
+ "dev": true,
4187
+ "license": "BlueOak-1.0.0",
4188
+ "engines": {
4189
+ "node": ">=18"
4190
+ }
4191
+ },
4192
+ "node_modules/yargs": {
4193
+ "version": "18.0.0",
4194
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-18.0.0.tgz",
4195
+ "integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==",
4196
+ "license": "MIT",
4197
+ "peer": true,
4198
+ "dependencies": {
4199
+ "cliui": "^9.0.1",
4200
+ "escalade": "^3.1.1",
4201
+ "get-caller-file": "^2.0.5",
4202
+ "string-width": "^7.2.0",
4203
+ "y18n": "^5.0.5",
4204
+ "yargs-parser": "^22.0.0"
4205
+ },
4206
+ "engines": {
4207
+ "node": "^20.19.0 || ^22.12.0 || >=23"
4208
+ }
4209
+ },
4210
+ "node_modules/yargs-parser": {
4211
+ "version": "22.0.0",
4212
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
4213
+ "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
4214
+ "license": "ISC",
4215
+ "peer": true,
4216
+ "engines": {
4217
+ "node": "^20.19.0 || ^22.12.0 || >=23"
4218
+ }
4219
+ },
4220
+ "node_modules/zimmerframe": {
4221
+ "version": "1.1.4",
4222
+ "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz",
4223
+ "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==",
4224
+ "license": "MIT"
4225
+ },
4226
+ "node_modules/zrender": {
4227
+ "version": "6.0.0",
4228
+ "resolved": "https://registry.npmjs.org/zrender/-/zrender-6.0.0.tgz",
4229
+ "integrity": "sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==",
4230
+ "license": "BSD-3-Clause",
4231
+ "dependencies": {
4232
+ "tslib": "2.3.0"
4233
+ }
4234
+ },
4235
+ "node_modules/zrender/node_modules/tslib": {
4236
+ "version": "2.3.0",
4237
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
4238
+ "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
4239
+ "license": "0BSD"
4240
+ }
4241
+ }
4242
+ }