hexdag 0.5.0.dev1__py3-none-any.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 (261) hide show
  1. hexdag/__init__.py +116 -0
  2. hexdag/__main__.py +30 -0
  3. hexdag/adapters/executors/__init__.py +5 -0
  4. hexdag/adapters/executors/local_executor.py +316 -0
  5. hexdag/builtin/__init__.py +6 -0
  6. hexdag/builtin/adapters/__init__.py +51 -0
  7. hexdag/builtin/adapters/anthropic/__init__.py +5 -0
  8. hexdag/builtin/adapters/anthropic/anthropic_adapter.py +151 -0
  9. hexdag/builtin/adapters/database/__init__.py +6 -0
  10. hexdag/builtin/adapters/database/csv/csv_adapter.py +249 -0
  11. hexdag/builtin/adapters/database/pgvector/__init__.py +5 -0
  12. hexdag/builtin/adapters/database/pgvector/pgvector_adapter.py +478 -0
  13. hexdag/builtin/adapters/database/sqlalchemy/sqlalchemy_adapter.py +252 -0
  14. hexdag/builtin/adapters/database/sqlite/__init__.py +5 -0
  15. hexdag/builtin/adapters/database/sqlite/sqlite_adapter.py +410 -0
  16. hexdag/builtin/adapters/local/README.md +59 -0
  17. hexdag/builtin/adapters/local/__init__.py +7 -0
  18. hexdag/builtin/adapters/local/local_observer_manager.py +696 -0
  19. hexdag/builtin/adapters/memory/__init__.py +47 -0
  20. hexdag/builtin/adapters/memory/file_memory_adapter.py +297 -0
  21. hexdag/builtin/adapters/memory/in_memory_memory.py +216 -0
  22. hexdag/builtin/adapters/memory/schemas.py +57 -0
  23. hexdag/builtin/adapters/memory/session_memory.py +178 -0
  24. hexdag/builtin/adapters/memory/sqlite_memory_adapter.py +215 -0
  25. hexdag/builtin/adapters/memory/state_memory.py +280 -0
  26. hexdag/builtin/adapters/mock/README.md +89 -0
  27. hexdag/builtin/adapters/mock/__init__.py +15 -0
  28. hexdag/builtin/adapters/mock/hexdag.toml +50 -0
  29. hexdag/builtin/adapters/mock/mock_database.py +225 -0
  30. hexdag/builtin/adapters/mock/mock_embedding.py +223 -0
  31. hexdag/builtin/adapters/mock/mock_llm.py +177 -0
  32. hexdag/builtin/adapters/mock/mock_tool_adapter.py +192 -0
  33. hexdag/builtin/adapters/mock/mock_tool_router.py +232 -0
  34. hexdag/builtin/adapters/openai/__init__.py +5 -0
  35. hexdag/builtin/adapters/openai/openai_adapter.py +634 -0
  36. hexdag/builtin/adapters/secret/__init__.py +7 -0
  37. hexdag/builtin/adapters/secret/local_secret_adapter.py +248 -0
  38. hexdag/builtin/adapters/unified_tool_router.py +280 -0
  39. hexdag/builtin/macros/__init__.py +17 -0
  40. hexdag/builtin/macros/conversation_agent.py +390 -0
  41. hexdag/builtin/macros/llm_macro.py +151 -0
  42. hexdag/builtin/macros/reasoning_agent.py +423 -0
  43. hexdag/builtin/macros/tool_macro.py +380 -0
  44. hexdag/builtin/nodes/__init__.py +38 -0
  45. hexdag/builtin/nodes/_discovery.py +123 -0
  46. hexdag/builtin/nodes/agent_node.py +696 -0
  47. hexdag/builtin/nodes/base_node_factory.py +242 -0
  48. hexdag/builtin/nodes/composite_node.py +926 -0
  49. hexdag/builtin/nodes/data_node.py +201 -0
  50. hexdag/builtin/nodes/expression_node.py +487 -0
  51. hexdag/builtin/nodes/function_node.py +454 -0
  52. hexdag/builtin/nodes/llm_node.py +491 -0
  53. hexdag/builtin/nodes/loop_node.py +920 -0
  54. hexdag/builtin/nodes/mapped_input.py +518 -0
  55. hexdag/builtin/nodes/port_call_node.py +269 -0
  56. hexdag/builtin/nodes/tool_call_node.py +195 -0
  57. hexdag/builtin/nodes/tool_utils.py +390 -0
  58. hexdag/builtin/prompts/__init__.py +68 -0
  59. hexdag/builtin/prompts/base.py +422 -0
  60. hexdag/builtin/prompts/chat_prompts.py +303 -0
  61. hexdag/builtin/prompts/error_correction_prompts.py +320 -0
  62. hexdag/builtin/prompts/tool_prompts.py +160 -0
  63. hexdag/builtin/tools/builtin_tools.py +84 -0
  64. hexdag/builtin/tools/database_tools.py +164 -0
  65. hexdag/cli/__init__.py +17 -0
  66. hexdag/cli/__main__.py +7 -0
  67. hexdag/cli/commands/__init__.py +27 -0
  68. hexdag/cli/commands/build_cmd.py +812 -0
  69. hexdag/cli/commands/create_cmd.py +208 -0
  70. hexdag/cli/commands/docs_cmd.py +293 -0
  71. hexdag/cli/commands/generate_types_cmd.py +252 -0
  72. hexdag/cli/commands/init_cmd.py +188 -0
  73. hexdag/cli/commands/pipeline_cmd.py +494 -0
  74. hexdag/cli/commands/plugin_dev_cmd.py +529 -0
  75. hexdag/cli/commands/plugins_cmd.py +441 -0
  76. hexdag/cli/commands/studio_cmd.py +101 -0
  77. hexdag/cli/commands/validate_cmd.py +221 -0
  78. hexdag/cli/main.py +84 -0
  79. hexdag/core/__init__.py +83 -0
  80. hexdag/core/config/__init__.py +20 -0
  81. hexdag/core/config/loader.py +479 -0
  82. hexdag/core/config/models.py +150 -0
  83. hexdag/core/configurable.py +294 -0
  84. hexdag/core/context/__init__.py +37 -0
  85. hexdag/core/context/execution_context.py +378 -0
  86. hexdag/core/docs/__init__.py +26 -0
  87. hexdag/core/docs/extractors.py +678 -0
  88. hexdag/core/docs/generators.py +890 -0
  89. hexdag/core/docs/models.py +120 -0
  90. hexdag/core/domain/__init__.py +10 -0
  91. hexdag/core/domain/dag.py +1225 -0
  92. hexdag/core/exceptions.py +234 -0
  93. hexdag/core/expression_parser.py +569 -0
  94. hexdag/core/logging.py +449 -0
  95. hexdag/core/models/__init__.py +17 -0
  96. hexdag/core/models/base.py +138 -0
  97. hexdag/core/orchestration/__init__.py +46 -0
  98. hexdag/core/orchestration/body_executor.py +481 -0
  99. hexdag/core/orchestration/components/__init__.py +97 -0
  100. hexdag/core/orchestration/components/adapter_lifecycle_manager.py +113 -0
  101. hexdag/core/orchestration/components/checkpoint_manager.py +134 -0
  102. hexdag/core/orchestration/components/execution_coordinator.py +360 -0
  103. hexdag/core/orchestration/components/health_check_manager.py +176 -0
  104. hexdag/core/orchestration/components/input_mapper.py +143 -0
  105. hexdag/core/orchestration/components/lifecycle_manager.py +583 -0
  106. hexdag/core/orchestration/components/node_executor.py +377 -0
  107. hexdag/core/orchestration/components/secret_manager.py +202 -0
  108. hexdag/core/orchestration/components/wave_executor.py +158 -0
  109. hexdag/core/orchestration/constants.py +17 -0
  110. hexdag/core/orchestration/events/README.md +312 -0
  111. hexdag/core/orchestration/events/__init__.py +104 -0
  112. hexdag/core/orchestration/events/batching.py +330 -0
  113. hexdag/core/orchestration/events/decorators.py +139 -0
  114. hexdag/core/orchestration/events/events.py +573 -0
  115. hexdag/core/orchestration/events/observers/__init__.py +30 -0
  116. hexdag/core/orchestration/events/observers/core_observers.py +690 -0
  117. hexdag/core/orchestration/events/observers/models.py +111 -0
  118. hexdag/core/orchestration/events/taxonomy.py +269 -0
  119. hexdag/core/orchestration/hook_context.py +237 -0
  120. hexdag/core/orchestration/hooks.py +437 -0
  121. hexdag/core/orchestration/models.py +418 -0
  122. hexdag/core/orchestration/orchestrator.py +910 -0
  123. hexdag/core/orchestration/orchestrator_factory.py +275 -0
  124. hexdag/core/orchestration/port_wrappers.py +327 -0
  125. hexdag/core/orchestration/prompt/__init__.py +32 -0
  126. hexdag/core/orchestration/prompt/template.py +332 -0
  127. hexdag/core/pipeline_builder/__init__.py +21 -0
  128. hexdag/core/pipeline_builder/component_instantiator.py +386 -0
  129. hexdag/core/pipeline_builder/include_tag.py +265 -0
  130. hexdag/core/pipeline_builder/pipeline_config.py +133 -0
  131. hexdag/core/pipeline_builder/py_tag.py +223 -0
  132. hexdag/core/pipeline_builder/tag_discovery.py +268 -0
  133. hexdag/core/pipeline_builder/yaml_builder.py +1196 -0
  134. hexdag/core/pipeline_builder/yaml_validator.py +569 -0
  135. hexdag/core/ports/__init__.py +65 -0
  136. hexdag/core/ports/api_call.py +133 -0
  137. hexdag/core/ports/database.py +489 -0
  138. hexdag/core/ports/embedding.py +215 -0
  139. hexdag/core/ports/executor.py +237 -0
  140. hexdag/core/ports/file_storage.py +117 -0
  141. hexdag/core/ports/healthcheck.py +87 -0
  142. hexdag/core/ports/llm.py +551 -0
  143. hexdag/core/ports/memory.py +70 -0
  144. hexdag/core/ports/observer_manager.py +130 -0
  145. hexdag/core/ports/secret.py +145 -0
  146. hexdag/core/ports/tool_router.py +94 -0
  147. hexdag/core/ports_builder.py +623 -0
  148. hexdag/core/protocols.py +273 -0
  149. hexdag/core/resolver.py +304 -0
  150. hexdag/core/schema/__init__.py +9 -0
  151. hexdag/core/schema/generator.py +742 -0
  152. hexdag/core/secrets.py +242 -0
  153. hexdag/core/types.py +413 -0
  154. hexdag/core/utils/async_warnings.py +206 -0
  155. hexdag/core/utils/schema_conversion.py +78 -0
  156. hexdag/core/utils/sql_validation.py +86 -0
  157. hexdag/core/validation/secure_json.py +148 -0
  158. hexdag/core/yaml_macro.py +517 -0
  159. hexdag/mcp_server.py +3120 -0
  160. hexdag/studio/__init__.py +10 -0
  161. hexdag/studio/build_ui.py +92 -0
  162. hexdag/studio/server/__init__.py +1 -0
  163. hexdag/studio/server/main.py +100 -0
  164. hexdag/studio/server/routes/__init__.py +9 -0
  165. hexdag/studio/server/routes/execute.py +208 -0
  166. hexdag/studio/server/routes/export.py +558 -0
  167. hexdag/studio/server/routes/files.py +207 -0
  168. hexdag/studio/server/routes/plugins.py +419 -0
  169. hexdag/studio/server/routes/validate.py +220 -0
  170. hexdag/studio/ui/index.html +13 -0
  171. hexdag/studio/ui/package-lock.json +2992 -0
  172. hexdag/studio/ui/package.json +31 -0
  173. hexdag/studio/ui/postcss.config.js +6 -0
  174. hexdag/studio/ui/public/hexdag.svg +5 -0
  175. hexdag/studio/ui/src/App.tsx +251 -0
  176. hexdag/studio/ui/src/components/Canvas.tsx +408 -0
  177. hexdag/studio/ui/src/components/ContextMenu.tsx +187 -0
  178. hexdag/studio/ui/src/components/FileBrowser.tsx +123 -0
  179. hexdag/studio/ui/src/components/Header.tsx +181 -0
  180. hexdag/studio/ui/src/components/HexdagNode.tsx +193 -0
  181. hexdag/studio/ui/src/components/NodeInspector.tsx +512 -0
  182. hexdag/studio/ui/src/components/NodePalette.tsx +262 -0
  183. hexdag/studio/ui/src/components/NodePortsSection.tsx +403 -0
  184. hexdag/studio/ui/src/components/PluginManager.tsx +347 -0
  185. hexdag/studio/ui/src/components/PortsEditor.tsx +481 -0
  186. hexdag/studio/ui/src/components/PythonEditor.tsx +195 -0
  187. hexdag/studio/ui/src/components/ValidationPanel.tsx +105 -0
  188. hexdag/studio/ui/src/components/YamlEditor.tsx +196 -0
  189. hexdag/studio/ui/src/components/index.ts +8 -0
  190. hexdag/studio/ui/src/index.css +92 -0
  191. hexdag/studio/ui/src/main.tsx +10 -0
  192. hexdag/studio/ui/src/types/index.ts +123 -0
  193. hexdag/studio/ui/src/vite-env.d.ts +1 -0
  194. hexdag/studio/ui/tailwind.config.js +29 -0
  195. hexdag/studio/ui/tsconfig.json +37 -0
  196. hexdag/studio/ui/tsconfig.node.json +13 -0
  197. hexdag/studio/ui/vite.config.ts +35 -0
  198. hexdag/visualization/__init__.py +69 -0
  199. hexdag/visualization/dag_visualizer.py +1020 -0
  200. hexdag-0.5.0.dev1.dist-info/METADATA +369 -0
  201. hexdag-0.5.0.dev1.dist-info/RECORD +261 -0
  202. hexdag-0.5.0.dev1.dist-info/WHEEL +4 -0
  203. hexdag-0.5.0.dev1.dist-info/entry_points.txt +4 -0
  204. hexdag-0.5.0.dev1.dist-info/licenses/LICENSE +190 -0
  205. hexdag_plugins/.gitignore +43 -0
  206. hexdag_plugins/README.md +73 -0
  207. hexdag_plugins/__init__.py +1 -0
  208. hexdag_plugins/azure/LICENSE +21 -0
  209. hexdag_plugins/azure/README.md +414 -0
  210. hexdag_plugins/azure/__init__.py +21 -0
  211. hexdag_plugins/azure/azure_blob_adapter.py +450 -0
  212. hexdag_plugins/azure/azure_cosmos_adapter.py +383 -0
  213. hexdag_plugins/azure/azure_keyvault_adapter.py +314 -0
  214. hexdag_plugins/azure/azure_openai_adapter.py +415 -0
  215. hexdag_plugins/azure/pyproject.toml +107 -0
  216. hexdag_plugins/azure/tests/__init__.py +1 -0
  217. hexdag_plugins/azure/tests/test_azure_blob_adapter.py +350 -0
  218. hexdag_plugins/azure/tests/test_azure_cosmos_adapter.py +323 -0
  219. hexdag_plugins/azure/tests/test_azure_keyvault_adapter.py +330 -0
  220. hexdag_plugins/azure/tests/test_azure_openai_adapter.py +329 -0
  221. hexdag_plugins/hexdag_etl/README.md +168 -0
  222. hexdag_plugins/hexdag_etl/__init__.py +53 -0
  223. hexdag_plugins/hexdag_etl/examples/01_simple_pandas_transform.py +270 -0
  224. hexdag_plugins/hexdag_etl/examples/02_simple_pandas_only.py +149 -0
  225. hexdag_plugins/hexdag_etl/examples/03_file_io_pipeline.py +109 -0
  226. hexdag_plugins/hexdag_etl/examples/test_pandas_transform.py +84 -0
  227. hexdag_plugins/hexdag_etl/hexdag.toml +25 -0
  228. hexdag_plugins/hexdag_etl/hexdag_etl/__init__.py +48 -0
  229. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/__init__.py +13 -0
  230. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/api_extract.py +230 -0
  231. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/base_node_factory.py +181 -0
  232. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/file_io.py +415 -0
  233. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/outlook.py +492 -0
  234. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/pandas_transform.py +563 -0
  235. hexdag_plugins/hexdag_etl/hexdag_etl/nodes/sql_extract_load.py +112 -0
  236. hexdag_plugins/hexdag_etl/pyproject.toml +82 -0
  237. hexdag_plugins/hexdag_etl/test_transform.py +54 -0
  238. hexdag_plugins/hexdag_etl/tests/test_plugin_integration.py +62 -0
  239. hexdag_plugins/mysql_adapter/LICENSE +21 -0
  240. hexdag_plugins/mysql_adapter/README.md +224 -0
  241. hexdag_plugins/mysql_adapter/__init__.py +6 -0
  242. hexdag_plugins/mysql_adapter/mysql_adapter.py +408 -0
  243. hexdag_plugins/mysql_adapter/pyproject.toml +93 -0
  244. hexdag_plugins/mysql_adapter/tests/test_mysql_adapter.py +259 -0
  245. hexdag_plugins/storage/README.md +184 -0
  246. hexdag_plugins/storage/__init__.py +19 -0
  247. hexdag_plugins/storage/file/__init__.py +5 -0
  248. hexdag_plugins/storage/file/local.py +325 -0
  249. hexdag_plugins/storage/ports/__init__.py +5 -0
  250. hexdag_plugins/storage/ports/vector_store.py +236 -0
  251. hexdag_plugins/storage/sql/__init__.py +7 -0
  252. hexdag_plugins/storage/sql/base.py +187 -0
  253. hexdag_plugins/storage/sql/mysql.py +27 -0
  254. hexdag_plugins/storage/sql/postgresql.py +27 -0
  255. hexdag_plugins/storage/tests/__init__.py +1 -0
  256. hexdag_plugins/storage/tests/test_local_file_storage.py +161 -0
  257. hexdag_plugins/storage/tests/test_sql_adapters.py +212 -0
  258. hexdag_plugins/storage/vector/__init__.py +7 -0
  259. hexdag_plugins/storage/vector/chromadb.py +223 -0
  260. hexdag_plugins/storage/vector/in_memory.py +285 -0
  261. hexdag_plugins/storage/vector/pgvector.py +502 -0
@@ -0,0 +1,2992 @@
1
+ {
2
+ "lockfileVersion": 3,
3
+ "name": "hexdag-studio",
4
+ "packages": {
5
+ "": {
6
+ "dependencies": {
7
+ "@monaco-editor/react": "^4.6.0",
8
+ "@xyflow/react": "^12.0.0",
9
+ "lucide-react": "^0.400.0",
10
+ "react": "^18.3.1",
11
+ "react-dom": "^18.3.1",
12
+ "yaml": "^2.4.0",
13
+ "zustand": "^4.5.0"
14
+ },
15
+ "devDependencies": {
16
+ "@types/react": "^18.3.0",
17
+ "@types/react-dom": "^18.3.0",
18
+ "@vitejs/plugin-react": "^4.3.0",
19
+ "autoprefixer": "^10.4.19",
20
+ "postcss": "^8.4.38",
21
+ "tailwindcss": "^3.4.4",
22
+ "typescript": "^5.4.0",
23
+ "vite": "^5.3.0"
24
+ },
25
+ "name": "hexdag-studio",
26
+ "version": "0.1.0"
27
+ },
28
+ "node_modules/@alloc/quick-lru": {
29
+ "dev": true,
30
+ "engines": {
31
+ "node": ">=10"
32
+ },
33
+ "funding": {
34
+ "url": "https://github.com/sponsors/sindresorhus"
35
+ },
36
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
37
+ "license": "MIT",
38
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
39
+ "version": "5.2.0"
40
+ },
41
+ "node_modules/@babel/code-frame": {
42
+ "dependencies": {
43
+ "@babel/helper-validator-identifier": "^7.27.1",
44
+ "js-tokens": "^4.0.0",
45
+ "picocolors": "^1.1.1"
46
+ },
47
+ "dev": true,
48
+ "engines": {
49
+ "node": ">=6.9.0"
50
+ },
51
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
52
+ "license": "MIT",
53
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
54
+ "version": "7.27.1"
55
+ },
56
+ "node_modules/@babel/compat-data": {
57
+ "dev": true,
58
+ "engines": {
59
+ "node": ">=6.9.0"
60
+ },
61
+ "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
62
+ "license": "MIT",
63
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
64
+ "version": "7.28.5"
65
+ },
66
+ "node_modules/@babel/core": {
67
+ "dependencies": {
68
+ "@babel/code-frame": "^7.27.1",
69
+ "@babel/generator": "^7.28.5",
70
+ "@babel/helper-compilation-targets": "^7.27.2",
71
+ "@babel/helper-module-transforms": "^7.28.3",
72
+ "@babel/helpers": "^7.28.4",
73
+ "@babel/parser": "^7.28.5",
74
+ "@babel/template": "^7.27.2",
75
+ "@babel/traverse": "^7.28.5",
76
+ "@babel/types": "^7.28.5",
77
+ "@jridgewell/remapping": "^2.3.5",
78
+ "convert-source-map": "^2.0.0",
79
+ "debug": "^4.1.0",
80
+ "gensync": "^1.0.0-beta.2",
81
+ "json5": "^2.2.3",
82
+ "semver": "^6.3.1"
83
+ },
84
+ "dev": true,
85
+ "engines": {
86
+ "node": ">=6.9.0"
87
+ },
88
+ "funding": {
89
+ "type": "opencollective",
90
+ "url": "https://opencollective.com/babel"
91
+ },
92
+ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
93
+ "license": "MIT",
94
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
95
+ "version": "7.28.5"
96
+ },
97
+ "node_modules/@babel/generator": {
98
+ "dependencies": {
99
+ "@babel/parser": "^7.28.5",
100
+ "@babel/types": "^7.28.5",
101
+ "@jridgewell/gen-mapping": "^0.3.12",
102
+ "@jridgewell/trace-mapping": "^0.3.28",
103
+ "jsesc": "^3.0.2"
104
+ },
105
+ "dev": true,
106
+ "engines": {
107
+ "node": ">=6.9.0"
108
+ },
109
+ "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
110
+ "license": "MIT",
111
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
112
+ "version": "7.28.5"
113
+ },
114
+ "node_modules/@babel/helper-compilation-targets": {
115
+ "dependencies": {
116
+ "@babel/compat-data": "^7.27.2",
117
+ "@babel/helper-validator-option": "^7.27.1",
118
+ "browserslist": "^4.24.0",
119
+ "lru-cache": "^5.1.1",
120
+ "semver": "^6.3.1"
121
+ },
122
+ "dev": true,
123
+ "engines": {
124
+ "node": ">=6.9.0"
125
+ },
126
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
127
+ "license": "MIT",
128
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
129
+ "version": "7.27.2"
130
+ },
131
+ "node_modules/@babel/helper-globals": {
132
+ "dev": true,
133
+ "engines": {
134
+ "node": ">=6.9.0"
135
+ },
136
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
137
+ "license": "MIT",
138
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
139
+ "version": "7.28.0"
140
+ },
141
+ "node_modules/@babel/helper-module-imports": {
142
+ "dependencies": {
143
+ "@babel/traverse": "^7.27.1",
144
+ "@babel/types": "^7.27.1"
145
+ },
146
+ "dev": true,
147
+ "engines": {
148
+ "node": ">=6.9.0"
149
+ },
150
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
151
+ "license": "MIT",
152
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
153
+ "version": "7.27.1"
154
+ },
155
+ "node_modules/@babel/helper-module-transforms": {
156
+ "dependencies": {
157
+ "@babel/helper-module-imports": "^7.27.1",
158
+ "@babel/helper-validator-identifier": "^7.27.1",
159
+ "@babel/traverse": "^7.28.3"
160
+ },
161
+ "dev": true,
162
+ "engines": {
163
+ "node": ">=6.9.0"
164
+ },
165
+ "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
166
+ "license": "MIT",
167
+ "peerDependencies": {
168
+ "@babel/core": "^7.0.0"
169
+ },
170
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
171
+ "version": "7.28.3"
172
+ },
173
+ "node_modules/@babel/helper-plugin-utils": {
174
+ "dev": true,
175
+ "engines": {
176
+ "node": ">=6.9.0"
177
+ },
178
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
179
+ "license": "MIT",
180
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
181
+ "version": "7.27.1"
182
+ },
183
+ "node_modules/@babel/helper-string-parser": {
184
+ "dev": true,
185
+ "engines": {
186
+ "node": ">=6.9.0"
187
+ },
188
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
189
+ "license": "MIT",
190
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
191
+ "version": "7.27.1"
192
+ },
193
+ "node_modules/@babel/helper-validator-identifier": {
194
+ "dev": true,
195
+ "engines": {
196
+ "node": ">=6.9.0"
197
+ },
198
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
199
+ "license": "MIT",
200
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
201
+ "version": "7.28.5"
202
+ },
203
+ "node_modules/@babel/helper-validator-option": {
204
+ "dev": true,
205
+ "engines": {
206
+ "node": ">=6.9.0"
207
+ },
208
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
209
+ "license": "MIT",
210
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
211
+ "version": "7.27.1"
212
+ },
213
+ "node_modules/@babel/helpers": {
214
+ "dependencies": {
215
+ "@babel/template": "^7.27.2",
216
+ "@babel/types": "^7.28.4"
217
+ },
218
+ "dev": true,
219
+ "engines": {
220
+ "node": ">=6.9.0"
221
+ },
222
+ "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
223
+ "license": "MIT",
224
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
225
+ "version": "7.28.4"
226
+ },
227
+ "node_modules/@babel/parser": {
228
+ "bin": {
229
+ "parser": "bin/babel-parser.js"
230
+ },
231
+ "dependencies": {
232
+ "@babel/types": "^7.28.5"
233
+ },
234
+ "dev": true,
235
+ "engines": {
236
+ "node": ">=6.0.0"
237
+ },
238
+ "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
239
+ "license": "MIT",
240
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
241
+ "version": "7.28.5"
242
+ },
243
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
244
+ "dependencies": {
245
+ "@babel/helper-plugin-utils": "^7.27.1"
246
+ },
247
+ "dev": true,
248
+ "engines": {
249
+ "node": ">=6.9.0"
250
+ },
251
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
252
+ "license": "MIT",
253
+ "peerDependencies": {
254
+ "@babel/core": "^7.0.0-0"
255
+ },
256
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
257
+ "version": "7.27.1"
258
+ },
259
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
260
+ "dependencies": {
261
+ "@babel/helper-plugin-utils": "^7.27.1"
262
+ },
263
+ "dev": true,
264
+ "engines": {
265
+ "node": ">=6.9.0"
266
+ },
267
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
268
+ "license": "MIT",
269
+ "peerDependencies": {
270
+ "@babel/core": "^7.0.0-0"
271
+ },
272
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
273
+ "version": "7.27.1"
274
+ },
275
+ "node_modules/@babel/template": {
276
+ "dependencies": {
277
+ "@babel/code-frame": "^7.27.1",
278
+ "@babel/parser": "^7.27.2",
279
+ "@babel/types": "^7.27.1"
280
+ },
281
+ "dev": true,
282
+ "engines": {
283
+ "node": ">=6.9.0"
284
+ },
285
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
286
+ "license": "MIT",
287
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
288
+ "version": "7.27.2"
289
+ },
290
+ "node_modules/@babel/traverse": {
291
+ "dependencies": {
292
+ "@babel/code-frame": "^7.27.1",
293
+ "@babel/generator": "^7.28.5",
294
+ "@babel/helper-globals": "^7.28.0",
295
+ "@babel/parser": "^7.28.5",
296
+ "@babel/template": "^7.27.2",
297
+ "@babel/types": "^7.28.5",
298
+ "debug": "^4.3.1"
299
+ },
300
+ "dev": true,
301
+ "engines": {
302
+ "node": ">=6.9.0"
303
+ },
304
+ "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
305
+ "license": "MIT",
306
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
307
+ "version": "7.28.5"
308
+ },
309
+ "node_modules/@babel/types": {
310
+ "dependencies": {
311
+ "@babel/helper-string-parser": "^7.27.1",
312
+ "@babel/helper-validator-identifier": "^7.28.5"
313
+ },
314
+ "dev": true,
315
+ "engines": {
316
+ "node": ">=6.9.0"
317
+ },
318
+ "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
319
+ "license": "MIT",
320
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
321
+ "version": "7.28.5"
322
+ },
323
+ "node_modules/@esbuild/aix-ppc64": {
324
+ "cpu": [
325
+ "ppc64"
326
+ ],
327
+ "dev": true,
328
+ "engines": {
329
+ "node": ">=12"
330
+ },
331
+ "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
332
+ "license": "MIT",
333
+ "optional": true,
334
+ "os": [
335
+ "aix"
336
+ ],
337
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
338
+ "version": "0.21.5"
339
+ },
340
+ "node_modules/@esbuild/android-arm": {
341
+ "cpu": [
342
+ "arm"
343
+ ],
344
+ "dev": true,
345
+ "engines": {
346
+ "node": ">=12"
347
+ },
348
+ "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
349
+ "license": "MIT",
350
+ "optional": true,
351
+ "os": [
352
+ "android"
353
+ ],
354
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
355
+ "version": "0.21.5"
356
+ },
357
+ "node_modules/@esbuild/android-arm64": {
358
+ "cpu": [
359
+ "arm64"
360
+ ],
361
+ "dev": true,
362
+ "engines": {
363
+ "node": ">=12"
364
+ },
365
+ "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
366
+ "license": "MIT",
367
+ "optional": true,
368
+ "os": [
369
+ "android"
370
+ ],
371
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
372
+ "version": "0.21.5"
373
+ },
374
+ "node_modules/@esbuild/android-x64": {
375
+ "cpu": [
376
+ "x64"
377
+ ],
378
+ "dev": true,
379
+ "engines": {
380
+ "node": ">=12"
381
+ },
382
+ "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
383
+ "license": "MIT",
384
+ "optional": true,
385
+ "os": [
386
+ "android"
387
+ ],
388
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
389
+ "version": "0.21.5"
390
+ },
391
+ "node_modules/@esbuild/darwin-arm64": {
392
+ "cpu": [
393
+ "arm64"
394
+ ],
395
+ "dev": true,
396
+ "engines": {
397
+ "node": ">=12"
398
+ },
399
+ "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
400
+ "license": "MIT",
401
+ "optional": true,
402
+ "os": [
403
+ "darwin"
404
+ ],
405
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
406
+ "version": "0.21.5"
407
+ },
408
+ "node_modules/@esbuild/darwin-x64": {
409
+ "cpu": [
410
+ "x64"
411
+ ],
412
+ "dev": true,
413
+ "engines": {
414
+ "node": ">=12"
415
+ },
416
+ "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
417
+ "license": "MIT",
418
+ "optional": true,
419
+ "os": [
420
+ "darwin"
421
+ ],
422
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
423
+ "version": "0.21.5"
424
+ },
425
+ "node_modules/@esbuild/freebsd-arm64": {
426
+ "cpu": [
427
+ "arm64"
428
+ ],
429
+ "dev": true,
430
+ "engines": {
431
+ "node": ">=12"
432
+ },
433
+ "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
434
+ "license": "MIT",
435
+ "optional": true,
436
+ "os": [
437
+ "freebsd"
438
+ ],
439
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
440
+ "version": "0.21.5"
441
+ },
442
+ "node_modules/@esbuild/freebsd-x64": {
443
+ "cpu": [
444
+ "x64"
445
+ ],
446
+ "dev": true,
447
+ "engines": {
448
+ "node": ">=12"
449
+ },
450
+ "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
451
+ "license": "MIT",
452
+ "optional": true,
453
+ "os": [
454
+ "freebsd"
455
+ ],
456
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
457
+ "version": "0.21.5"
458
+ },
459
+ "node_modules/@esbuild/linux-arm": {
460
+ "cpu": [
461
+ "arm"
462
+ ],
463
+ "dev": true,
464
+ "engines": {
465
+ "node": ">=12"
466
+ },
467
+ "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
468
+ "license": "MIT",
469
+ "optional": true,
470
+ "os": [
471
+ "linux"
472
+ ],
473
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
474
+ "version": "0.21.5"
475
+ },
476
+ "node_modules/@esbuild/linux-arm64": {
477
+ "cpu": [
478
+ "arm64"
479
+ ],
480
+ "dev": true,
481
+ "engines": {
482
+ "node": ">=12"
483
+ },
484
+ "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
485
+ "license": "MIT",
486
+ "optional": true,
487
+ "os": [
488
+ "linux"
489
+ ],
490
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
491
+ "version": "0.21.5"
492
+ },
493
+ "node_modules/@esbuild/linux-ia32": {
494
+ "cpu": [
495
+ "ia32"
496
+ ],
497
+ "dev": true,
498
+ "engines": {
499
+ "node": ">=12"
500
+ },
501
+ "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
502
+ "license": "MIT",
503
+ "optional": true,
504
+ "os": [
505
+ "linux"
506
+ ],
507
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
508
+ "version": "0.21.5"
509
+ },
510
+ "node_modules/@esbuild/linux-loong64": {
511
+ "cpu": [
512
+ "loong64"
513
+ ],
514
+ "dev": true,
515
+ "engines": {
516
+ "node": ">=12"
517
+ },
518
+ "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
519
+ "license": "MIT",
520
+ "optional": true,
521
+ "os": [
522
+ "linux"
523
+ ],
524
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
525
+ "version": "0.21.5"
526
+ },
527
+ "node_modules/@esbuild/linux-mips64el": {
528
+ "cpu": [
529
+ "mips64el"
530
+ ],
531
+ "dev": true,
532
+ "engines": {
533
+ "node": ">=12"
534
+ },
535
+ "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
536
+ "license": "MIT",
537
+ "optional": true,
538
+ "os": [
539
+ "linux"
540
+ ],
541
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
542
+ "version": "0.21.5"
543
+ },
544
+ "node_modules/@esbuild/linux-ppc64": {
545
+ "cpu": [
546
+ "ppc64"
547
+ ],
548
+ "dev": true,
549
+ "engines": {
550
+ "node": ">=12"
551
+ },
552
+ "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
553
+ "license": "MIT",
554
+ "optional": true,
555
+ "os": [
556
+ "linux"
557
+ ],
558
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
559
+ "version": "0.21.5"
560
+ },
561
+ "node_modules/@esbuild/linux-riscv64": {
562
+ "cpu": [
563
+ "riscv64"
564
+ ],
565
+ "dev": true,
566
+ "engines": {
567
+ "node": ">=12"
568
+ },
569
+ "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
570
+ "license": "MIT",
571
+ "optional": true,
572
+ "os": [
573
+ "linux"
574
+ ],
575
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
576
+ "version": "0.21.5"
577
+ },
578
+ "node_modules/@esbuild/linux-s390x": {
579
+ "cpu": [
580
+ "s390x"
581
+ ],
582
+ "dev": true,
583
+ "engines": {
584
+ "node": ">=12"
585
+ },
586
+ "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
587
+ "license": "MIT",
588
+ "optional": true,
589
+ "os": [
590
+ "linux"
591
+ ],
592
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
593
+ "version": "0.21.5"
594
+ },
595
+ "node_modules/@esbuild/linux-x64": {
596
+ "cpu": [
597
+ "x64"
598
+ ],
599
+ "dev": true,
600
+ "engines": {
601
+ "node": ">=12"
602
+ },
603
+ "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
604
+ "license": "MIT",
605
+ "optional": true,
606
+ "os": [
607
+ "linux"
608
+ ],
609
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
610
+ "version": "0.21.5"
611
+ },
612
+ "node_modules/@esbuild/netbsd-x64": {
613
+ "cpu": [
614
+ "x64"
615
+ ],
616
+ "dev": true,
617
+ "engines": {
618
+ "node": ">=12"
619
+ },
620
+ "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
621
+ "license": "MIT",
622
+ "optional": true,
623
+ "os": [
624
+ "netbsd"
625
+ ],
626
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
627
+ "version": "0.21.5"
628
+ },
629
+ "node_modules/@esbuild/openbsd-x64": {
630
+ "cpu": [
631
+ "x64"
632
+ ],
633
+ "dev": true,
634
+ "engines": {
635
+ "node": ">=12"
636
+ },
637
+ "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
638
+ "license": "MIT",
639
+ "optional": true,
640
+ "os": [
641
+ "openbsd"
642
+ ],
643
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
644
+ "version": "0.21.5"
645
+ },
646
+ "node_modules/@esbuild/sunos-x64": {
647
+ "cpu": [
648
+ "x64"
649
+ ],
650
+ "dev": true,
651
+ "engines": {
652
+ "node": ">=12"
653
+ },
654
+ "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
655
+ "license": "MIT",
656
+ "optional": true,
657
+ "os": [
658
+ "sunos"
659
+ ],
660
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
661
+ "version": "0.21.5"
662
+ },
663
+ "node_modules/@esbuild/win32-arm64": {
664
+ "cpu": [
665
+ "arm64"
666
+ ],
667
+ "dev": true,
668
+ "engines": {
669
+ "node": ">=12"
670
+ },
671
+ "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
672
+ "license": "MIT",
673
+ "optional": true,
674
+ "os": [
675
+ "win32"
676
+ ],
677
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
678
+ "version": "0.21.5"
679
+ },
680
+ "node_modules/@esbuild/win32-ia32": {
681
+ "cpu": [
682
+ "ia32"
683
+ ],
684
+ "dev": true,
685
+ "engines": {
686
+ "node": ">=12"
687
+ },
688
+ "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
689
+ "license": "MIT",
690
+ "optional": true,
691
+ "os": [
692
+ "win32"
693
+ ],
694
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
695
+ "version": "0.21.5"
696
+ },
697
+ "node_modules/@esbuild/win32-x64": {
698
+ "cpu": [
699
+ "x64"
700
+ ],
701
+ "dev": true,
702
+ "engines": {
703
+ "node": ">=12"
704
+ },
705
+ "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
706
+ "license": "MIT",
707
+ "optional": true,
708
+ "os": [
709
+ "win32"
710
+ ],
711
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
712
+ "version": "0.21.5"
713
+ },
714
+ "node_modules/@jridgewell/gen-mapping": {
715
+ "dependencies": {
716
+ "@jridgewell/sourcemap-codec": "^1.5.0",
717
+ "@jridgewell/trace-mapping": "^0.3.24"
718
+ },
719
+ "dev": true,
720
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
721
+ "license": "MIT",
722
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
723
+ "version": "0.3.13"
724
+ },
725
+ "node_modules/@jridgewell/remapping": {
726
+ "dependencies": {
727
+ "@jridgewell/gen-mapping": "^0.3.5",
728
+ "@jridgewell/trace-mapping": "^0.3.24"
729
+ },
730
+ "dev": true,
731
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
732
+ "license": "MIT",
733
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
734
+ "version": "2.3.5"
735
+ },
736
+ "node_modules/@jridgewell/resolve-uri": {
737
+ "dev": true,
738
+ "engines": {
739
+ "node": ">=6.0.0"
740
+ },
741
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
742
+ "license": "MIT",
743
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
744
+ "version": "3.1.2"
745
+ },
746
+ "node_modules/@jridgewell/sourcemap-codec": {
747
+ "dev": true,
748
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
749
+ "license": "MIT",
750
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
751
+ "version": "1.5.5"
752
+ },
753
+ "node_modules/@jridgewell/trace-mapping": {
754
+ "dependencies": {
755
+ "@jridgewell/resolve-uri": "^3.1.0",
756
+ "@jridgewell/sourcemap-codec": "^1.4.14"
757
+ },
758
+ "dev": true,
759
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
760
+ "license": "MIT",
761
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
762
+ "version": "0.3.31"
763
+ },
764
+ "node_modules/@monaco-editor/loader": {
765
+ "dependencies": {
766
+ "state-local": "^1.0.6"
767
+ },
768
+ "integrity": "sha512-gIwR1HrJrrx+vfyOhYmCZ0/JcWqG5kbfG7+d3f/C1LXk2EvzAbHSg3MQ5lO2sMlo9izoAZ04shohfKLVT6crVA==",
769
+ "license": "MIT",
770
+ "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.7.0.tgz",
771
+ "version": "1.7.0"
772
+ },
773
+ "node_modules/@monaco-editor/react": {
774
+ "dependencies": {
775
+ "@monaco-editor/loader": "^1.5.0"
776
+ },
777
+ "integrity": "sha512-cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA==",
778
+ "license": "MIT",
779
+ "peerDependencies": {
780
+ "monaco-editor": ">= 0.25.0 < 1",
781
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
782
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
783
+ },
784
+ "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.7.0.tgz",
785
+ "version": "4.7.0"
786
+ },
787
+ "node_modules/@nodelib/fs.scandir": {
788
+ "dependencies": {
789
+ "@nodelib/fs.stat": "2.0.5",
790
+ "run-parallel": "^1.1.9"
791
+ },
792
+ "dev": true,
793
+ "engines": {
794
+ "node": ">= 8"
795
+ },
796
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
797
+ "license": "MIT",
798
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
799
+ "version": "2.1.5"
800
+ },
801
+ "node_modules/@nodelib/fs.stat": {
802
+ "dev": true,
803
+ "engines": {
804
+ "node": ">= 8"
805
+ },
806
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
807
+ "license": "MIT",
808
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
809
+ "version": "2.0.5"
810
+ },
811
+ "node_modules/@nodelib/fs.walk": {
812
+ "dependencies": {
813
+ "@nodelib/fs.scandir": "2.1.5",
814
+ "fastq": "^1.6.0"
815
+ },
816
+ "dev": true,
817
+ "engines": {
818
+ "node": ">= 8"
819
+ },
820
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
821
+ "license": "MIT",
822
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
823
+ "version": "1.2.8"
824
+ },
825
+ "node_modules/@rolldown/pluginutils": {
826
+ "dev": true,
827
+ "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
828
+ "license": "MIT",
829
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
830
+ "version": "1.0.0-beta.27"
831
+ },
832
+ "node_modules/@rollup/rollup-android-arm-eabi": {
833
+ "cpu": [
834
+ "arm"
835
+ ],
836
+ "dev": true,
837
+ "integrity": "sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==",
838
+ "license": "MIT",
839
+ "optional": true,
840
+ "os": [
841
+ "android"
842
+ ],
843
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.55.1.tgz",
844
+ "version": "4.55.1"
845
+ },
846
+ "node_modules/@rollup/rollup-android-arm64": {
847
+ "cpu": [
848
+ "arm64"
849
+ ],
850
+ "dev": true,
851
+ "integrity": "sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==",
852
+ "license": "MIT",
853
+ "optional": true,
854
+ "os": [
855
+ "android"
856
+ ],
857
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.55.1.tgz",
858
+ "version": "4.55.1"
859
+ },
860
+ "node_modules/@rollup/rollup-darwin-arm64": {
861
+ "cpu": [
862
+ "arm64"
863
+ ],
864
+ "dev": true,
865
+ "integrity": "sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==",
866
+ "license": "MIT",
867
+ "optional": true,
868
+ "os": [
869
+ "darwin"
870
+ ],
871
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.55.1.tgz",
872
+ "version": "4.55.1"
873
+ },
874
+ "node_modules/@rollup/rollup-darwin-x64": {
875
+ "cpu": [
876
+ "x64"
877
+ ],
878
+ "dev": true,
879
+ "integrity": "sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==",
880
+ "license": "MIT",
881
+ "optional": true,
882
+ "os": [
883
+ "darwin"
884
+ ],
885
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.55.1.tgz",
886
+ "version": "4.55.1"
887
+ },
888
+ "node_modules/@rollup/rollup-freebsd-arm64": {
889
+ "cpu": [
890
+ "arm64"
891
+ ],
892
+ "dev": true,
893
+ "integrity": "sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==",
894
+ "license": "MIT",
895
+ "optional": true,
896
+ "os": [
897
+ "freebsd"
898
+ ],
899
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.55.1.tgz",
900
+ "version": "4.55.1"
901
+ },
902
+ "node_modules/@rollup/rollup-freebsd-x64": {
903
+ "cpu": [
904
+ "x64"
905
+ ],
906
+ "dev": true,
907
+ "integrity": "sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==",
908
+ "license": "MIT",
909
+ "optional": true,
910
+ "os": [
911
+ "freebsd"
912
+ ],
913
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.55.1.tgz",
914
+ "version": "4.55.1"
915
+ },
916
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
917
+ "cpu": [
918
+ "arm"
919
+ ],
920
+ "dev": true,
921
+ "integrity": "sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==",
922
+ "license": "MIT",
923
+ "optional": true,
924
+ "os": [
925
+ "linux"
926
+ ],
927
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.55.1.tgz",
928
+ "version": "4.55.1"
929
+ },
930
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
931
+ "cpu": [
932
+ "arm"
933
+ ],
934
+ "dev": true,
935
+ "integrity": "sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==",
936
+ "license": "MIT",
937
+ "optional": true,
938
+ "os": [
939
+ "linux"
940
+ ],
941
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.55.1.tgz",
942
+ "version": "4.55.1"
943
+ },
944
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
945
+ "cpu": [
946
+ "arm64"
947
+ ],
948
+ "dev": true,
949
+ "integrity": "sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==",
950
+ "license": "MIT",
951
+ "optional": true,
952
+ "os": [
953
+ "linux"
954
+ ],
955
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.55.1.tgz",
956
+ "version": "4.55.1"
957
+ },
958
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
959
+ "cpu": [
960
+ "arm64"
961
+ ],
962
+ "dev": true,
963
+ "integrity": "sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==",
964
+ "license": "MIT",
965
+ "optional": true,
966
+ "os": [
967
+ "linux"
968
+ ],
969
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.55.1.tgz",
970
+ "version": "4.55.1"
971
+ },
972
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
973
+ "cpu": [
974
+ "loong64"
975
+ ],
976
+ "dev": true,
977
+ "integrity": "sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==",
978
+ "license": "MIT",
979
+ "optional": true,
980
+ "os": [
981
+ "linux"
982
+ ],
983
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.55.1.tgz",
984
+ "version": "4.55.1"
985
+ },
986
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
987
+ "cpu": [
988
+ "loong64"
989
+ ],
990
+ "dev": true,
991
+ "integrity": "sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==",
992
+ "license": "MIT",
993
+ "optional": true,
994
+ "os": [
995
+ "linux"
996
+ ],
997
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.55.1.tgz",
998
+ "version": "4.55.1"
999
+ },
1000
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1001
+ "cpu": [
1002
+ "ppc64"
1003
+ ],
1004
+ "dev": true,
1005
+ "integrity": "sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==",
1006
+ "license": "MIT",
1007
+ "optional": true,
1008
+ "os": [
1009
+ "linux"
1010
+ ],
1011
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.55.1.tgz",
1012
+ "version": "4.55.1"
1013
+ },
1014
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
1015
+ "cpu": [
1016
+ "ppc64"
1017
+ ],
1018
+ "dev": true,
1019
+ "integrity": "sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==",
1020
+ "license": "MIT",
1021
+ "optional": true,
1022
+ "os": [
1023
+ "linux"
1024
+ ],
1025
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.55.1.tgz",
1026
+ "version": "4.55.1"
1027
+ },
1028
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1029
+ "cpu": [
1030
+ "riscv64"
1031
+ ],
1032
+ "dev": true,
1033
+ "integrity": "sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==",
1034
+ "license": "MIT",
1035
+ "optional": true,
1036
+ "os": [
1037
+ "linux"
1038
+ ],
1039
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.55.1.tgz",
1040
+ "version": "4.55.1"
1041
+ },
1042
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1043
+ "cpu": [
1044
+ "riscv64"
1045
+ ],
1046
+ "dev": true,
1047
+ "integrity": "sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==",
1048
+ "license": "MIT",
1049
+ "optional": true,
1050
+ "os": [
1051
+ "linux"
1052
+ ],
1053
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.55.1.tgz",
1054
+ "version": "4.55.1"
1055
+ },
1056
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1057
+ "cpu": [
1058
+ "s390x"
1059
+ ],
1060
+ "dev": true,
1061
+ "integrity": "sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==",
1062
+ "license": "MIT",
1063
+ "optional": true,
1064
+ "os": [
1065
+ "linux"
1066
+ ],
1067
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.55.1.tgz",
1068
+ "version": "4.55.1"
1069
+ },
1070
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1071
+ "cpu": [
1072
+ "x64"
1073
+ ],
1074
+ "dev": true,
1075
+ "integrity": "sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==",
1076
+ "license": "MIT",
1077
+ "optional": true,
1078
+ "os": [
1079
+ "linux"
1080
+ ],
1081
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.55.1.tgz",
1082
+ "version": "4.55.1"
1083
+ },
1084
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1085
+ "cpu": [
1086
+ "x64"
1087
+ ],
1088
+ "dev": true,
1089
+ "integrity": "sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==",
1090
+ "license": "MIT",
1091
+ "optional": true,
1092
+ "os": [
1093
+ "linux"
1094
+ ],
1095
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.55.1.tgz",
1096
+ "version": "4.55.1"
1097
+ },
1098
+ "node_modules/@rollup/rollup-openbsd-x64": {
1099
+ "cpu": [
1100
+ "x64"
1101
+ ],
1102
+ "dev": true,
1103
+ "integrity": "sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==",
1104
+ "license": "MIT",
1105
+ "optional": true,
1106
+ "os": [
1107
+ "openbsd"
1108
+ ],
1109
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.55.1.tgz",
1110
+ "version": "4.55.1"
1111
+ },
1112
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1113
+ "cpu": [
1114
+ "arm64"
1115
+ ],
1116
+ "dev": true,
1117
+ "integrity": "sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==",
1118
+ "license": "MIT",
1119
+ "optional": true,
1120
+ "os": [
1121
+ "openharmony"
1122
+ ],
1123
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.55.1.tgz",
1124
+ "version": "4.55.1"
1125
+ },
1126
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1127
+ "cpu": [
1128
+ "arm64"
1129
+ ],
1130
+ "dev": true,
1131
+ "integrity": "sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==",
1132
+ "license": "MIT",
1133
+ "optional": true,
1134
+ "os": [
1135
+ "win32"
1136
+ ],
1137
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.55.1.tgz",
1138
+ "version": "4.55.1"
1139
+ },
1140
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1141
+ "cpu": [
1142
+ "ia32"
1143
+ ],
1144
+ "dev": true,
1145
+ "integrity": "sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==",
1146
+ "license": "MIT",
1147
+ "optional": true,
1148
+ "os": [
1149
+ "win32"
1150
+ ],
1151
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.55.1.tgz",
1152
+ "version": "4.55.1"
1153
+ },
1154
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1155
+ "cpu": [
1156
+ "x64"
1157
+ ],
1158
+ "dev": true,
1159
+ "integrity": "sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==",
1160
+ "license": "MIT",
1161
+ "optional": true,
1162
+ "os": [
1163
+ "win32"
1164
+ ],
1165
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.55.1.tgz",
1166
+ "version": "4.55.1"
1167
+ },
1168
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1169
+ "cpu": [
1170
+ "x64"
1171
+ ],
1172
+ "dev": true,
1173
+ "integrity": "sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==",
1174
+ "license": "MIT",
1175
+ "optional": true,
1176
+ "os": [
1177
+ "win32"
1178
+ ],
1179
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.55.1.tgz",
1180
+ "version": "4.55.1"
1181
+ },
1182
+ "node_modules/@types/babel__core": {
1183
+ "dependencies": {
1184
+ "@babel/parser": "^7.20.7",
1185
+ "@babel/types": "^7.20.7",
1186
+ "@types/babel__generator": "*",
1187
+ "@types/babel__template": "*",
1188
+ "@types/babel__traverse": "*"
1189
+ },
1190
+ "dev": true,
1191
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1192
+ "license": "MIT",
1193
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1194
+ "version": "7.20.5"
1195
+ },
1196
+ "node_modules/@types/babel__generator": {
1197
+ "dependencies": {
1198
+ "@babel/types": "^7.0.0"
1199
+ },
1200
+ "dev": true,
1201
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1202
+ "license": "MIT",
1203
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1204
+ "version": "7.27.0"
1205
+ },
1206
+ "node_modules/@types/babel__template": {
1207
+ "dependencies": {
1208
+ "@babel/parser": "^7.1.0",
1209
+ "@babel/types": "^7.0.0"
1210
+ },
1211
+ "dev": true,
1212
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1213
+ "license": "MIT",
1214
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1215
+ "version": "7.4.4"
1216
+ },
1217
+ "node_modules/@types/babel__traverse": {
1218
+ "dependencies": {
1219
+ "@babel/types": "^7.28.2"
1220
+ },
1221
+ "dev": true,
1222
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1223
+ "license": "MIT",
1224
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1225
+ "version": "7.28.0"
1226
+ },
1227
+ "node_modules/@types/d3-color": {
1228
+ "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
1229
+ "license": "MIT",
1230
+ "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
1231
+ "version": "3.1.3"
1232
+ },
1233
+ "node_modules/@types/d3-drag": {
1234
+ "dependencies": {
1235
+ "@types/d3-selection": "*"
1236
+ },
1237
+ "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
1238
+ "license": "MIT",
1239
+ "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
1240
+ "version": "3.0.7"
1241
+ },
1242
+ "node_modules/@types/d3-interpolate": {
1243
+ "dependencies": {
1244
+ "@types/d3-color": "*"
1245
+ },
1246
+ "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
1247
+ "license": "MIT",
1248
+ "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
1249
+ "version": "3.0.4"
1250
+ },
1251
+ "node_modules/@types/d3-selection": {
1252
+ "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
1253
+ "license": "MIT",
1254
+ "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
1255
+ "version": "3.0.11"
1256
+ },
1257
+ "node_modules/@types/d3-transition": {
1258
+ "dependencies": {
1259
+ "@types/d3-selection": "*"
1260
+ },
1261
+ "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
1262
+ "license": "MIT",
1263
+ "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
1264
+ "version": "3.0.9"
1265
+ },
1266
+ "node_modules/@types/d3-zoom": {
1267
+ "dependencies": {
1268
+ "@types/d3-interpolate": "*",
1269
+ "@types/d3-selection": "*"
1270
+ },
1271
+ "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
1272
+ "license": "MIT",
1273
+ "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
1274
+ "version": "3.0.8"
1275
+ },
1276
+ "node_modules/@types/estree": {
1277
+ "dev": true,
1278
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1279
+ "license": "MIT",
1280
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1281
+ "version": "1.0.8"
1282
+ },
1283
+ "node_modules/@types/prop-types": {
1284
+ "devOptional": true,
1285
+ "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
1286
+ "license": "MIT",
1287
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
1288
+ "version": "15.7.15"
1289
+ },
1290
+ "node_modules/@types/react": {
1291
+ "dependencies": {
1292
+ "@types/prop-types": "*",
1293
+ "csstype": "^3.2.2"
1294
+ },
1295
+ "devOptional": true,
1296
+ "integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==",
1297
+ "license": "MIT",
1298
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz",
1299
+ "version": "18.3.27"
1300
+ },
1301
+ "node_modules/@types/react-dom": {
1302
+ "dev": true,
1303
+ "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==",
1304
+ "license": "MIT",
1305
+ "peerDependencies": {
1306
+ "@types/react": "^18.0.0"
1307
+ },
1308
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz",
1309
+ "version": "18.3.7"
1310
+ },
1311
+ "node_modules/@types/trusted-types": {
1312
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
1313
+ "license": "MIT",
1314
+ "optional": true,
1315
+ "peer": true,
1316
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
1317
+ "version": "2.0.7"
1318
+ },
1319
+ "node_modules/@vitejs/plugin-react": {
1320
+ "dependencies": {
1321
+ "@babel/core": "^7.28.0",
1322
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
1323
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
1324
+ "@rolldown/pluginutils": "1.0.0-beta.27",
1325
+ "@types/babel__core": "^7.20.5",
1326
+ "react-refresh": "^0.17.0"
1327
+ },
1328
+ "dev": true,
1329
+ "engines": {
1330
+ "node": "^14.18.0 || >=16.0.0"
1331
+ },
1332
+ "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
1333
+ "license": "MIT",
1334
+ "peerDependencies": {
1335
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
1336
+ },
1337
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
1338
+ "version": "4.7.0"
1339
+ },
1340
+ "node_modules/@xyflow/react": {
1341
+ "dependencies": {
1342
+ "@xyflow/system": "0.0.74",
1343
+ "classcat": "^5.0.3",
1344
+ "zustand": "^4.4.0"
1345
+ },
1346
+ "integrity": "sha512-eOtz3whDMWrB4KWVatIBrKuxECHqip6PfA8fTpaS2RUGVpiEAe+nqDKsLqkViVWxDGreq0lWX71Xth/SPAzXiw==",
1347
+ "license": "MIT",
1348
+ "peerDependencies": {
1349
+ "react": ">=17",
1350
+ "react-dom": ">=17"
1351
+ },
1352
+ "resolved": "https://registry.npmjs.org/@xyflow/react/-/react-12.10.0.tgz",
1353
+ "version": "12.10.0"
1354
+ },
1355
+ "node_modules/@xyflow/system": {
1356
+ "dependencies": {
1357
+ "@types/d3-drag": "^3.0.7",
1358
+ "@types/d3-interpolate": "^3.0.4",
1359
+ "@types/d3-selection": "^3.0.10",
1360
+ "@types/d3-transition": "^3.0.8",
1361
+ "@types/d3-zoom": "^3.0.8",
1362
+ "d3-drag": "^3.0.0",
1363
+ "d3-interpolate": "^3.0.1",
1364
+ "d3-selection": "^3.0.0",
1365
+ "d3-zoom": "^3.0.0"
1366
+ },
1367
+ "integrity": "sha512-7v7B/PkiVrkdZzSbL+inGAo6tkR/WQHHG0/jhSvLQToCsfa8YubOGmBYd1s08tpKpihdHDZFwzQZeR69QSBb4Q==",
1368
+ "license": "MIT",
1369
+ "resolved": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.74.tgz",
1370
+ "version": "0.0.74"
1371
+ },
1372
+ "node_modules/any-promise": {
1373
+ "dev": true,
1374
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
1375
+ "license": "MIT",
1376
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
1377
+ "version": "1.3.0"
1378
+ },
1379
+ "node_modules/anymatch": {
1380
+ "dependencies": {
1381
+ "normalize-path": "^3.0.0",
1382
+ "picomatch": "^2.0.4"
1383
+ },
1384
+ "dev": true,
1385
+ "engines": {
1386
+ "node": ">= 8"
1387
+ },
1388
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1389
+ "license": "ISC",
1390
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1391
+ "version": "3.1.3"
1392
+ },
1393
+ "node_modules/arg": {
1394
+ "dev": true,
1395
+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
1396
+ "license": "MIT",
1397
+ "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
1398
+ "version": "5.0.2"
1399
+ },
1400
+ "node_modules/autoprefixer": {
1401
+ "bin": {
1402
+ "autoprefixer": "bin/autoprefixer"
1403
+ },
1404
+ "dependencies": {
1405
+ "browserslist": "^4.28.1",
1406
+ "caniuse-lite": "^1.0.30001760",
1407
+ "fraction.js": "^5.3.4",
1408
+ "picocolors": "^1.1.1",
1409
+ "postcss-value-parser": "^4.2.0"
1410
+ },
1411
+ "dev": true,
1412
+ "engines": {
1413
+ "node": "^10 || ^12 || >=14"
1414
+ },
1415
+ "funding": [
1416
+ {
1417
+ "type": "opencollective",
1418
+ "url": "https://opencollective.com/postcss/"
1419
+ },
1420
+ {
1421
+ "type": "tidelift",
1422
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
1423
+ },
1424
+ {
1425
+ "type": "github",
1426
+ "url": "https://github.com/sponsors/ai"
1427
+ }
1428
+ ],
1429
+ "integrity": "sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==",
1430
+ "license": "MIT",
1431
+ "peerDependencies": {
1432
+ "postcss": "^8.1.0"
1433
+ },
1434
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.23.tgz",
1435
+ "version": "10.4.23"
1436
+ },
1437
+ "node_modules/baseline-browser-mapping": {
1438
+ "bin": {
1439
+ "baseline-browser-mapping": "dist/cli.js"
1440
+ },
1441
+ "dev": true,
1442
+ "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
1443
+ "license": "Apache-2.0",
1444
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
1445
+ "version": "2.9.11"
1446
+ },
1447
+ "node_modules/binary-extensions": {
1448
+ "dev": true,
1449
+ "engines": {
1450
+ "node": ">=8"
1451
+ },
1452
+ "funding": {
1453
+ "url": "https://github.com/sponsors/sindresorhus"
1454
+ },
1455
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
1456
+ "license": "MIT",
1457
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
1458
+ "version": "2.3.0"
1459
+ },
1460
+ "node_modules/braces": {
1461
+ "dependencies": {
1462
+ "fill-range": "^7.1.1"
1463
+ },
1464
+ "dev": true,
1465
+ "engines": {
1466
+ "node": ">=8"
1467
+ },
1468
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1469
+ "license": "MIT",
1470
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1471
+ "version": "3.0.3"
1472
+ },
1473
+ "node_modules/browserslist": {
1474
+ "bin": {
1475
+ "browserslist": "cli.js"
1476
+ },
1477
+ "dependencies": {
1478
+ "baseline-browser-mapping": "^2.9.0",
1479
+ "caniuse-lite": "^1.0.30001759",
1480
+ "electron-to-chromium": "^1.5.263",
1481
+ "node-releases": "^2.0.27",
1482
+ "update-browserslist-db": "^1.2.0"
1483
+ },
1484
+ "dev": true,
1485
+ "engines": {
1486
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1487
+ },
1488
+ "funding": [
1489
+ {
1490
+ "type": "opencollective",
1491
+ "url": "https://opencollective.com/browserslist"
1492
+ },
1493
+ {
1494
+ "type": "tidelift",
1495
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1496
+ },
1497
+ {
1498
+ "type": "github",
1499
+ "url": "https://github.com/sponsors/ai"
1500
+ }
1501
+ ],
1502
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
1503
+ "license": "MIT",
1504
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
1505
+ "version": "4.28.1"
1506
+ },
1507
+ "node_modules/camelcase-css": {
1508
+ "dev": true,
1509
+ "engines": {
1510
+ "node": ">= 6"
1511
+ },
1512
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
1513
+ "license": "MIT",
1514
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
1515
+ "version": "2.0.1"
1516
+ },
1517
+ "node_modules/caniuse-lite": {
1518
+ "dev": true,
1519
+ "funding": [
1520
+ {
1521
+ "type": "opencollective",
1522
+ "url": "https://opencollective.com/browserslist"
1523
+ },
1524
+ {
1525
+ "type": "tidelift",
1526
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1527
+ },
1528
+ {
1529
+ "type": "github",
1530
+ "url": "https://github.com/sponsors/ai"
1531
+ }
1532
+ ],
1533
+ "integrity": "sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==",
1534
+ "license": "CC-BY-4.0",
1535
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001762.tgz",
1536
+ "version": "1.0.30001762"
1537
+ },
1538
+ "node_modules/chokidar": {
1539
+ "dependencies": {
1540
+ "anymatch": "~3.1.2",
1541
+ "braces": "~3.0.2",
1542
+ "glob-parent": "~5.1.2",
1543
+ "is-binary-path": "~2.1.0",
1544
+ "is-glob": "~4.0.1",
1545
+ "normalize-path": "~3.0.0",
1546
+ "readdirp": "~3.6.0"
1547
+ },
1548
+ "dev": true,
1549
+ "engines": {
1550
+ "node": ">= 8.10.0"
1551
+ },
1552
+ "funding": {
1553
+ "url": "https://paulmillr.com/funding/"
1554
+ },
1555
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
1556
+ "license": "MIT",
1557
+ "optionalDependencies": {
1558
+ "fsevents": "~2.3.2"
1559
+ },
1560
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
1561
+ "version": "3.6.0"
1562
+ },
1563
+ "node_modules/chokidar/node_modules/glob-parent": {
1564
+ "dependencies": {
1565
+ "is-glob": "^4.0.1"
1566
+ },
1567
+ "dev": true,
1568
+ "engines": {
1569
+ "node": ">= 6"
1570
+ },
1571
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1572
+ "license": "ISC",
1573
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1574
+ "version": "5.1.2"
1575
+ },
1576
+ "node_modules/classcat": {
1577
+ "integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==",
1578
+ "license": "MIT",
1579
+ "resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz",
1580
+ "version": "5.0.5"
1581
+ },
1582
+ "node_modules/commander": {
1583
+ "dev": true,
1584
+ "engines": {
1585
+ "node": ">= 6"
1586
+ },
1587
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
1588
+ "license": "MIT",
1589
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
1590
+ "version": "4.1.1"
1591
+ },
1592
+ "node_modules/convert-source-map": {
1593
+ "dev": true,
1594
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1595
+ "license": "MIT",
1596
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1597
+ "version": "2.0.0"
1598
+ },
1599
+ "node_modules/cssesc": {
1600
+ "bin": {
1601
+ "cssesc": "bin/cssesc"
1602
+ },
1603
+ "dev": true,
1604
+ "engines": {
1605
+ "node": ">=4"
1606
+ },
1607
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1608
+ "license": "MIT",
1609
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1610
+ "version": "3.0.0"
1611
+ },
1612
+ "node_modules/csstype": {
1613
+ "devOptional": true,
1614
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1615
+ "license": "MIT",
1616
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1617
+ "version": "3.2.3"
1618
+ },
1619
+ "node_modules/d3-color": {
1620
+ "engines": {
1621
+ "node": ">=12"
1622
+ },
1623
+ "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
1624
+ "license": "ISC",
1625
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
1626
+ "version": "3.1.0"
1627
+ },
1628
+ "node_modules/d3-dispatch": {
1629
+ "engines": {
1630
+ "node": ">=12"
1631
+ },
1632
+ "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
1633
+ "license": "ISC",
1634
+ "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
1635
+ "version": "3.0.1"
1636
+ },
1637
+ "node_modules/d3-drag": {
1638
+ "dependencies": {
1639
+ "d3-dispatch": "1 - 3",
1640
+ "d3-selection": "3"
1641
+ },
1642
+ "engines": {
1643
+ "node": ">=12"
1644
+ },
1645
+ "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
1646
+ "license": "ISC",
1647
+ "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
1648
+ "version": "3.0.0"
1649
+ },
1650
+ "node_modules/d3-ease": {
1651
+ "engines": {
1652
+ "node": ">=12"
1653
+ },
1654
+ "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
1655
+ "license": "BSD-3-Clause",
1656
+ "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
1657
+ "version": "3.0.1"
1658
+ },
1659
+ "node_modules/d3-interpolate": {
1660
+ "dependencies": {
1661
+ "d3-color": "1 - 3"
1662
+ },
1663
+ "engines": {
1664
+ "node": ">=12"
1665
+ },
1666
+ "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
1667
+ "license": "ISC",
1668
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
1669
+ "version": "3.0.1"
1670
+ },
1671
+ "node_modules/d3-selection": {
1672
+ "engines": {
1673
+ "node": ">=12"
1674
+ },
1675
+ "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
1676
+ "license": "ISC",
1677
+ "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
1678
+ "version": "3.0.0"
1679
+ },
1680
+ "node_modules/d3-timer": {
1681
+ "engines": {
1682
+ "node": ">=12"
1683
+ },
1684
+ "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
1685
+ "license": "ISC",
1686
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
1687
+ "version": "3.0.1"
1688
+ },
1689
+ "node_modules/d3-transition": {
1690
+ "dependencies": {
1691
+ "d3-color": "1 - 3",
1692
+ "d3-dispatch": "1 - 3",
1693
+ "d3-ease": "1 - 3",
1694
+ "d3-interpolate": "1 - 3",
1695
+ "d3-timer": "1 - 3"
1696
+ },
1697
+ "engines": {
1698
+ "node": ">=12"
1699
+ },
1700
+ "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
1701
+ "license": "ISC",
1702
+ "peerDependencies": {
1703
+ "d3-selection": "2 - 3"
1704
+ },
1705
+ "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
1706
+ "version": "3.0.1"
1707
+ },
1708
+ "node_modules/d3-zoom": {
1709
+ "dependencies": {
1710
+ "d3-dispatch": "1 - 3",
1711
+ "d3-drag": "2 - 3",
1712
+ "d3-interpolate": "1 - 3",
1713
+ "d3-selection": "2 - 3",
1714
+ "d3-transition": "2 - 3"
1715
+ },
1716
+ "engines": {
1717
+ "node": ">=12"
1718
+ },
1719
+ "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
1720
+ "license": "ISC",
1721
+ "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
1722
+ "version": "3.0.0"
1723
+ },
1724
+ "node_modules/debug": {
1725
+ "dependencies": {
1726
+ "ms": "^2.1.3"
1727
+ },
1728
+ "dev": true,
1729
+ "engines": {
1730
+ "node": ">=6.0"
1731
+ },
1732
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1733
+ "license": "MIT",
1734
+ "peerDependenciesMeta": {
1735
+ "supports-color": {
1736
+ "optional": true
1737
+ }
1738
+ },
1739
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1740
+ "version": "4.4.3"
1741
+ },
1742
+ "node_modules/didyoumean": {
1743
+ "dev": true,
1744
+ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
1745
+ "license": "Apache-2.0",
1746
+ "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
1747
+ "version": "1.2.2"
1748
+ },
1749
+ "node_modules/dlv": {
1750
+ "dev": true,
1751
+ "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
1752
+ "license": "MIT",
1753
+ "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
1754
+ "version": "1.1.3"
1755
+ },
1756
+ "node_modules/dompurify": {
1757
+ "integrity": "sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==",
1758
+ "license": "(MPL-2.0 OR Apache-2.0)",
1759
+ "optionalDependencies": {
1760
+ "@types/trusted-types": "^2.0.7"
1761
+ },
1762
+ "peer": true,
1763
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.7.tgz",
1764
+ "version": "3.2.7"
1765
+ },
1766
+ "node_modules/electron-to-chromium": {
1767
+ "dev": true,
1768
+ "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
1769
+ "license": "ISC",
1770
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
1771
+ "version": "1.5.267"
1772
+ },
1773
+ "node_modules/esbuild": {
1774
+ "bin": {
1775
+ "esbuild": "bin/esbuild"
1776
+ },
1777
+ "dev": true,
1778
+ "engines": {
1779
+ "node": ">=12"
1780
+ },
1781
+ "hasInstallScript": true,
1782
+ "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
1783
+ "license": "MIT",
1784
+ "optionalDependencies": {
1785
+ "@esbuild/aix-ppc64": "0.21.5",
1786
+ "@esbuild/android-arm": "0.21.5",
1787
+ "@esbuild/android-arm64": "0.21.5",
1788
+ "@esbuild/android-x64": "0.21.5",
1789
+ "@esbuild/darwin-arm64": "0.21.5",
1790
+ "@esbuild/darwin-x64": "0.21.5",
1791
+ "@esbuild/freebsd-arm64": "0.21.5",
1792
+ "@esbuild/freebsd-x64": "0.21.5",
1793
+ "@esbuild/linux-arm": "0.21.5",
1794
+ "@esbuild/linux-arm64": "0.21.5",
1795
+ "@esbuild/linux-ia32": "0.21.5",
1796
+ "@esbuild/linux-loong64": "0.21.5",
1797
+ "@esbuild/linux-mips64el": "0.21.5",
1798
+ "@esbuild/linux-ppc64": "0.21.5",
1799
+ "@esbuild/linux-riscv64": "0.21.5",
1800
+ "@esbuild/linux-s390x": "0.21.5",
1801
+ "@esbuild/linux-x64": "0.21.5",
1802
+ "@esbuild/netbsd-x64": "0.21.5",
1803
+ "@esbuild/openbsd-x64": "0.21.5",
1804
+ "@esbuild/sunos-x64": "0.21.5",
1805
+ "@esbuild/win32-arm64": "0.21.5",
1806
+ "@esbuild/win32-ia32": "0.21.5",
1807
+ "@esbuild/win32-x64": "0.21.5"
1808
+ },
1809
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
1810
+ "version": "0.21.5"
1811
+ },
1812
+ "node_modules/escalade": {
1813
+ "dev": true,
1814
+ "engines": {
1815
+ "node": ">=6"
1816
+ },
1817
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1818
+ "license": "MIT",
1819
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1820
+ "version": "3.2.0"
1821
+ },
1822
+ "node_modules/fast-glob": {
1823
+ "dependencies": {
1824
+ "@nodelib/fs.stat": "^2.0.2",
1825
+ "@nodelib/fs.walk": "^1.2.3",
1826
+ "glob-parent": "^5.1.2",
1827
+ "merge2": "^1.3.0",
1828
+ "micromatch": "^4.0.8"
1829
+ },
1830
+ "dev": true,
1831
+ "engines": {
1832
+ "node": ">=8.6.0"
1833
+ },
1834
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
1835
+ "license": "MIT",
1836
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
1837
+ "version": "3.3.3"
1838
+ },
1839
+ "node_modules/fast-glob/node_modules/glob-parent": {
1840
+ "dependencies": {
1841
+ "is-glob": "^4.0.1"
1842
+ },
1843
+ "dev": true,
1844
+ "engines": {
1845
+ "node": ">= 6"
1846
+ },
1847
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1848
+ "license": "ISC",
1849
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1850
+ "version": "5.1.2"
1851
+ },
1852
+ "node_modules/fastq": {
1853
+ "dependencies": {
1854
+ "reusify": "^1.0.4"
1855
+ },
1856
+ "dev": true,
1857
+ "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
1858
+ "license": "ISC",
1859
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
1860
+ "version": "1.20.1"
1861
+ },
1862
+ "node_modules/fill-range": {
1863
+ "dependencies": {
1864
+ "to-regex-range": "^5.0.1"
1865
+ },
1866
+ "dev": true,
1867
+ "engines": {
1868
+ "node": ">=8"
1869
+ },
1870
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
1871
+ "license": "MIT",
1872
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
1873
+ "version": "7.1.1"
1874
+ },
1875
+ "node_modules/fraction.js": {
1876
+ "dev": true,
1877
+ "engines": {
1878
+ "node": "*"
1879
+ },
1880
+ "funding": {
1881
+ "type": "github",
1882
+ "url": "https://github.com/sponsors/rawify"
1883
+ },
1884
+ "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
1885
+ "license": "MIT",
1886
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
1887
+ "version": "5.3.4"
1888
+ },
1889
+ "node_modules/fsevents": {
1890
+ "dev": true,
1891
+ "engines": {
1892
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1893
+ },
1894
+ "hasInstallScript": true,
1895
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1896
+ "license": "MIT",
1897
+ "optional": true,
1898
+ "os": [
1899
+ "darwin"
1900
+ ],
1901
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1902
+ "version": "2.3.3"
1903
+ },
1904
+ "node_modules/function-bind": {
1905
+ "dev": true,
1906
+ "funding": {
1907
+ "url": "https://github.com/sponsors/ljharb"
1908
+ },
1909
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1910
+ "license": "MIT",
1911
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1912
+ "version": "1.1.2"
1913
+ },
1914
+ "node_modules/gensync": {
1915
+ "dev": true,
1916
+ "engines": {
1917
+ "node": ">=6.9.0"
1918
+ },
1919
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1920
+ "license": "MIT",
1921
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1922
+ "version": "1.0.0-beta.2"
1923
+ },
1924
+ "node_modules/glob-parent": {
1925
+ "dependencies": {
1926
+ "is-glob": "^4.0.3"
1927
+ },
1928
+ "dev": true,
1929
+ "engines": {
1930
+ "node": ">=10.13.0"
1931
+ },
1932
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1933
+ "license": "ISC",
1934
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1935
+ "version": "6.0.2"
1936
+ },
1937
+ "node_modules/hasown": {
1938
+ "dependencies": {
1939
+ "function-bind": "^1.1.2"
1940
+ },
1941
+ "dev": true,
1942
+ "engines": {
1943
+ "node": ">= 0.4"
1944
+ },
1945
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
1946
+ "license": "MIT",
1947
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
1948
+ "version": "2.0.2"
1949
+ },
1950
+ "node_modules/is-binary-path": {
1951
+ "dependencies": {
1952
+ "binary-extensions": "^2.0.0"
1953
+ },
1954
+ "dev": true,
1955
+ "engines": {
1956
+ "node": ">=8"
1957
+ },
1958
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1959
+ "license": "MIT",
1960
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1961
+ "version": "2.1.0"
1962
+ },
1963
+ "node_modules/is-core-module": {
1964
+ "dependencies": {
1965
+ "hasown": "^2.0.2"
1966
+ },
1967
+ "dev": true,
1968
+ "engines": {
1969
+ "node": ">= 0.4"
1970
+ },
1971
+ "funding": {
1972
+ "url": "https://github.com/sponsors/ljharb"
1973
+ },
1974
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
1975
+ "license": "MIT",
1976
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
1977
+ "version": "2.16.1"
1978
+ },
1979
+ "node_modules/is-extglob": {
1980
+ "dev": true,
1981
+ "engines": {
1982
+ "node": ">=0.10.0"
1983
+ },
1984
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1985
+ "license": "MIT",
1986
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1987
+ "version": "2.1.1"
1988
+ },
1989
+ "node_modules/is-glob": {
1990
+ "dependencies": {
1991
+ "is-extglob": "^2.1.1"
1992
+ },
1993
+ "dev": true,
1994
+ "engines": {
1995
+ "node": ">=0.10.0"
1996
+ },
1997
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1998
+ "license": "MIT",
1999
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2000
+ "version": "4.0.3"
2001
+ },
2002
+ "node_modules/is-number": {
2003
+ "dev": true,
2004
+ "engines": {
2005
+ "node": ">=0.12.0"
2006
+ },
2007
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2008
+ "license": "MIT",
2009
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2010
+ "version": "7.0.0"
2011
+ },
2012
+ "node_modules/jiti": {
2013
+ "bin": {
2014
+ "jiti": "bin/jiti.js"
2015
+ },
2016
+ "dev": true,
2017
+ "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
2018
+ "license": "MIT",
2019
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
2020
+ "version": "1.21.7"
2021
+ },
2022
+ "node_modules/js-tokens": {
2023
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2024
+ "license": "MIT",
2025
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2026
+ "version": "4.0.0"
2027
+ },
2028
+ "node_modules/jsesc": {
2029
+ "bin": {
2030
+ "jsesc": "bin/jsesc"
2031
+ },
2032
+ "dev": true,
2033
+ "engines": {
2034
+ "node": ">=6"
2035
+ },
2036
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2037
+ "license": "MIT",
2038
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2039
+ "version": "3.1.0"
2040
+ },
2041
+ "node_modules/json5": {
2042
+ "bin": {
2043
+ "json5": "lib/cli.js"
2044
+ },
2045
+ "dev": true,
2046
+ "engines": {
2047
+ "node": ">=6"
2048
+ },
2049
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2050
+ "license": "MIT",
2051
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2052
+ "version": "2.2.3"
2053
+ },
2054
+ "node_modules/lilconfig": {
2055
+ "dev": true,
2056
+ "engines": {
2057
+ "node": ">=14"
2058
+ },
2059
+ "funding": {
2060
+ "url": "https://github.com/sponsors/antonk52"
2061
+ },
2062
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
2063
+ "license": "MIT",
2064
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
2065
+ "version": "3.1.3"
2066
+ },
2067
+ "node_modules/lines-and-columns": {
2068
+ "dev": true,
2069
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
2070
+ "license": "MIT",
2071
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
2072
+ "version": "1.2.4"
2073
+ },
2074
+ "node_modules/loose-envify": {
2075
+ "bin": {
2076
+ "loose-envify": "cli.js"
2077
+ },
2078
+ "dependencies": {
2079
+ "js-tokens": "^3.0.0 || ^4.0.0"
2080
+ },
2081
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2082
+ "license": "MIT",
2083
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2084
+ "version": "1.4.0"
2085
+ },
2086
+ "node_modules/lru-cache": {
2087
+ "dependencies": {
2088
+ "yallist": "^3.0.2"
2089
+ },
2090
+ "dev": true,
2091
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2092
+ "license": "ISC",
2093
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2094
+ "version": "5.1.1"
2095
+ },
2096
+ "node_modules/lucide-react": {
2097
+ "integrity": "sha512-rpp7pFHh3Xd93KHixNgB0SqThMHpYNzsGUu69UaQbSZ75Q/J3m5t6EhKyMT3m4w2WOxmJ2mY0tD3vebnXqQryQ==",
2098
+ "license": "ISC",
2099
+ "peerDependencies": {
2100
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
2101
+ },
2102
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.400.0.tgz",
2103
+ "version": "0.400.0"
2104
+ },
2105
+ "node_modules/marked": {
2106
+ "bin": {
2107
+ "marked": "bin/marked.js"
2108
+ },
2109
+ "engines": {
2110
+ "node": ">= 18"
2111
+ },
2112
+ "integrity": "sha512-uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==",
2113
+ "license": "MIT",
2114
+ "peer": true,
2115
+ "resolved": "https://registry.npmjs.org/marked/-/marked-14.0.0.tgz",
2116
+ "version": "14.0.0"
2117
+ },
2118
+ "node_modules/merge2": {
2119
+ "dev": true,
2120
+ "engines": {
2121
+ "node": ">= 8"
2122
+ },
2123
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2124
+ "license": "MIT",
2125
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2126
+ "version": "1.4.1"
2127
+ },
2128
+ "node_modules/micromatch": {
2129
+ "dependencies": {
2130
+ "braces": "^3.0.3",
2131
+ "picomatch": "^2.3.1"
2132
+ },
2133
+ "dev": true,
2134
+ "engines": {
2135
+ "node": ">=8.6"
2136
+ },
2137
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
2138
+ "license": "MIT",
2139
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
2140
+ "version": "4.0.8"
2141
+ },
2142
+ "node_modules/monaco-editor": {
2143
+ "dependencies": {
2144
+ "dompurify": "3.2.7",
2145
+ "marked": "14.0.0"
2146
+ },
2147
+ "integrity": "sha512-jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==",
2148
+ "license": "MIT",
2149
+ "peer": true,
2150
+ "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.55.1.tgz",
2151
+ "version": "0.55.1"
2152
+ },
2153
+ "node_modules/ms": {
2154
+ "dev": true,
2155
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2156
+ "license": "MIT",
2157
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2158
+ "version": "2.1.3"
2159
+ },
2160
+ "node_modules/mz": {
2161
+ "dependencies": {
2162
+ "any-promise": "^1.0.0",
2163
+ "object-assign": "^4.0.1",
2164
+ "thenify-all": "^1.0.0"
2165
+ },
2166
+ "dev": true,
2167
+ "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
2168
+ "license": "MIT",
2169
+ "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
2170
+ "version": "2.7.0"
2171
+ },
2172
+ "node_modules/nanoid": {
2173
+ "bin": {
2174
+ "nanoid": "bin/nanoid.cjs"
2175
+ },
2176
+ "dev": true,
2177
+ "engines": {
2178
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2179
+ },
2180
+ "funding": [
2181
+ {
2182
+ "type": "github",
2183
+ "url": "https://github.com/sponsors/ai"
2184
+ }
2185
+ ],
2186
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2187
+ "license": "MIT",
2188
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
2189
+ "version": "3.3.11"
2190
+ },
2191
+ "node_modules/node-releases": {
2192
+ "dev": true,
2193
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
2194
+ "license": "MIT",
2195
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
2196
+ "version": "2.0.27"
2197
+ },
2198
+ "node_modules/normalize-path": {
2199
+ "dev": true,
2200
+ "engines": {
2201
+ "node": ">=0.10.0"
2202
+ },
2203
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
2204
+ "license": "MIT",
2205
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
2206
+ "version": "3.0.0"
2207
+ },
2208
+ "node_modules/object-assign": {
2209
+ "dev": true,
2210
+ "engines": {
2211
+ "node": ">=0.10.0"
2212
+ },
2213
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
2214
+ "license": "MIT",
2215
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
2216
+ "version": "4.1.1"
2217
+ },
2218
+ "node_modules/object-hash": {
2219
+ "dev": true,
2220
+ "engines": {
2221
+ "node": ">= 6"
2222
+ },
2223
+ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
2224
+ "license": "MIT",
2225
+ "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
2226
+ "version": "3.0.0"
2227
+ },
2228
+ "node_modules/path-parse": {
2229
+ "dev": true,
2230
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
2231
+ "license": "MIT",
2232
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
2233
+ "version": "1.0.7"
2234
+ },
2235
+ "node_modules/picocolors": {
2236
+ "dev": true,
2237
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2238
+ "license": "ISC",
2239
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2240
+ "version": "1.1.1"
2241
+ },
2242
+ "node_modules/picomatch": {
2243
+ "dev": true,
2244
+ "engines": {
2245
+ "node": ">=8.6"
2246
+ },
2247
+ "funding": {
2248
+ "url": "https://github.com/sponsors/jonschlinkert"
2249
+ },
2250
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2251
+ "license": "MIT",
2252
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2253
+ "version": "2.3.1"
2254
+ },
2255
+ "node_modules/pify": {
2256
+ "dev": true,
2257
+ "engines": {
2258
+ "node": ">=0.10.0"
2259
+ },
2260
+ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
2261
+ "license": "MIT",
2262
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
2263
+ "version": "2.3.0"
2264
+ },
2265
+ "node_modules/pirates": {
2266
+ "dev": true,
2267
+ "engines": {
2268
+ "node": ">= 6"
2269
+ },
2270
+ "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
2271
+ "license": "MIT",
2272
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
2273
+ "version": "4.0.7"
2274
+ },
2275
+ "node_modules/postcss": {
2276
+ "dependencies": {
2277
+ "nanoid": "^3.3.11",
2278
+ "picocolors": "^1.1.1",
2279
+ "source-map-js": "^1.2.1"
2280
+ },
2281
+ "dev": true,
2282
+ "engines": {
2283
+ "node": "^10 || ^12 || >=14"
2284
+ },
2285
+ "funding": [
2286
+ {
2287
+ "type": "opencollective",
2288
+ "url": "https://opencollective.com/postcss/"
2289
+ },
2290
+ {
2291
+ "type": "tidelift",
2292
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2293
+ },
2294
+ {
2295
+ "type": "github",
2296
+ "url": "https://github.com/sponsors/ai"
2297
+ }
2298
+ ],
2299
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
2300
+ "license": "MIT",
2301
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
2302
+ "version": "8.5.6"
2303
+ },
2304
+ "node_modules/postcss-import": {
2305
+ "dependencies": {
2306
+ "postcss-value-parser": "^4.0.0",
2307
+ "read-cache": "^1.0.0",
2308
+ "resolve": "^1.1.7"
2309
+ },
2310
+ "dev": true,
2311
+ "engines": {
2312
+ "node": ">=14.0.0"
2313
+ },
2314
+ "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
2315
+ "license": "MIT",
2316
+ "peerDependencies": {
2317
+ "postcss": "^8.0.0"
2318
+ },
2319
+ "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
2320
+ "version": "15.1.0"
2321
+ },
2322
+ "node_modules/postcss-js": {
2323
+ "dependencies": {
2324
+ "camelcase-css": "^2.0.1"
2325
+ },
2326
+ "dev": true,
2327
+ "engines": {
2328
+ "node": "^12 || ^14 || >= 16"
2329
+ },
2330
+ "funding": [
2331
+ {
2332
+ "type": "opencollective",
2333
+ "url": "https://opencollective.com/postcss/"
2334
+ },
2335
+ {
2336
+ "type": "github",
2337
+ "url": "https://github.com/sponsors/ai"
2338
+ }
2339
+ ],
2340
+ "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==",
2341
+ "license": "MIT",
2342
+ "peerDependencies": {
2343
+ "postcss": "^8.4.21"
2344
+ },
2345
+ "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz",
2346
+ "version": "4.1.0"
2347
+ },
2348
+ "node_modules/postcss-load-config": {
2349
+ "dependencies": {
2350
+ "lilconfig": "^3.1.1"
2351
+ },
2352
+ "dev": true,
2353
+ "engines": {
2354
+ "node": ">= 18"
2355
+ },
2356
+ "funding": [
2357
+ {
2358
+ "type": "opencollective",
2359
+ "url": "https://opencollective.com/postcss/"
2360
+ },
2361
+ {
2362
+ "type": "github",
2363
+ "url": "https://github.com/sponsors/ai"
2364
+ }
2365
+ ],
2366
+ "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==",
2367
+ "license": "MIT",
2368
+ "peerDependencies": {
2369
+ "jiti": ">=1.21.0",
2370
+ "postcss": ">=8.0.9",
2371
+ "tsx": "^4.8.1",
2372
+ "yaml": "^2.4.2"
2373
+ },
2374
+ "peerDependenciesMeta": {
2375
+ "jiti": {
2376
+ "optional": true
2377
+ },
2378
+ "postcss": {
2379
+ "optional": true
2380
+ },
2381
+ "tsx": {
2382
+ "optional": true
2383
+ },
2384
+ "yaml": {
2385
+ "optional": true
2386
+ }
2387
+ },
2388
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz",
2389
+ "version": "6.0.1"
2390
+ },
2391
+ "node_modules/postcss-nested": {
2392
+ "dependencies": {
2393
+ "postcss-selector-parser": "^6.1.1"
2394
+ },
2395
+ "dev": true,
2396
+ "engines": {
2397
+ "node": ">=12.0"
2398
+ },
2399
+ "funding": [
2400
+ {
2401
+ "type": "opencollective",
2402
+ "url": "https://opencollective.com/postcss/"
2403
+ },
2404
+ {
2405
+ "type": "github",
2406
+ "url": "https://github.com/sponsors/ai"
2407
+ }
2408
+ ],
2409
+ "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
2410
+ "license": "MIT",
2411
+ "peerDependencies": {
2412
+ "postcss": "^8.2.14"
2413
+ },
2414
+ "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
2415
+ "version": "6.2.0"
2416
+ },
2417
+ "node_modules/postcss-selector-parser": {
2418
+ "dependencies": {
2419
+ "cssesc": "^3.0.0",
2420
+ "util-deprecate": "^1.0.2"
2421
+ },
2422
+ "dev": true,
2423
+ "engines": {
2424
+ "node": ">=4"
2425
+ },
2426
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
2427
+ "license": "MIT",
2428
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
2429
+ "version": "6.1.2"
2430
+ },
2431
+ "node_modules/postcss-value-parser": {
2432
+ "dev": true,
2433
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
2434
+ "license": "MIT",
2435
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
2436
+ "version": "4.2.0"
2437
+ },
2438
+ "node_modules/queue-microtask": {
2439
+ "dev": true,
2440
+ "funding": [
2441
+ {
2442
+ "type": "github",
2443
+ "url": "https://github.com/sponsors/feross"
2444
+ },
2445
+ {
2446
+ "type": "patreon",
2447
+ "url": "https://www.patreon.com/feross"
2448
+ },
2449
+ {
2450
+ "type": "consulting",
2451
+ "url": "https://feross.org/support"
2452
+ }
2453
+ ],
2454
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2455
+ "license": "MIT",
2456
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2457
+ "version": "1.2.3"
2458
+ },
2459
+ "node_modules/react": {
2460
+ "dependencies": {
2461
+ "loose-envify": "^1.1.0"
2462
+ },
2463
+ "engines": {
2464
+ "node": ">=0.10.0"
2465
+ },
2466
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
2467
+ "license": "MIT",
2468
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
2469
+ "version": "18.3.1"
2470
+ },
2471
+ "node_modules/react-dom": {
2472
+ "dependencies": {
2473
+ "loose-envify": "^1.1.0",
2474
+ "scheduler": "^0.23.2"
2475
+ },
2476
+ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
2477
+ "license": "MIT",
2478
+ "peerDependencies": {
2479
+ "react": "^18.3.1"
2480
+ },
2481
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
2482
+ "version": "18.3.1"
2483
+ },
2484
+ "node_modules/react-refresh": {
2485
+ "dev": true,
2486
+ "engines": {
2487
+ "node": ">=0.10.0"
2488
+ },
2489
+ "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
2490
+ "license": "MIT",
2491
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
2492
+ "version": "0.17.0"
2493
+ },
2494
+ "node_modules/read-cache": {
2495
+ "dependencies": {
2496
+ "pify": "^2.3.0"
2497
+ },
2498
+ "dev": true,
2499
+ "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
2500
+ "license": "MIT",
2501
+ "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
2502
+ "version": "1.0.0"
2503
+ },
2504
+ "node_modules/readdirp": {
2505
+ "dependencies": {
2506
+ "picomatch": "^2.2.1"
2507
+ },
2508
+ "dev": true,
2509
+ "engines": {
2510
+ "node": ">=8.10.0"
2511
+ },
2512
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
2513
+ "license": "MIT",
2514
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
2515
+ "version": "3.6.0"
2516
+ },
2517
+ "node_modules/resolve": {
2518
+ "bin": {
2519
+ "resolve": "bin/resolve"
2520
+ },
2521
+ "dependencies": {
2522
+ "is-core-module": "^2.16.1",
2523
+ "path-parse": "^1.0.7",
2524
+ "supports-preserve-symlinks-flag": "^1.0.0"
2525
+ },
2526
+ "dev": true,
2527
+ "engines": {
2528
+ "node": ">= 0.4"
2529
+ },
2530
+ "funding": {
2531
+ "url": "https://github.com/sponsors/ljharb"
2532
+ },
2533
+ "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
2534
+ "license": "MIT",
2535
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
2536
+ "version": "1.22.11"
2537
+ },
2538
+ "node_modules/reusify": {
2539
+ "dev": true,
2540
+ "engines": {
2541
+ "iojs": ">=1.0.0",
2542
+ "node": ">=0.10.0"
2543
+ },
2544
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
2545
+ "license": "MIT",
2546
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
2547
+ "version": "1.1.0"
2548
+ },
2549
+ "node_modules/rollup": {
2550
+ "bin": {
2551
+ "rollup": "dist/bin/rollup"
2552
+ },
2553
+ "dependencies": {
2554
+ "@types/estree": "1.0.8"
2555
+ },
2556
+ "dev": true,
2557
+ "engines": {
2558
+ "node": ">=18.0.0",
2559
+ "npm": ">=8.0.0"
2560
+ },
2561
+ "integrity": "sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==",
2562
+ "license": "MIT",
2563
+ "optionalDependencies": {
2564
+ "@rollup/rollup-android-arm-eabi": "4.55.1",
2565
+ "@rollup/rollup-android-arm64": "4.55.1",
2566
+ "@rollup/rollup-darwin-arm64": "4.55.1",
2567
+ "@rollup/rollup-darwin-x64": "4.55.1",
2568
+ "@rollup/rollup-freebsd-arm64": "4.55.1",
2569
+ "@rollup/rollup-freebsd-x64": "4.55.1",
2570
+ "@rollup/rollup-linux-arm-gnueabihf": "4.55.1",
2571
+ "@rollup/rollup-linux-arm-musleabihf": "4.55.1",
2572
+ "@rollup/rollup-linux-arm64-gnu": "4.55.1",
2573
+ "@rollup/rollup-linux-arm64-musl": "4.55.1",
2574
+ "@rollup/rollup-linux-loong64-gnu": "4.55.1",
2575
+ "@rollup/rollup-linux-loong64-musl": "4.55.1",
2576
+ "@rollup/rollup-linux-ppc64-gnu": "4.55.1",
2577
+ "@rollup/rollup-linux-ppc64-musl": "4.55.1",
2578
+ "@rollup/rollup-linux-riscv64-gnu": "4.55.1",
2579
+ "@rollup/rollup-linux-riscv64-musl": "4.55.1",
2580
+ "@rollup/rollup-linux-s390x-gnu": "4.55.1",
2581
+ "@rollup/rollup-linux-x64-gnu": "4.55.1",
2582
+ "@rollup/rollup-linux-x64-musl": "4.55.1",
2583
+ "@rollup/rollup-openbsd-x64": "4.55.1",
2584
+ "@rollup/rollup-openharmony-arm64": "4.55.1",
2585
+ "@rollup/rollup-win32-arm64-msvc": "4.55.1",
2586
+ "@rollup/rollup-win32-ia32-msvc": "4.55.1",
2587
+ "@rollup/rollup-win32-x64-gnu": "4.55.1",
2588
+ "@rollup/rollup-win32-x64-msvc": "4.55.1",
2589
+ "fsevents": "~2.3.2"
2590
+ },
2591
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.55.1.tgz",
2592
+ "version": "4.55.1"
2593
+ },
2594
+ "node_modules/run-parallel": {
2595
+ "dependencies": {
2596
+ "queue-microtask": "^1.2.2"
2597
+ },
2598
+ "dev": true,
2599
+ "funding": [
2600
+ {
2601
+ "type": "github",
2602
+ "url": "https://github.com/sponsors/feross"
2603
+ },
2604
+ {
2605
+ "type": "patreon",
2606
+ "url": "https://www.patreon.com/feross"
2607
+ },
2608
+ {
2609
+ "type": "consulting",
2610
+ "url": "https://feross.org/support"
2611
+ }
2612
+ ],
2613
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2614
+ "license": "MIT",
2615
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2616
+ "version": "1.2.0"
2617
+ },
2618
+ "node_modules/scheduler": {
2619
+ "dependencies": {
2620
+ "loose-envify": "^1.1.0"
2621
+ },
2622
+ "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
2623
+ "license": "MIT",
2624
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
2625
+ "version": "0.23.2"
2626
+ },
2627
+ "node_modules/semver": {
2628
+ "bin": {
2629
+ "semver": "bin/semver.js"
2630
+ },
2631
+ "dev": true,
2632
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2633
+ "license": "ISC",
2634
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2635
+ "version": "6.3.1"
2636
+ },
2637
+ "node_modules/source-map-js": {
2638
+ "dev": true,
2639
+ "engines": {
2640
+ "node": ">=0.10.0"
2641
+ },
2642
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2643
+ "license": "BSD-3-Clause",
2644
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2645
+ "version": "1.2.1"
2646
+ },
2647
+ "node_modules/state-local": {
2648
+ "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==",
2649
+ "license": "MIT",
2650
+ "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz",
2651
+ "version": "1.0.7"
2652
+ },
2653
+ "node_modules/sucrase": {
2654
+ "bin": {
2655
+ "sucrase": "bin/sucrase",
2656
+ "sucrase-node": "bin/sucrase-node"
2657
+ },
2658
+ "dependencies": {
2659
+ "@jridgewell/gen-mapping": "^0.3.2",
2660
+ "commander": "^4.0.0",
2661
+ "lines-and-columns": "^1.1.6",
2662
+ "mz": "^2.7.0",
2663
+ "pirates": "^4.0.1",
2664
+ "tinyglobby": "^0.2.11",
2665
+ "ts-interface-checker": "^0.1.9"
2666
+ },
2667
+ "dev": true,
2668
+ "engines": {
2669
+ "node": ">=16 || 14 >=14.17"
2670
+ },
2671
+ "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
2672
+ "license": "MIT",
2673
+ "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
2674
+ "version": "3.35.1"
2675
+ },
2676
+ "node_modules/supports-preserve-symlinks-flag": {
2677
+ "dev": true,
2678
+ "engines": {
2679
+ "node": ">= 0.4"
2680
+ },
2681
+ "funding": {
2682
+ "url": "https://github.com/sponsors/ljharb"
2683
+ },
2684
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
2685
+ "license": "MIT",
2686
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
2687
+ "version": "1.0.0"
2688
+ },
2689
+ "node_modules/tailwindcss": {
2690
+ "bin": {
2691
+ "tailwind": "lib/cli.js",
2692
+ "tailwindcss": "lib/cli.js"
2693
+ },
2694
+ "dependencies": {
2695
+ "@alloc/quick-lru": "^5.2.0",
2696
+ "arg": "^5.0.2",
2697
+ "chokidar": "^3.6.0",
2698
+ "didyoumean": "^1.2.2",
2699
+ "dlv": "^1.1.3",
2700
+ "fast-glob": "^3.3.2",
2701
+ "glob-parent": "^6.0.2",
2702
+ "is-glob": "^4.0.3",
2703
+ "jiti": "^1.21.7",
2704
+ "lilconfig": "^3.1.3",
2705
+ "micromatch": "^4.0.8",
2706
+ "normalize-path": "^3.0.0",
2707
+ "object-hash": "^3.0.0",
2708
+ "picocolors": "^1.1.1",
2709
+ "postcss": "^8.4.47",
2710
+ "postcss-import": "^15.1.0",
2711
+ "postcss-js": "^4.0.1",
2712
+ "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
2713
+ "postcss-nested": "^6.2.0",
2714
+ "postcss-selector-parser": "^6.1.2",
2715
+ "resolve": "^1.22.8",
2716
+ "sucrase": "^3.35.0"
2717
+ },
2718
+ "dev": true,
2719
+ "engines": {
2720
+ "node": ">=14.0.0"
2721
+ },
2722
+ "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==",
2723
+ "license": "MIT",
2724
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz",
2725
+ "version": "3.4.19"
2726
+ },
2727
+ "node_modules/thenify": {
2728
+ "dependencies": {
2729
+ "any-promise": "^1.0.0"
2730
+ },
2731
+ "dev": true,
2732
+ "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
2733
+ "license": "MIT",
2734
+ "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
2735
+ "version": "3.3.1"
2736
+ },
2737
+ "node_modules/thenify-all": {
2738
+ "dependencies": {
2739
+ "thenify": ">= 3.1.0 < 4"
2740
+ },
2741
+ "dev": true,
2742
+ "engines": {
2743
+ "node": ">=0.8"
2744
+ },
2745
+ "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
2746
+ "license": "MIT",
2747
+ "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
2748
+ "version": "1.6.0"
2749
+ },
2750
+ "node_modules/tinyglobby": {
2751
+ "dependencies": {
2752
+ "fdir": "^6.5.0",
2753
+ "picomatch": "^4.0.3"
2754
+ },
2755
+ "dev": true,
2756
+ "engines": {
2757
+ "node": ">=12.0.0"
2758
+ },
2759
+ "funding": {
2760
+ "url": "https://github.com/sponsors/SuperchupuDev"
2761
+ },
2762
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2763
+ "license": "MIT",
2764
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
2765
+ "version": "0.2.15"
2766
+ },
2767
+ "node_modules/tinyglobby/node_modules/fdir": {
2768
+ "dev": true,
2769
+ "engines": {
2770
+ "node": ">=12.0.0"
2771
+ },
2772
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2773
+ "license": "MIT",
2774
+ "peerDependencies": {
2775
+ "picomatch": "^3 || ^4"
2776
+ },
2777
+ "peerDependenciesMeta": {
2778
+ "picomatch": {
2779
+ "optional": true
2780
+ }
2781
+ },
2782
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2783
+ "version": "6.5.0"
2784
+ },
2785
+ "node_modules/tinyglobby/node_modules/picomatch": {
2786
+ "dev": true,
2787
+ "engines": {
2788
+ "node": ">=12"
2789
+ },
2790
+ "funding": {
2791
+ "url": "https://github.com/sponsors/jonschlinkert"
2792
+ },
2793
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
2794
+ "license": "MIT",
2795
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
2796
+ "version": "4.0.3"
2797
+ },
2798
+ "node_modules/to-regex-range": {
2799
+ "dependencies": {
2800
+ "is-number": "^7.0.0"
2801
+ },
2802
+ "dev": true,
2803
+ "engines": {
2804
+ "node": ">=8.0"
2805
+ },
2806
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2807
+ "license": "MIT",
2808
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2809
+ "version": "5.0.1"
2810
+ },
2811
+ "node_modules/ts-interface-checker": {
2812
+ "dev": true,
2813
+ "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
2814
+ "license": "Apache-2.0",
2815
+ "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
2816
+ "version": "0.1.13"
2817
+ },
2818
+ "node_modules/typescript": {
2819
+ "bin": {
2820
+ "tsc": "bin/tsc",
2821
+ "tsserver": "bin/tsserver"
2822
+ },
2823
+ "dev": true,
2824
+ "engines": {
2825
+ "node": ">=14.17"
2826
+ },
2827
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
2828
+ "license": "Apache-2.0",
2829
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
2830
+ "version": "5.9.3"
2831
+ },
2832
+ "node_modules/update-browserslist-db": {
2833
+ "bin": {
2834
+ "update-browserslist-db": "cli.js"
2835
+ },
2836
+ "dependencies": {
2837
+ "escalade": "^3.2.0",
2838
+ "picocolors": "^1.1.1"
2839
+ },
2840
+ "dev": true,
2841
+ "funding": [
2842
+ {
2843
+ "type": "opencollective",
2844
+ "url": "https://opencollective.com/browserslist"
2845
+ },
2846
+ {
2847
+ "type": "tidelift",
2848
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2849
+ },
2850
+ {
2851
+ "type": "github",
2852
+ "url": "https://github.com/sponsors/ai"
2853
+ }
2854
+ ],
2855
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2856
+ "license": "MIT",
2857
+ "peerDependencies": {
2858
+ "browserslist": ">= 4.21.0"
2859
+ },
2860
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2861
+ "version": "1.2.3"
2862
+ },
2863
+ "node_modules/use-sync-external-store": {
2864
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
2865
+ "license": "MIT",
2866
+ "peerDependencies": {
2867
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
2868
+ },
2869
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
2870
+ "version": "1.6.0"
2871
+ },
2872
+ "node_modules/util-deprecate": {
2873
+ "dev": true,
2874
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2875
+ "license": "MIT",
2876
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2877
+ "version": "1.0.2"
2878
+ },
2879
+ "node_modules/vite": {
2880
+ "bin": {
2881
+ "vite": "bin/vite.js"
2882
+ },
2883
+ "dependencies": {
2884
+ "esbuild": "^0.21.3",
2885
+ "postcss": "^8.4.43",
2886
+ "rollup": "^4.20.0"
2887
+ },
2888
+ "dev": true,
2889
+ "engines": {
2890
+ "node": "^18.0.0 || >=20.0.0"
2891
+ },
2892
+ "funding": {
2893
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2894
+ },
2895
+ "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
2896
+ "license": "MIT",
2897
+ "optionalDependencies": {
2898
+ "fsevents": "~2.3.3"
2899
+ },
2900
+ "peerDependencies": {
2901
+ "@types/node": "^18.0.0 || >=20.0.0",
2902
+ "less": "*",
2903
+ "lightningcss": "^1.21.0",
2904
+ "sass": "*",
2905
+ "sass-embedded": "*",
2906
+ "stylus": "*",
2907
+ "sugarss": "*",
2908
+ "terser": "^5.4.0"
2909
+ },
2910
+ "peerDependenciesMeta": {
2911
+ "@types/node": {
2912
+ "optional": true
2913
+ },
2914
+ "less": {
2915
+ "optional": true
2916
+ },
2917
+ "lightningcss": {
2918
+ "optional": true
2919
+ },
2920
+ "sass": {
2921
+ "optional": true
2922
+ },
2923
+ "sass-embedded": {
2924
+ "optional": true
2925
+ },
2926
+ "stylus": {
2927
+ "optional": true
2928
+ },
2929
+ "sugarss": {
2930
+ "optional": true
2931
+ },
2932
+ "terser": {
2933
+ "optional": true
2934
+ }
2935
+ },
2936
+ "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
2937
+ "version": "5.4.21"
2938
+ },
2939
+ "node_modules/yallist": {
2940
+ "dev": true,
2941
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2942
+ "license": "ISC",
2943
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2944
+ "version": "3.1.1"
2945
+ },
2946
+ "node_modules/yaml": {
2947
+ "bin": {
2948
+ "yaml": "bin.mjs"
2949
+ },
2950
+ "engines": {
2951
+ "node": ">= 14.6"
2952
+ },
2953
+ "funding": {
2954
+ "url": "https://github.com/sponsors/eemeli"
2955
+ },
2956
+ "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
2957
+ "license": "ISC",
2958
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
2959
+ "version": "2.8.2"
2960
+ },
2961
+ "node_modules/zustand": {
2962
+ "dependencies": {
2963
+ "use-sync-external-store": "^1.2.2"
2964
+ },
2965
+ "engines": {
2966
+ "node": ">=12.7.0"
2967
+ },
2968
+ "integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==",
2969
+ "license": "MIT",
2970
+ "peerDependencies": {
2971
+ "@types/react": ">=16.8",
2972
+ "immer": ">=9.0.6",
2973
+ "react": ">=16.8"
2974
+ },
2975
+ "peerDependenciesMeta": {
2976
+ "@types/react": {
2977
+ "optional": true
2978
+ },
2979
+ "immer": {
2980
+ "optional": true
2981
+ },
2982
+ "react": {
2983
+ "optional": true
2984
+ }
2985
+ },
2986
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
2987
+ "version": "4.5.7"
2988
+ }
2989
+ },
2990
+ "requires": true,
2991
+ "version": "0.1.0"
2992
+ }