flowyml 1.1.0__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.
- flowyml/__init__.py +207 -0
- flowyml/assets/__init__.py +22 -0
- flowyml/assets/artifact.py +40 -0
- flowyml/assets/base.py +209 -0
- flowyml/assets/dataset.py +100 -0
- flowyml/assets/featureset.py +301 -0
- flowyml/assets/metrics.py +104 -0
- flowyml/assets/model.py +82 -0
- flowyml/assets/registry.py +157 -0
- flowyml/assets/report.py +315 -0
- flowyml/cli/__init__.py +5 -0
- flowyml/cli/experiment.py +232 -0
- flowyml/cli/init.py +256 -0
- flowyml/cli/main.py +327 -0
- flowyml/cli/run.py +75 -0
- flowyml/cli/stack_cli.py +532 -0
- flowyml/cli/ui.py +33 -0
- flowyml/core/__init__.py +68 -0
- flowyml/core/advanced_cache.py +274 -0
- flowyml/core/approval.py +64 -0
- flowyml/core/cache.py +203 -0
- flowyml/core/checkpoint.py +148 -0
- flowyml/core/conditional.py +373 -0
- flowyml/core/context.py +155 -0
- flowyml/core/error_handling.py +419 -0
- flowyml/core/executor.py +354 -0
- flowyml/core/graph.py +185 -0
- flowyml/core/parallel.py +452 -0
- flowyml/core/pipeline.py +764 -0
- flowyml/core/project.py +253 -0
- flowyml/core/resources.py +424 -0
- flowyml/core/scheduler.py +630 -0
- flowyml/core/scheduler_config.py +32 -0
- flowyml/core/step.py +201 -0
- flowyml/core/step_grouping.py +292 -0
- flowyml/core/templates.py +226 -0
- flowyml/core/versioning.py +217 -0
- flowyml/integrations/__init__.py +1 -0
- flowyml/integrations/keras.py +134 -0
- flowyml/monitoring/__init__.py +1 -0
- flowyml/monitoring/alerts.py +57 -0
- flowyml/monitoring/data.py +102 -0
- flowyml/monitoring/llm.py +160 -0
- flowyml/monitoring/monitor.py +57 -0
- flowyml/monitoring/notifications.py +246 -0
- flowyml/registry/__init__.py +5 -0
- flowyml/registry/model_registry.py +491 -0
- flowyml/registry/pipeline_registry.py +55 -0
- flowyml/stacks/__init__.py +27 -0
- flowyml/stacks/base.py +77 -0
- flowyml/stacks/bridge.py +288 -0
- flowyml/stacks/components.py +155 -0
- flowyml/stacks/gcp.py +499 -0
- flowyml/stacks/local.py +112 -0
- flowyml/stacks/migration.py +97 -0
- flowyml/stacks/plugin_config.py +78 -0
- flowyml/stacks/plugins.py +401 -0
- flowyml/stacks/registry.py +226 -0
- flowyml/storage/__init__.py +26 -0
- flowyml/storage/artifacts.py +246 -0
- flowyml/storage/materializers/__init__.py +20 -0
- flowyml/storage/materializers/base.py +133 -0
- flowyml/storage/materializers/keras.py +185 -0
- flowyml/storage/materializers/numpy.py +94 -0
- flowyml/storage/materializers/pandas.py +142 -0
- flowyml/storage/materializers/pytorch.py +135 -0
- flowyml/storage/materializers/sklearn.py +110 -0
- flowyml/storage/materializers/tensorflow.py +152 -0
- flowyml/storage/metadata.py +931 -0
- flowyml/tracking/__init__.py +1 -0
- flowyml/tracking/experiment.py +211 -0
- flowyml/tracking/leaderboard.py +191 -0
- flowyml/tracking/runs.py +145 -0
- flowyml/ui/__init__.py +15 -0
- flowyml/ui/backend/Dockerfile +31 -0
- flowyml/ui/backend/__init__.py +0 -0
- flowyml/ui/backend/auth.py +163 -0
- flowyml/ui/backend/main.py +187 -0
- flowyml/ui/backend/routers/__init__.py +0 -0
- flowyml/ui/backend/routers/assets.py +45 -0
- flowyml/ui/backend/routers/execution.py +179 -0
- flowyml/ui/backend/routers/experiments.py +49 -0
- flowyml/ui/backend/routers/leaderboard.py +118 -0
- flowyml/ui/backend/routers/notifications.py +72 -0
- flowyml/ui/backend/routers/pipelines.py +110 -0
- flowyml/ui/backend/routers/plugins.py +192 -0
- flowyml/ui/backend/routers/projects.py +85 -0
- flowyml/ui/backend/routers/runs.py +66 -0
- flowyml/ui/backend/routers/schedules.py +222 -0
- flowyml/ui/backend/routers/traces.py +84 -0
- flowyml/ui/frontend/Dockerfile +20 -0
- flowyml/ui/frontend/README.md +315 -0
- flowyml/ui/frontend/dist/assets/index-DFNQnrUj.js +448 -0
- flowyml/ui/frontend/dist/assets/index-pWI271rZ.css +1 -0
- flowyml/ui/frontend/dist/index.html +16 -0
- flowyml/ui/frontend/index.html +15 -0
- flowyml/ui/frontend/nginx.conf +26 -0
- flowyml/ui/frontend/package-lock.json +3545 -0
- flowyml/ui/frontend/package.json +33 -0
- flowyml/ui/frontend/postcss.config.js +6 -0
- flowyml/ui/frontend/src/App.jsx +21 -0
- flowyml/ui/frontend/src/app/assets/page.jsx +397 -0
- flowyml/ui/frontend/src/app/dashboard/page.jsx +295 -0
- flowyml/ui/frontend/src/app/experiments/[experimentId]/page.jsx +255 -0
- flowyml/ui/frontend/src/app/experiments/page.jsx +360 -0
- flowyml/ui/frontend/src/app/leaderboard/page.jsx +133 -0
- flowyml/ui/frontend/src/app/pipelines/page.jsx +454 -0
- flowyml/ui/frontend/src/app/plugins/page.jsx +48 -0
- flowyml/ui/frontend/src/app/projects/page.jsx +292 -0
- flowyml/ui/frontend/src/app/runs/[runId]/page.jsx +682 -0
- flowyml/ui/frontend/src/app/runs/page.jsx +470 -0
- flowyml/ui/frontend/src/app/schedules/page.jsx +585 -0
- flowyml/ui/frontend/src/app/settings/page.jsx +314 -0
- flowyml/ui/frontend/src/app/tokens/page.jsx +456 -0
- flowyml/ui/frontend/src/app/traces/page.jsx +246 -0
- flowyml/ui/frontend/src/components/Layout.jsx +108 -0
- flowyml/ui/frontend/src/components/PipelineGraph.jsx +295 -0
- flowyml/ui/frontend/src/components/header/Header.jsx +72 -0
- flowyml/ui/frontend/src/components/plugins/AddPluginDialog.jsx +121 -0
- flowyml/ui/frontend/src/components/plugins/InstalledPlugins.jsx +124 -0
- flowyml/ui/frontend/src/components/plugins/PluginBrowser.jsx +167 -0
- flowyml/ui/frontend/src/components/plugins/PluginManager.jsx +60 -0
- flowyml/ui/frontend/src/components/sidebar/Sidebar.jsx +145 -0
- flowyml/ui/frontend/src/components/ui/Badge.jsx +26 -0
- flowyml/ui/frontend/src/components/ui/Button.jsx +34 -0
- flowyml/ui/frontend/src/components/ui/Card.jsx +44 -0
- flowyml/ui/frontend/src/components/ui/CodeSnippet.jsx +38 -0
- flowyml/ui/frontend/src/components/ui/CollapsibleCard.jsx +53 -0
- flowyml/ui/frontend/src/components/ui/DataView.jsx +175 -0
- flowyml/ui/frontend/src/components/ui/EmptyState.jsx +49 -0
- flowyml/ui/frontend/src/components/ui/ExecutionStatus.jsx +122 -0
- flowyml/ui/frontend/src/components/ui/KeyValue.jsx +25 -0
- flowyml/ui/frontend/src/components/ui/ProjectSelector.jsx +134 -0
- flowyml/ui/frontend/src/contexts/ProjectContext.jsx +79 -0
- flowyml/ui/frontend/src/contexts/ThemeContext.jsx +54 -0
- flowyml/ui/frontend/src/index.css +11 -0
- flowyml/ui/frontend/src/layouts/MainLayout.jsx +23 -0
- flowyml/ui/frontend/src/main.jsx +10 -0
- flowyml/ui/frontend/src/router/index.jsx +39 -0
- flowyml/ui/frontend/src/services/pluginService.js +90 -0
- flowyml/ui/frontend/src/utils/api.js +47 -0
- flowyml/ui/frontend/src/utils/cn.js +6 -0
- flowyml/ui/frontend/tailwind.config.js +31 -0
- flowyml/ui/frontend/vite.config.js +21 -0
- flowyml/ui/utils.py +77 -0
- flowyml/utils/__init__.py +67 -0
- flowyml/utils/config.py +308 -0
- flowyml/utils/debug.py +240 -0
- flowyml/utils/environment.py +346 -0
- flowyml/utils/git.py +319 -0
- flowyml/utils/logging.py +61 -0
- flowyml/utils/performance.py +314 -0
- flowyml/utils/stack_config.py +296 -0
- flowyml/utils/validation.py +270 -0
- flowyml-1.1.0.dist-info/METADATA +372 -0
- flowyml-1.1.0.dist-info/RECORD +159 -0
- flowyml-1.1.0.dist-info/WHEEL +4 -0
- flowyml-1.1.0.dist-info/entry_points.txt +3 -0
- flowyml-1.1.0.dist-info/licenses/LICENSE +17 -0
|
@@ -0,0 +1,3545 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 3,
|
|
3
|
+
"name": "flowy-ui",
|
|
4
|
+
"packages": {
|
|
5
|
+
"": {
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"clsx": "^2.1.1",
|
|
8
|
+
"dagre": "^0.8.5",
|
|
9
|
+
"date-fns": "^4.1.0",
|
|
10
|
+
"framer-motion": "^12.23.24",
|
|
11
|
+
"lucide-react": "^0.344.0",
|
|
12
|
+
"react": "^18.2.0",
|
|
13
|
+
"react-dom": "^18.2.0",
|
|
14
|
+
"react-router-dom": "^6.22.0",
|
|
15
|
+
"reactflow": "^11.11.4",
|
|
16
|
+
"recharts": "^2.12.0",
|
|
17
|
+
"tailwind-merge": "^2.6.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/react": "^18.2.64",
|
|
21
|
+
"@types/react-dom": "^18.2.21",
|
|
22
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
23
|
+
"autoprefixer": "^10.4.18",
|
|
24
|
+
"postcss": "^8.4.35",
|
|
25
|
+
"tailwindcss": "^3.4.1",
|
|
26
|
+
"vite": "^5.1.6"
|
|
27
|
+
},
|
|
28
|
+
"name": "flowy-ui",
|
|
29
|
+
"version": "0.1.0"
|
|
30
|
+
},
|
|
31
|
+
"node_modules/@alloc/quick-lru": {
|
|
32
|
+
"dev": true,
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=10"
|
|
35
|
+
},
|
|
36
|
+
"funding": {
|
|
37
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
38
|
+
},
|
|
39
|
+
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
|
42
|
+
"version": "5.2.0"
|
|
43
|
+
},
|
|
44
|
+
"node_modules/@babel/code-frame": {
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
47
|
+
"js-tokens": "^4.0.0",
|
|
48
|
+
"picocolors": "^1.1.1"
|
|
49
|
+
},
|
|
50
|
+
"dev": true,
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=6.9.0"
|
|
53
|
+
},
|
|
54
|
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
|
55
|
+
"license": "MIT",
|
|
56
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
57
|
+
"version": "7.27.1"
|
|
58
|
+
},
|
|
59
|
+
"node_modules/@babel/compat-data": {
|
|
60
|
+
"dev": true,
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=6.9.0"
|
|
63
|
+
},
|
|
64
|
+
"integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
|
|
67
|
+
"version": "7.28.5"
|
|
68
|
+
},
|
|
69
|
+
"node_modules/@babel/core": {
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@babel/code-frame": "^7.27.1",
|
|
72
|
+
"@babel/generator": "^7.28.5",
|
|
73
|
+
"@babel/helper-compilation-targets": "^7.27.2",
|
|
74
|
+
"@babel/helper-module-transforms": "^7.28.3",
|
|
75
|
+
"@babel/helpers": "^7.28.4",
|
|
76
|
+
"@babel/parser": "^7.28.5",
|
|
77
|
+
"@babel/template": "^7.27.2",
|
|
78
|
+
"@babel/traverse": "^7.28.5",
|
|
79
|
+
"@babel/types": "^7.28.5",
|
|
80
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
81
|
+
"convert-source-map": "^2.0.0",
|
|
82
|
+
"debug": "^4.1.0",
|
|
83
|
+
"gensync": "^1.0.0-beta.2",
|
|
84
|
+
"json5": "^2.2.3",
|
|
85
|
+
"semver": "^6.3.1"
|
|
86
|
+
},
|
|
87
|
+
"dev": true,
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": ">=6.9.0"
|
|
90
|
+
},
|
|
91
|
+
"funding": {
|
|
92
|
+
"type": "opencollective",
|
|
93
|
+
"url": "https://opencollective.com/babel"
|
|
94
|
+
},
|
|
95
|
+
"integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
|
|
96
|
+
"license": "MIT",
|
|
97
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
|
|
98
|
+
"version": "7.28.5"
|
|
99
|
+
},
|
|
100
|
+
"node_modules/@babel/generator": {
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"@babel/parser": "^7.28.5",
|
|
103
|
+
"@babel/types": "^7.28.5",
|
|
104
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
105
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
106
|
+
"jsesc": "^3.0.2"
|
|
107
|
+
},
|
|
108
|
+
"dev": true,
|
|
109
|
+
"engines": {
|
|
110
|
+
"node": ">=6.9.0"
|
|
111
|
+
},
|
|
112
|
+
"integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
|
|
113
|
+
"license": "MIT",
|
|
114
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
|
|
115
|
+
"version": "7.28.5"
|
|
116
|
+
},
|
|
117
|
+
"node_modules/@babel/helper-compilation-targets": {
|
|
118
|
+
"dependencies": {
|
|
119
|
+
"@babel/compat-data": "^7.27.2",
|
|
120
|
+
"@babel/helper-validator-option": "^7.27.1",
|
|
121
|
+
"browserslist": "^4.24.0",
|
|
122
|
+
"lru-cache": "^5.1.1",
|
|
123
|
+
"semver": "^6.3.1"
|
|
124
|
+
},
|
|
125
|
+
"dev": true,
|
|
126
|
+
"engines": {
|
|
127
|
+
"node": ">=6.9.0"
|
|
128
|
+
},
|
|
129
|
+
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
|
|
130
|
+
"license": "MIT",
|
|
131
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
|
|
132
|
+
"version": "7.27.2"
|
|
133
|
+
},
|
|
134
|
+
"node_modules/@babel/helper-globals": {
|
|
135
|
+
"dev": true,
|
|
136
|
+
"engines": {
|
|
137
|
+
"node": ">=6.9.0"
|
|
138
|
+
},
|
|
139
|
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
|
140
|
+
"license": "MIT",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
|
142
|
+
"version": "7.28.0"
|
|
143
|
+
},
|
|
144
|
+
"node_modules/@babel/helper-module-imports": {
|
|
145
|
+
"dependencies": {
|
|
146
|
+
"@babel/traverse": "^7.27.1",
|
|
147
|
+
"@babel/types": "^7.27.1"
|
|
148
|
+
},
|
|
149
|
+
"dev": true,
|
|
150
|
+
"engines": {
|
|
151
|
+
"node": ">=6.9.0"
|
|
152
|
+
},
|
|
153
|
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
|
154
|
+
"license": "MIT",
|
|
155
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
|
156
|
+
"version": "7.27.1"
|
|
157
|
+
},
|
|
158
|
+
"node_modules/@babel/helper-module-transforms": {
|
|
159
|
+
"dependencies": {
|
|
160
|
+
"@babel/helper-module-imports": "^7.27.1",
|
|
161
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
162
|
+
"@babel/traverse": "^7.28.3"
|
|
163
|
+
},
|
|
164
|
+
"dev": true,
|
|
165
|
+
"engines": {
|
|
166
|
+
"node": ">=6.9.0"
|
|
167
|
+
},
|
|
168
|
+
"integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
|
|
169
|
+
"license": "MIT",
|
|
170
|
+
"peerDependencies": {
|
|
171
|
+
"@babel/core": "^7.0.0"
|
|
172
|
+
},
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
|
|
174
|
+
"version": "7.28.3"
|
|
175
|
+
},
|
|
176
|
+
"node_modules/@babel/helper-plugin-utils": {
|
|
177
|
+
"dev": true,
|
|
178
|
+
"engines": {
|
|
179
|
+
"node": ">=6.9.0"
|
|
180
|
+
},
|
|
181
|
+
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
|
|
182
|
+
"license": "MIT",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
|
|
184
|
+
"version": "7.27.1"
|
|
185
|
+
},
|
|
186
|
+
"node_modules/@babel/helper-string-parser": {
|
|
187
|
+
"dev": true,
|
|
188
|
+
"engines": {
|
|
189
|
+
"node": ">=6.9.0"
|
|
190
|
+
},
|
|
191
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
192
|
+
"license": "MIT",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
194
|
+
"version": "7.27.1"
|
|
195
|
+
},
|
|
196
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
197
|
+
"dev": true,
|
|
198
|
+
"engines": {
|
|
199
|
+
"node": ">=6.9.0"
|
|
200
|
+
},
|
|
201
|
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
|
202
|
+
"license": "MIT",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
|
204
|
+
"version": "7.28.5"
|
|
205
|
+
},
|
|
206
|
+
"node_modules/@babel/helper-validator-option": {
|
|
207
|
+
"dev": true,
|
|
208
|
+
"engines": {
|
|
209
|
+
"node": ">=6.9.0"
|
|
210
|
+
},
|
|
211
|
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
|
212
|
+
"license": "MIT",
|
|
213
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
|
214
|
+
"version": "7.27.1"
|
|
215
|
+
},
|
|
216
|
+
"node_modules/@babel/helpers": {
|
|
217
|
+
"dependencies": {
|
|
218
|
+
"@babel/template": "^7.27.2",
|
|
219
|
+
"@babel/types": "^7.28.4"
|
|
220
|
+
},
|
|
221
|
+
"dev": true,
|
|
222
|
+
"engines": {
|
|
223
|
+
"node": ">=6.9.0"
|
|
224
|
+
},
|
|
225
|
+
"integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
|
|
226
|
+
"license": "MIT",
|
|
227
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
|
|
228
|
+
"version": "7.28.4"
|
|
229
|
+
},
|
|
230
|
+
"node_modules/@babel/parser": {
|
|
231
|
+
"bin": {
|
|
232
|
+
"parser": "bin/babel-parser.js"
|
|
233
|
+
},
|
|
234
|
+
"dependencies": {
|
|
235
|
+
"@babel/types": "^7.28.5"
|
|
236
|
+
},
|
|
237
|
+
"dev": true,
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=6.0.0"
|
|
240
|
+
},
|
|
241
|
+
"integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
|
|
242
|
+
"license": "MIT",
|
|
243
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
|
|
244
|
+
"version": "7.28.5"
|
|
245
|
+
},
|
|
246
|
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
|
247
|
+
"dependencies": {
|
|
248
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
249
|
+
},
|
|
250
|
+
"dev": true,
|
|
251
|
+
"engines": {
|
|
252
|
+
"node": ">=6.9.0"
|
|
253
|
+
},
|
|
254
|
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
|
255
|
+
"license": "MIT",
|
|
256
|
+
"peerDependencies": {
|
|
257
|
+
"@babel/core": "^7.0.0-0"
|
|
258
|
+
},
|
|
259
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
|
260
|
+
"version": "7.27.1"
|
|
261
|
+
},
|
|
262
|
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
|
263
|
+
"dependencies": {
|
|
264
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
265
|
+
},
|
|
266
|
+
"dev": true,
|
|
267
|
+
"engines": {
|
|
268
|
+
"node": ">=6.9.0"
|
|
269
|
+
},
|
|
270
|
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"peerDependencies": {
|
|
273
|
+
"@babel/core": "^7.0.0-0"
|
|
274
|
+
},
|
|
275
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
|
276
|
+
"version": "7.27.1"
|
|
277
|
+
},
|
|
278
|
+
"node_modules/@babel/runtime": {
|
|
279
|
+
"engines": {
|
|
280
|
+
"node": ">=6.9.0"
|
|
281
|
+
},
|
|
282
|
+
"integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
|
|
283
|
+
"license": "MIT",
|
|
284
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
|
|
285
|
+
"version": "7.28.4"
|
|
286
|
+
},
|
|
287
|
+
"node_modules/@babel/template": {
|
|
288
|
+
"dependencies": {
|
|
289
|
+
"@babel/code-frame": "^7.27.1",
|
|
290
|
+
"@babel/parser": "^7.27.2",
|
|
291
|
+
"@babel/types": "^7.27.1"
|
|
292
|
+
},
|
|
293
|
+
"dev": true,
|
|
294
|
+
"engines": {
|
|
295
|
+
"node": ">=6.9.0"
|
|
296
|
+
},
|
|
297
|
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
|
298
|
+
"license": "MIT",
|
|
299
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
|
300
|
+
"version": "7.27.2"
|
|
301
|
+
},
|
|
302
|
+
"node_modules/@babel/traverse": {
|
|
303
|
+
"dependencies": {
|
|
304
|
+
"@babel/code-frame": "^7.27.1",
|
|
305
|
+
"@babel/generator": "^7.28.5",
|
|
306
|
+
"@babel/helper-globals": "^7.28.0",
|
|
307
|
+
"@babel/parser": "^7.28.5",
|
|
308
|
+
"@babel/template": "^7.27.2",
|
|
309
|
+
"@babel/types": "^7.28.5",
|
|
310
|
+
"debug": "^4.3.1"
|
|
311
|
+
},
|
|
312
|
+
"dev": true,
|
|
313
|
+
"engines": {
|
|
314
|
+
"node": ">=6.9.0"
|
|
315
|
+
},
|
|
316
|
+
"integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
|
|
317
|
+
"license": "MIT",
|
|
318
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
|
|
319
|
+
"version": "7.28.5"
|
|
320
|
+
},
|
|
321
|
+
"node_modules/@babel/types": {
|
|
322
|
+
"dependencies": {
|
|
323
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
324
|
+
"@babel/helper-validator-identifier": "^7.28.5"
|
|
325
|
+
},
|
|
326
|
+
"dev": true,
|
|
327
|
+
"engines": {
|
|
328
|
+
"node": ">=6.9.0"
|
|
329
|
+
},
|
|
330
|
+
"integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
|
|
331
|
+
"license": "MIT",
|
|
332
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
|
|
333
|
+
"version": "7.28.5"
|
|
334
|
+
},
|
|
335
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
336
|
+
"cpu": [
|
|
337
|
+
"ppc64"
|
|
338
|
+
],
|
|
339
|
+
"dev": true,
|
|
340
|
+
"engines": {
|
|
341
|
+
"node": ">=12"
|
|
342
|
+
},
|
|
343
|
+
"integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
|
|
344
|
+
"license": "MIT",
|
|
345
|
+
"optional": true,
|
|
346
|
+
"os": [
|
|
347
|
+
"aix"
|
|
348
|
+
],
|
|
349
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
|
|
350
|
+
"version": "0.21.5"
|
|
351
|
+
},
|
|
352
|
+
"node_modules/@esbuild/android-arm": {
|
|
353
|
+
"cpu": [
|
|
354
|
+
"arm"
|
|
355
|
+
],
|
|
356
|
+
"dev": true,
|
|
357
|
+
"engines": {
|
|
358
|
+
"node": ">=12"
|
|
359
|
+
},
|
|
360
|
+
"integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
|
|
361
|
+
"license": "MIT",
|
|
362
|
+
"optional": true,
|
|
363
|
+
"os": [
|
|
364
|
+
"android"
|
|
365
|
+
],
|
|
366
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
|
|
367
|
+
"version": "0.21.5"
|
|
368
|
+
},
|
|
369
|
+
"node_modules/@esbuild/android-arm64": {
|
|
370
|
+
"cpu": [
|
|
371
|
+
"arm64"
|
|
372
|
+
],
|
|
373
|
+
"dev": true,
|
|
374
|
+
"engines": {
|
|
375
|
+
"node": ">=12"
|
|
376
|
+
},
|
|
377
|
+
"integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
|
|
378
|
+
"license": "MIT",
|
|
379
|
+
"optional": true,
|
|
380
|
+
"os": [
|
|
381
|
+
"android"
|
|
382
|
+
],
|
|
383
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
|
|
384
|
+
"version": "0.21.5"
|
|
385
|
+
},
|
|
386
|
+
"node_modules/@esbuild/android-x64": {
|
|
387
|
+
"cpu": [
|
|
388
|
+
"x64"
|
|
389
|
+
],
|
|
390
|
+
"dev": true,
|
|
391
|
+
"engines": {
|
|
392
|
+
"node": ">=12"
|
|
393
|
+
},
|
|
394
|
+
"integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
|
|
395
|
+
"license": "MIT",
|
|
396
|
+
"optional": true,
|
|
397
|
+
"os": [
|
|
398
|
+
"android"
|
|
399
|
+
],
|
|
400
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
|
|
401
|
+
"version": "0.21.5"
|
|
402
|
+
},
|
|
403
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
404
|
+
"cpu": [
|
|
405
|
+
"arm64"
|
|
406
|
+
],
|
|
407
|
+
"dev": true,
|
|
408
|
+
"engines": {
|
|
409
|
+
"node": ">=12"
|
|
410
|
+
},
|
|
411
|
+
"integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
|
|
412
|
+
"license": "MIT",
|
|
413
|
+
"optional": true,
|
|
414
|
+
"os": [
|
|
415
|
+
"darwin"
|
|
416
|
+
],
|
|
417
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
|
|
418
|
+
"version": "0.21.5"
|
|
419
|
+
},
|
|
420
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
421
|
+
"cpu": [
|
|
422
|
+
"x64"
|
|
423
|
+
],
|
|
424
|
+
"dev": true,
|
|
425
|
+
"engines": {
|
|
426
|
+
"node": ">=12"
|
|
427
|
+
},
|
|
428
|
+
"integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
|
|
429
|
+
"license": "MIT",
|
|
430
|
+
"optional": true,
|
|
431
|
+
"os": [
|
|
432
|
+
"darwin"
|
|
433
|
+
],
|
|
434
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
|
|
435
|
+
"version": "0.21.5"
|
|
436
|
+
},
|
|
437
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
438
|
+
"cpu": [
|
|
439
|
+
"arm64"
|
|
440
|
+
],
|
|
441
|
+
"dev": true,
|
|
442
|
+
"engines": {
|
|
443
|
+
"node": ">=12"
|
|
444
|
+
},
|
|
445
|
+
"integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
|
|
446
|
+
"license": "MIT",
|
|
447
|
+
"optional": true,
|
|
448
|
+
"os": [
|
|
449
|
+
"freebsd"
|
|
450
|
+
],
|
|
451
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
|
|
452
|
+
"version": "0.21.5"
|
|
453
|
+
},
|
|
454
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
455
|
+
"cpu": [
|
|
456
|
+
"x64"
|
|
457
|
+
],
|
|
458
|
+
"dev": true,
|
|
459
|
+
"engines": {
|
|
460
|
+
"node": ">=12"
|
|
461
|
+
},
|
|
462
|
+
"integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
|
|
463
|
+
"license": "MIT",
|
|
464
|
+
"optional": true,
|
|
465
|
+
"os": [
|
|
466
|
+
"freebsd"
|
|
467
|
+
],
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
|
|
469
|
+
"version": "0.21.5"
|
|
470
|
+
},
|
|
471
|
+
"node_modules/@esbuild/linux-arm": {
|
|
472
|
+
"cpu": [
|
|
473
|
+
"arm"
|
|
474
|
+
],
|
|
475
|
+
"dev": true,
|
|
476
|
+
"engines": {
|
|
477
|
+
"node": ">=12"
|
|
478
|
+
},
|
|
479
|
+
"integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
|
|
480
|
+
"license": "MIT",
|
|
481
|
+
"optional": true,
|
|
482
|
+
"os": [
|
|
483
|
+
"linux"
|
|
484
|
+
],
|
|
485
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
|
|
486
|
+
"version": "0.21.5"
|
|
487
|
+
},
|
|
488
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
489
|
+
"cpu": [
|
|
490
|
+
"arm64"
|
|
491
|
+
],
|
|
492
|
+
"dev": true,
|
|
493
|
+
"engines": {
|
|
494
|
+
"node": ">=12"
|
|
495
|
+
},
|
|
496
|
+
"integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
|
|
497
|
+
"license": "MIT",
|
|
498
|
+
"optional": true,
|
|
499
|
+
"os": [
|
|
500
|
+
"linux"
|
|
501
|
+
],
|
|
502
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
|
|
503
|
+
"version": "0.21.5"
|
|
504
|
+
},
|
|
505
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
506
|
+
"cpu": [
|
|
507
|
+
"ia32"
|
|
508
|
+
],
|
|
509
|
+
"dev": true,
|
|
510
|
+
"engines": {
|
|
511
|
+
"node": ">=12"
|
|
512
|
+
},
|
|
513
|
+
"integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
|
|
514
|
+
"license": "MIT",
|
|
515
|
+
"optional": true,
|
|
516
|
+
"os": [
|
|
517
|
+
"linux"
|
|
518
|
+
],
|
|
519
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
|
|
520
|
+
"version": "0.21.5"
|
|
521
|
+
},
|
|
522
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
523
|
+
"cpu": [
|
|
524
|
+
"loong64"
|
|
525
|
+
],
|
|
526
|
+
"dev": true,
|
|
527
|
+
"engines": {
|
|
528
|
+
"node": ">=12"
|
|
529
|
+
},
|
|
530
|
+
"integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
|
|
531
|
+
"license": "MIT",
|
|
532
|
+
"optional": true,
|
|
533
|
+
"os": [
|
|
534
|
+
"linux"
|
|
535
|
+
],
|
|
536
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
|
|
537
|
+
"version": "0.21.5"
|
|
538
|
+
},
|
|
539
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
540
|
+
"cpu": [
|
|
541
|
+
"mips64el"
|
|
542
|
+
],
|
|
543
|
+
"dev": true,
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">=12"
|
|
546
|
+
},
|
|
547
|
+
"integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
|
|
548
|
+
"license": "MIT",
|
|
549
|
+
"optional": true,
|
|
550
|
+
"os": [
|
|
551
|
+
"linux"
|
|
552
|
+
],
|
|
553
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
|
|
554
|
+
"version": "0.21.5"
|
|
555
|
+
},
|
|
556
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
557
|
+
"cpu": [
|
|
558
|
+
"ppc64"
|
|
559
|
+
],
|
|
560
|
+
"dev": true,
|
|
561
|
+
"engines": {
|
|
562
|
+
"node": ">=12"
|
|
563
|
+
},
|
|
564
|
+
"integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
|
|
565
|
+
"license": "MIT",
|
|
566
|
+
"optional": true,
|
|
567
|
+
"os": [
|
|
568
|
+
"linux"
|
|
569
|
+
],
|
|
570
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
|
|
571
|
+
"version": "0.21.5"
|
|
572
|
+
},
|
|
573
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
574
|
+
"cpu": [
|
|
575
|
+
"riscv64"
|
|
576
|
+
],
|
|
577
|
+
"dev": true,
|
|
578
|
+
"engines": {
|
|
579
|
+
"node": ">=12"
|
|
580
|
+
},
|
|
581
|
+
"integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
|
|
582
|
+
"license": "MIT",
|
|
583
|
+
"optional": true,
|
|
584
|
+
"os": [
|
|
585
|
+
"linux"
|
|
586
|
+
],
|
|
587
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
|
|
588
|
+
"version": "0.21.5"
|
|
589
|
+
},
|
|
590
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
591
|
+
"cpu": [
|
|
592
|
+
"s390x"
|
|
593
|
+
],
|
|
594
|
+
"dev": true,
|
|
595
|
+
"engines": {
|
|
596
|
+
"node": ">=12"
|
|
597
|
+
},
|
|
598
|
+
"integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
|
|
599
|
+
"license": "MIT",
|
|
600
|
+
"optional": true,
|
|
601
|
+
"os": [
|
|
602
|
+
"linux"
|
|
603
|
+
],
|
|
604
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
|
|
605
|
+
"version": "0.21.5"
|
|
606
|
+
},
|
|
607
|
+
"node_modules/@esbuild/linux-x64": {
|
|
608
|
+
"cpu": [
|
|
609
|
+
"x64"
|
|
610
|
+
],
|
|
611
|
+
"dev": true,
|
|
612
|
+
"engines": {
|
|
613
|
+
"node": ">=12"
|
|
614
|
+
},
|
|
615
|
+
"integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
|
|
616
|
+
"license": "MIT",
|
|
617
|
+
"optional": true,
|
|
618
|
+
"os": [
|
|
619
|
+
"linux"
|
|
620
|
+
],
|
|
621
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
|
|
622
|
+
"version": "0.21.5"
|
|
623
|
+
},
|
|
624
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
625
|
+
"cpu": [
|
|
626
|
+
"x64"
|
|
627
|
+
],
|
|
628
|
+
"dev": true,
|
|
629
|
+
"engines": {
|
|
630
|
+
"node": ">=12"
|
|
631
|
+
},
|
|
632
|
+
"integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
|
|
633
|
+
"license": "MIT",
|
|
634
|
+
"optional": true,
|
|
635
|
+
"os": [
|
|
636
|
+
"netbsd"
|
|
637
|
+
],
|
|
638
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
|
|
639
|
+
"version": "0.21.5"
|
|
640
|
+
},
|
|
641
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
642
|
+
"cpu": [
|
|
643
|
+
"x64"
|
|
644
|
+
],
|
|
645
|
+
"dev": true,
|
|
646
|
+
"engines": {
|
|
647
|
+
"node": ">=12"
|
|
648
|
+
},
|
|
649
|
+
"integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
|
|
650
|
+
"license": "MIT",
|
|
651
|
+
"optional": true,
|
|
652
|
+
"os": [
|
|
653
|
+
"openbsd"
|
|
654
|
+
],
|
|
655
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
|
|
656
|
+
"version": "0.21.5"
|
|
657
|
+
},
|
|
658
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
659
|
+
"cpu": [
|
|
660
|
+
"x64"
|
|
661
|
+
],
|
|
662
|
+
"dev": true,
|
|
663
|
+
"engines": {
|
|
664
|
+
"node": ">=12"
|
|
665
|
+
},
|
|
666
|
+
"integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
|
|
667
|
+
"license": "MIT",
|
|
668
|
+
"optional": true,
|
|
669
|
+
"os": [
|
|
670
|
+
"sunos"
|
|
671
|
+
],
|
|
672
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
|
|
673
|
+
"version": "0.21.5"
|
|
674
|
+
},
|
|
675
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
676
|
+
"cpu": [
|
|
677
|
+
"arm64"
|
|
678
|
+
],
|
|
679
|
+
"dev": true,
|
|
680
|
+
"engines": {
|
|
681
|
+
"node": ">=12"
|
|
682
|
+
},
|
|
683
|
+
"integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
|
|
684
|
+
"license": "MIT",
|
|
685
|
+
"optional": true,
|
|
686
|
+
"os": [
|
|
687
|
+
"win32"
|
|
688
|
+
],
|
|
689
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
|
|
690
|
+
"version": "0.21.5"
|
|
691
|
+
},
|
|
692
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
693
|
+
"cpu": [
|
|
694
|
+
"ia32"
|
|
695
|
+
],
|
|
696
|
+
"dev": true,
|
|
697
|
+
"engines": {
|
|
698
|
+
"node": ">=12"
|
|
699
|
+
},
|
|
700
|
+
"integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
|
|
701
|
+
"license": "MIT",
|
|
702
|
+
"optional": true,
|
|
703
|
+
"os": [
|
|
704
|
+
"win32"
|
|
705
|
+
],
|
|
706
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
|
|
707
|
+
"version": "0.21.5"
|
|
708
|
+
},
|
|
709
|
+
"node_modules/@esbuild/win32-x64": {
|
|
710
|
+
"cpu": [
|
|
711
|
+
"x64"
|
|
712
|
+
],
|
|
713
|
+
"dev": true,
|
|
714
|
+
"engines": {
|
|
715
|
+
"node": ">=12"
|
|
716
|
+
},
|
|
717
|
+
"integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
|
|
718
|
+
"license": "MIT",
|
|
719
|
+
"optional": true,
|
|
720
|
+
"os": [
|
|
721
|
+
"win32"
|
|
722
|
+
],
|
|
723
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
|
|
724
|
+
"version": "0.21.5"
|
|
725
|
+
},
|
|
726
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
727
|
+
"dependencies": {
|
|
728
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
729
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
730
|
+
},
|
|
731
|
+
"dev": true,
|
|
732
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
733
|
+
"license": "MIT",
|
|
734
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
735
|
+
"version": "0.3.13"
|
|
736
|
+
},
|
|
737
|
+
"node_modules/@jridgewell/remapping": {
|
|
738
|
+
"dependencies": {
|
|
739
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
740
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
741
|
+
},
|
|
742
|
+
"dev": true,
|
|
743
|
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
744
|
+
"license": "MIT",
|
|
745
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
746
|
+
"version": "2.3.5"
|
|
747
|
+
},
|
|
748
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
749
|
+
"dev": true,
|
|
750
|
+
"engines": {
|
|
751
|
+
"node": ">=6.0.0"
|
|
752
|
+
},
|
|
753
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
754
|
+
"license": "MIT",
|
|
755
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
756
|
+
"version": "3.1.2"
|
|
757
|
+
},
|
|
758
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
759
|
+
"dev": true,
|
|
760
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
761
|
+
"license": "MIT",
|
|
762
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
763
|
+
"version": "1.5.5"
|
|
764
|
+
},
|
|
765
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
766
|
+
"dependencies": {
|
|
767
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
768
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
769
|
+
},
|
|
770
|
+
"dev": true,
|
|
771
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
772
|
+
"license": "MIT",
|
|
773
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
774
|
+
"version": "0.3.31"
|
|
775
|
+
},
|
|
776
|
+
"node_modules/@nodelib/fs.scandir": {
|
|
777
|
+
"dependencies": {
|
|
778
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
779
|
+
"run-parallel": "^1.1.9"
|
|
780
|
+
},
|
|
781
|
+
"dev": true,
|
|
782
|
+
"engines": {
|
|
783
|
+
"node": ">= 8"
|
|
784
|
+
},
|
|
785
|
+
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
|
786
|
+
"license": "MIT",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
788
|
+
"version": "2.1.5"
|
|
789
|
+
},
|
|
790
|
+
"node_modules/@nodelib/fs.stat": {
|
|
791
|
+
"dev": true,
|
|
792
|
+
"engines": {
|
|
793
|
+
"node": ">= 8"
|
|
794
|
+
},
|
|
795
|
+
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
|
|
796
|
+
"license": "MIT",
|
|
797
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
|
798
|
+
"version": "2.0.5"
|
|
799
|
+
},
|
|
800
|
+
"node_modules/@nodelib/fs.walk": {
|
|
801
|
+
"dependencies": {
|
|
802
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
803
|
+
"fastq": "^1.6.0"
|
|
804
|
+
},
|
|
805
|
+
"dev": true,
|
|
806
|
+
"engines": {
|
|
807
|
+
"node": ">= 8"
|
|
808
|
+
},
|
|
809
|
+
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
|
810
|
+
"license": "MIT",
|
|
811
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
|
812
|
+
"version": "1.2.8"
|
|
813
|
+
},
|
|
814
|
+
"node_modules/@reactflow/background": {
|
|
815
|
+
"dependencies": {
|
|
816
|
+
"@reactflow/core": "11.11.4",
|
|
817
|
+
"classcat": "^5.0.3",
|
|
818
|
+
"zustand": "^4.4.1"
|
|
819
|
+
},
|
|
820
|
+
"integrity": "sha512-Gewd7blEVT5Lh6jqrvOgd4G6Qk17eGKQfsDXgyRSqM+CTwDqRldG2LsWN4sNeno6sbqVIC2fZ+rAUBFA9ZEUDA==",
|
|
821
|
+
"license": "MIT",
|
|
822
|
+
"peerDependencies": {
|
|
823
|
+
"react": ">=17",
|
|
824
|
+
"react-dom": ">=17"
|
|
825
|
+
},
|
|
826
|
+
"resolved": "https://registry.npmjs.org/@reactflow/background/-/background-11.3.14.tgz",
|
|
827
|
+
"version": "11.3.14"
|
|
828
|
+
},
|
|
829
|
+
"node_modules/@reactflow/controls": {
|
|
830
|
+
"dependencies": {
|
|
831
|
+
"@reactflow/core": "11.11.4",
|
|
832
|
+
"classcat": "^5.0.3",
|
|
833
|
+
"zustand": "^4.4.1"
|
|
834
|
+
},
|
|
835
|
+
"integrity": "sha512-MiJp5VldFD7FrqaBNIrQ85dxChrG6ivuZ+dcFhPQUwOK3HfYgX2RHdBua+gx+40p5Vw5It3dVNp/my4Z3jF0dw==",
|
|
836
|
+
"license": "MIT",
|
|
837
|
+
"peerDependencies": {
|
|
838
|
+
"react": ">=17",
|
|
839
|
+
"react-dom": ">=17"
|
|
840
|
+
},
|
|
841
|
+
"resolved": "https://registry.npmjs.org/@reactflow/controls/-/controls-11.2.14.tgz",
|
|
842
|
+
"version": "11.2.14"
|
|
843
|
+
},
|
|
844
|
+
"node_modules/@reactflow/core": {
|
|
845
|
+
"dependencies": {
|
|
846
|
+
"@types/d3": "^7.4.0",
|
|
847
|
+
"@types/d3-drag": "^3.0.1",
|
|
848
|
+
"@types/d3-selection": "^3.0.3",
|
|
849
|
+
"@types/d3-zoom": "^3.0.1",
|
|
850
|
+
"classcat": "^5.0.3",
|
|
851
|
+
"d3-drag": "^3.0.0",
|
|
852
|
+
"d3-selection": "^3.0.0",
|
|
853
|
+
"d3-zoom": "^3.0.0",
|
|
854
|
+
"zustand": "^4.4.1"
|
|
855
|
+
},
|
|
856
|
+
"integrity": "sha512-H4vODklsjAq3AMq6Np4LE12i1I4Ta9PrDHuBR9GmL8uzTt2l2jh4CiQbEMpvMDcp7xi4be0hgXj+Ysodde/i7Q==",
|
|
857
|
+
"license": "MIT",
|
|
858
|
+
"peerDependencies": {
|
|
859
|
+
"react": ">=17",
|
|
860
|
+
"react-dom": ">=17"
|
|
861
|
+
},
|
|
862
|
+
"resolved": "https://registry.npmjs.org/@reactflow/core/-/core-11.11.4.tgz",
|
|
863
|
+
"version": "11.11.4"
|
|
864
|
+
},
|
|
865
|
+
"node_modules/@reactflow/minimap": {
|
|
866
|
+
"dependencies": {
|
|
867
|
+
"@reactflow/core": "11.11.4",
|
|
868
|
+
"@types/d3-selection": "^3.0.3",
|
|
869
|
+
"@types/d3-zoom": "^3.0.1",
|
|
870
|
+
"classcat": "^5.0.3",
|
|
871
|
+
"d3-selection": "^3.0.0",
|
|
872
|
+
"d3-zoom": "^3.0.0",
|
|
873
|
+
"zustand": "^4.4.1"
|
|
874
|
+
},
|
|
875
|
+
"integrity": "sha512-mpwLKKrEAofgFJdkhwR5UQ1JYWlcAAL/ZU/bctBkuNTT1yqV+y0buoNVImsRehVYhJwffSWeSHaBR5/GJjlCSQ==",
|
|
876
|
+
"license": "MIT",
|
|
877
|
+
"peerDependencies": {
|
|
878
|
+
"react": ">=17",
|
|
879
|
+
"react-dom": ">=17"
|
|
880
|
+
},
|
|
881
|
+
"resolved": "https://registry.npmjs.org/@reactflow/minimap/-/minimap-11.7.14.tgz",
|
|
882
|
+
"version": "11.7.14"
|
|
883
|
+
},
|
|
884
|
+
"node_modules/@reactflow/node-resizer": {
|
|
885
|
+
"dependencies": {
|
|
886
|
+
"@reactflow/core": "11.11.4",
|
|
887
|
+
"classcat": "^5.0.4",
|
|
888
|
+
"d3-drag": "^3.0.0",
|
|
889
|
+
"d3-selection": "^3.0.0",
|
|
890
|
+
"zustand": "^4.4.1"
|
|
891
|
+
},
|
|
892
|
+
"integrity": "sha512-fwqnks83jUlYr6OHcdFEedumWKChTHRGw/kbCxj0oqBd+ekfs+SIp4ddyNU0pdx96JIm5iNFS0oNrmEiJbbSaA==",
|
|
893
|
+
"license": "MIT",
|
|
894
|
+
"peerDependencies": {
|
|
895
|
+
"react": ">=17",
|
|
896
|
+
"react-dom": ">=17"
|
|
897
|
+
},
|
|
898
|
+
"resolved": "https://registry.npmjs.org/@reactflow/node-resizer/-/node-resizer-2.2.14.tgz",
|
|
899
|
+
"version": "2.2.14"
|
|
900
|
+
},
|
|
901
|
+
"node_modules/@reactflow/node-toolbar": {
|
|
902
|
+
"dependencies": {
|
|
903
|
+
"@reactflow/core": "11.11.4",
|
|
904
|
+
"classcat": "^5.0.3",
|
|
905
|
+
"zustand": "^4.4.1"
|
|
906
|
+
},
|
|
907
|
+
"integrity": "sha512-rbynXQnH/xFNu4P9H+hVqlEUafDCkEoCy0Dg9mG22Sg+rY/0ck6KkrAQrYrTgXusd+cEJOMK0uOOFCK2/5rSGQ==",
|
|
908
|
+
"license": "MIT",
|
|
909
|
+
"peerDependencies": {
|
|
910
|
+
"react": ">=17",
|
|
911
|
+
"react-dom": ">=17"
|
|
912
|
+
},
|
|
913
|
+
"resolved": "https://registry.npmjs.org/@reactflow/node-toolbar/-/node-toolbar-1.3.14.tgz",
|
|
914
|
+
"version": "1.3.14"
|
|
915
|
+
},
|
|
916
|
+
"node_modules/@remix-run/router": {
|
|
917
|
+
"engines": {
|
|
918
|
+
"node": ">=14.0.0"
|
|
919
|
+
},
|
|
920
|
+
"integrity": "sha512-vDbaOzF7yT2Qs4vO6XV1MHcJv+3dgR1sT+l3B8xxOVhUC336prMvqrvsLL/9Dnw2xr6Qhz4J0dmS0llNAbnUmQ==",
|
|
921
|
+
"license": "MIT",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.1.tgz",
|
|
923
|
+
"version": "1.23.1"
|
|
924
|
+
},
|
|
925
|
+
"node_modules/@rolldown/pluginutils": {
|
|
926
|
+
"dev": true,
|
|
927
|
+
"integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
|
|
928
|
+
"license": "MIT",
|
|
929
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
|
|
930
|
+
"version": "1.0.0-beta.27"
|
|
931
|
+
},
|
|
932
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
933
|
+
"cpu": [
|
|
934
|
+
"arm"
|
|
935
|
+
],
|
|
936
|
+
"dev": true,
|
|
937
|
+
"integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==",
|
|
938
|
+
"license": "MIT",
|
|
939
|
+
"optional": true,
|
|
940
|
+
"os": [
|
|
941
|
+
"android"
|
|
942
|
+
],
|
|
943
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz",
|
|
944
|
+
"version": "4.53.3"
|
|
945
|
+
},
|
|
946
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
947
|
+
"cpu": [
|
|
948
|
+
"arm64"
|
|
949
|
+
],
|
|
950
|
+
"dev": true,
|
|
951
|
+
"integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==",
|
|
952
|
+
"license": "MIT",
|
|
953
|
+
"optional": true,
|
|
954
|
+
"os": [
|
|
955
|
+
"android"
|
|
956
|
+
],
|
|
957
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz",
|
|
958
|
+
"version": "4.53.3"
|
|
959
|
+
},
|
|
960
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
961
|
+
"cpu": [
|
|
962
|
+
"arm64"
|
|
963
|
+
],
|
|
964
|
+
"dev": true,
|
|
965
|
+
"integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==",
|
|
966
|
+
"license": "MIT",
|
|
967
|
+
"optional": true,
|
|
968
|
+
"os": [
|
|
969
|
+
"darwin"
|
|
970
|
+
],
|
|
971
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz",
|
|
972
|
+
"version": "4.53.3"
|
|
973
|
+
},
|
|
974
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
975
|
+
"cpu": [
|
|
976
|
+
"x64"
|
|
977
|
+
],
|
|
978
|
+
"dev": true,
|
|
979
|
+
"integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==",
|
|
980
|
+
"license": "MIT",
|
|
981
|
+
"optional": true,
|
|
982
|
+
"os": [
|
|
983
|
+
"darwin"
|
|
984
|
+
],
|
|
985
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz",
|
|
986
|
+
"version": "4.53.3"
|
|
987
|
+
},
|
|
988
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
989
|
+
"cpu": [
|
|
990
|
+
"arm64"
|
|
991
|
+
],
|
|
992
|
+
"dev": true,
|
|
993
|
+
"integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==",
|
|
994
|
+
"license": "MIT",
|
|
995
|
+
"optional": true,
|
|
996
|
+
"os": [
|
|
997
|
+
"freebsd"
|
|
998
|
+
],
|
|
999
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz",
|
|
1000
|
+
"version": "4.53.3"
|
|
1001
|
+
},
|
|
1002
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1003
|
+
"cpu": [
|
|
1004
|
+
"x64"
|
|
1005
|
+
],
|
|
1006
|
+
"dev": true,
|
|
1007
|
+
"integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==",
|
|
1008
|
+
"license": "MIT",
|
|
1009
|
+
"optional": true,
|
|
1010
|
+
"os": [
|
|
1011
|
+
"freebsd"
|
|
1012
|
+
],
|
|
1013
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz",
|
|
1014
|
+
"version": "4.53.3"
|
|
1015
|
+
},
|
|
1016
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1017
|
+
"cpu": [
|
|
1018
|
+
"arm"
|
|
1019
|
+
],
|
|
1020
|
+
"dev": true,
|
|
1021
|
+
"integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==",
|
|
1022
|
+
"license": "MIT",
|
|
1023
|
+
"optional": true,
|
|
1024
|
+
"os": [
|
|
1025
|
+
"linux"
|
|
1026
|
+
],
|
|
1027
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz",
|
|
1028
|
+
"version": "4.53.3"
|
|
1029
|
+
},
|
|
1030
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1031
|
+
"cpu": [
|
|
1032
|
+
"arm"
|
|
1033
|
+
],
|
|
1034
|
+
"dev": true,
|
|
1035
|
+
"integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==",
|
|
1036
|
+
"license": "MIT",
|
|
1037
|
+
"optional": true,
|
|
1038
|
+
"os": [
|
|
1039
|
+
"linux"
|
|
1040
|
+
],
|
|
1041
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz",
|
|
1042
|
+
"version": "4.53.3"
|
|
1043
|
+
},
|
|
1044
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1045
|
+
"cpu": [
|
|
1046
|
+
"arm64"
|
|
1047
|
+
],
|
|
1048
|
+
"dev": true,
|
|
1049
|
+
"integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==",
|
|
1050
|
+
"license": "MIT",
|
|
1051
|
+
"optional": true,
|
|
1052
|
+
"os": [
|
|
1053
|
+
"linux"
|
|
1054
|
+
],
|
|
1055
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz",
|
|
1056
|
+
"version": "4.53.3"
|
|
1057
|
+
},
|
|
1058
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1059
|
+
"cpu": [
|
|
1060
|
+
"arm64"
|
|
1061
|
+
],
|
|
1062
|
+
"dev": true,
|
|
1063
|
+
"integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==",
|
|
1064
|
+
"license": "MIT",
|
|
1065
|
+
"optional": true,
|
|
1066
|
+
"os": [
|
|
1067
|
+
"linux"
|
|
1068
|
+
],
|
|
1069
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz",
|
|
1070
|
+
"version": "4.53.3"
|
|
1071
|
+
},
|
|
1072
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1073
|
+
"cpu": [
|
|
1074
|
+
"loong64"
|
|
1075
|
+
],
|
|
1076
|
+
"dev": true,
|
|
1077
|
+
"integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==",
|
|
1078
|
+
"license": "MIT",
|
|
1079
|
+
"optional": true,
|
|
1080
|
+
"os": [
|
|
1081
|
+
"linux"
|
|
1082
|
+
],
|
|
1083
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz",
|
|
1084
|
+
"version": "4.53.3"
|
|
1085
|
+
},
|
|
1086
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1087
|
+
"cpu": [
|
|
1088
|
+
"ppc64"
|
|
1089
|
+
],
|
|
1090
|
+
"dev": true,
|
|
1091
|
+
"integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==",
|
|
1092
|
+
"license": "MIT",
|
|
1093
|
+
"optional": true,
|
|
1094
|
+
"os": [
|
|
1095
|
+
"linux"
|
|
1096
|
+
],
|
|
1097
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz",
|
|
1098
|
+
"version": "4.53.3"
|
|
1099
|
+
},
|
|
1100
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1101
|
+
"cpu": [
|
|
1102
|
+
"riscv64"
|
|
1103
|
+
],
|
|
1104
|
+
"dev": true,
|
|
1105
|
+
"integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==",
|
|
1106
|
+
"license": "MIT",
|
|
1107
|
+
"optional": true,
|
|
1108
|
+
"os": [
|
|
1109
|
+
"linux"
|
|
1110
|
+
],
|
|
1111
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz",
|
|
1112
|
+
"version": "4.53.3"
|
|
1113
|
+
},
|
|
1114
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1115
|
+
"cpu": [
|
|
1116
|
+
"riscv64"
|
|
1117
|
+
],
|
|
1118
|
+
"dev": true,
|
|
1119
|
+
"integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==",
|
|
1120
|
+
"license": "MIT",
|
|
1121
|
+
"optional": true,
|
|
1122
|
+
"os": [
|
|
1123
|
+
"linux"
|
|
1124
|
+
],
|
|
1125
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz",
|
|
1126
|
+
"version": "4.53.3"
|
|
1127
|
+
},
|
|
1128
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1129
|
+
"cpu": [
|
|
1130
|
+
"s390x"
|
|
1131
|
+
],
|
|
1132
|
+
"dev": true,
|
|
1133
|
+
"integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==",
|
|
1134
|
+
"license": "MIT",
|
|
1135
|
+
"optional": true,
|
|
1136
|
+
"os": [
|
|
1137
|
+
"linux"
|
|
1138
|
+
],
|
|
1139
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz",
|
|
1140
|
+
"version": "4.53.3"
|
|
1141
|
+
},
|
|
1142
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1143
|
+
"cpu": [
|
|
1144
|
+
"x64"
|
|
1145
|
+
],
|
|
1146
|
+
"dev": true,
|
|
1147
|
+
"integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==",
|
|
1148
|
+
"license": "MIT",
|
|
1149
|
+
"optional": true,
|
|
1150
|
+
"os": [
|
|
1151
|
+
"linux"
|
|
1152
|
+
],
|
|
1153
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz",
|
|
1154
|
+
"version": "4.53.3"
|
|
1155
|
+
},
|
|
1156
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1157
|
+
"cpu": [
|
|
1158
|
+
"x64"
|
|
1159
|
+
],
|
|
1160
|
+
"dev": true,
|
|
1161
|
+
"integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==",
|
|
1162
|
+
"license": "MIT",
|
|
1163
|
+
"optional": true,
|
|
1164
|
+
"os": [
|
|
1165
|
+
"linux"
|
|
1166
|
+
],
|
|
1167
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz",
|
|
1168
|
+
"version": "4.53.3"
|
|
1169
|
+
},
|
|
1170
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1171
|
+
"cpu": [
|
|
1172
|
+
"arm64"
|
|
1173
|
+
],
|
|
1174
|
+
"dev": true,
|
|
1175
|
+
"integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==",
|
|
1176
|
+
"license": "MIT",
|
|
1177
|
+
"optional": true,
|
|
1178
|
+
"os": [
|
|
1179
|
+
"openharmony"
|
|
1180
|
+
],
|
|
1181
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz",
|
|
1182
|
+
"version": "4.53.3"
|
|
1183
|
+
},
|
|
1184
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1185
|
+
"cpu": [
|
|
1186
|
+
"arm64"
|
|
1187
|
+
],
|
|
1188
|
+
"dev": true,
|
|
1189
|
+
"integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==",
|
|
1190
|
+
"license": "MIT",
|
|
1191
|
+
"optional": true,
|
|
1192
|
+
"os": [
|
|
1193
|
+
"win32"
|
|
1194
|
+
],
|
|
1195
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz",
|
|
1196
|
+
"version": "4.53.3"
|
|
1197
|
+
},
|
|
1198
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1199
|
+
"cpu": [
|
|
1200
|
+
"ia32"
|
|
1201
|
+
],
|
|
1202
|
+
"dev": true,
|
|
1203
|
+
"integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==",
|
|
1204
|
+
"license": "MIT",
|
|
1205
|
+
"optional": true,
|
|
1206
|
+
"os": [
|
|
1207
|
+
"win32"
|
|
1208
|
+
],
|
|
1209
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz",
|
|
1210
|
+
"version": "4.53.3"
|
|
1211
|
+
},
|
|
1212
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1213
|
+
"cpu": [
|
|
1214
|
+
"x64"
|
|
1215
|
+
],
|
|
1216
|
+
"dev": true,
|
|
1217
|
+
"integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==",
|
|
1218
|
+
"license": "MIT",
|
|
1219
|
+
"optional": true,
|
|
1220
|
+
"os": [
|
|
1221
|
+
"win32"
|
|
1222
|
+
],
|
|
1223
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz",
|
|
1224
|
+
"version": "4.53.3"
|
|
1225
|
+
},
|
|
1226
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1227
|
+
"cpu": [
|
|
1228
|
+
"x64"
|
|
1229
|
+
],
|
|
1230
|
+
"dev": true,
|
|
1231
|
+
"integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==",
|
|
1232
|
+
"license": "MIT",
|
|
1233
|
+
"optional": true,
|
|
1234
|
+
"os": [
|
|
1235
|
+
"win32"
|
|
1236
|
+
],
|
|
1237
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz",
|
|
1238
|
+
"version": "4.53.3"
|
|
1239
|
+
},
|
|
1240
|
+
"node_modules/@types/babel__core": {
|
|
1241
|
+
"dependencies": {
|
|
1242
|
+
"@babel/parser": "^7.20.7",
|
|
1243
|
+
"@babel/types": "^7.20.7",
|
|
1244
|
+
"@types/babel__generator": "*",
|
|
1245
|
+
"@types/babel__template": "*",
|
|
1246
|
+
"@types/babel__traverse": "*"
|
|
1247
|
+
},
|
|
1248
|
+
"dev": true,
|
|
1249
|
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
|
1250
|
+
"license": "MIT",
|
|
1251
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
|
1252
|
+
"version": "7.20.5"
|
|
1253
|
+
},
|
|
1254
|
+
"node_modules/@types/babel__generator": {
|
|
1255
|
+
"dependencies": {
|
|
1256
|
+
"@babel/types": "^7.0.0"
|
|
1257
|
+
},
|
|
1258
|
+
"dev": true,
|
|
1259
|
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
|
1260
|
+
"license": "MIT",
|
|
1261
|
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
|
1262
|
+
"version": "7.27.0"
|
|
1263
|
+
},
|
|
1264
|
+
"node_modules/@types/babel__template": {
|
|
1265
|
+
"dependencies": {
|
|
1266
|
+
"@babel/parser": "^7.1.0",
|
|
1267
|
+
"@babel/types": "^7.0.0"
|
|
1268
|
+
},
|
|
1269
|
+
"dev": true,
|
|
1270
|
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
|
1271
|
+
"license": "MIT",
|
|
1272
|
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
|
1273
|
+
"version": "7.4.4"
|
|
1274
|
+
},
|
|
1275
|
+
"node_modules/@types/babel__traverse": {
|
|
1276
|
+
"dependencies": {
|
|
1277
|
+
"@babel/types": "^7.28.2"
|
|
1278
|
+
},
|
|
1279
|
+
"dev": true,
|
|
1280
|
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
|
1281
|
+
"license": "MIT",
|
|
1282
|
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
|
1283
|
+
"version": "7.28.0"
|
|
1284
|
+
},
|
|
1285
|
+
"node_modules/@types/d3": {
|
|
1286
|
+
"dependencies": {
|
|
1287
|
+
"@types/d3-array": "*",
|
|
1288
|
+
"@types/d3-axis": "*",
|
|
1289
|
+
"@types/d3-brush": "*",
|
|
1290
|
+
"@types/d3-chord": "*",
|
|
1291
|
+
"@types/d3-color": "*",
|
|
1292
|
+
"@types/d3-contour": "*",
|
|
1293
|
+
"@types/d3-delaunay": "*",
|
|
1294
|
+
"@types/d3-dispatch": "*",
|
|
1295
|
+
"@types/d3-drag": "*",
|
|
1296
|
+
"@types/d3-dsv": "*",
|
|
1297
|
+
"@types/d3-ease": "*",
|
|
1298
|
+
"@types/d3-fetch": "*",
|
|
1299
|
+
"@types/d3-force": "*",
|
|
1300
|
+
"@types/d3-format": "*",
|
|
1301
|
+
"@types/d3-geo": "*",
|
|
1302
|
+
"@types/d3-hierarchy": "*",
|
|
1303
|
+
"@types/d3-interpolate": "*",
|
|
1304
|
+
"@types/d3-path": "*",
|
|
1305
|
+
"@types/d3-polygon": "*",
|
|
1306
|
+
"@types/d3-quadtree": "*",
|
|
1307
|
+
"@types/d3-random": "*",
|
|
1308
|
+
"@types/d3-scale": "*",
|
|
1309
|
+
"@types/d3-scale-chromatic": "*",
|
|
1310
|
+
"@types/d3-selection": "*",
|
|
1311
|
+
"@types/d3-shape": "*",
|
|
1312
|
+
"@types/d3-time": "*",
|
|
1313
|
+
"@types/d3-time-format": "*",
|
|
1314
|
+
"@types/d3-timer": "*",
|
|
1315
|
+
"@types/d3-transition": "*",
|
|
1316
|
+
"@types/d3-zoom": "*"
|
|
1317
|
+
},
|
|
1318
|
+
"integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==",
|
|
1319
|
+
"license": "MIT",
|
|
1320
|
+
"resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz",
|
|
1321
|
+
"version": "7.4.3"
|
|
1322
|
+
},
|
|
1323
|
+
"node_modules/@types/d3-array": {
|
|
1324
|
+
"integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
|
|
1325
|
+
"license": "MIT",
|
|
1326
|
+
"resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
|
|
1327
|
+
"version": "3.2.2"
|
|
1328
|
+
},
|
|
1329
|
+
"node_modules/@types/d3-axis": {
|
|
1330
|
+
"dependencies": {
|
|
1331
|
+
"@types/d3-selection": "*"
|
|
1332
|
+
},
|
|
1333
|
+
"integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==",
|
|
1334
|
+
"license": "MIT",
|
|
1335
|
+
"resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz",
|
|
1336
|
+
"version": "3.0.6"
|
|
1337
|
+
},
|
|
1338
|
+
"node_modules/@types/d3-brush": {
|
|
1339
|
+
"dependencies": {
|
|
1340
|
+
"@types/d3-selection": "*"
|
|
1341
|
+
},
|
|
1342
|
+
"integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==",
|
|
1343
|
+
"license": "MIT",
|
|
1344
|
+
"resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz",
|
|
1345
|
+
"version": "3.0.6"
|
|
1346
|
+
},
|
|
1347
|
+
"node_modules/@types/d3-chord": {
|
|
1348
|
+
"integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==",
|
|
1349
|
+
"license": "MIT",
|
|
1350
|
+
"resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz",
|
|
1351
|
+
"version": "3.0.6"
|
|
1352
|
+
},
|
|
1353
|
+
"node_modules/@types/d3-color": {
|
|
1354
|
+
"integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
|
|
1355
|
+
"license": "MIT",
|
|
1356
|
+
"resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
|
|
1357
|
+
"version": "3.1.3"
|
|
1358
|
+
},
|
|
1359
|
+
"node_modules/@types/d3-contour": {
|
|
1360
|
+
"dependencies": {
|
|
1361
|
+
"@types/d3-array": "*",
|
|
1362
|
+
"@types/geojson": "*"
|
|
1363
|
+
},
|
|
1364
|
+
"integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==",
|
|
1365
|
+
"license": "MIT",
|
|
1366
|
+
"resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz",
|
|
1367
|
+
"version": "3.0.6"
|
|
1368
|
+
},
|
|
1369
|
+
"node_modules/@types/d3-delaunay": {
|
|
1370
|
+
"integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==",
|
|
1371
|
+
"license": "MIT",
|
|
1372
|
+
"resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
|
|
1373
|
+
"version": "6.0.4"
|
|
1374
|
+
},
|
|
1375
|
+
"node_modules/@types/d3-dispatch": {
|
|
1376
|
+
"integrity": "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==",
|
|
1377
|
+
"license": "MIT",
|
|
1378
|
+
"resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz",
|
|
1379
|
+
"version": "3.0.7"
|
|
1380
|
+
},
|
|
1381
|
+
"node_modules/@types/d3-drag": {
|
|
1382
|
+
"dependencies": {
|
|
1383
|
+
"@types/d3-selection": "*"
|
|
1384
|
+
},
|
|
1385
|
+
"integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
|
|
1386
|
+
"license": "MIT",
|
|
1387
|
+
"resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
|
|
1388
|
+
"version": "3.0.7"
|
|
1389
|
+
},
|
|
1390
|
+
"node_modules/@types/d3-dsv": {
|
|
1391
|
+
"integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==",
|
|
1392
|
+
"license": "MIT",
|
|
1393
|
+
"resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz",
|
|
1394
|
+
"version": "3.0.7"
|
|
1395
|
+
},
|
|
1396
|
+
"node_modules/@types/d3-ease": {
|
|
1397
|
+
"integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
|
|
1398
|
+
"license": "MIT",
|
|
1399
|
+
"resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
|
|
1400
|
+
"version": "3.0.2"
|
|
1401
|
+
},
|
|
1402
|
+
"node_modules/@types/d3-fetch": {
|
|
1403
|
+
"dependencies": {
|
|
1404
|
+
"@types/d3-dsv": "*"
|
|
1405
|
+
},
|
|
1406
|
+
"integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==",
|
|
1407
|
+
"license": "MIT",
|
|
1408
|
+
"resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz",
|
|
1409
|
+
"version": "3.0.7"
|
|
1410
|
+
},
|
|
1411
|
+
"node_modules/@types/d3-force": {
|
|
1412
|
+
"integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
|
|
1413
|
+
"license": "MIT",
|
|
1414
|
+
"resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz",
|
|
1415
|
+
"version": "3.0.10"
|
|
1416
|
+
},
|
|
1417
|
+
"node_modules/@types/d3-format": {
|
|
1418
|
+
"integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==",
|
|
1419
|
+
"license": "MIT",
|
|
1420
|
+
"resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz",
|
|
1421
|
+
"version": "3.0.4"
|
|
1422
|
+
},
|
|
1423
|
+
"node_modules/@types/d3-geo": {
|
|
1424
|
+
"dependencies": {
|
|
1425
|
+
"@types/geojson": "*"
|
|
1426
|
+
},
|
|
1427
|
+
"integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==",
|
|
1428
|
+
"license": "MIT",
|
|
1429
|
+
"resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz",
|
|
1430
|
+
"version": "3.1.0"
|
|
1431
|
+
},
|
|
1432
|
+
"node_modules/@types/d3-hierarchy": {
|
|
1433
|
+
"integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==",
|
|
1434
|
+
"license": "MIT",
|
|
1435
|
+
"resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz",
|
|
1436
|
+
"version": "3.1.7"
|
|
1437
|
+
},
|
|
1438
|
+
"node_modules/@types/d3-interpolate": {
|
|
1439
|
+
"dependencies": {
|
|
1440
|
+
"@types/d3-color": "*"
|
|
1441
|
+
},
|
|
1442
|
+
"integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
|
|
1443
|
+
"license": "MIT",
|
|
1444
|
+
"resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
|
|
1445
|
+
"version": "3.0.4"
|
|
1446
|
+
},
|
|
1447
|
+
"node_modules/@types/d3-path": {
|
|
1448
|
+
"integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
|
|
1449
|
+
"license": "MIT",
|
|
1450
|
+
"resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
|
|
1451
|
+
"version": "3.1.1"
|
|
1452
|
+
},
|
|
1453
|
+
"node_modules/@types/d3-polygon": {
|
|
1454
|
+
"integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==",
|
|
1455
|
+
"license": "MIT",
|
|
1456
|
+
"resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz",
|
|
1457
|
+
"version": "3.0.2"
|
|
1458
|
+
},
|
|
1459
|
+
"node_modules/@types/d3-quadtree": {
|
|
1460
|
+
"integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==",
|
|
1461
|
+
"license": "MIT",
|
|
1462
|
+
"resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz",
|
|
1463
|
+
"version": "3.0.6"
|
|
1464
|
+
},
|
|
1465
|
+
"node_modules/@types/d3-random": {
|
|
1466
|
+
"integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==",
|
|
1467
|
+
"license": "MIT",
|
|
1468
|
+
"resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz",
|
|
1469
|
+
"version": "3.0.3"
|
|
1470
|
+
},
|
|
1471
|
+
"node_modules/@types/d3-scale": {
|
|
1472
|
+
"dependencies": {
|
|
1473
|
+
"@types/d3-time": "*"
|
|
1474
|
+
},
|
|
1475
|
+
"integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
|
|
1476
|
+
"license": "MIT",
|
|
1477
|
+
"resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
|
|
1478
|
+
"version": "4.0.9"
|
|
1479
|
+
},
|
|
1480
|
+
"node_modules/@types/d3-scale-chromatic": {
|
|
1481
|
+
"integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==",
|
|
1482
|
+
"license": "MIT",
|
|
1483
|
+
"resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
|
|
1484
|
+
"version": "3.1.0"
|
|
1485
|
+
},
|
|
1486
|
+
"node_modules/@types/d3-selection": {
|
|
1487
|
+
"integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
|
|
1488
|
+
"license": "MIT",
|
|
1489
|
+
"resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
|
|
1490
|
+
"version": "3.0.11"
|
|
1491
|
+
},
|
|
1492
|
+
"node_modules/@types/d3-shape": {
|
|
1493
|
+
"dependencies": {
|
|
1494
|
+
"@types/d3-path": "*"
|
|
1495
|
+
},
|
|
1496
|
+
"integrity": "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==",
|
|
1497
|
+
"license": "MIT",
|
|
1498
|
+
"resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz",
|
|
1499
|
+
"version": "3.1.7"
|
|
1500
|
+
},
|
|
1501
|
+
"node_modules/@types/d3-time": {
|
|
1502
|
+
"integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
|
|
1503
|
+
"license": "MIT",
|
|
1504
|
+
"resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
|
|
1505
|
+
"version": "3.0.4"
|
|
1506
|
+
},
|
|
1507
|
+
"node_modules/@types/d3-time-format": {
|
|
1508
|
+
"integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==",
|
|
1509
|
+
"license": "MIT",
|
|
1510
|
+
"resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz",
|
|
1511
|
+
"version": "4.0.3"
|
|
1512
|
+
},
|
|
1513
|
+
"node_modules/@types/d3-timer": {
|
|
1514
|
+
"integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
|
|
1515
|
+
"license": "MIT",
|
|
1516
|
+
"resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
|
|
1517
|
+
"version": "3.0.2"
|
|
1518
|
+
},
|
|
1519
|
+
"node_modules/@types/d3-transition": {
|
|
1520
|
+
"dependencies": {
|
|
1521
|
+
"@types/d3-selection": "*"
|
|
1522
|
+
},
|
|
1523
|
+
"integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
|
|
1524
|
+
"license": "MIT",
|
|
1525
|
+
"resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
|
|
1526
|
+
"version": "3.0.9"
|
|
1527
|
+
},
|
|
1528
|
+
"node_modules/@types/d3-zoom": {
|
|
1529
|
+
"dependencies": {
|
|
1530
|
+
"@types/d3-interpolate": "*",
|
|
1531
|
+
"@types/d3-selection": "*"
|
|
1532
|
+
},
|
|
1533
|
+
"integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
|
|
1534
|
+
"license": "MIT",
|
|
1535
|
+
"resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
|
|
1536
|
+
"version": "3.0.8"
|
|
1537
|
+
},
|
|
1538
|
+
"node_modules/@types/estree": {
|
|
1539
|
+
"dev": true,
|
|
1540
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1541
|
+
"license": "MIT",
|
|
1542
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1543
|
+
"version": "1.0.8"
|
|
1544
|
+
},
|
|
1545
|
+
"node_modules/@types/geojson": {
|
|
1546
|
+
"integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
|
|
1547
|
+
"license": "MIT",
|
|
1548
|
+
"resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz",
|
|
1549
|
+
"version": "7946.0.16"
|
|
1550
|
+
},
|
|
1551
|
+
"node_modules/@types/prop-types": {
|
|
1552
|
+
"devOptional": true,
|
|
1553
|
+
"integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
|
|
1554
|
+
"license": "MIT",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
|
|
1556
|
+
"version": "15.7.15"
|
|
1557
|
+
},
|
|
1558
|
+
"node_modules/@types/react": {
|
|
1559
|
+
"dependencies": {
|
|
1560
|
+
"@types/prop-types": "*",
|
|
1561
|
+
"csstype": "^3.2.2"
|
|
1562
|
+
},
|
|
1563
|
+
"devOptional": true,
|
|
1564
|
+
"integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==",
|
|
1565
|
+
"license": "MIT",
|
|
1566
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz",
|
|
1567
|
+
"version": "18.3.27"
|
|
1568
|
+
},
|
|
1569
|
+
"node_modules/@types/react-dom": {
|
|
1570
|
+
"dev": true,
|
|
1571
|
+
"integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==",
|
|
1572
|
+
"license": "MIT",
|
|
1573
|
+
"peerDependencies": {
|
|
1574
|
+
"@types/react": "^18.0.0"
|
|
1575
|
+
},
|
|
1576
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz",
|
|
1577
|
+
"version": "18.3.7"
|
|
1578
|
+
},
|
|
1579
|
+
"node_modules/@vitejs/plugin-react": {
|
|
1580
|
+
"dependencies": {
|
|
1581
|
+
"@babel/core": "^7.28.0",
|
|
1582
|
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
|
1583
|
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
|
1584
|
+
"@rolldown/pluginutils": "1.0.0-beta.27",
|
|
1585
|
+
"@types/babel__core": "^7.20.5",
|
|
1586
|
+
"react-refresh": "^0.17.0"
|
|
1587
|
+
},
|
|
1588
|
+
"dev": true,
|
|
1589
|
+
"engines": {
|
|
1590
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
1591
|
+
},
|
|
1592
|
+
"integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
|
|
1593
|
+
"license": "MIT",
|
|
1594
|
+
"peerDependencies": {
|
|
1595
|
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
1596
|
+
},
|
|
1597
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
|
|
1598
|
+
"version": "4.7.0"
|
|
1599
|
+
},
|
|
1600
|
+
"node_modules/any-promise": {
|
|
1601
|
+
"dev": true,
|
|
1602
|
+
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
|
|
1603
|
+
"license": "MIT",
|
|
1604
|
+
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
|
|
1605
|
+
"version": "1.3.0"
|
|
1606
|
+
},
|
|
1607
|
+
"node_modules/anymatch": {
|
|
1608
|
+
"dependencies": {
|
|
1609
|
+
"normalize-path": "^3.0.0",
|
|
1610
|
+
"picomatch": "^2.0.4"
|
|
1611
|
+
},
|
|
1612
|
+
"dev": true,
|
|
1613
|
+
"engines": {
|
|
1614
|
+
"node": ">= 8"
|
|
1615
|
+
},
|
|
1616
|
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
1617
|
+
"license": "ISC",
|
|
1618
|
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
1619
|
+
"version": "3.1.3"
|
|
1620
|
+
},
|
|
1621
|
+
"node_modules/arg": {
|
|
1622
|
+
"dev": true,
|
|
1623
|
+
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
|
|
1624
|
+
"license": "MIT",
|
|
1625
|
+
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
|
|
1626
|
+
"version": "5.0.2"
|
|
1627
|
+
},
|
|
1628
|
+
"node_modules/autoprefixer": {
|
|
1629
|
+
"bin": {
|
|
1630
|
+
"autoprefixer": "bin/autoprefixer"
|
|
1631
|
+
},
|
|
1632
|
+
"dependencies": {
|
|
1633
|
+
"browserslist": "^4.27.0",
|
|
1634
|
+
"caniuse-lite": "^1.0.30001754",
|
|
1635
|
+
"fraction.js": "^5.3.4",
|
|
1636
|
+
"normalize-range": "^0.1.2",
|
|
1637
|
+
"picocolors": "^1.1.1",
|
|
1638
|
+
"postcss-value-parser": "^4.2.0"
|
|
1639
|
+
},
|
|
1640
|
+
"dev": true,
|
|
1641
|
+
"engines": {
|
|
1642
|
+
"node": "^10 || ^12 || >=14"
|
|
1643
|
+
},
|
|
1644
|
+
"funding": [
|
|
1645
|
+
{
|
|
1646
|
+
"type": "opencollective",
|
|
1647
|
+
"url": "https://opencollective.com/postcss/"
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
"type": "tidelift",
|
|
1651
|
+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"type": "github",
|
|
1655
|
+
"url": "https://github.com/sponsors/ai"
|
|
1656
|
+
}
|
|
1657
|
+
],
|
|
1658
|
+
"integrity": "sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==",
|
|
1659
|
+
"license": "MIT",
|
|
1660
|
+
"peerDependencies": {
|
|
1661
|
+
"postcss": "^8.1.0"
|
|
1662
|
+
},
|
|
1663
|
+
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz",
|
|
1664
|
+
"version": "10.4.22"
|
|
1665
|
+
},
|
|
1666
|
+
"node_modules/baseline-browser-mapping": {
|
|
1667
|
+
"bin": {
|
|
1668
|
+
"baseline-browser-mapping": "dist/cli.js"
|
|
1669
|
+
},
|
|
1670
|
+
"dev": true,
|
|
1671
|
+
"integrity": "sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==",
|
|
1672
|
+
"license": "Apache-2.0",
|
|
1673
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.29.tgz",
|
|
1674
|
+
"version": "2.8.29"
|
|
1675
|
+
},
|
|
1676
|
+
"node_modules/binary-extensions": {
|
|
1677
|
+
"dev": true,
|
|
1678
|
+
"engines": {
|
|
1679
|
+
"node": ">=8"
|
|
1680
|
+
},
|
|
1681
|
+
"funding": {
|
|
1682
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1683
|
+
},
|
|
1684
|
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
1685
|
+
"license": "MIT",
|
|
1686
|
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
1687
|
+
"version": "2.3.0"
|
|
1688
|
+
},
|
|
1689
|
+
"node_modules/braces": {
|
|
1690
|
+
"dependencies": {
|
|
1691
|
+
"fill-range": "^7.1.1"
|
|
1692
|
+
},
|
|
1693
|
+
"dev": true,
|
|
1694
|
+
"engines": {
|
|
1695
|
+
"node": ">=8"
|
|
1696
|
+
},
|
|
1697
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
1698
|
+
"license": "MIT",
|
|
1699
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
1700
|
+
"version": "3.0.3"
|
|
1701
|
+
},
|
|
1702
|
+
"node_modules/browserslist": {
|
|
1703
|
+
"bin": {
|
|
1704
|
+
"browserslist": "cli.js"
|
|
1705
|
+
},
|
|
1706
|
+
"dependencies": {
|
|
1707
|
+
"baseline-browser-mapping": "^2.8.25",
|
|
1708
|
+
"caniuse-lite": "^1.0.30001754",
|
|
1709
|
+
"electron-to-chromium": "^1.5.249",
|
|
1710
|
+
"node-releases": "^2.0.27",
|
|
1711
|
+
"update-browserslist-db": "^1.1.4"
|
|
1712
|
+
},
|
|
1713
|
+
"dev": true,
|
|
1714
|
+
"engines": {
|
|
1715
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
1716
|
+
},
|
|
1717
|
+
"funding": [
|
|
1718
|
+
{
|
|
1719
|
+
"type": "opencollective",
|
|
1720
|
+
"url": "https://opencollective.com/browserslist"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"type": "tidelift",
|
|
1724
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"type": "github",
|
|
1728
|
+
"url": "https://github.com/sponsors/ai"
|
|
1729
|
+
}
|
|
1730
|
+
],
|
|
1731
|
+
"integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
|
|
1732
|
+
"license": "MIT",
|
|
1733
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz",
|
|
1734
|
+
"version": "4.28.0"
|
|
1735
|
+
},
|
|
1736
|
+
"node_modules/camelcase-css": {
|
|
1737
|
+
"dev": true,
|
|
1738
|
+
"engines": {
|
|
1739
|
+
"node": ">= 6"
|
|
1740
|
+
},
|
|
1741
|
+
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
|
|
1742
|
+
"license": "MIT",
|
|
1743
|
+
"resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
|
|
1744
|
+
"version": "2.0.1"
|
|
1745
|
+
},
|
|
1746
|
+
"node_modules/caniuse-lite": {
|
|
1747
|
+
"dev": true,
|
|
1748
|
+
"funding": [
|
|
1749
|
+
{
|
|
1750
|
+
"type": "opencollective",
|
|
1751
|
+
"url": "https://opencollective.com/browserslist"
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"type": "tidelift",
|
|
1755
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"type": "github",
|
|
1759
|
+
"url": "https://github.com/sponsors/ai"
|
|
1760
|
+
}
|
|
1761
|
+
],
|
|
1762
|
+
"integrity": "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==",
|
|
1763
|
+
"license": "CC-BY-4.0",
|
|
1764
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz",
|
|
1765
|
+
"version": "1.0.30001756"
|
|
1766
|
+
},
|
|
1767
|
+
"node_modules/chokidar": {
|
|
1768
|
+
"dependencies": {
|
|
1769
|
+
"anymatch": "~3.1.2",
|
|
1770
|
+
"braces": "~3.0.2",
|
|
1771
|
+
"glob-parent": "~5.1.2",
|
|
1772
|
+
"is-binary-path": "~2.1.0",
|
|
1773
|
+
"is-glob": "~4.0.1",
|
|
1774
|
+
"normalize-path": "~3.0.0",
|
|
1775
|
+
"readdirp": "~3.6.0"
|
|
1776
|
+
},
|
|
1777
|
+
"dev": true,
|
|
1778
|
+
"engines": {
|
|
1779
|
+
"node": ">= 8.10.0"
|
|
1780
|
+
},
|
|
1781
|
+
"funding": {
|
|
1782
|
+
"url": "https://paulmillr.com/funding/"
|
|
1783
|
+
},
|
|
1784
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
1785
|
+
"license": "MIT",
|
|
1786
|
+
"optionalDependencies": {
|
|
1787
|
+
"fsevents": "~2.3.2"
|
|
1788
|
+
},
|
|
1789
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
1790
|
+
"version": "3.6.0"
|
|
1791
|
+
},
|
|
1792
|
+
"node_modules/chokidar/node_modules/glob-parent": {
|
|
1793
|
+
"dependencies": {
|
|
1794
|
+
"is-glob": "^4.0.1"
|
|
1795
|
+
},
|
|
1796
|
+
"dev": true,
|
|
1797
|
+
"engines": {
|
|
1798
|
+
"node": ">= 6"
|
|
1799
|
+
},
|
|
1800
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
1801
|
+
"license": "ISC",
|
|
1802
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
1803
|
+
"version": "5.1.2"
|
|
1804
|
+
},
|
|
1805
|
+
"node_modules/classcat": {
|
|
1806
|
+
"integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==",
|
|
1807
|
+
"license": "MIT",
|
|
1808
|
+
"resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz",
|
|
1809
|
+
"version": "5.0.5"
|
|
1810
|
+
},
|
|
1811
|
+
"node_modules/clsx": {
|
|
1812
|
+
"engines": {
|
|
1813
|
+
"node": ">=6"
|
|
1814
|
+
},
|
|
1815
|
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
|
|
1816
|
+
"license": "MIT",
|
|
1817
|
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
|
|
1818
|
+
"version": "2.1.1"
|
|
1819
|
+
},
|
|
1820
|
+
"node_modules/commander": {
|
|
1821
|
+
"dev": true,
|
|
1822
|
+
"engines": {
|
|
1823
|
+
"node": ">= 6"
|
|
1824
|
+
},
|
|
1825
|
+
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
|
|
1826
|
+
"license": "MIT",
|
|
1827
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
|
|
1828
|
+
"version": "4.1.1"
|
|
1829
|
+
},
|
|
1830
|
+
"node_modules/convert-source-map": {
|
|
1831
|
+
"dev": true,
|
|
1832
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
1833
|
+
"license": "MIT",
|
|
1834
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
1835
|
+
"version": "2.0.0"
|
|
1836
|
+
},
|
|
1837
|
+
"node_modules/cssesc": {
|
|
1838
|
+
"bin": {
|
|
1839
|
+
"cssesc": "bin/cssesc"
|
|
1840
|
+
},
|
|
1841
|
+
"dev": true,
|
|
1842
|
+
"engines": {
|
|
1843
|
+
"node": ">=4"
|
|
1844
|
+
},
|
|
1845
|
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
|
1846
|
+
"license": "MIT",
|
|
1847
|
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
|
1848
|
+
"version": "3.0.0"
|
|
1849
|
+
},
|
|
1850
|
+
"node_modules/csstype": {
|
|
1851
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
1852
|
+
"license": "MIT",
|
|
1853
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
1854
|
+
"version": "3.2.3"
|
|
1855
|
+
},
|
|
1856
|
+
"node_modules/d3-array": {
|
|
1857
|
+
"dependencies": {
|
|
1858
|
+
"internmap": "1 - 2"
|
|
1859
|
+
},
|
|
1860
|
+
"engines": {
|
|
1861
|
+
"node": ">=12"
|
|
1862
|
+
},
|
|
1863
|
+
"integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
|
|
1864
|
+
"license": "ISC",
|
|
1865
|
+
"resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
|
|
1866
|
+
"version": "3.2.4"
|
|
1867
|
+
},
|
|
1868
|
+
"node_modules/d3-color": {
|
|
1869
|
+
"engines": {
|
|
1870
|
+
"node": ">=12"
|
|
1871
|
+
},
|
|
1872
|
+
"integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
|
|
1873
|
+
"license": "ISC",
|
|
1874
|
+
"resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
|
|
1875
|
+
"version": "3.1.0"
|
|
1876
|
+
},
|
|
1877
|
+
"node_modules/d3-dispatch": {
|
|
1878
|
+
"engines": {
|
|
1879
|
+
"node": ">=12"
|
|
1880
|
+
},
|
|
1881
|
+
"integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
|
|
1882
|
+
"license": "ISC",
|
|
1883
|
+
"resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
|
|
1884
|
+
"version": "3.0.1"
|
|
1885
|
+
},
|
|
1886
|
+
"node_modules/d3-drag": {
|
|
1887
|
+
"dependencies": {
|
|
1888
|
+
"d3-dispatch": "1 - 3",
|
|
1889
|
+
"d3-selection": "3"
|
|
1890
|
+
},
|
|
1891
|
+
"engines": {
|
|
1892
|
+
"node": ">=12"
|
|
1893
|
+
},
|
|
1894
|
+
"integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
|
|
1895
|
+
"license": "ISC",
|
|
1896
|
+
"resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
|
|
1897
|
+
"version": "3.0.0"
|
|
1898
|
+
},
|
|
1899
|
+
"node_modules/d3-ease": {
|
|
1900
|
+
"engines": {
|
|
1901
|
+
"node": ">=12"
|
|
1902
|
+
},
|
|
1903
|
+
"integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
|
|
1904
|
+
"license": "BSD-3-Clause",
|
|
1905
|
+
"resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
|
|
1906
|
+
"version": "3.0.1"
|
|
1907
|
+
},
|
|
1908
|
+
"node_modules/d3-format": {
|
|
1909
|
+
"engines": {
|
|
1910
|
+
"node": ">=12"
|
|
1911
|
+
},
|
|
1912
|
+
"integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
|
|
1913
|
+
"license": "ISC",
|
|
1914
|
+
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
|
|
1915
|
+
"version": "3.1.0"
|
|
1916
|
+
},
|
|
1917
|
+
"node_modules/d3-interpolate": {
|
|
1918
|
+
"dependencies": {
|
|
1919
|
+
"d3-color": "1 - 3"
|
|
1920
|
+
},
|
|
1921
|
+
"engines": {
|
|
1922
|
+
"node": ">=12"
|
|
1923
|
+
},
|
|
1924
|
+
"integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
|
|
1925
|
+
"license": "ISC",
|
|
1926
|
+
"resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
|
|
1927
|
+
"version": "3.0.1"
|
|
1928
|
+
},
|
|
1929
|
+
"node_modules/d3-path": {
|
|
1930
|
+
"engines": {
|
|
1931
|
+
"node": ">=12"
|
|
1932
|
+
},
|
|
1933
|
+
"integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
|
|
1934
|
+
"license": "ISC",
|
|
1935
|
+
"resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
|
|
1936
|
+
"version": "3.1.0"
|
|
1937
|
+
},
|
|
1938
|
+
"node_modules/d3-scale": {
|
|
1939
|
+
"dependencies": {
|
|
1940
|
+
"d3-array": "2.10.0 - 3",
|
|
1941
|
+
"d3-format": "1 - 3",
|
|
1942
|
+
"d3-interpolate": "1.2.0 - 3",
|
|
1943
|
+
"d3-time": "2.1.1 - 3",
|
|
1944
|
+
"d3-time-format": "2 - 4"
|
|
1945
|
+
},
|
|
1946
|
+
"engines": {
|
|
1947
|
+
"node": ">=12"
|
|
1948
|
+
},
|
|
1949
|
+
"integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
|
|
1950
|
+
"license": "ISC",
|
|
1951
|
+
"resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
|
|
1952
|
+
"version": "4.0.2"
|
|
1953
|
+
},
|
|
1954
|
+
"node_modules/d3-selection": {
|
|
1955
|
+
"engines": {
|
|
1956
|
+
"node": ">=12"
|
|
1957
|
+
},
|
|
1958
|
+
"integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
|
|
1959
|
+
"license": "ISC",
|
|
1960
|
+
"resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
|
|
1961
|
+
"version": "3.0.0"
|
|
1962
|
+
},
|
|
1963
|
+
"node_modules/d3-shape": {
|
|
1964
|
+
"dependencies": {
|
|
1965
|
+
"d3-path": "^3.1.0"
|
|
1966
|
+
},
|
|
1967
|
+
"engines": {
|
|
1968
|
+
"node": ">=12"
|
|
1969
|
+
},
|
|
1970
|
+
"integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
|
|
1971
|
+
"license": "ISC",
|
|
1972
|
+
"resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
|
|
1973
|
+
"version": "3.2.0"
|
|
1974
|
+
},
|
|
1975
|
+
"node_modules/d3-time": {
|
|
1976
|
+
"dependencies": {
|
|
1977
|
+
"d3-array": "2 - 3"
|
|
1978
|
+
},
|
|
1979
|
+
"engines": {
|
|
1980
|
+
"node": ">=12"
|
|
1981
|
+
},
|
|
1982
|
+
"integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
|
|
1983
|
+
"license": "ISC",
|
|
1984
|
+
"resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
|
|
1985
|
+
"version": "3.1.0"
|
|
1986
|
+
},
|
|
1987
|
+
"node_modules/d3-time-format": {
|
|
1988
|
+
"dependencies": {
|
|
1989
|
+
"d3-time": "1 - 3"
|
|
1990
|
+
},
|
|
1991
|
+
"engines": {
|
|
1992
|
+
"node": ">=12"
|
|
1993
|
+
},
|
|
1994
|
+
"integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
|
|
1995
|
+
"license": "ISC",
|
|
1996
|
+
"resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
|
|
1997
|
+
"version": "4.1.0"
|
|
1998
|
+
},
|
|
1999
|
+
"node_modules/d3-timer": {
|
|
2000
|
+
"engines": {
|
|
2001
|
+
"node": ">=12"
|
|
2002
|
+
},
|
|
2003
|
+
"integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
|
|
2004
|
+
"license": "ISC",
|
|
2005
|
+
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
|
|
2006
|
+
"version": "3.0.1"
|
|
2007
|
+
},
|
|
2008
|
+
"node_modules/d3-transition": {
|
|
2009
|
+
"dependencies": {
|
|
2010
|
+
"d3-color": "1 - 3",
|
|
2011
|
+
"d3-dispatch": "1 - 3",
|
|
2012
|
+
"d3-ease": "1 - 3",
|
|
2013
|
+
"d3-interpolate": "1 - 3",
|
|
2014
|
+
"d3-timer": "1 - 3"
|
|
2015
|
+
},
|
|
2016
|
+
"engines": {
|
|
2017
|
+
"node": ">=12"
|
|
2018
|
+
},
|
|
2019
|
+
"integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
|
|
2020
|
+
"license": "ISC",
|
|
2021
|
+
"peerDependencies": {
|
|
2022
|
+
"d3-selection": "2 - 3"
|
|
2023
|
+
},
|
|
2024
|
+
"resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
|
|
2025
|
+
"version": "3.0.1"
|
|
2026
|
+
},
|
|
2027
|
+
"node_modules/d3-zoom": {
|
|
2028
|
+
"dependencies": {
|
|
2029
|
+
"d3-dispatch": "1 - 3",
|
|
2030
|
+
"d3-drag": "2 - 3",
|
|
2031
|
+
"d3-interpolate": "1 - 3",
|
|
2032
|
+
"d3-selection": "2 - 3",
|
|
2033
|
+
"d3-transition": "2 - 3"
|
|
2034
|
+
},
|
|
2035
|
+
"engines": {
|
|
2036
|
+
"node": ">=12"
|
|
2037
|
+
},
|
|
2038
|
+
"integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
|
|
2039
|
+
"license": "ISC",
|
|
2040
|
+
"resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
|
|
2041
|
+
"version": "3.0.0"
|
|
2042
|
+
},
|
|
2043
|
+
"node_modules/dagre": {
|
|
2044
|
+
"dependencies": {
|
|
2045
|
+
"graphlib": "^2.1.8",
|
|
2046
|
+
"lodash": "^4.17.15"
|
|
2047
|
+
},
|
|
2048
|
+
"integrity": "sha512-/aTqmnRta7x7MCCpExk7HQL2O4owCT2h8NT//9I1OQ9vt29Pa0BzSAkR5lwFUcQ7491yVi/3CXU9jQ5o0Mn2Sw==",
|
|
2049
|
+
"license": "MIT",
|
|
2050
|
+
"resolved": "https://registry.npmjs.org/dagre/-/dagre-0.8.5.tgz",
|
|
2051
|
+
"version": "0.8.5"
|
|
2052
|
+
},
|
|
2053
|
+
"node_modules/date-fns": {
|
|
2054
|
+
"funding": {
|
|
2055
|
+
"type": "github",
|
|
2056
|
+
"url": "https://github.com/sponsors/kossnocorp"
|
|
2057
|
+
},
|
|
2058
|
+
"integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==",
|
|
2059
|
+
"license": "MIT",
|
|
2060
|
+
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz",
|
|
2061
|
+
"version": "4.1.0"
|
|
2062
|
+
},
|
|
2063
|
+
"node_modules/debug": {
|
|
2064
|
+
"dependencies": {
|
|
2065
|
+
"ms": "^2.1.3"
|
|
2066
|
+
},
|
|
2067
|
+
"dev": true,
|
|
2068
|
+
"engines": {
|
|
2069
|
+
"node": ">=6.0"
|
|
2070
|
+
},
|
|
2071
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
2072
|
+
"license": "MIT",
|
|
2073
|
+
"peerDependenciesMeta": {
|
|
2074
|
+
"supports-color": {
|
|
2075
|
+
"optional": true
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
2079
|
+
"version": "4.4.3"
|
|
2080
|
+
},
|
|
2081
|
+
"node_modules/decimal.js-light": {
|
|
2082
|
+
"integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==",
|
|
2083
|
+
"license": "MIT",
|
|
2084
|
+
"resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz",
|
|
2085
|
+
"version": "2.5.1"
|
|
2086
|
+
},
|
|
2087
|
+
"node_modules/didyoumean": {
|
|
2088
|
+
"dev": true,
|
|
2089
|
+
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
|
|
2090
|
+
"license": "Apache-2.0",
|
|
2091
|
+
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
|
|
2092
|
+
"version": "1.2.2"
|
|
2093
|
+
},
|
|
2094
|
+
"node_modules/dlv": {
|
|
2095
|
+
"dev": true,
|
|
2096
|
+
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
|
|
2097
|
+
"license": "MIT",
|
|
2098
|
+
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
|
|
2099
|
+
"version": "1.1.3"
|
|
2100
|
+
},
|
|
2101
|
+
"node_modules/dom-helpers": {
|
|
2102
|
+
"dependencies": {
|
|
2103
|
+
"@babel/runtime": "^7.8.7",
|
|
2104
|
+
"csstype": "^3.0.2"
|
|
2105
|
+
},
|
|
2106
|
+
"integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
|
|
2107
|
+
"license": "MIT",
|
|
2108
|
+
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
|
|
2109
|
+
"version": "5.2.1"
|
|
2110
|
+
},
|
|
2111
|
+
"node_modules/electron-to-chromium": {
|
|
2112
|
+
"dev": true,
|
|
2113
|
+
"integrity": "sha512-rHUggNV5jKQ0sSdWwlaRDkFc3/rRJIVnOSe9yR4zrR07m3ZxhP4N27Hlg8VeJGGYgFTxK5NqDmWI4DSH72vIJg==",
|
|
2114
|
+
"license": "ISC",
|
|
2115
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.258.tgz",
|
|
2116
|
+
"version": "1.5.258"
|
|
2117
|
+
},
|
|
2118
|
+
"node_modules/esbuild": {
|
|
2119
|
+
"bin": {
|
|
2120
|
+
"esbuild": "bin/esbuild"
|
|
2121
|
+
},
|
|
2122
|
+
"dev": true,
|
|
2123
|
+
"engines": {
|
|
2124
|
+
"node": ">=12"
|
|
2125
|
+
},
|
|
2126
|
+
"hasInstallScript": true,
|
|
2127
|
+
"integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
|
|
2128
|
+
"license": "MIT",
|
|
2129
|
+
"optionalDependencies": {
|
|
2130
|
+
"@esbuild/aix-ppc64": "0.21.5",
|
|
2131
|
+
"@esbuild/android-arm": "0.21.5",
|
|
2132
|
+
"@esbuild/android-arm64": "0.21.5",
|
|
2133
|
+
"@esbuild/android-x64": "0.21.5",
|
|
2134
|
+
"@esbuild/darwin-arm64": "0.21.5",
|
|
2135
|
+
"@esbuild/darwin-x64": "0.21.5",
|
|
2136
|
+
"@esbuild/freebsd-arm64": "0.21.5",
|
|
2137
|
+
"@esbuild/freebsd-x64": "0.21.5",
|
|
2138
|
+
"@esbuild/linux-arm": "0.21.5",
|
|
2139
|
+
"@esbuild/linux-arm64": "0.21.5",
|
|
2140
|
+
"@esbuild/linux-ia32": "0.21.5",
|
|
2141
|
+
"@esbuild/linux-loong64": "0.21.5",
|
|
2142
|
+
"@esbuild/linux-mips64el": "0.21.5",
|
|
2143
|
+
"@esbuild/linux-ppc64": "0.21.5",
|
|
2144
|
+
"@esbuild/linux-riscv64": "0.21.5",
|
|
2145
|
+
"@esbuild/linux-s390x": "0.21.5",
|
|
2146
|
+
"@esbuild/linux-x64": "0.21.5",
|
|
2147
|
+
"@esbuild/netbsd-x64": "0.21.5",
|
|
2148
|
+
"@esbuild/openbsd-x64": "0.21.5",
|
|
2149
|
+
"@esbuild/sunos-x64": "0.21.5",
|
|
2150
|
+
"@esbuild/win32-arm64": "0.21.5",
|
|
2151
|
+
"@esbuild/win32-ia32": "0.21.5",
|
|
2152
|
+
"@esbuild/win32-x64": "0.21.5"
|
|
2153
|
+
},
|
|
2154
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
|
|
2155
|
+
"version": "0.21.5"
|
|
2156
|
+
},
|
|
2157
|
+
"node_modules/escalade": {
|
|
2158
|
+
"dev": true,
|
|
2159
|
+
"engines": {
|
|
2160
|
+
"node": ">=6"
|
|
2161
|
+
},
|
|
2162
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
2163
|
+
"license": "MIT",
|
|
2164
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
2165
|
+
"version": "3.2.0"
|
|
2166
|
+
},
|
|
2167
|
+
"node_modules/eventemitter3": {
|
|
2168
|
+
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
|
2169
|
+
"license": "MIT",
|
|
2170
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
|
|
2171
|
+
"version": "4.0.7"
|
|
2172
|
+
},
|
|
2173
|
+
"node_modules/fast-equals": {
|
|
2174
|
+
"engines": {
|
|
2175
|
+
"node": ">=6.0.0"
|
|
2176
|
+
},
|
|
2177
|
+
"integrity": "sha512-/boTcHZeIAQ2r/tL11voclBHDeP9WPxLt+tyAbVSyyXuUFyh0Tne7gJZTqGbxnvj79TjLdCXLOY7UIPhyG5MTw==",
|
|
2178
|
+
"license": "MIT",
|
|
2179
|
+
"resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.3.3.tgz",
|
|
2180
|
+
"version": "5.3.3"
|
|
2181
|
+
},
|
|
2182
|
+
"node_modules/fast-glob": {
|
|
2183
|
+
"dependencies": {
|
|
2184
|
+
"@nodelib/fs.stat": "^2.0.2",
|
|
2185
|
+
"@nodelib/fs.walk": "^1.2.3",
|
|
2186
|
+
"glob-parent": "^5.1.2",
|
|
2187
|
+
"merge2": "^1.3.0",
|
|
2188
|
+
"micromatch": "^4.0.8"
|
|
2189
|
+
},
|
|
2190
|
+
"dev": true,
|
|
2191
|
+
"engines": {
|
|
2192
|
+
"node": ">=8.6.0"
|
|
2193
|
+
},
|
|
2194
|
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
|
2195
|
+
"license": "MIT",
|
|
2196
|
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
2197
|
+
"version": "3.3.3"
|
|
2198
|
+
},
|
|
2199
|
+
"node_modules/fast-glob/node_modules/glob-parent": {
|
|
2200
|
+
"dependencies": {
|
|
2201
|
+
"is-glob": "^4.0.1"
|
|
2202
|
+
},
|
|
2203
|
+
"dev": true,
|
|
2204
|
+
"engines": {
|
|
2205
|
+
"node": ">= 6"
|
|
2206
|
+
},
|
|
2207
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
2208
|
+
"license": "ISC",
|
|
2209
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
2210
|
+
"version": "5.1.2"
|
|
2211
|
+
},
|
|
2212
|
+
"node_modules/fastq": {
|
|
2213
|
+
"dependencies": {
|
|
2214
|
+
"reusify": "^1.0.4"
|
|
2215
|
+
},
|
|
2216
|
+
"dev": true,
|
|
2217
|
+
"integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
|
|
2218
|
+
"license": "ISC",
|
|
2219
|
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
|
2220
|
+
"version": "1.19.1"
|
|
2221
|
+
},
|
|
2222
|
+
"node_modules/fill-range": {
|
|
2223
|
+
"dependencies": {
|
|
2224
|
+
"to-regex-range": "^5.0.1"
|
|
2225
|
+
},
|
|
2226
|
+
"dev": true,
|
|
2227
|
+
"engines": {
|
|
2228
|
+
"node": ">=8"
|
|
2229
|
+
},
|
|
2230
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
2231
|
+
"license": "MIT",
|
|
2232
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
2233
|
+
"version": "7.1.1"
|
|
2234
|
+
},
|
|
2235
|
+
"node_modules/fraction.js": {
|
|
2236
|
+
"dev": true,
|
|
2237
|
+
"engines": {
|
|
2238
|
+
"node": "*"
|
|
2239
|
+
},
|
|
2240
|
+
"funding": {
|
|
2241
|
+
"type": "github",
|
|
2242
|
+
"url": "https://github.com/sponsors/rawify"
|
|
2243
|
+
},
|
|
2244
|
+
"integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
|
|
2245
|
+
"license": "MIT",
|
|
2246
|
+
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
|
|
2247
|
+
"version": "5.3.4"
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/framer-motion": {
|
|
2250
|
+
"dependencies": {
|
|
2251
|
+
"motion-dom": "^12.23.23",
|
|
2252
|
+
"motion-utils": "^12.23.6",
|
|
2253
|
+
"tslib": "^2.4.0"
|
|
2254
|
+
},
|
|
2255
|
+
"integrity": "sha512-HMi5HRoRCTou+3fb3h9oTLyJGBxHfW+HnNE25tAXOvVx/IvwMHK0cx7IR4a2ZU6sh3IX1Z+4ts32PcYBOqka8w==",
|
|
2256
|
+
"license": "MIT",
|
|
2257
|
+
"peerDependencies": {
|
|
2258
|
+
"@emotion/is-prop-valid": "*",
|
|
2259
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
2260
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
2261
|
+
},
|
|
2262
|
+
"peerDependenciesMeta": {
|
|
2263
|
+
"@emotion/is-prop-valid": {
|
|
2264
|
+
"optional": true
|
|
2265
|
+
},
|
|
2266
|
+
"react": {
|
|
2267
|
+
"optional": true
|
|
2268
|
+
},
|
|
2269
|
+
"react-dom": {
|
|
2270
|
+
"optional": true
|
|
2271
|
+
}
|
|
2272
|
+
},
|
|
2273
|
+
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.24.tgz",
|
|
2274
|
+
"version": "12.23.24"
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/fsevents": {
|
|
2277
|
+
"dev": true,
|
|
2278
|
+
"engines": {
|
|
2279
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2280
|
+
},
|
|
2281
|
+
"hasInstallScript": true,
|
|
2282
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2283
|
+
"license": "MIT",
|
|
2284
|
+
"optional": true,
|
|
2285
|
+
"os": [
|
|
2286
|
+
"darwin"
|
|
2287
|
+
],
|
|
2288
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2289
|
+
"version": "2.3.3"
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/function-bind": {
|
|
2292
|
+
"dev": true,
|
|
2293
|
+
"funding": {
|
|
2294
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2295
|
+
},
|
|
2296
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
2297
|
+
"license": "MIT",
|
|
2298
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
2299
|
+
"version": "1.1.2"
|
|
2300
|
+
},
|
|
2301
|
+
"node_modules/gensync": {
|
|
2302
|
+
"dev": true,
|
|
2303
|
+
"engines": {
|
|
2304
|
+
"node": ">=6.9.0"
|
|
2305
|
+
},
|
|
2306
|
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
|
2307
|
+
"license": "MIT",
|
|
2308
|
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
|
2309
|
+
"version": "1.0.0-beta.2"
|
|
2310
|
+
},
|
|
2311
|
+
"node_modules/glob-parent": {
|
|
2312
|
+
"dependencies": {
|
|
2313
|
+
"is-glob": "^4.0.3"
|
|
2314
|
+
},
|
|
2315
|
+
"dev": true,
|
|
2316
|
+
"engines": {
|
|
2317
|
+
"node": ">=10.13.0"
|
|
2318
|
+
},
|
|
2319
|
+
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
|
2320
|
+
"license": "ISC",
|
|
2321
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
|
|
2322
|
+
"version": "6.0.2"
|
|
2323
|
+
},
|
|
2324
|
+
"node_modules/graphlib": {
|
|
2325
|
+
"dependencies": {
|
|
2326
|
+
"lodash": "^4.17.15"
|
|
2327
|
+
},
|
|
2328
|
+
"integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==",
|
|
2329
|
+
"license": "MIT",
|
|
2330
|
+
"resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz",
|
|
2331
|
+
"version": "2.1.8"
|
|
2332
|
+
},
|
|
2333
|
+
"node_modules/hasown": {
|
|
2334
|
+
"dependencies": {
|
|
2335
|
+
"function-bind": "^1.1.2"
|
|
2336
|
+
},
|
|
2337
|
+
"dev": true,
|
|
2338
|
+
"engines": {
|
|
2339
|
+
"node": ">= 0.4"
|
|
2340
|
+
},
|
|
2341
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
2342
|
+
"license": "MIT",
|
|
2343
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
2344
|
+
"version": "2.0.2"
|
|
2345
|
+
},
|
|
2346
|
+
"node_modules/internmap": {
|
|
2347
|
+
"engines": {
|
|
2348
|
+
"node": ">=12"
|
|
2349
|
+
},
|
|
2350
|
+
"integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
|
|
2351
|
+
"license": "ISC",
|
|
2352
|
+
"resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
|
|
2353
|
+
"version": "2.0.3"
|
|
2354
|
+
},
|
|
2355
|
+
"node_modules/is-binary-path": {
|
|
2356
|
+
"dependencies": {
|
|
2357
|
+
"binary-extensions": "^2.0.0"
|
|
2358
|
+
},
|
|
2359
|
+
"dev": true,
|
|
2360
|
+
"engines": {
|
|
2361
|
+
"node": ">=8"
|
|
2362
|
+
},
|
|
2363
|
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
2364
|
+
"license": "MIT",
|
|
2365
|
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
2366
|
+
"version": "2.1.0"
|
|
2367
|
+
},
|
|
2368
|
+
"node_modules/is-core-module": {
|
|
2369
|
+
"dependencies": {
|
|
2370
|
+
"hasown": "^2.0.2"
|
|
2371
|
+
},
|
|
2372
|
+
"dev": true,
|
|
2373
|
+
"engines": {
|
|
2374
|
+
"node": ">= 0.4"
|
|
2375
|
+
},
|
|
2376
|
+
"funding": {
|
|
2377
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2378
|
+
},
|
|
2379
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
2380
|
+
"license": "MIT",
|
|
2381
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
2382
|
+
"version": "2.16.1"
|
|
2383
|
+
},
|
|
2384
|
+
"node_modules/is-extglob": {
|
|
2385
|
+
"dev": true,
|
|
2386
|
+
"engines": {
|
|
2387
|
+
"node": ">=0.10.0"
|
|
2388
|
+
},
|
|
2389
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
2390
|
+
"license": "MIT",
|
|
2391
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
2392
|
+
"version": "2.1.1"
|
|
2393
|
+
},
|
|
2394
|
+
"node_modules/is-glob": {
|
|
2395
|
+
"dependencies": {
|
|
2396
|
+
"is-extglob": "^2.1.1"
|
|
2397
|
+
},
|
|
2398
|
+
"dev": true,
|
|
2399
|
+
"engines": {
|
|
2400
|
+
"node": ">=0.10.0"
|
|
2401
|
+
},
|
|
2402
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
2403
|
+
"license": "MIT",
|
|
2404
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
2405
|
+
"version": "4.0.3"
|
|
2406
|
+
},
|
|
2407
|
+
"node_modules/is-number": {
|
|
2408
|
+
"dev": true,
|
|
2409
|
+
"engines": {
|
|
2410
|
+
"node": ">=0.12.0"
|
|
2411
|
+
},
|
|
2412
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
2413
|
+
"license": "MIT",
|
|
2414
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
2415
|
+
"version": "7.0.0"
|
|
2416
|
+
},
|
|
2417
|
+
"node_modules/jiti": {
|
|
2418
|
+
"bin": {
|
|
2419
|
+
"jiti": "bin/jiti.js"
|
|
2420
|
+
},
|
|
2421
|
+
"dev": true,
|
|
2422
|
+
"integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
|
|
2423
|
+
"license": "MIT",
|
|
2424
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
|
|
2425
|
+
"version": "1.21.7"
|
|
2426
|
+
},
|
|
2427
|
+
"node_modules/js-tokens": {
|
|
2428
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
2429
|
+
"license": "MIT",
|
|
2430
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
2431
|
+
"version": "4.0.0"
|
|
2432
|
+
},
|
|
2433
|
+
"node_modules/jsesc": {
|
|
2434
|
+
"bin": {
|
|
2435
|
+
"jsesc": "bin/jsesc"
|
|
2436
|
+
},
|
|
2437
|
+
"dev": true,
|
|
2438
|
+
"engines": {
|
|
2439
|
+
"node": ">=6"
|
|
2440
|
+
},
|
|
2441
|
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
2442
|
+
"license": "MIT",
|
|
2443
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
2444
|
+
"version": "3.1.0"
|
|
2445
|
+
},
|
|
2446
|
+
"node_modules/json5": {
|
|
2447
|
+
"bin": {
|
|
2448
|
+
"json5": "lib/cli.js"
|
|
2449
|
+
},
|
|
2450
|
+
"dev": true,
|
|
2451
|
+
"engines": {
|
|
2452
|
+
"node": ">=6"
|
|
2453
|
+
},
|
|
2454
|
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
2455
|
+
"license": "MIT",
|
|
2456
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
|
2457
|
+
"version": "2.2.3"
|
|
2458
|
+
},
|
|
2459
|
+
"node_modules/lilconfig": {
|
|
2460
|
+
"dev": true,
|
|
2461
|
+
"engines": {
|
|
2462
|
+
"node": ">=14"
|
|
2463
|
+
},
|
|
2464
|
+
"funding": {
|
|
2465
|
+
"url": "https://github.com/sponsors/antonk52"
|
|
2466
|
+
},
|
|
2467
|
+
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
|
|
2468
|
+
"license": "MIT",
|
|
2469
|
+
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
|
|
2470
|
+
"version": "3.1.3"
|
|
2471
|
+
},
|
|
2472
|
+
"node_modules/lines-and-columns": {
|
|
2473
|
+
"dev": true,
|
|
2474
|
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
2475
|
+
"license": "MIT",
|
|
2476
|
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
2477
|
+
"version": "1.2.4"
|
|
2478
|
+
},
|
|
2479
|
+
"node_modules/lodash": {
|
|
2480
|
+
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
2481
|
+
"license": "MIT",
|
|
2482
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
2483
|
+
"version": "4.17.21"
|
|
2484
|
+
},
|
|
2485
|
+
"node_modules/loose-envify": {
|
|
2486
|
+
"bin": {
|
|
2487
|
+
"loose-envify": "cli.js"
|
|
2488
|
+
},
|
|
2489
|
+
"dependencies": {
|
|
2490
|
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
2491
|
+
},
|
|
2492
|
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
2493
|
+
"license": "MIT",
|
|
2494
|
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
2495
|
+
"version": "1.4.0"
|
|
2496
|
+
},
|
|
2497
|
+
"node_modules/lru-cache": {
|
|
2498
|
+
"dependencies": {
|
|
2499
|
+
"yallist": "^3.0.2"
|
|
2500
|
+
},
|
|
2501
|
+
"dev": true,
|
|
2502
|
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
|
2503
|
+
"license": "ISC",
|
|
2504
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
2505
|
+
"version": "5.1.1"
|
|
2506
|
+
},
|
|
2507
|
+
"node_modules/lucide-react": {
|
|
2508
|
+
"integrity": "sha512-6YyBnn91GB45VuVT96bYCOKElbJzUHqp65vX8cDcu55MQL9T969v4dhGClpljamuI/+KMO9P6w9Acq1CVQGvIQ==",
|
|
2509
|
+
"license": "ISC",
|
|
2510
|
+
"peerDependencies": {
|
|
2511
|
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0"
|
|
2512
|
+
},
|
|
2513
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.344.0.tgz",
|
|
2514
|
+
"version": "0.344.0"
|
|
2515
|
+
},
|
|
2516
|
+
"node_modules/merge2": {
|
|
2517
|
+
"dev": true,
|
|
2518
|
+
"engines": {
|
|
2519
|
+
"node": ">= 8"
|
|
2520
|
+
},
|
|
2521
|
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
|
|
2522
|
+
"license": "MIT",
|
|
2523
|
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
2524
|
+
"version": "1.4.1"
|
|
2525
|
+
},
|
|
2526
|
+
"node_modules/micromatch": {
|
|
2527
|
+
"dependencies": {
|
|
2528
|
+
"braces": "^3.0.3",
|
|
2529
|
+
"picomatch": "^2.3.1"
|
|
2530
|
+
},
|
|
2531
|
+
"dev": true,
|
|
2532
|
+
"engines": {
|
|
2533
|
+
"node": ">=8.6"
|
|
2534
|
+
},
|
|
2535
|
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
2536
|
+
"license": "MIT",
|
|
2537
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
2538
|
+
"version": "4.0.8"
|
|
2539
|
+
},
|
|
2540
|
+
"node_modules/motion-dom": {
|
|
2541
|
+
"dependencies": {
|
|
2542
|
+
"motion-utils": "^12.23.6"
|
|
2543
|
+
},
|
|
2544
|
+
"integrity": "sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==",
|
|
2545
|
+
"license": "MIT",
|
|
2546
|
+
"resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.23.tgz",
|
|
2547
|
+
"version": "12.23.23"
|
|
2548
|
+
},
|
|
2549
|
+
"node_modules/motion-utils": {
|
|
2550
|
+
"integrity": "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==",
|
|
2551
|
+
"license": "MIT",
|
|
2552
|
+
"resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz",
|
|
2553
|
+
"version": "12.23.6"
|
|
2554
|
+
},
|
|
2555
|
+
"node_modules/ms": {
|
|
2556
|
+
"dev": true,
|
|
2557
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
2558
|
+
"license": "MIT",
|
|
2559
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
2560
|
+
"version": "2.1.3"
|
|
2561
|
+
},
|
|
2562
|
+
"node_modules/mz": {
|
|
2563
|
+
"dependencies": {
|
|
2564
|
+
"any-promise": "^1.0.0",
|
|
2565
|
+
"object-assign": "^4.0.1",
|
|
2566
|
+
"thenify-all": "^1.0.0"
|
|
2567
|
+
},
|
|
2568
|
+
"dev": true,
|
|
2569
|
+
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
|
|
2570
|
+
"license": "MIT",
|
|
2571
|
+
"resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
|
|
2572
|
+
"version": "2.7.0"
|
|
2573
|
+
},
|
|
2574
|
+
"node_modules/nanoid": {
|
|
2575
|
+
"bin": {
|
|
2576
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2577
|
+
},
|
|
2578
|
+
"dev": true,
|
|
2579
|
+
"engines": {
|
|
2580
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2581
|
+
},
|
|
2582
|
+
"funding": [
|
|
2583
|
+
{
|
|
2584
|
+
"type": "github",
|
|
2585
|
+
"url": "https://github.com/sponsors/ai"
|
|
2586
|
+
}
|
|
2587
|
+
],
|
|
2588
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
2589
|
+
"license": "MIT",
|
|
2590
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
2591
|
+
"version": "3.3.11"
|
|
2592
|
+
},
|
|
2593
|
+
"node_modules/node-releases": {
|
|
2594
|
+
"dev": true,
|
|
2595
|
+
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
|
2596
|
+
"license": "MIT",
|
|
2597
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
|
2598
|
+
"version": "2.0.27"
|
|
2599
|
+
},
|
|
2600
|
+
"node_modules/normalize-path": {
|
|
2601
|
+
"dev": true,
|
|
2602
|
+
"engines": {
|
|
2603
|
+
"node": ">=0.10.0"
|
|
2604
|
+
},
|
|
2605
|
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
2606
|
+
"license": "MIT",
|
|
2607
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
2608
|
+
"version": "3.0.0"
|
|
2609
|
+
},
|
|
2610
|
+
"node_modules/normalize-range": {
|
|
2611
|
+
"dev": true,
|
|
2612
|
+
"engines": {
|
|
2613
|
+
"node": ">=0.10.0"
|
|
2614
|
+
},
|
|
2615
|
+
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
|
|
2616
|
+
"license": "MIT",
|
|
2617
|
+
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
|
2618
|
+
"version": "0.1.2"
|
|
2619
|
+
},
|
|
2620
|
+
"node_modules/object-assign": {
|
|
2621
|
+
"engines": {
|
|
2622
|
+
"node": ">=0.10.0"
|
|
2623
|
+
},
|
|
2624
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
2625
|
+
"license": "MIT",
|
|
2626
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
2627
|
+
"version": "4.1.1"
|
|
2628
|
+
},
|
|
2629
|
+
"node_modules/object-hash": {
|
|
2630
|
+
"dev": true,
|
|
2631
|
+
"engines": {
|
|
2632
|
+
"node": ">= 6"
|
|
2633
|
+
},
|
|
2634
|
+
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
|
|
2635
|
+
"license": "MIT",
|
|
2636
|
+
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
|
|
2637
|
+
"version": "3.0.0"
|
|
2638
|
+
},
|
|
2639
|
+
"node_modules/path-parse": {
|
|
2640
|
+
"dev": true,
|
|
2641
|
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
|
|
2642
|
+
"license": "MIT",
|
|
2643
|
+
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
2644
|
+
"version": "1.0.7"
|
|
2645
|
+
},
|
|
2646
|
+
"node_modules/picocolors": {
|
|
2647
|
+
"dev": true,
|
|
2648
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2649
|
+
"license": "ISC",
|
|
2650
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2651
|
+
"version": "1.1.1"
|
|
2652
|
+
},
|
|
2653
|
+
"node_modules/picomatch": {
|
|
2654
|
+
"dev": true,
|
|
2655
|
+
"engines": {
|
|
2656
|
+
"node": ">=8.6"
|
|
2657
|
+
},
|
|
2658
|
+
"funding": {
|
|
2659
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2660
|
+
},
|
|
2661
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
2662
|
+
"license": "MIT",
|
|
2663
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
2664
|
+
"version": "2.3.1"
|
|
2665
|
+
},
|
|
2666
|
+
"node_modules/pify": {
|
|
2667
|
+
"dev": true,
|
|
2668
|
+
"engines": {
|
|
2669
|
+
"node": ">=0.10.0"
|
|
2670
|
+
},
|
|
2671
|
+
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
|
|
2672
|
+
"license": "MIT",
|
|
2673
|
+
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
|
2674
|
+
"version": "2.3.0"
|
|
2675
|
+
},
|
|
2676
|
+
"node_modules/pirates": {
|
|
2677
|
+
"dev": true,
|
|
2678
|
+
"engines": {
|
|
2679
|
+
"node": ">= 6"
|
|
2680
|
+
},
|
|
2681
|
+
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
|
2682
|
+
"license": "MIT",
|
|
2683
|
+
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
|
|
2684
|
+
"version": "4.0.7"
|
|
2685
|
+
},
|
|
2686
|
+
"node_modules/postcss": {
|
|
2687
|
+
"dependencies": {
|
|
2688
|
+
"nanoid": "^3.3.11",
|
|
2689
|
+
"picocolors": "^1.1.1",
|
|
2690
|
+
"source-map-js": "^1.2.1"
|
|
2691
|
+
},
|
|
2692
|
+
"dev": true,
|
|
2693
|
+
"engines": {
|
|
2694
|
+
"node": "^10 || ^12 || >=14"
|
|
2695
|
+
},
|
|
2696
|
+
"funding": [
|
|
2697
|
+
{
|
|
2698
|
+
"type": "opencollective",
|
|
2699
|
+
"url": "https://opencollective.com/postcss/"
|
|
2700
|
+
},
|
|
2701
|
+
{
|
|
2702
|
+
"type": "tidelift",
|
|
2703
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"type": "github",
|
|
2707
|
+
"url": "https://github.com/sponsors/ai"
|
|
2708
|
+
}
|
|
2709
|
+
],
|
|
2710
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
2711
|
+
"license": "MIT",
|
|
2712
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
2713
|
+
"version": "8.5.6"
|
|
2714
|
+
},
|
|
2715
|
+
"node_modules/postcss-import": {
|
|
2716
|
+
"dependencies": {
|
|
2717
|
+
"postcss-value-parser": "^4.0.0",
|
|
2718
|
+
"read-cache": "^1.0.0",
|
|
2719
|
+
"resolve": "^1.1.7"
|
|
2720
|
+
},
|
|
2721
|
+
"dev": true,
|
|
2722
|
+
"engines": {
|
|
2723
|
+
"node": ">=14.0.0"
|
|
2724
|
+
},
|
|
2725
|
+
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
|
|
2726
|
+
"license": "MIT",
|
|
2727
|
+
"peerDependencies": {
|
|
2728
|
+
"postcss": "^8.0.0"
|
|
2729
|
+
},
|
|
2730
|
+
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
|
|
2731
|
+
"version": "15.1.0"
|
|
2732
|
+
},
|
|
2733
|
+
"node_modules/postcss-js": {
|
|
2734
|
+
"dependencies": {
|
|
2735
|
+
"camelcase-css": "^2.0.1"
|
|
2736
|
+
},
|
|
2737
|
+
"dev": true,
|
|
2738
|
+
"engines": {
|
|
2739
|
+
"node": "^12 || ^14 || >= 16"
|
|
2740
|
+
},
|
|
2741
|
+
"funding": [
|
|
2742
|
+
{
|
|
2743
|
+
"type": "opencollective",
|
|
2744
|
+
"url": "https://opencollective.com/postcss/"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"type": "github",
|
|
2748
|
+
"url": "https://github.com/sponsors/ai"
|
|
2749
|
+
}
|
|
2750
|
+
],
|
|
2751
|
+
"integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==",
|
|
2752
|
+
"license": "MIT",
|
|
2753
|
+
"peerDependencies": {
|
|
2754
|
+
"postcss": "^8.4.21"
|
|
2755
|
+
},
|
|
2756
|
+
"resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz",
|
|
2757
|
+
"version": "4.1.0"
|
|
2758
|
+
},
|
|
2759
|
+
"node_modules/postcss-load-config": {
|
|
2760
|
+
"dependencies": {
|
|
2761
|
+
"lilconfig": "^3.1.1"
|
|
2762
|
+
},
|
|
2763
|
+
"dev": true,
|
|
2764
|
+
"engines": {
|
|
2765
|
+
"node": ">= 18"
|
|
2766
|
+
},
|
|
2767
|
+
"funding": [
|
|
2768
|
+
{
|
|
2769
|
+
"type": "opencollective",
|
|
2770
|
+
"url": "https://opencollective.com/postcss/"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
"type": "github",
|
|
2774
|
+
"url": "https://github.com/sponsors/ai"
|
|
2775
|
+
}
|
|
2776
|
+
],
|
|
2777
|
+
"integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==",
|
|
2778
|
+
"license": "MIT",
|
|
2779
|
+
"peerDependencies": {
|
|
2780
|
+
"jiti": ">=1.21.0",
|
|
2781
|
+
"postcss": ">=8.0.9",
|
|
2782
|
+
"tsx": "^4.8.1",
|
|
2783
|
+
"yaml": "^2.4.2"
|
|
2784
|
+
},
|
|
2785
|
+
"peerDependenciesMeta": {
|
|
2786
|
+
"jiti": {
|
|
2787
|
+
"optional": true
|
|
2788
|
+
},
|
|
2789
|
+
"postcss": {
|
|
2790
|
+
"optional": true
|
|
2791
|
+
},
|
|
2792
|
+
"tsx": {
|
|
2793
|
+
"optional": true
|
|
2794
|
+
},
|
|
2795
|
+
"yaml": {
|
|
2796
|
+
"optional": true
|
|
2797
|
+
}
|
|
2798
|
+
},
|
|
2799
|
+
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz",
|
|
2800
|
+
"version": "6.0.1"
|
|
2801
|
+
},
|
|
2802
|
+
"node_modules/postcss-nested": {
|
|
2803
|
+
"dependencies": {
|
|
2804
|
+
"postcss-selector-parser": "^6.1.1"
|
|
2805
|
+
},
|
|
2806
|
+
"dev": true,
|
|
2807
|
+
"engines": {
|
|
2808
|
+
"node": ">=12.0"
|
|
2809
|
+
},
|
|
2810
|
+
"funding": [
|
|
2811
|
+
{
|
|
2812
|
+
"type": "opencollective",
|
|
2813
|
+
"url": "https://opencollective.com/postcss/"
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"type": "github",
|
|
2817
|
+
"url": "https://github.com/sponsors/ai"
|
|
2818
|
+
}
|
|
2819
|
+
],
|
|
2820
|
+
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
|
|
2821
|
+
"license": "MIT",
|
|
2822
|
+
"peerDependencies": {
|
|
2823
|
+
"postcss": "^8.2.14"
|
|
2824
|
+
},
|
|
2825
|
+
"resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
|
|
2826
|
+
"version": "6.2.0"
|
|
2827
|
+
},
|
|
2828
|
+
"node_modules/postcss-selector-parser": {
|
|
2829
|
+
"dependencies": {
|
|
2830
|
+
"cssesc": "^3.0.0",
|
|
2831
|
+
"util-deprecate": "^1.0.2"
|
|
2832
|
+
},
|
|
2833
|
+
"dev": true,
|
|
2834
|
+
"engines": {
|
|
2835
|
+
"node": ">=4"
|
|
2836
|
+
},
|
|
2837
|
+
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
|
|
2838
|
+
"license": "MIT",
|
|
2839
|
+
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
|
|
2840
|
+
"version": "6.1.2"
|
|
2841
|
+
},
|
|
2842
|
+
"node_modules/postcss-value-parser": {
|
|
2843
|
+
"dev": true,
|
|
2844
|
+
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
|
|
2845
|
+
"license": "MIT",
|
|
2846
|
+
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
|
|
2847
|
+
"version": "4.2.0"
|
|
2848
|
+
},
|
|
2849
|
+
"node_modules/prop-types": {
|
|
2850
|
+
"dependencies": {
|
|
2851
|
+
"loose-envify": "^1.4.0",
|
|
2852
|
+
"object-assign": "^4.1.1",
|
|
2853
|
+
"react-is": "^16.13.1"
|
|
2854
|
+
},
|
|
2855
|
+
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
|
|
2856
|
+
"license": "MIT",
|
|
2857
|
+
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
|
|
2858
|
+
"version": "15.8.1"
|
|
2859
|
+
},
|
|
2860
|
+
"node_modules/prop-types/node_modules/react-is": {
|
|
2861
|
+
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
|
|
2862
|
+
"license": "MIT",
|
|
2863
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
|
2864
|
+
"version": "16.13.1"
|
|
2865
|
+
},
|
|
2866
|
+
"node_modules/queue-microtask": {
|
|
2867
|
+
"dev": true,
|
|
2868
|
+
"funding": [
|
|
2869
|
+
{
|
|
2870
|
+
"type": "github",
|
|
2871
|
+
"url": "https://github.com/sponsors/feross"
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
"type": "patreon",
|
|
2875
|
+
"url": "https://www.patreon.com/feross"
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"type": "consulting",
|
|
2879
|
+
"url": "https://feross.org/support"
|
|
2880
|
+
}
|
|
2881
|
+
],
|
|
2882
|
+
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
|
|
2883
|
+
"license": "MIT",
|
|
2884
|
+
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
2885
|
+
"version": "1.2.3"
|
|
2886
|
+
},
|
|
2887
|
+
"node_modules/react": {
|
|
2888
|
+
"dependencies": {
|
|
2889
|
+
"loose-envify": "^1.1.0"
|
|
2890
|
+
},
|
|
2891
|
+
"engines": {
|
|
2892
|
+
"node": ">=0.10.0"
|
|
2893
|
+
},
|
|
2894
|
+
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
|
2895
|
+
"license": "MIT",
|
|
2896
|
+
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
|
2897
|
+
"version": "18.3.1"
|
|
2898
|
+
},
|
|
2899
|
+
"node_modules/react-dom": {
|
|
2900
|
+
"dependencies": {
|
|
2901
|
+
"loose-envify": "^1.1.0",
|
|
2902
|
+
"scheduler": "^0.23.2"
|
|
2903
|
+
},
|
|
2904
|
+
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
|
|
2905
|
+
"license": "MIT",
|
|
2906
|
+
"peerDependencies": {
|
|
2907
|
+
"react": "^18.3.1"
|
|
2908
|
+
},
|
|
2909
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
|
|
2910
|
+
"version": "18.3.1"
|
|
2911
|
+
},
|
|
2912
|
+
"node_modules/react-is": {
|
|
2913
|
+
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
2914
|
+
"license": "MIT",
|
|
2915
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
2916
|
+
"version": "18.3.1"
|
|
2917
|
+
},
|
|
2918
|
+
"node_modules/react-refresh": {
|
|
2919
|
+
"dev": true,
|
|
2920
|
+
"engines": {
|
|
2921
|
+
"node": ">=0.10.0"
|
|
2922
|
+
},
|
|
2923
|
+
"integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
|
|
2924
|
+
"license": "MIT",
|
|
2925
|
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
|
2926
|
+
"version": "0.17.0"
|
|
2927
|
+
},
|
|
2928
|
+
"node_modules/react-router": {
|
|
2929
|
+
"dependencies": {
|
|
2930
|
+
"@remix-run/router": "1.23.1"
|
|
2931
|
+
},
|
|
2932
|
+
"engines": {
|
|
2933
|
+
"node": ">=14.0.0"
|
|
2934
|
+
},
|
|
2935
|
+
"integrity": "sha512-H2Bm38Zu1bm8KUE5NVWRMzuIyAV8p/JrOaBJAwVmp37AXG72+CZJlEBw6pdn9i5TBgLMhNDgijS4ZlblpHyWTA==",
|
|
2936
|
+
"license": "MIT",
|
|
2937
|
+
"peerDependencies": {
|
|
2938
|
+
"react": ">=16.8"
|
|
2939
|
+
},
|
|
2940
|
+
"resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.2.tgz",
|
|
2941
|
+
"version": "6.30.2"
|
|
2942
|
+
},
|
|
2943
|
+
"node_modules/react-router-dom": {
|
|
2944
|
+
"dependencies": {
|
|
2945
|
+
"@remix-run/router": "1.23.1",
|
|
2946
|
+
"react-router": "6.30.2"
|
|
2947
|
+
},
|
|
2948
|
+
"engines": {
|
|
2949
|
+
"node": ">=14.0.0"
|
|
2950
|
+
},
|
|
2951
|
+
"integrity": "sha512-l2OwHn3UUnEVUqc6/1VMmR1cvZryZ3j3NzapC2eUXO1dB0sYp5mvwdjiXhpUbRb21eFow3qSxpP8Yv6oAU824Q==",
|
|
2952
|
+
"license": "MIT",
|
|
2953
|
+
"peerDependencies": {
|
|
2954
|
+
"react": ">=16.8",
|
|
2955
|
+
"react-dom": ">=16.8"
|
|
2956
|
+
},
|
|
2957
|
+
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.2.tgz",
|
|
2958
|
+
"version": "6.30.2"
|
|
2959
|
+
},
|
|
2960
|
+
"node_modules/react-smooth": {
|
|
2961
|
+
"dependencies": {
|
|
2962
|
+
"fast-equals": "^5.0.1",
|
|
2963
|
+
"prop-types": "^15.8.1",
|
|
2964
|
+
"react-transition-group": "^4.4.5"
|
|
2965
|
+
},
|
|
2966
|
+
"integrity": "sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==",
|
|
2967
|
+
"license": "MIT",
|
|
2968
|
+
"peerDependencies": {
|
|
2969
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
2970
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
2971
|
+
},
|
|
2972
|
+
"resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.4.tgz",
|
|
2973
|
+
"version": "4.0.4"
|
|
2974
|
+
},
|
|
2975
|
+
"node_modules/react-transition-group": {
|
|
2976
|
+
"dependencies": {
|
|
2977
|
+
"@babel/runtime": "^7.5.5",
|
|
2978
|
+
"dom-helpers": "^5.0.1",
|
|
2979
|
+
"loose-envify": "^1.4.0",
|
|
2980
|
+
"prop-types": "^15.6.2"
|
|
2981
|
+
},
|
|
2982
|
+
"integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
|
|
2983
|
+
"license": "BSD-3-Clause",
|
|
2984
|
+
"peerDependencies": {
|
|
2985
|
+
"react": ">=16.6.0",
|
|
2986
|
+
"react-dom": ">=16.6.0"
|
|
2987
|
+
},
|
|
2988
|
+
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
|
|
2989
|
+
"version": "4.4.5"
|
|
2990
|
+
},
|
|
2991
|
+
"node_modules/reactflow": {
|
|
2992
|
+
"dependencies": {
|
|
2993
|
+
"@reactflow/background": "11.3.14",
|
|
2994
|
+
"@reactflow/controls": "11.2.14",
|
|
2995
|
+
"@reactflow/core": "11.11.4",
|
|
2996
|
+
"@reactflow/minimap": "11.7.14",
|
|
2997
|
+
"@reactflow/node-resizer": "2.2.14",
|
|
2998
|
+
"@reactflow/node-toolbar": "1.3.14"
|
|
2999
|
+
},
|
|
3000
|
+
"integrity": "sha512-70FOtJkUWH3BAOsN+LU9lCrKoKbtOPnz2uq0CV2PLdNSwxTXOhCbsZr50GmZ+Rtw3jx8Uv7/vBFtCGixLfd4Og==",
|
|
3001
|
+
"license": "MIT",
|
|
3002
|
+
"peerDependencies": {
|
|
3003
|
+
"react": ">=17",
|
|
3004
|
+
"react-dom": ">=17"
|
|
3005
|
+
},
|
|
3006
|
+
"resolved": "https://registry.npmjs.org/reactflow/-/reactflow-11.11.4.tgz",
|
|
3007
|
+
"version": "11.11.4"
|
|
3008
|
+
},
|
|
3009
|
+
"node_modules/read-cache": {
|
|
3010
|
+
"dependencies": {
|
|
3011
|
+
"pify": "^2.3.0"
|
|
3012
|
+
},
|
|
3013
|
+
"dev": true,
|
|
3014
|
+
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
|
|
3015
|
+
"license": "MIT",
|
|
3016
|
+
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
|
|
3017
|
+
"version": "1.0.0"
|
|
3018
|
+
},
|
|
3019
|
+
"node_modules/readdirp": {
|
|
3020
|
+
"dependencies": {
|
|
3021
|
+
"picomatch": "^2.2.1"
|
|
3022
|
+
},
|
|
3023
|
+
"dev": true,
|
|
3024
|
+
"engines": {
|
|
3025
|
+
"node": ">=8.10.0"
|
|
3026
|
+
},
|
|
3027
|
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
3028
|
+
"license": "MIT",
|
|
3029
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
3030
|
+
"version": "3.6.0"
|
|
3031
|
+
},
|
|
3032
|
+
"node_modules/recharts": {
|
|
3033
|
+
"dependencies": {
|
|
3034
|
+
"clsx": "^2.0.0",
|
|
3035
|
+
"eventemitter3": "^4.0.1",
|
|
3036
|
+
"lodash": "^4.17.21",
|
|
3037
|
+
"react-is": "^18.3.1",
|
|
3038
|
+
"react-smooth": "^4.0.4",
|
|
3039
|
+
"recharts-scale": "^0.4.4",
|
|
3040
|
+
"tiny-invariant": "^1.3.1",
|
|
3041
|
+
"victory-vendor": "^36.6.8"
|
|
3042
|
+
},
|
|
3043
|
+
"engines": {
|
|
3044
|
+
"node": ">=14"
|
|
3045
|
+
},
|
|
3046
|
+
"integrity": "sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==",
|
|
3047
|
+
"license": "MIT",
|
|
3048
|
+
"peerDependencies": {
|
|
3049
|
+
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
3050
|
+
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
3051
|
+
},
|
|
3052
|
+
"resolved": "https://registry.npmjs.org/recharts/-/recharts-2.15.4.tgz",
|
|
3053
|
+
"version": "2.15.4"
|
|
3054
|
+
},
|
|
3055
|
+
"node_modules/recharts-scale": {
|
|
3056
|
+
"dependencies": {
|
|
3057
|
+
"decimal.js-light": "^2.4.1"
|
|
3058
|
+
},
|
|
3059
|
+
"integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==",
|
|
3060
|
+
"license": "MIT",
|
|
3061
|
+
"resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz",
|
|
3062
|
+
"version": "0.4.5"
|
|
3063
|
+
},
|
|
3064
|
+
"node_modules/resolve": {
|
|
3065
|
+
"bin": {
|
|
3066
|
+
"resolve": "bin/resolve"
|
|
3067
|
+
},
|
|
3068
|
+
"dependencies": {
|
|
3069
|
+
"is-core-module": "^2.16.1",
|
|
3070
|
+
"path-parse": "^1.0.7",
|
|
3071
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
3072
|
+
},
|
|
3073
|
+
"dev": true,
|
|
3074
|
+
"engines": {
|
|
3075
|
+
"node": ">= 0.4"
|
|
3076
|
+
},
|
|
3077
|
+
"funding": {
|
|
3078
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3079
|
+
},
|
|
3080
|
+
"integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
|
|
3081
|
+
"license": "MIT",
|
|
3082
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
|
|
3083
|
+
"version": "1.22.11"
|
|
3084
|
+
},
|
|
3085
|
+
"node_modules/reusify": {
|
|
3086
|
+
"dev": true,
|
|
3087
|
+
"engines": {
|
|
3088
|
+
"iojs": ">=1.0.0",
|
|
3089
|
+
"node": ">=0.10.0"
|
|
3090
|
+
},
|
|
3091
|
+
"integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
|
|
3092
|
+
"license": "MIT",
|
|
3093
|
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
3094
|
+
"version": "1.1.0"
|
|
3095
|
+
},
|
|
3096
|
+
"node_modules/rollup": {
|
|
3097
|
+
"bin": {
|
|
3098
|
+
"rollup": "dist/bin/rollup"
|
|
3099
|
+
},
|
|
3100
|
+
"dependencies": {
|
|
3101
|
+
"@types/estree": "1.0.8"
|
|
3102
|
+
},
|
|
3103
|
+
"dev": true,
|
|
3104
|
+
"engines": {
|
|
3105
|
+
"node": ">=18.0.0",
|
|
3106
|
+
"npm": ">=8.0.0"
|
|
3107
|
+
},
|
|
3108
|
+
"integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==",
|
|
3109
|
+
"license": "MIT",
|
|
3110
|
+
"optionalDependencies": {
|
|
3111
|
+
"@rollup/rollup-android-arm-eabi": "4.53.3",
|
|
3112
|
+
"@rollup/rollup-android-arm64": "4.53.3",
|
|
3113
|
+
"@rollup/rollup-darwin-arm64": "4.53.3",
|
|
3114
|
+
"@rollup/rollup-darwin-x64": "4.53.3",
|
|
3115
|
+
"@rollup/rollup-freebsd-arm64": "4.53.3",
|
|
3116
|
+
"@rollup/rollup-freebsd-x64": "4.53.3",
|
|
3117
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.53.3",
|
|
3118
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.53.3",
|
|
3119
|
+
"@rollup/rollup-linux-arm64-gnu": "4.53.3",
|
|
3120
|
+
"@rollup/rollup-linux-arm64-musl": "4.53.3",
|
|
3121
|
+
"@rollup/rollup-linux-loong64-gnu": "4.53.3",
|
|
3122
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.53.3",
|
|
3123
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.53.3",
|
|
3124
|
+
"@rollup/rollup-linux-riscv64-musl": "4.53.3",
|
|
3125
|
+
"@rollup/rollup-linux-s390x-gnu": "4.53.3",
|
|
3126
|
+
"@rollup/rollup-linux-x64-gnu": "4.53.3",
|
|
3127
|
+
"@rollup/rollup-linux-x64-musl": "4.53.3",
|
|
3128
|
+
"@rollup/rollup-openharmony-arm64": "4.53.3",
|
|
3129
|
+
"@rollup/rollup-win32-arm64-msvc": "4.53.3",
|
|
3130
|
+
"@rollup/rollup-win32-ia32-msvc": "4.53.3",
|
|
3131
|
+
"@rollup/rollup-win32-x64-gnu": "4.53.3",
|
|
3132
|
+
"@rollup/rollup-win32-x64-msvc": "4.53.3",
|
|
3133
|
+
"fsevents": "~2.3.2"
|
|
3134
|
+
},
|
|
3135
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz",
|
|
3136
|
+
"version": "4.53.3"
|
|
3137
|
+
},
|
|
3138
|
+
"node_modules/run-parallel": {
|
|
3139
|
+
"dependencies": {
|
|
3140
|
+
"queue-microtask": "^1.2.2"
|
|
3141
|
+
},
|
|
3142
|
+
"dev": true,
|
|
3143
|
+
"funding": [
|
|
3144
|
+
{
|
|
3145
|
+
"type": "github",
|
|
3146
|
+
"url": "https://github.com/sponsors/feross"
|
|
3147
|
+
},
|
|
3148
|
+
{
|
|
3149
|
+
"type": "patreon",
|
|
3150
|
+
"url": "https://www.patreon.com/feross"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"type": "consulting",
|
|
3154
|
+
"url": "https://feross.org/support"
|
|
3155
|
+
}
|
|
3156
|
+
],
|
|
3157
|
+
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
|
|
3158
|
+
"license": "MIT",
|
|
3159
|
+
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
|
|
3160
|
+
"version": "1.2.0"
|
|
3161
|
+
},
|
|
3162
|
+
"node_modules/scheduler": {
|
|
3163
|
+
"dependencies": {
|
|
3164
|
+
"loose-envify": "^1.1.0"
|
|
3165
|
+
},
|
|
3166
|
+
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
|
|
3167
|
+
"license": "MIT",
|
|
3168
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
|
3169
|
+
"version": "0.23.2"
|
|
3170
|
+
},
|
|
3171
|
+
"node_modules/semver": {
|
|
3172
|
+
"bin": {
|
|
3173
|
+
"semver": "bin/semver.js"
|
|
3174
|
+
},
|
|
3175
|
+
"dev": true,
|
|
3176
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
3177
|
+
"license": "ISC",
|
|
3178
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
3179
|
+
"version": "6.3.1"
|
|
3180
|
+
},
|
|
3181
|
+
"node_modules/source-map-js": {
|
|
3182
|
+
"dev": true,
|
|
3183
|
+
"engines": {
|
|
3184
|
+
"node": ">=0.10.0"
|
|
3185
|
+
},
|
|
3186
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
3187
|
+
"license": "BSD-3-Clause",
|
|
3188
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
3189
|
+
"version": "1.2.1"
|
|
3190
|
+
},
|
|
3191
|
+
"node_modules/sucrase": {
|
|
3192
|
+
"bin": {
|
|
3193
|
+
"sucrase": "bin/sucrase",
|
|
3194
|
+
"sucrase-node": "bin/sucrase-node"
|
|
3195
|
+
},
|
|
3196
|
+
"dependencies": {
|
|
3197
|
+
"@jridgewell/gen-mapping": "^0.3.2",
|
|
3198
|
+
"commander": "^4.0.0",
|
|
3199
|
+
"lines-and-columns": "^1.1.6",
|
|
3200
|
+
"mz": "^2.7.0",
|
|
3201
|
+
"pirates": "^4.0.1",
|
|
3202
|
+
"tinyglobby": "^0.2.11",
|
|
3203
|
+
"ts-interface-checker": "^0.1.9"
|
|
3204
|
+
},
|
|
3205
|
+
"dev": true,
|
|
3206
|
+
"engines": {
|
|
3207
|
+
"node": ">=16 || 14 >=14.17"
|
|
3208
|
+
},
|
|
3209
|
+
"integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
|
|
3210
|
+
"license": "MIT",
|
|
3211
|
+
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
|
|
3212
|
+
"version": "3.35.1"
|
|
3213
|
+
},
|
|
3214
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
3215
|
+
"dev": true,
|
|
3216
|
+
"engines": {
|
|
3217
|
+
"node": ">= 0.4"
|
|
3218
|
+
},
|
|
3219
|
+
"funding": {
|
|
3220
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3221
|
+
},
|
|
3222
|
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
3223
|
+
"license": "MIT",
|
|
3224
|
+
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
3225
|
+
"version": "1.0.0"
|
|
3226
|
+
},
|
|
3227
|
+
"node_modules/tailwind-merge": {
|
|
3228
|
+
"funding": {
|
|
3229
|
+
"type": "github",
|
|
3230
|
+
"url": "https://github.com/sponsors/dcastil"
|
|
3231
|
+
},
|
|
3232
|
+
"integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==",
|
|
3233
|
+
"license": "MIT",
|
|
3234
|
+
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz",
|
|
3235
|
+
"version": "2.6.0"
|
|
3236
|
+
},
|
|
3237
|
+
"node_modules/tailwindcss": {
|
|
3238
|
+
"bin": {
|
|
3239
|
+
"tailwind": "lib/cli.js",
|
|
3240
|
+
"tailwindcss": "lib/cli.js"
|
|
3241
|
+
},
|
|
3242
|
+
"dependencies": {
|
|
3243
|
+
"@alloc/quick-lru": "^5.2.0",
|
|
3244
|
+
"arg": "^5.0.2",
|
|
3245
|
+
"chokidar": "^3.6.0",
|
|
3246
|
+
"didyoumean": "^1.2.2",
|
|
3247
|
+
"dlv": "^1.1.3",
|
|
3248
|
+
"fast-glob": "^3.3.2",
|
|
3249
|
+
"glob-parent": "^6.0.2",
|
|
3250
|
+
"is-glob": "^4.0.3",
|
|
3251
|
+
"jiti": "^1.21.7",
|
|
3252
|
+
"lilconfig": "^3.1.3",
|
|
3253
|
+
"micromatch": "^4.0.8",
|
|
3254
|
+
"normalize-path": "^3.0.0",
|
|
3255
|
+
"object-hash": "^3.0.0",
|
|
3256
|
+
"picocolors": "^1.1.1",
|
|
3257
|
+
"postcss": "^8.4.47",
|
|
3258
|
+
"postcss-import": "^15.1.0",
|
|
3259
|
+
"postcss-js": "^4.0.1",
|
|
3260
|
+
"postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
|
|
3261
|
+
"postcss-nested": "^6.2.0",
|
|
3262
|
+
"postcss-selector-parser": "^6.1.2",
|
|
3263
|
+
"resolve": "^1.22.8",
|
|
3264
|
+
"sucrase": "^3.35.0"
|
|
3265
|
+
},
|
|
3266
|
+
"dev": true,
|
|
3267
|
+
"engines": {
|
|
3268
|
+
"node": ">=14.0.0"
|
|
3269
|
+
},
|
|
3270
|
+
"integrity": "sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==",
|
|
3271
|
+
"license": "MIT",
|
|
3272
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.18.tgz",
|
|
3273
|
+
"version": "3.4.18"
|
|
3274
|
+
},
|
|
3275
|
+
"node_modules/thenify": {
|
|
3276
|
+
"dependencies": {
|
|
3277
|
+
"any-promise": "^1.0.0"
|
|
3278
|
+
},
|
|
3279
|
+
"dev": true,
|
|
3280
|
+
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
|
|
3281
|
+
"license": "MIT",
|
|
3282
|
+
"resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
|
|
3283
|
+
"version": "3.3.1"
|
|
3284
|
+
},
|
|
3285
|
+
"node_modules/thenify-all": {
|
|
3286
|
+
"dependencies": {
|
|
3287
|
+
"thenify": ">= 3.1.0 < 4"
|
|
3288
|
+
},
|
|
3289
|
+
"dev": true,
|
|
3290
|
+
"engines": {
|
|
3291
|
+
"node": ">=0.8"
|
|
3292
|
+
},
|
|
3293
|
+
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
|
|
3294
|
+
"license": "MIT",
|
|
3295
|
+
"resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
|
|
3296
|
+
"version": "1.6.0"
|
|
3297
|
+
},
|
|
3298
|
+
"node_modules/tiny-invariant": {
|
|
3299
|
+
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
|
|
3300
|
+
"license": "MIT",
|
|
3301
|
+
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
|
|
3302
|
+
"version": "1.3.3"
|
|
3303
|
+
},
|
|
3304
|
+
"node_modules/tinyglobby": {
|
|
3305
|
+
"dependencies": {
|
|
3306
|
+
"fdir": "^6.5.0",
|
|
3307
|
+
"picomatch": "^4.0.3"
|
|
3308
|
+
},
|
|
3309
|
+
"dev": true,
|
|
3310
|
+
"engines": {
|
|
3311
|
+
"node": ">=12.0.0"
|
|
3312
|
+
},
|
|
3313
|
+
"funding": {
|
|
3314
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
3315
|
+
},
|
|
3316
|
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
|
3317
|
+
"license": "MIT",
|
|
3318
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
3319
|
+
"version": "0.2.15"
|
|
3320
|
+
},
|
|
3321
|
+
"node_modules/tinyglobby/node_modules/fdir": {
|
|
3322
|
+
"dev": true,
|
|
3323
|
+
"engines": {
|
|
3324
|
+
"node": ">=12.0.0"
|
|
3325
|
+
},
|
|
3326
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
3327
|
+
"license": "MIT",
|
|
3328
|
+
"peerDependencies": {
|
|
3329
|
+
"picomatch": "^3 || ^4"
|
|
3330
|
+
},
|
|
3331
|
+
"peerDependenciesMeta": {
|
|
3332
|
+
"picomatch": {
|
|
3333
|
+
"optional": true
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
3337
|
+
"version": "6.5.0"
|
|
3338
|
+
},
|
|
3339
|
+
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
3340
|
+
"dev": true,
|
|
3341
|
+
"engines": {
|
|
3342
|
+
"node": ">=12"
|
|
3343
|
+
},
|
|
3344
|
+
"funding": {
|
|
3345
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
3346
|
+
},
|
|
3347
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
3348
|
+
"license": "MIT",
|
|
3349
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
3350
|
+
"version": "4.0.3"
|
|
3351
|
+
},
|
|
3352
|
+
"node_modules/to-regex-range": {
|
|
3353
|
+
"dependencies": {
|
|
3354
|
+
"is-number": "^7.0.0"
|
|
3355
|
+
},
|
|
3356
|
+
"dev": true,
|
|
3357
|
+
"engines": {
|
|
3358
|
+
"node": ">=8.0"
|
|
3359
|
+
},
|
|
3360
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
3361
|
+
"license": "MIT",
|
|
3362
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
3363
|
+
"version": "5.0.1"
|
|
3364
|
+
},
|
|
3365
|
+
"node_modules/ts-interface-checker": {
|
|
3366
|
+
"dev": true,
|
|
3367
|
+
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
|
|
3368
|
+
"license": "Apache-2.0",
|
|
3369
|
+
"resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
|
|
3370
|
+
"version": "0.1.13"
|
|
3371
|
+
},
|
|
3372
|
+
"node_modules/tslib": {
|
|
3373
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
3374
|
+
"license": "0BSD",
|
|
3375
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
3376
|
+
"version": "2.8.1"
|
|
3377
|
+
},
|
|
3378
|
+
"node_modules/update-browserslist-db": {
|
|
3379
|
+
"bin": {
|
|
3380
|
+
"update-browserslist-db": "cli.js"
|
|
3381
|
+
},
|
|
3382
|
+
"dependencies": {
|
|
3383
|
+
"escalade": "^3.2.0",
|
|
3384
|
+
"picocolors": "^1.1.1"
|
|
3385
|
+
},
|
|
3386
|
+
"dev": true,
|
|
3387
|
+
"funding": [
|
|
3388
|
+
{
|
|
3389
|
+
"type": "opencollective",
|
|
3390
|
+
"url": "https://opencollective.com/browserslist"
|
|
3391
|
+
},
|
|
3392
|
+
{
|
|
3393
|
+
"type": "tidelift",
|
|
3394
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"type": "github",
|
|
3398
|
+
"url": "https://github.com/sponsors/ai"
|
|
3399
|
+
}
|
|
3400
|
+
],
|
|
3401
|
+
"integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
|
|
3402
|
+
"license": "MIT",
|
|
3403
|
+
"peerDependencies": {
|
|
3404
|
+
"browserslist": ">= 4.21.0"
|
|
3405
|
+
},
|
|
3406
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
|
|
3407
|
+
"version": "1.1.4"
|
|
3408
|
+
},
|
|
3409
|
+
"node_modules/use-sync-external-store": {
|
|
3410
|
+
"integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
|
|
3411
|
+
"license": "MIT",
|
|
3412
|
+
"peerDependencies": {
|
|
3413
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
3414
|
+
},
|
|
3415
|
+
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
|
|
3416
|
+
"version": "1.6.0"
|
|
3417
|
+
},
|
|
3418
|
+
"node_modules/util-deprecate": {
|
|
3419
|
+
"dev": true,
|
|
3420
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
3421
|
+
"license": "MIT",
|
|
3422
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
3423
|
+
"version": "1.0.2"
|
|
3424
|
+
},
|
|
3425
|
+
"node_modules/victory-vendor": {
|
|
3426
|
+
"dependencies": {
|
|
3427
|
+
"@types/d3-array": "^3.0.3",
|
|
3428
|
+
"@types/d3-ease": "^3.0.0",
|
|
3429
|
+
"@types/d3-interpolate": "^3.0.1",
|
|
3430
|
+
"@types/d3-scale": "^4.0.2",
|
|
3431
|
+
"@types/d3-shape": "^3.1.0",
|
|
3432
|
+
"@types/d3-time": "^3.0.0",
|
|
3433
|
+
"@types/d3-timer": "^3.0.0",
|
|
3434
|
+
"d3-array": "^3.1.6",
|
|
3435
|
+
"d3-ease": "^3.0.1",
|
|
3436
|
+
"d3-interpolate": "^3.0.1",
|
|
3437
|
+
"d3-scale": "^4.0.2",
|
|
3438
|
+
"d3-shape": "^3.1.0",
|
|
3439
|
+
"d3-time": "^3.0.0",
|
|
3440
|
+
"d3-timer": "^3.0.1"
|
|
3441
|
+
},
|
|
3442
|
+
"integrity": "sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==",
|
|
3443
|
+
"license": "MIT AND ISC",
|
|
3444
|
+
"resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.2.tgz",
|
|
3445
|
+
"version": "36.9.2"
|
|
3446
|
+
},
|
|
3447
|
+
"node_modules/vite": {
|
|
3448
|
+
"bin": {
|
|
3449
|
+
"vite": "bin/vite.js"
|
|
3450
|
+
},
|
|
3451
|
+
"dependencies": {
|
|
3452
|
+
"esbuild": "^0.21.3",
|
|
3453
|
+
"postcss": "^8.4.43",
|
|
3454
|
+
"rollup": "^4.20.0"
|
|
3455
|
+
},
|
|
3456
|
+
"dev": true,
|
|
3457
|
+
"engines": {
|
|
3458
|
+
"node": "^18.0.0 || >=20.0.0"
|
|
3459
|
+
},
|
|
3460
|
+
"funding": {
|
|
3461
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
3462
|
+
},
|
|
3463
|
+
"integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
|
|
3464
|
+
"license": "MIT",
|
|
3465
|
+
"optionalDependencies": {
|
|
3466
|
+
"fsevents": "~2.3.3"
|
|
3467
|
+
},
|
|
3468
|
+
"peerDependencies": {
|
|
3469
|
+
"@types/node": "^18.0.0 || >=20.0.0",
|
|
3470
|
+
"less": "*",
|
|
3471
|
+
"lightningcss": "^1.21.0",
|
|
3472
|
+
"sass": "*",
|
|
3473
|
+
"sass-embedded": "*",
|
|
3474
|
+
"stylus": "*",
|
|
3475
|
+
"sugarss": "*",
|
|
3476
|
+
"terser": "^5.4.0"
|
|
3477
|
+
},
|
|
3478
|
+
"peerDependenciesMeta": {
|
|
3479
|
+
"@types/node": {
|
|
3480
|
+
"optional": true
|
|
3481
|
+
},
|
|
3482
|
+
"less": {
|
|
3483
|
+
"optional": true
|
|
3484
|
+
},
|
|
3485
|
+
"lightningcss": {
|
|
3486
|
+
"optional": true
|
|
3487
|
+
},
|
|
3488
|
+
"sass": {
|
|
3489
|
+
"optional": true
|
|
3490
|
+
},
|
|
3491
|
+
"sass-embedded": {
|
|
3492
|
+
"optional": true
|
|
3493
|
+
},
|
|
3494
|
+
"stylus": {
|
|
3495
|
+
"optional": true
|
|
3496
|
+
},
|
|
3497
|
+
"sugarss": {
|
|
3498
|
+
"optional": true
|
|
3499
|
+
},
|
|
3500
|
+
"terser": {
|
|
3501
|
+
"optional": true
|
|
3502
|
+
}
|
|
3503
|
+
},
|
|
3504
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
|
|
3505
|
+
"version": "5.4.21"
|
|
3506
|
+
},
|
|
3507
|
+
"node_modules/yallist": {
|
|
3508
|
+
"dev": true,
|
|
3509
|
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
|
3510
|
+
"license": "ISC",
|
|
3511
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
|
3512
|
+
"version": "3.1.1"
|
|
3513
|
+
},
|
|
3514
|
+
"node_modules/zustand": {
|
|
3515
|
+
"dependencies": {
|
|
3516
|
+
"use-sync-external-store": "^1.2.2"
|
|
3517
|
+
},
|
|
3518
|
+
"engines": {
|
|
3519
|
+
"node": ">=12.7.0"
|
|
3520
|
+
},
|
|
3521
|
+
"integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==",
|
|
3522
|
+
"license": "MIT",
|
|
3523
|
+
"peerDependencies": {
|
|
3524
|
+
"@types/react": ">=16.8",
|
|
3525
|
+
"immer": ">=9.0.6",
|
|
3526
|
+
"react": ">=16.8"
|
|
3527
|
+
},
|
|
3528
|
+
"peerDependenciesMeta": {
|
|
3529
|
+
"@types/react": {
|
|
3530
|
+
"optional": true
|
|
3531
|
+
},
|
|
3532
|
+
"immer": {
|
|
3533
|
+
"optional": true
|
|
3534
|
+
},
|
|
3535
|
+
"react": {
|
|
3536
|
+
"optional": true
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3539
|
+
"resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
|
|
3540
|
+
"version": "4.5.7"
|
|
3541
|
+
}
|
|
3542
|
+
},
|
|
3543
|
+
"requires": true,
|
|
3544
|
+
"version": "0.1.0"
|
|
3545
|
+
}
|