shakapacker 7.0.0 → 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/dummy.yml +4 -2
  3. data/.github/workflows/generator.yml +4 -2
  4. data/.github/workflows/jest.yml +5 -3
  5. data/.github/workflows/js-lint.yml +5 -3
  6. data/.github/workflows/rubocop.yml +4 -2
  7. data/.github/workflows/ruby-backward-compatibility.yml +5 -3
  8. data/.github/workflows/ruby.yml +5 -3
  9. data/CHANGELOG.md +25 -1
  10. data/CONTRIBUTING.md +3 -4
  11. data/README.md +37 -23
  12. data/docs/deployment.md +1 -1
  13. data/docs/react.md +4 -4
  14. data/docs/troubleshooting.md +4 -8
  15. data/docs/using_esbuild_loader.md +3 -5
  16. data/docs/v6_upgrade.md +1 -1
  17. data/docs/v7_upgrade.md +14 -11
  18. data/lib/install/template.rb +2 -2
  19. data/lib/shakapacker/compiler.rb +1 -1
  20. data/lib/shakapacker/deprecation_helper.rb +1 -1
  21. data/lib/shakapacker/dev_server_runner.rb +2 -1
  22. data/lib/shakapacker/utils/misc.rb +1 -1
  23. data/lib/shakapacker/version.rb +1 -1
  24. data/lib/shakapacker/version_checker.rb +35 -2
  25. data/lib/shakapacker/webpack_runner.rb +4 -3
  26. data/lib/tasks/shakapacker/binstubs.rake +2 -2
  27. data/lib/tasks/shakapacker/check_binstubs.rake +7 -2
  28. data/lib/tasks/shakapacker/compile.rake +2 -0
  29. data/lib/tasks/shakapacker/install.rake +2 -2
  30. data/package/__tests__/index.js +24 -0
  31. data/package/environments/__tests__/base-bc.js +1 -1
  32. data/package/environments/__tests__/development.js +9 -9
  33. data/package/environments/__tests__/production.js +48 -9
  34. data/package/environments/production.js +1 -1
  35. data/package/index.d.ts +61 -0
  36. data/package/index.js +8 -2
  37. data/package.json +12 -1
  38. data/rakelib/release.rake +1 -1
  39. data/spec/backward_compatibility_specs/compiler_spec.rb +2 -2
  40. data/spec/backward_compatibility_specs/compiler_strategy_spec.rb +5 -3
  41. data/spec/backward_compatibility_specs/configuration_spec.rb +16 -8
  42. data/spec/backward_compatibility_specs/dev_server_runner_spec.rb +17 -16
  43. data/spec/backward_compatibility_specs/dev_server_spec.rb +1 -1
  44. data/spec/backward_compatibility_specs/digest_strategy_spec.rb +2 -0
  45. data/spec/backward_compatibility_specs/engine_rake_tasks_spec.rb +2 -1
  46. data/spec/backward_compatibility_specs/helper_spec.rb +20 -20
  47. data/spec/backward_compatibility_specs/instance_spec.rb +3 -3
  48. data/spec/backward_compatibility_specs/manifest_spec.rb +12 -12
  49. data/spec/backward_compatibility_specs/mtime_strategy_spec.rb +3 -3
  50. data/spec/backward_compatibility_specs/rake_tasks_spec.rb +9 -5
  51. data/spec/backward_compatibility_specs/webpack_runner_spec.rb +14 -18
  52. data/spec/dummy/config/webpack/commonWebpackConfig.js +1 -1
  53. data/spec/fixtures/beta_pnpm-lock.v7.yaml +116 -0
  54. data/spec/fixtures/beta_pnpm-lock.v8.yaml +2537 -0
  55. data/spec/fixtures/git_url_pnpm-lock.v7.yaml +126 -0
  56. data/spec/fixtures/git_url_pnpm-lock.v8.yaml +3728 -0
  57. data/spec/fixtures/github_url_pnpm-lock.v7.yaml +126 -0
  58. data/spec/fixtures/github_url_pnpm-lock.v8.yaml +3728 -0
  59. data/spec/fixtures/relative_path_pnpm-lock.v7.yaml +18 -0
  60. data/spec/fixtures/relative_path_pnpm-lock.v8.yaml +22 -0
  61. data/spec/fixtures/semver_caret_pnpm-lock.v7.yaml +117 -0
  62. data/spec/fixtures/semver_caret_pnpm-lock.v8.yaml +2558 -0
  63. data/spec/fixtures/semver_exact_pnpm-lock.v7.yaml +117 -0
  64. data/spec/fixtures/semver_exact_pnpm-lock.v8.yaml +2558 -0
  65. data/spec/fixtures/semver_tilde_pnpm-lock.v7.yaml +116 -0
  66. data/spec/fixtures/semver_tilde_pnpm-lock.v8.yaml +2558 -0
  67. data/spec/fixtures/without_pnpm-lock.v7.yaml +23 -0
  68. data/spec/fixtures/without_pnpm-lock.v8.yaml +27 -0
  69. data/spec/generator_specs/generator_spec.rb +11 -7
  70. data/spec/shakapacker/compiler_spec.rb +2 -2
  71. data/spec/shakapacker/compiler_strategy_spec.rb +5 -3
  72. data/spec/shakapacker/configuration_spec.rb +16 -6
  73. data/spec/shakapacker/dev_server_runner_spec.rb +22 -16
  74. data/spec/shakapacker/dev_server_spec.rb +1 -1
  75. data/spec/shakapacker/digest_strategy_spec.rb +2 -0
  76. data/spec/shakapacker/engine_rake_tasks_spec.rb +2 -1
  77. data/spec/shakapacker/helper_spec.rb +20 -20
  78. data/spec/shakapacker/instance_spec.rb +2 -2
  79. data/spec/shakapacker/manifest_spec.rb +12 -12
  80. data/spec/shakapacker/mtime_strategy_spec.rb +3 -3
  81. data/spec/shakapacker/rake_tasks_spec.rb +6 -3
  82. data/spec/shakapacker/shakapacker_spec.rb +4 -4
  83. data/spec/shakapacker/version_checker_spec.rb +470 -123
  84. data/spec/shakapacker/webpack_runner_spec.rb +14 -18
  85. metadata +20 -3
@@ -0,0 +1,2558 @@
1
+ lockfileVersion: '6.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ dependencies:
8
+ shakapacker:
9
+ specifier: ~6.0.0
10
+ version: 6.0.0(@babel/core@7.22.10)(@babel/plugin-transform-runtime@7.22.10)(@babel/preset-env@7.22.10)(@babel/runtime@7.22.10)(babel-loader@8.3.0)(compression-webpack-plugin@9.2.0)(pnp-webpack-plugin@1.7.0)(terser-webpack-plugin@5.3.9)(webpack-assets-manifest@5.1.0)(webpack-cli@4.10.0)(webpack-merge@5.9.0)(webpack@5.88.2)
11
+
12
+ devDependencies:
13
+ right-pad:
14
+ specifier: ^1.0.1
15
+ version: 1.0.1
16
+
17
+ packages:
18
+
19
+ /@ampproject/remapping@2.2.1:
20
+ resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
21
+ engines: {node: '>=6.0.0'}
22
+ dependencies:
23
+ '@jridgewell/gen-mapping': 0.3.3
24
+ '@jridgewell/trace-mapping': 0.3.19
25
+ dev: false
26
+
27
+ /@babel/code-frame@7.22.10:
28
+ resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==}
29
+ engines: {node: '>=6.9.0'}
30
+ dependencies:
31
+ '@babel/highlight': 7.22.10
32
+ chalk: 2.4.2
33
+ dev: false
34
+
35
+ /@babel/compat-data@7.22.9:
36
+ resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
37
+ engines: {node: '>=6.9.0'}
38
+ dev: false
39
+
40
+ /@babel/core@7.22.10:
41
+ resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==}
42
+ engines: {node: '>=6.9.0'}
43
+ dependencies:
44
+ '@ampproject/remapping': 2.2.1
45
+ '@babel/code-frame': 7.22.10
46
+ '@babel/generator': 7.22.10
47
+ '@babel/helper-compilation-targets': 7.22.10
48
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
49
+ '@babel/helpers': 7.22.10
50
+ '@babel/parser': 7.22.10
51
+ '@babel/template': 7.22.5
52
+ '@babel/traverse': 7.22.10
53
+ '@babel/types': 7.22.10
54
+ convert-source-map: 1.9.0
55
+ debug: 4.3.4
56
+ gensync: 1.0.0-beta.2
57
+ json5: 2.2.3
58
+ semver: 6.3.1
59
+ transitivePeerDependencies:
60
+ - supports-color
61
+ dev: false
62
+
63
+ /@babel/generator@7.22.10:
64
+ resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==}
65
+ engines: {node: '>=6.9.0'}
66
+ dependencies:
67
+ '@babel/types': 7.22.10
68
+ '@jridgewell/gen-mapping': 0.3.3
69
+ '@jridgewell/trace-mapping': 0.3.19
70
+ jsesc: 2.5.2
71
+ dev: false
72
+
73
+ /@babel/helper-annotate-as-pure@7.22.5:
74
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
75
+ engines: {node: '>=6.9.0'}
76
+ dependencies:
77
+ '@babel/types': 7.22.10
78
+ dev: false
79
+
80
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10:
81
+ resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==}
82
+ engines: {node: '>=6.9.0'}
83
+ dependencies:
84
+ '@babel/types': 7.22.10
85
+ dev: false
86
+
87
+ /@babel/helper-compilation-targets@7.22.10:
88
+ resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==}
89
+ engines: {node: '>=6.9.0'}
90
+ dependencies:
91
+ '@babel/compat-data': 7.22.9
92
+ '@babel/helper-validator-option': 7.22.5
93
+ browserslist: 4.21.10
94
+ lru-cache: 5.1.1
95
+ semver: 6.3.1
96
+ dev: false
97
+
98
+ /@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.22.10):
99
+ resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==}
100
+ engines: {node: '>=6.9.0'}
101
+ peerDependencies:
102
+ '@babel/core': ^7.0.0
103
+ dependencies:
104
+ '@babel/core': 7.22.10
105
+ '@babel/helper-annotate-as-pure': 7.22.5
106
+ '@babel/helper-environment-visitor': 7.22.5
107
+ '@babel/helper-function-name': 7.22.5
108
+ '@babel/helper-member-expression-to-functions': 7.22.5
109
+ '@babel/helper-optimise-call-expression': 7.22.5
110
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10)
111
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
112
+ '@babel/helper-split-export-declaration': 7.22.6
113
+ semver: 6.3.1
114
+ dev: false
115
+
116
+ /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.10):
117
+ resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
118
+ engines: {node: '>=6.9.0'}
119
+ peerDependencies:
120
+ '@babel/core': ^7.0.0
121
+ dependencies:
122
+ '@babel/core': 7.22.10
123
+ '@babel/helper-annotate-as-pure': 7.22.5
124
+ regexpu-core: 5.3.2
125
+ semver: 6.3.1
126
+ dev: false
127
+
128
+ /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.10):
129
+ resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
130
+ peerDependencies:
131
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
132
+ dependencies:
133
+ '@babel/core': 7.22.10
134
+ '@babel/helper-compilation-targets': 7.22.10
135
+ '@babel/helper-plugin-utils': 7.22.5
136
+ debug: 4.3.4
137
+ lodash.debounce: 4.0.8
138
+ resolve: 1.22.4
139
+ transitivePeerDependencies:
140
+ - supports-color
141
+ dev: false
142
+
143
+ /@babel/helper-environment-visitor@7.22.5:
144
+ resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
145
+ engines: {node: '>=6.9.0'}
146
+ dev: false
147
+
148
+ /@babel/helper-function-name@7.22.5:
149
+ resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
150
+ engines: {node: '>=6.9.0'}
151
+ dependencies:
152
+ '@babel/template': 7.22.5
153
+ '@babel/types': 7.22.10
154
+ dev: false
155
+
156
+ /@babel/helper-hoist-variables@7.22.5:
157
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
158
+ engines: {node: '>=6.9.0'}
159
+ dependencies:
160
+ '@babel/types': 7.22.10
161
+ dev: false
162
+
163
+ /@babel/helper-member-expression-to-functions@7.22.5:
164
+ resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
165
+ engines: {node: '>=6.9.0'}
166
+ dependencies:
167
+ '@babel/types': 7.22.10
168
+ dev: false
169
+
170
+ /@babel/helper-module-imports@7.22.5:
171
+ resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
172
+ engines: {node: '>=6.9.0'}
173
+ dependencies:
174
+ '@babel/types': 7.22.10
175
+ dev: false
176
+
177
+ /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10):
178
+ resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
179
+ engines: {node: '>=6.9.0'}
180
+ peerDependencies:
181
+ '@babel/core': ^7.0.0
182
+ dependencies:
183
+ '@babel/core': 7.22.10
184
+ '@babel/helper-environment-visitor': 7.22.5
185
+ '@babel/helper-module-imports': 7.22.5
186
+ '@babel/helper-simple-access': 7.22.5
187
+ '@babel/helper-split-export-declaration': 7.22.6
188
+ '@babel/helper-validator-identifier': 7.22.5
189
+ dev: false
190
+
191
+ /@babel/helper-optimise-call-expression@7.22.5:
192
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
193
+ engines: {node: '>=6.9.0'}
194
+ dependencies:
195
+ '@babel/types': 7.22.10
196
+ dev: false
197
+
198
+ /@babel/helper-plugin-utils@7.22.5:
199
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
200
+ engines: {node: '>=6.9.0'}
201
+ dev: false
202
+
203
+ /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.10):
204
+ resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
205
+ engines: {node: '>=6.9.0'}
206
+ peerDependencies:
207
+ '@babel/core': ^7.0.0
208
+ dependencies:
209
+ '@babel/core': 7.22.10
210
+ '@babel/helper-annotate-as-pure': 7.22.5
211
+ '@babel/helper-environment-visitor': 7.22.5
212
+ '@babel/helper-wrap-function': 7.22.10
213
+ dev: false
214
+
215
+ /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.10):
216
+ resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
217
+ engines: {node: '>=6.9.0'}
218
+ peerDependencies:
219
+ '@babel/core': ^7.0.0
220
+ dependencies:
221
+ '@babel/core': 7.22.10
222
+ '@babel/helper-environment-visitor': 7.22.5
223
+ '@babel/helper-member-expression-to-functions': 7.22.5
224
+ '@babel/helper-optimise-call-expression': 7.22.5
225
+ dev: false
226
+
227
+ /@babel/helper-simple-access@7.22.5:
228
+ resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
229
+ engines: {node: '>=6.9.0'}
230
+ dependencies:
231
+ '@babel/types': 7.22.10
232
+ dev: false
233
+
234
+ /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
235
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
236
+ engines: {node: '>=6.9.0'}
237
+ dependencies:
238
+ '@babel/types': 7.22.10
239
+ dev: false
240
+
241
+ /@babel/helper-split-export-declaration@7.22.6:
242
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
243
+ engines: {node: '>=6.9.0'}
244
+ dependencies:
245
+ '@babel/types': 7.22.10
246
+ dev: false
247
+
248
+ /@babel/helper-string-parser@7.22.5:
249
+ resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
250
+ engines: {node: '>=6.9.0'}
251
+ dev: false
252
+
253
+ /@babel/helper-validator-identifier@7.22.5:
254
+ resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
255
+ engines: {node: '>=6.9.0'}
256
+ dev: false
257
+
258
+ /@babel/helper-validator-option@7.22.5:
259
+ resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
260
+ engines: {node: '>=6.9.0'}
261
+ dev: false
262
+
263
+ /@babel/helper-wrap-function@7.22.10:
264
+ resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==}
265
+ engines: {node: '>=6.9.0'}
266
+ dependencies:
267
+ '@babel/helper-function-name': 7.22.5
268
+ '@babel/template': 7.22.5
269
+ '@babel/types': 7.22.10
270
+ dev: false
271
+
272
+ /@babel/helpers@7.22.10:
273
+ resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==}
274
+ engines: {node: '>=6.9.0'}
275
+ dependencies:
276
+ '@babel/template': 7.22.5
277
+ '@babel/traverse': 7.22.10
278
+ '@babel/types': 7.22.10
279
+ transitivePeerDependencies:
280
+ - supports-color
281
+ dev: false
282
+
283
+ /@babel/highlight@7.22.10:
284
+ resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==}
285
+ engines: {node: '>=6.9.0'}
286
+ dependencies:
287
+ '@babel/helper-validator-identifier': 7.22.5
288
+ chalk: 2.4.2
289
+ js-tokens: 4.0.0
290
+ dev: false
291
+
292
+ /@babel/parser@7.22.10:
293
+ resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==}
294
+ engines: {node: '>=6.0.0'}
295
+ hasBin: true
296
+ dependencies:
297
+ '@babel/types': 7.22.10
298
+ dev: false
299
+
300
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.10):
301
+ resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
302
+ engines: {node: '>=6.9.0'}
303
+ peerDependencies:
304
+ '@babel/core': ^7.0.0
305
+ dependencies:
306
+ '@babel/core': 7.22.10
307
+ '@babel/helper-plugin-utils': 7.22.5
308
+ dev: false
309
+
310
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.10):
311
+ resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
312
+ engines: {node: '>=6.9.0'}
313
+ peerDependencies:
314
+ '@babel/core': ^7.13.0
315
+ dependencies:
316
+ '@babel/core': 7.22.10
317
+ '@babel/helper-plugin-utils': 7.22.5
318
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
319
+ '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.10)
320
+ dev: false
321
+
322
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.10):
323
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
324
+ engines: {node: '>=6.9.0'}
325
+ peerDependencies:
326
+ '@babel/core': ^7.0.0-0
327
+ dependencies:
328
+ '@babel/core': 7.22.10
329
+ dev: false
330
+
331
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.10):
332
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
333
+ peerDependencies:
334
+ '@babel/core': ^7.0.0-0
335
+ dependencies:
336
+ '@babel/core': 7.22.10
337
+ '@babel/helper-plugin-utils': 7.22.5
338
+ dev: false
339
+
340
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10):
341
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
342
+ peerDependencies:
343
+ '@babel/core': ^7.0.0-0
344
+ dependencies:
345
+ '@babel/core': 7.22.10
346
+ '@babel/helper-plugin-utils': 7.22.5
347
+ dev: false
348
+
349
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.10):
350
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
351
+ engines: {node: '>=6.9.0'}
352
+ peerDependencies:
353
+ '@babel/core': ^7.0.0-0
354
+ dependencies:
355
+ '@babel/core': 7.22.10
356
+ '@babel/helper-plugin-utils': 7.22.5
357
+ dev: false
358
+
359
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.10):
360
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
361
+ peerDependencies:
362
+ '@babel/core': ^7.0.0-0
363
+ dependencies:
364
+ '@babel/core': 7.22.10
365
+ '@babel/helper-plugin-utils': 7.22.5
366
+ dev: false
367
+
368
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.10):
369
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
370
+ peerDependencies:
371
+ '@babel/core': ^7.0.0-0
372
+ dependencies:
373
+ '@babel/core': 7.22.10
374
+ '@babel/helper-plugin-utils': 7.22.5
375
+ dev: false
376
+
377
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.10):
378
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
379
+ engines: {node: '>=6.9.0'}
380
+ peerDependencies:
381
+ '@babel/core': ^7.0.0-0
382
+ dependencies:
383
+ '@babel/core': 7.22.10
384
+ '@babel/helper-plugin-utils': 7.22.5
385
+ dev: false
386
+
387
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.10):
388
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
389
+ engines: {node: '>=6.9.0'}
390
+ peerDependencies:
391
+ '@babel/core': ^7.0.0-0
392
+ dependencies:
393
+ '@babel/core': 7.22.10
394
+ '@babel/helper-plugin-utils': 7.22.5
395
+ dev: false
396
+
397
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.10):
398
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
399
+ peerDependencies:
400
+ '@babel/core': ^7.0.0-0
401
+ dependencies:
402
+ '@babel/core': 7.22.10
403
+ '@babel/helper-plugin-utils': 7.22.5
404
+ dev: false
405
+
406
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.10):
407
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
408
+ peerDependencies:
409
+ '@babel/core': ^7.0.0-0
410
+ dependencies:
411
+ '@babel/core': 7.22.10
412
+ '@babel/helper-plugin-utils': 7.22.5
413
+ dev: false
414
+
415
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.10):
416
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
417
+ peerDependencies:
418
+ '@babel/core': ^7.0.0-0
419
+ dependencies:
420
+ '@babel/core': 7.22.10
421
+ '@babel/helper-plugin-utils': 7.22.5
422
+ dev: false
423
+
424
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10):
425
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
426
+ peerDependencies:
427
+ '@babel/core': ^7.0.0-0
428
+ dependencies:
429
+ '@babel/core': 7.22.10
430
+ '@babel/helper-plugin-utils': 7.22.5
431
+ dev: false
432
+
433
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10):
434
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
435
+ peerDependencies:
436
+ '@babel/core': ^7.0.0-0
437
+ dependencies:
438
+ '@babel/core': 7.22.10
439
+ '@babel/helper-plugin-utils': 7.22.5
440
+ dev: false
441
+
442
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10):
443
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
444
+ peerDependencies:
445
+ '@babel/core': ^7.0.0-0
446
+ dependencies:
447
+ '@babel/core': 7.22.10
448
+ '@babel/helper-plugin-utils': 7.22.5
449
+ dev: false
450
+
451
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10):
452
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
453
+ peerDependencies:
454
+ '@babel/core': ^7.0.0-0
455
+ dependencies:
456
+ '@babel/core': 7.22.10
457
+ '@babel/helper-plugin-utils': 7.22.5
458
+ dev: false
459
+
460
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10):
461
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
462
+ peerDependencies:
463
+ '@babel/core': ^7.0.0-0
464
+ dependencies:
465
+ '@babel/core': 7.22.10
466
+ '@babel/helper-plugin-utils': 7.22.5
467
+ dev: false
468
+
469
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.10):
470
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
471
+ engines: {node: '>=6.9.0'}
472
+ peerDependencies:
473
+ '@babel/core': ^7.0.0-0
474
+ dependencies:
475
+ '@babel/core': 7.22.10
476
+ '@babel/helper-plugin-utils': 7.22.5
477
+ dev: false
478
+
479
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.10):
480
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
481
+ engines: {node: '>=6.9.0'}
482
+ peerDependencies:
483
+ '@babel/core': ^7.0.0-0
484
+ dependencies:
485
+ '@babel/core': 7.22.10
486
+ '@babel/helper-plugin-utils': 7.22.5
487
+ dev: false
488
+
489
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.10):
490
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
491
+ engines: {node: '>=6.9.0'}
492
+ peerDependencies:
493
+ '@babel/core': ^7.0.0
494
+ dependencies:
495
+ '@babel/core': 7.22.10
496
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
497
+ '@babel/helper-plugin-utils': 7.22.5
498
+ dev: false
499
+
500
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.10):
501
+ resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
502
+ engines: {node: '>=6.9.0'}
503
+ peerDependencies:
504
+ '@babel/core': ^7.0.0-0
505
+ dependencies:
506
+ '@babel/core': 7.22.10
507
+ '@babel/helper-plugin-utils': 7.22.5
508
+ dev: false
509
+
510
+ /@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.22.10):
511
+ resolution: {integrity: sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==}
512
+ engines: {node: '>=6.9.0'}
513
+ peerDependencies:
514
+ '@babel/core': ^7.0.0-0
515
+ dependencies:
516
+ '@babel/core': 7.22.10
517
+ '@babel/helper-environment-visitor': 7.22.5
518
+ '@babel/helper-plugin-utils': 7.22.5
519
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.10)
520
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10)
521
+ dev: false
522
+
523
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.10):
524
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
525
+ engines: {node: '>=6.9.0'}
526
+ peerDependencies:
527
+ '@babel/core': ^7.0.0-0
528
+ dependencies:
529
+ '@babel/core': 7.22.10
530
+ '@babel/helper-module-imports': 7.22.5
531
+ '@babel/helper-plugin-utils': 7.22.5
532
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.10)
533
+ dev: false
534
+
535
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.10):
536
+ resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
537
+ engines: {node: '>=6.9.0'}
538
+ peerDependencies:
539
+ '@babel/core': ^7.0.0-0
540
+ dependencies:
541
+ '@babel/core': 7.22.10
542
+ '@babel/helper-plugin-utils': 7.22.5
543
+ dev: false
544
+
545
+ /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.10):
546
+ resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==}
547
+ engines: {node: '>=6.9.0'}
548
+ peerDependencies:
549
+ '@babel/core': ^7.0.0-0
550
+ dependencies:
551
+ '@babel/core': 7.22.10
552
+ '@babel/helper-plugin-utils': 7.22.5
553
+ dev: false
554
+
555
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.10):
556
+ resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
557
+ engines: {node: '>=6.9.0'}
558
+ peerDependencies:
559
+ '@babel/core': ^7.0.0-0
560
+ dependencies:
561
+ '@babel/core': 7.22.10
562
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
563
+ '@babel/helper-plugin-utils': 7.22.5
564
+ dev: false
565
+
566
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.10):
567
+ resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
568
+ engines: {node: '>=6.9.0'}
569
+ peerDependencies:
570
+ '@babel/core': ^7.12.0
571
+ dependencies:
572
+ '@babel/core': 7.22.10
573
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
574
+ '@babel/helper-plugin-utils': 7.22.5
575
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10)
576
+ dev: false
577
+
578
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.10):
579
+ resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
580
+ engines: {node: '>=6.9.0'}
581
+ peerDependencies:
582
+ '@babel/core': ^7.0.0-0
583
+ dependencies:
584
+ '@babel/core': 7.22.10
585
+ '@babel/helper-annotate-as-pure': 7.22.5
586
+ '@babel/helper-compilation-targets': 7.22.10
587
+ '@babel/helper-environment-visitor': 7.22.5
588
+ '@babel/helper-function-name': 7.22.5
589
+ '@babel/helper-optimise-call-expression': 7.22.5
590
+ '@babel/helper-plugin-utils': 7.22.5
591
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10)
592
+ '@babel/helper-split-export-declaration': 7.22.6
593
+ globals: 11.12.0
594
+ dev: false
595
+
596
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.10):
597
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
598
+ engines: {node: '>=6.9.0'}
599
+ peerDependencies:
600
+ '@babel/core': ^7.0.0-0
601
+ dependencies:
602
+ '@babel/core': 7.22.10
603
+ '@babel/helper-plugin-utils': 7.22.5
604
+ '@babel/template': 7.22.5
605
+ dev: false
606
+
607
+ /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.10):
608
+ resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==}
609
+ engines: {node: '>=6.9.0'}
610
+ peerDependencies:
611
+ '@babel/core': ^7.0.0-0
612
+ dependencies:
613
+ '@babel/core': 7.22.10
614
+ '@babel/helper-plugin-utils': 7.22.5
615
+ dev: false
616
+
617
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.10):
618
+ resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
619
+ engines: {node: '>=6.9.0'}
620
+ peerDependencies:
621
+ '@babel/core': ^7.0.0-0
622
+ dependencies:
623
+ '@babel/core': 7.22.10
624
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
625
+ '@babel/helper-plugin-utils': 7.22.5
626
+ dev: false
627
+
628
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.10):
629
+ resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
630
+ engines: {node: '>=6.9.0'}
631
+ peerDependencies:
632
+ '@babel/core': ^7.0.0-0
633
+ dependencies:
634
+ '@babel/core': 7.22.10
635
+ '@babel/helper-plugin-utils': 7.22.5
636
+ dev: false
637
+
638
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.10):
639
+ resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
640
+ engines: {node: '>=6.9.0'}
641
+ peerDependencies:
642
+ '@babel/core': ^7.0.0-0
643
+ dependencies:
644
+ '@babel/core': 7.22.10
645
+ '@babel/helper-plugin-utils': 7.22.5
646
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10)
647
+ dev: false
648
+
649
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.10):
650
+ resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
651
+ engines: {node: '>=6.9.0'}
652
+ peerDependencies:
653
+ '@babel/core': ^7.0.0-0
654
+ dependencies:
655
+ '@babel/core': 7.22.10
656
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10
657
+ '@babel/helper-plugin-utils': 7.22.5
658
+ dev: false
659
+
660
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.10):
661
+ resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
662
+ engines: {node: '>=6.9.0'}
663
+ peerDependencies:
664
+ '@babel/core': ^7.0.0-0
665
+ dependencies:
666
+ '@babel/core': 7.22.10
667
+ '@babel/helper-plugin-utils': 7.22.5
668
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10)
669
+ dev: false
670
+
671
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.10):
672
+ resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
673
+ engines: {node: '>=6.9.0'}
674
+ peerDependencies:
675
+ '@babel/core': ^7.0.0-0
676
+ dependencies:
677
+ '@babel/core': 7.22.10
678
+ '@babel/helper-plugin-utils': 7.22.5
679
+ dev: false
680
+
681
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.10):
682
+ resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
683
+ engines: {node: '>=6.9.0'}
684
+ peerDependencies:
685
+ '@babel/core': ^7.0.0-0
686
+ dependencies:
687
+ '@babel/core': 7.22.10
688
+ '@babel/helper-compilation-targets': 7.22.10
689
+ '@babel/helper-function-name': 7.22.5
690
+ '@babel/helper-plugin-utils': 7.22.5
691
+ dev: false
692
+
693
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.10):
694
+ resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
695
+ engines: {node: '>=6.9.0'}
696
+ peerDependencies:
697
+ '@babel/core': ^7.0.0-0
698
+ dependencies:
699
+ '@babel/core': 7.22.10
700
+ '@babel/helper-plugin-utils': 7.22.5
701
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10)
702
+ dev: false
703
+
704
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.10):
705
+ resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
706
+ engines: {node: '>=6.9.0'}
707
+ peerDependencies:
708
+ '@babel/core': ^7.0.0-0
709
+ dependencies:
710
+ '@babel/core': 7.22.10
711
+ '@babel/helper-plugin-utils': 7.22.5
712
+ dev: false
713
+
714
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.10):
715
+ resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
716
+ engines: {node: '>=6.9.0'}
717
+ peerDependencies:
718
+ '@babel/core': ^7.0.0-0
719
+ dependencies:
720
+ '@babel/core': 7.22.10
721
+ '@babel/helper-plugin-utils': 7.22.5
722
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10)
723
+ dev: false
724
+
725
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.10):
726
+ resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
727
+ engines: {node: '>=6.9.0'}
728
+ peerDependencies:
729
+ '@babel/core': ^7.0.0-0
730
+ dependencies:
731
+ '@babel/core': 7.22.10
732
+ '@babel/helper-plugin-utils': 7.22.5
733
+ dev: false
734
+
735
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.10):
736
+ resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
737
+ engines: {node: '>=6.9.0'}
738
+ peerDependencies:
739
+ '@babel/core': ^7.0.0-0
740
+ dependencies:
741
+ '@babel/core': 7.22.10
742
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
743
+ '@babel/helper-plugin-utils': 7.22.5
744
+ dev: false
745
+
746
+ /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.10):
747
+ resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
748
+ engines: {node: '>=6.9.0'}
749
+ peerDependencies:
750
+ '@babel/core': ^7.0.0-0
751
+ dependencies:
752
+ '@babel/core': 7.22.10
753
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
754
+ '@babel/helper-plugin-utils': 7.22.5
755
+ '@babel/helper-simple-access': 7.22.5
756
+ dev: false
757
+
758
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.10):
759
+ resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
760
+ engines: {node: '>=6.9.0'}
761
+ peerDependencies:
762
+ '@babel/core': ^7.0.0-0
763
+ dependencies:
764
+ '@babel/core': 7.22.10
765
+ '@babel/helper-hoist-variables': 7.22.5
766
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
767
+ '@babel/helper-plugin-utils': 7.22.5
768
+ '@babel/helper-validator-identifier': 7.22.5
769
+ dev: false
770
+
771
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.10):
772
+ resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
773
+ engines: {node: '>=6.9.0'}
774
+ peerDependencies:
775
+ '@babel/core': ^7.0.0-0
776
+ dependencies:
777
+ '@babel/core': 7.22.10
778
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
779
+ '@babel/helper-plugin-utils': 7.22.5
780
+ dev: false
781
+
782
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.10):
783
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
784
+ engines: {node: '>=6.9.0'}
785
+ peerDependencies:
786
+ '@babel/core': ^7.0.0
787
+ dependencies:
788
+ '@babel/core': 7.22.10
789
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
790
+ '@babel/helper-plugin-utils': 7.22.5
791
+ dev: false
792
+
793
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.10):
794
+ resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
795
+ engines: {node: '>=6.9.0'}
796
+ peerDependencies:
797
+ '@babel/core': ^7.0.0-0
798
+ dependencies:
799
+ '@babel/core': 7.22.10
800
+ '@babel/helper-plugin-utils': 7.22.5
801
+ dev: false
802
+
803
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.10):
804
+ resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
805
+ engines: {node: '>=6.9.0'}
806
+ peerDependencies:
807
+ '@babel/core': ^7.0.0-0
808
+ dependencies:
809
+ '@babel/core': 7.22.10
810
+ '@babel/helper-plugin-utils': 7.22.5
811
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10)
812
+ dev: false
813
+
814
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.10):
815
+ resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
816
+ engines: {node: '>=6.9.0'}
817
+ peerDependencies:
818
+ '@babel/core': ^7.0.0-0
819
+ dependencies:
820
+ '@babel/core': 7.22.10
821
+ '@babel/helper-plugin-utils': 7.22.5
822
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10)
823
+ dev: false
824
+
825
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.10):
826
+ resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
827
+ engines: {node: '>=6.9.0'}
828
+ peerDependencies:
829
+ '@babel/core': ^7.0.0-0
830
+ dependencies:
831
+ '@babel/compat-data': 7.22.9
832
+ '@babel/core': 7.22.10
833
+ '@babel/helper-compilation-targets': 7.22.10
834
+ '@babel/helper-plugin-utils': 7.22.5
835
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10)
836
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10)
837
+ dev: false
838
+
839
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.10):
840
+ resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
841
+ engines: {node: '>=6.9.0'}
842
+ peerDependencies:
843
+ '@babel/core': ^7.0.0-0
844
+ dependencies:
845
+ '@babel/core': 7.22.10
846
+ '@babel/helper-plugin-utils': 7.22.5
847
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10)
848
+ dev: false
849
+
850
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.10):
851
+ resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
852
+ engines: {node: '>=6.9.0'}
853
+ peerDependencies:
854
+ '@babel/core': ^7.0.0-0
855
+ dependencies:
856
+ '@babel/core': 7.22.10
857
+ '@babel/helper-plugin-utils': 7.22.5
858
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10)
859
+ dev: false
860
+
861
+ /@babel/plugin-transform-optional-chaining@7.22.10(@babel/core@7.22.10):
862
+ resolution: {integrity: sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==}
863
+ engines: {node: '>=6.9.0'}
864
+ peerDependencies:
865
+ '@babel/core': ^7.0.0-0
866
+ dependencies:
867
+ '@babel/core': 7.22.10
868
+ '@babel/helper-plugin-utils': 7.22.5
869
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
870
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10)
871
+ dev: false
872
+
873
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.10):
874
+ resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
875
+ engines: {node: '>=6.9.0'}
876
+ peerDependencies:
877
+ '@babel/core': ^7.0.0-0
878
+ dependencies:
879
+ '@babel/core': 7.22.10
880
+ '@babel/helper-plugin-utils': 7.22.5
881
+ dev: false
882
+
883
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.10):
884
+ resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
885
+ engines: {node: '>=6.9.0'}
886
+ peerDependencies:
887
+ '@babel/core': ^7.0.0-0
888
+ dependencies:
889
+ '@babel/core': 7.22.10
890
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
891
+ '@babel/helper-plugin-utils': 7.22.5
892
+ dev: false
893
+
894
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.10):
895
+ resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
896
+ engines: {node: '>=6.9.0'}
897
+ peerDependencies:
898
+ '@babel/core': ^7.0.0-0
899
+ dependencies:
900
+ '@babel/core': 7.22.10
901
+ '@babel/helper-annotate-as-pure': 7.22.5
902
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
903
+ '@babel/helper-plugin-utils': 7.22.5
904
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10)
905
+ dev: false
906
+
907
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.10):
908
+ resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
909
+ engines: {node: '>=6.9.0'}
910
+ peerDependencies:
911
+ '@babel/core': ^7.0.0-0
912
+ dependencies:
913
+ '@babel/core': 7.22.10
914
+ '@babel/helper-plugin-utils': 7.22.5
915
+ dev: false
916
+
917
+ /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.10):
918
+ resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
919
+ engines: {node: '>=6.9.0'}
920
+ peerDependencies:
921
+ '@babel/core': ^7.0.0-0
922
+ dependencies:
923
+ '@babel/core': 7.22.10
924
+ '@babel/helper-plugin-utils': 7.22.5
925
+ regenerator-transform: 0.15.2
926
+ dev: false
927
+
928
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.10):
929
+ resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
930
+ engines: {node: '>=6.9.0'}
931
+ peerDependencies:
932
+ '@babel/core': ^7.0.0-0
933
+ dependencies:
934
+ '@babel/core': 7.22.10
935
+ '@babel/helper-plugin-utils': 7.22.5
936
+ dev: false
937
+
938
+ /@babel/plugin-transform-runtime@7.22.10(@babel/core@7.22.10):
939
+ resolution: {integrity: sha512-RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA==}
940
+ engines: {node: '>=6.9.0'}
941
+ peerDependencies:
942
+ '@babel/core': ^7.0.0-0
943
+ dependencies:
944
+ '@babel/core': 7.22.10
945
+ '@babel/helper-module-imports': 7.22.5
946
+ '@babel/helper-plugin-utils': 7.22.5
947
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.10)
948
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.10)
949
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.10)
950
+ semver: 6.3.1
951
+ transitivePeerDependencies:
952
+ - supports-color
953
+ dev: false
954
+
955
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.10):
956
+ resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
957
+ engines: {node: '>=6.9.0'}
958
+ peerDependencies:
959
+ '@babel/core': ^7.0.0-0
960
+ dependencies:
961
+ '@babel/core': 7.22.10
962
+ '@babel/helper-plugin-utils': 7.22.5
963
+ dev: false
964
+
965
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.10):
966
+ resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
967
+ engines: {node: '>=6.9.0'}
968
+ peerDependencies:
969
+ '@babel/core': ^7.0.0-0
970
+ dependencies:
971
+ '@babel/core': 7.22.10
972
+ '@babel/helper-plugin-utils': 7.22.5
973
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
974
+ dev: false
975
+
976
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.10):
977
+ resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
978
+ engines: {node: '>=6.9.0'}
979
+ peerDependencies:
980
+ '@babel/core': ^7.0.0-0
981
+ dependencies:
982
+ '@babel/core': 7.22.10
983
+ '@babel/helper-plugin-utils': 7.22.5
984
+ dev: false
985
+
986
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.10):
987
+ resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
988
+ engines: {node: '>=6.9.0'}
989
+ peerDependencies:
990
+ '@babel/core': ^7.0.0-0
991
+ dependencies:
992
+ '@babel/core': 7.22.10
993
+ '@babel/helper-plugin-utils': 7.22.5
994
+ dev: false
995
+
996
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.10):
997
+ resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
998
+ engines: {node: '>=6.9.0'}
999
+ peerDependencies:
1000
+ '@babel/core': ^7.0.0-0
1001
+ dependencies:
1002
+ '@babel/core': 7.22.10
1003
+ '@babel/helper-plugin-utils': 7.22.5
1004
+ dev: false
1005
+
1006
+ /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.10):
1007
+ resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
1008
+ engines: {node: '>=6.9.0'}
1009
+ peerDependencies:
1010
+ '@babel/core': ^7.0.0-0
1011
+ dependencies:
1012
+ '@babel/core': 7.22.10
1013
+ '@babel/helper-plugin-utils': 7.22.5
1014
+ dev: false
1015
+
1016
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.10):
1017
+ resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
1018
+ engines: {node: '>=6.9.0'}
1019
+ peerDependencies:
1020
+ '@babel/core': ^7.0.0-0
1021
+ dependencies:
1022
+ '@babel/core': 7.22.10
1023
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
1024
+ '@babel/helper-plugin-utils': 7.22.5
1025
+ dev: false
1026
+
1027
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.10):
1028
+ resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
1029
+ engines: {node: '>=6.9.0'}
1030
+ peerDependencies:
1031
+ '@babel/core': ^7.0.0-0
1032
+ dependencies:
1033
+ '@babel/core': 7.22.10
1034
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
1035
+ '@babel/helper-plugin-utils': 7.22.5
1036
+ dev: false
1037
+
1038
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.10):
1039
+ resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
1040
+ engines: {node: '>=6.9.0'}
1041
+ peerDependencies:
1042
+ '@babel/core': ^7.0.0
1043
+ dependencies:
1044
+ '@babel/core': 7.22.10
1045
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
1046
+ '@babel/helper-plugin-utils': 7.22.5
1047
+ dev: false
1048
+
1049
+ /@babel/preset-env@7.22.10(@babel/core@7.22.10):
1050
+ resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==}
1051
+ engines: {node: '>=6.9.0'}
1052
+ peerDependencies:
1053
+ '@babel/core': ^7.0.0-0
1054
+ dependencies:
1055
+ '@babel/compat-data': 7.22.9
1056
+ '@babel/core': 7.22.10
1057
+ '@babel/helper-compilation-targets': 7.22.10
1058
+ '@babel/helper-plugin-utils': 7.22.5
1059
+ '@babel/helper-validator-option': 7.22.5
1060
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.10)
1061
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.10)
1062
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.10)
1063
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10)
1064
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10)
1065
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10)
1066
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10)
1067
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10)
1068
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.10)
1069
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.10)
1070
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10)
1071
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10)
1072
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10)
1073
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10)
1074
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10)
1075
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10)
1076
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10)
1077
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10)
1078
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10)
1079
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10)
1080
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.10)
1081
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.10)
1082
+ '@babel/plugin-transform-async-generator-functions': 7.22.10(@babel/core@7.22.10)
1083
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.10)
1084
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.10)
1085
+ '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.10)
1086
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.10)
1087
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.10)
1088
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.10)
1089
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.10)
1090
+ '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.10)
1091
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.10)
1092
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.10)
1093
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.10)
1094
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.10)
1095
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.10)
1096
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.10)
1097
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.10)
1098
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.10)
1099
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.10)
1100
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.10)
1101
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.10)
1102
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.10)
1103
+ '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.10)
1104
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.10)
1105
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.10)
1106
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.10)
1107
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.10)
1108
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.10)
1109
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.10)
1110
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.10)
1111
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.10)
1112
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.10)
1113
+ '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.10)
1114
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10)
1115
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.10)
1116
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.10)
1117
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.10)
1118
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.10)
1119
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.10)
1120
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.10)
1121
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.10)
1122
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.10)
1123
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.10)
1124
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.10)
1125
+ '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.10)
1126
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.10)
1127
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.10)
1128
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.10)
1129
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.10)
1130
+ '@babel/types': 7.22.10
1131
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.10)
1132
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.10)
1133
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.10)
1134
+ core-js-compat: 3.32.0
1135
+ semver: 6.3.1
1136
+ transitivePeerDependencies:
1137
+ - supports-color
1138
+ dev: false
1139
+
1140
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.10):
1141
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
1142
+ peerDependencies:
1143
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
1144
+ dependencies:
1145
+ '@babel/core': 7.22.10
1146
+ '@babel/helper-plugin-utils': 7.22.5
1147
+ '@babel/types': 7.22.10
1148
+ esutils: 2.0.3
1149
+ dev: false
1150
+
1151
+ /@babel/regjsgen@0.8.0:
1152
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
1153
+ dev: false
1154
+
1155
+ /@babel/runtime@7.22.10:
1156
+ resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==}
1157
+ engines: {node: '>=6.9.0'}
1158
+ dependencies:
1159
+ regenerator-runtime: 0.14.0
1160
+ dev: false
1161
+
1162
+ /@babel/template@7.22.5:
1163
+ resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
1164
+ engines: {node: '>=6.9.0'}
1165
+ dependencies:
1166
+ '@babel/code-frame': 7.22.10
1167
+ '@babel/parser': 7.22.10
1168
+ '@babel/types': 7.22.10
1169
+ dev: false
1170
+
1171
+ /@babel/traverse@7.22.10:
1172
+ resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==}
1173
+ engines: {node: '>=6.9.0'}
1174
+ dependencies:
1175
+ '@babel/code-frame': 7.22.10
1176
+ '@babel/generator': 7.22.10
1177
+ '@babel/helper-environment-visitor': 7.22.5
1178
+ '@babel/helper-function-name': 7.22.5
1179
+ '@babel/helper-hoist-variables': 7.22.5
1180
+ '@babel/helper-split-export-declaration': 7.22.6
1181
+ '@babel/parser': 7.22.10
1182
+ '@babel/types': 7.22.10
1183
+ debug: 4.3.4
1184
+ globals: 11.12.0
1185
+ transitivePeerDependencies:
1186
+ - supports-color
1187
+ dev: false
1188
+
1189
+ /@babel/types@7.22.10:
1190
+ resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==}
1191
+ engines: {node: '>=6.9.0'}
1192
+ dependencies:
1193
+ '@babel/helper-string-parser': 7.22.5
1194
+ '@babel/helper-validator-identifier': 7.22.5
1195
+ to-fast-properties: 2.0.0
1196
+ dev: false
1197
+
1198
+ /@discoveryjs/json-ext@0.5.7:
1199
+ resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
1200
+ engines: {node: '>=10.0.0'}
1201
+ dev: false
1202
+
1203
+ /@jridgewell/gen-mapping@0.3.3:
1204
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
1205
+ engines: {node: '>=6.0.0'}
1206
+ dependencies:
1207
+ '@jridgewell/set-array': 1.1.2
1208
+ '@jridgewell/sourcemap-codec': 1.4.15
1209
+ '@jridgewell/trace-mapping': 0.3.19
1210
+ dev: false
1211
+
1212
+ /@jridgewell/resolve-uri@3.1.1:
1213
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
1214
+ engines: {node: '>=6.0.0'}
1215
+ dev: false
1216
+
1217
+ /@jridgewell/set-array@1.1.2:
1218
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
1219
+ engines: {node: '>=6.0.0'}
1220
+ dev: false
1221
+
1222
+ /@jridgewell/source-map@0.3.5:
1223
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
1224
+ dependencies:
1225
+ '@jridgewell/gen-mapping': 0.3.3
1226
+ '@jridgewell/trace-mapping': 0.3.19
1227
+ dev: false
1228
+
1229
+ /@jridgewell/sourcemap-codec@1.4.15:
1230
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
1231
+ dev: false
1232
+
1233
+ /@jridgewell/trace-mapping@0.3.19:
1234
+ resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
1235
+ dependencies:
1236
+ '@jridgewell/resolve-uri': 3.1.1
1237
+ '@jridgewell/sourcemap-codec': 1.4.15
1238
+ dev: false
1239
+
1240
+ /@types/eslint-scope@3.7.4:
1241
+ resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
1242
+ dependencies:
1243
+ '@types/eslint': 8.44.2
1244
+ '@types/estree': 1.0.1
1245
+ dev: false
1246
+
1247
+ /@types/eslint@8.44.2:
1248
+ resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==}
1249
+ dependencies:
1250
+ '@types/estree': 1.0.1
1251
+ '@types/json-schema': 7.0.12
1252
+ dev: false
1253
+
1254
+ /@types/estree@1.0.1:
1255
+ resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
1256
+ dev: false
1257
+
1258
+ /@types/json-schema@7.0.12:
1259
+ resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
1260
+ dev: false
1261
+
1262
+ /@types/node@20.4.10:
1263
+ resolution: {integrity: sha512-vwzFiiy8Rn6E0MtA13/Cxxgpan/N6UeNYR9oUu6kuJWxu6zCk98trcDp8CBhbtaeuq9SykCmXkFr2lWLoPcvLg==}
1264
+ dev: false
1265
+
1266
+ /@webassemblyjs/ast@1.11.6:
1267
+ resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==}
1268
+ dependencies:
1269
+ '@webassemblyjs/helper-numbers': 1.11.6
1270
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
1271
+ dev: false
1272
+
1273
+ /@webassemblyjs/floating-point-hex-parser@1.11.6:
1274
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
1275
+ dev: false
1276
+
1277
+ /@webassemblyjs/helper-api-error@1.11.6:
1278
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
1279
+ dev: false
1280
+
1281
+ /@webassemblyjs/helper-buffer@1.11.6:
1282
+ resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==}
1283
+ dev: false
1284
+
1285
+ /@webassemblyjs/helper-numbers@1.11.6:
1286
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
1287
+ dependencies:
1288
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
1289
+ '@webassemblyjs/helper-api-error': 1.11.6
1290
+ '@xtuc/long': 4.2.2
1291
+ dev: false
1292
+
1293
+ /@webassemblyjs/helper-wasm-bytecode@1.11.6:
1294
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
1295
+ dev: false
1296
+
1297
+ /@webassemblyjs/helper-wasm-section@1.11.6:
1298
+ resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==}
1299
+ dependencies:
1300
+ '@webassemblyjs/ast': 1.11.6
1301
+ '@webassemblyjs/helper-buffer': 1.11.6
1302
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
1303
+ '@webassemblyjs/wasm-gen': 1.11.6
1304
+ dev: false
1305
+
1306
+ /@webassemblyjs/ieee754@1.11.6:
1307
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
1308
+ dependencies:
1309
+ '@xtuc/ieee754': 1.2.0
1310
+ dev: false
1311
+
1312
+ /@webassemblyjs/leb128@1.11.6:
1313
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
1314
+ dependencies:
1315
+ '@xtuc/long': 4.2.2
1316
+ dev: false
1317
+
1318
+ /@webassemblyjs/utf8@1.11.6:
1319
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
1320
+ dev: false
1321
+
1322
+ /@webassemblyjs/wasm-edit@1.11.6:
1323
+ resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==}
1324
+ dependencies:
1325
+ '@webassemblyjs/ast': 1.11.6
1326
+ '@webassemblyjs/helper-buffer': 1.11.6
1327
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
1328
+ '@webassemblyjs/helper-wasm-section': 1.11.6
1329
+ '@webassemblyjs/wasm-gen': 1.11.6
1330
+ '@webassemblyjs/wasm-opt': 1.11.6
1331
+ '@webassemblyjs/wasm-parser': 1.11.6
1332
+ '@webassemblyjs/wast-printer': 1.11.6
1333
+ dev: false
1334
+
1335
+ /@webassemblyjs/wasm-gen@1.11.6:
1336
+ resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==}
1337
+ dependencies:
1338
+ '@webassemblyjs/ast': 1.11.6
1339
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
1340
+ '@webassemblyjs/ieee754': 1.11.6
1341
+ '@webassemblyjs/leb128': 1.11.6
1342
+ '@webassemblyjs/utf8': 1.11.6
1343
+ dev: false
1344
+
1345
+ /@webassemblyjs/wasm-opt@1.11.6:
1346
+ resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==}
1347
+ dependencies:
1348
+ '@webassemblyjs/ast': 1.11.6
1349
+ '@webassemblyjs/helper-buffer': 1.11.6
1350
+ '@webassemblyjs/wasm-gen': 1.11.6
1351
+ '@webassemblyjs/wasm-parser': 1.11.6
1352
+ dev: false
1353
+
1354
+ /@webassemblyjs/wasm-parser@1.11.6:
1355
+ resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==}
1356
+ dependencies:
1357
+ '@webassemblyjs/ast': 1.11.6
1358
+ '@webassemblyjs/helper-api-error': 1.11.6
1359
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
1360
+ '@webassemblyjs/ieee754': 1.11.6
1361
+ '@webassemblyjs/leb128': 1.11.6
1362
+ '@webassemblyjs/utf8': 1.11.6
1363
+ dev: false
1364
+
1365
+ /@webassemblyjs/wast-printer@1.11.6:
1366
+ resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==}
1367
+ dependencies:
1368
+ '@webassemblyjs/ast': 1.11.6
1369
+ '@xtuc/long': 4.2.2
1370
+ dev: false
1371
+
1372
+ /@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.88.2):
1373
+ resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==}
1374
+ peerDependencies:
1375
+ webpack: 4.x.x || 5.x.x
1376
+ webpack-cli: 4.x.x
1377
+ dependencies:
1378
+ webpack: 5.88.2(webpack-cli@4.10.0)
1379
+ webpack-cli: 4.10.0(webpack@5.88.2)
1380
+ dev: false
1381
+
1382
+ /@webpack-cli/info@1.5.0(webpack-cli@4.10.0):
1383
+ resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==}
1384
+ peerDependencies:
1385
+ webpack-cli: 4.x.x
1386
+ dependencies:
1387
+ envinfo: 7.10.0
1388
+ webpack-cli: 4.10.0(webpack@5.88.2)
1389
+ dev: false
1390
+
1391
+ /@webpack-cli/serve@1.7.0(webpack-cli@4.10.0):
1392
+ resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==}
1393
+ peerDependencies:
1394
+ webpack-cli: 4.x.x
1395
+ webpack-dev-server: '*'
1396
+ peerDependenciesMeta:
1397
+ webpack-dev-server:
1398
+ optional: true
1399
+ dependencies:
1400
+ webpack-cli: 4.10.0(webpack@5.88.2)
1401
+ dev: false
1402
+
1403
+ /@xtuc/ieee754@1.2.0:
1404
+ resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
1405
+ dev: false
1406
+
1407
+ /@xtuc/long@4.2.2:
1408
+ resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
1409
+ dev: false
1410
+
1411
+ /acorn-import-assertions@1.9.0(acorn@8.10.0):
1412
+ resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
1413
+ peerDependencies:
1414
+ acorn: ^8
1415
+ dependencies:
1416
+ acorn: 8.10.0
1417
+ dev: false
1418
+
1419
+ /acorn@8.10.0:
1420
+ resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
1421
+ engines: {node: '>=0.4.0'}
1422
+ hasBin: true
1423
+ dev: false
1424
+
1425
+ /ajv-formats@2.1.1(ajv@8.12.0):
1426
+ resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
1427
+ peerDependencies:
1428
+ ajv: ^8.0.0
1429
+ peerDependenciesMeta:
1430
+ ajv:
1431
+ optional: true
1432
+ dependencies:
1433
+ ajv: 8.12.0
1434
+ dev: false
1435
+
1436
+ /ajv-keywords@3.5.2(ajv@6.12.6):
1437
+ resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
1438
+ peerDependencies:
1439
+ ajv: ^6.9.1
1440
+ dependencies:
1441
+ ajv: 6.12.6
1442
+ dev: false
1443
+
1444
+ /ajv-keywords@5.1.0(ajv@8.12.0):
1445
+ resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
1446
+ peerDependencies:
1447
+ ajv: ^8.8.2
1448
+ dependencies:
1449
+ ajv: 8.12.0
1450
+ fast-deep-equal: 3.1.3
1451
+ dev: false
1452
+
1453
+ /ajv@6.12.6:
1454
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1455
+ dependencies:
1456
+ fast-deep-equal: 3.1.3
1457
+ fast-json-stable-stringify: 2.1.0
1458
+ json-schema-traverse: 0.4.1
1459
+ uri-js: 4.4.1
1460
+ dev: false
1461
+
1462
+ /ajv@8.12.0:
1463
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
1464
+ dependencies:
1465
+ fast-deep-equal: 3.1.3
1466
+ json-schema-traverse: 1.0.0
1467
+ require-from-string: 2.0.2
1468
+ uri-js: 4.4.1
1469
+ dev: false
1470
+
1471
+ /ansi-styles@3.2.1:
1472
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
1473
+ engines: {node: '>=4'}
1474
+ dependencies:
1475
+ color-convert: 1.9.3
1476
+ dev: false
1477
+
1478
+ /ansi-styles@4.3.0:
1479
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1480
+ engines: {node: '>=8'}
1481
+ dependencies:
1482
+ color-convert: 2.0.1
1483
+ dev: false
1484
+
1485
+ /argparse@2.0.1:
1486
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1487
+ dev: false
1488
+
1489
+ /babel-loader@8.3.0(@babel/core@7.22.10)(webpack@5.88.2):
1490
+ resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
1491
+ engines: {node: '>= 8.9'}
1492
+ peerDependencies:
1493
+ '@babel/core': ^7.0.0
1494
+ webpack: '>=2'
1495
+ dependencies:
1496
+ '@babel/core': 7.22.10
1497
+ find-cache-dir: 3.3.2
1498
+ loader-utils: 2.0.4
1499
+ make-dir: 3.1.0
1500
+ schema-utils: 2.7.1
1501
+ webpack: 5.88.2(webpack-cli@4.10.0)
1502
+ dev: false
1503
+
1504
+ /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.10):
1505
+ resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
1506
+ peerDependencies:
1507
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
1508
+ dependencies:
1509
+ '@babel/compat-data': 7.22.9
1510
+ '@babel/core': 7.22.10
1511
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10)
1512
+ semver: 6.3.1
1513
+ transitivePeerDependencies:
1514
+ - supports-color
1515
+ dev: false
1516
+
1517
+ /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.10):
1518
+ resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
1519
+ peerDependencies:
1520
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
1521
+ dependencies:
1522
+ '@babel/core': 7.22.10
1523
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10)
1524
+ core-js-compat: 3.32.0
1525
+ transitivePeerDependencies:
1526
+ - supports-color
1527
+ dev: false
1528
+
1529
+ /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.10):
1530
+ resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
1531
+ peerDependencies:
1532
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
1533
+ dependencies:
1534
+ '@babel/core': 7.22.10
1535
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10)
1536
+ transitivePeerDependencies:
1537
+ - supports-color
1538
+ dev: false
1539
+
1540
+ /balanced-match@1.0.2:
1541
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1542
+ dev: false
1543
+
1544
+ /big.js@5.2.2:
1545
+ resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
1546
+ dev: false
1547
+
1548
+ /brace-expansion@1.1.11:
1549
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
1550
+ dependencies:
1551
+ balanced-match: 1.0.2
1552
+ concat-map: 0.0.1
1553
+ dev: false
1554
+
1555
+ /browserslist@4.21.10:
1556
+ resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
1557
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1558
+ hasBin: true
1559
+ dependencies:
1560
+ caniuse-lite: 1.0.30001520
1561
+ electron-to-chromium: 1.4.490
1562
+ node-releases: 2.0.13
1563
+ update-browserslist-db: 1.0.11(browserslist@4.21.10)
1564
+ dev: false
1565
+
1566
+ /buffer-from@1.1.2:
1567
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
1568
+ dev: false
1569
+
1570
+ /caniuse-lite@1.0.30001520:
1571
+ resolution: {integrity: sha512-tahF5O9EiiTzwTUqAeFjIZbn4Dnqxzz7ktrgGlMYNLH43Ul26IgTMH/zvL3DG0lZxBYnlT04axvInszUsZULdA==}
1572
+ dev: false
1573
+
1574
+ /chalk@2.4.2:
1575
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
1576
+ engines: {node: '>=4'}
1577
+ dependencies:
1578
+ ansi-styles: 3.2.1
1579
+ escape-string-regexp: 1.0.5
1580
+ supports-color: 5.5.0
1581
+ dev: false
1582
+
1583
+ /chalk@4.1.2:
1584
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1585
+ engines: {node: '>=10'}
1586
+ dependencies:
1587
+ ansi-styles: 4.3.0
1588
+ supports-color: 7.2.0
1589
+ dev: false
1590
+
1591
+ /chrome-trace-event@1.0.3:
1592
+ resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
1593
+ engines: {node: '>=6.0'}
1594
+ dev: false
1595
+
1596
+ /clone-deep@4.0.1:
1597
+ resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
1598
+ engines: {node: '>=6'}
1599
+ dependencies:
1600
+ is-plain-object: 2.0.4
1601
+ kind-of: 6.0.3
1602
+ shallow-clone: 3.0.1
1603
+ dev: false
1604
+
1605
+ /color-convert@1.9.3:
1606
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
1607
+ dependencies:
1608
+ color-name: 1.1.3
1609
+ dev: false
1610
+
1611
+ /color-convert@2.0.1:
1612
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1613
+ engines: {node: '>=7.0.0'}
1614
+ dependencies:
1615
+ color-name: 1.1.4
1616
+ dev: false
1617
+
1618
+ /color-name@1.1.3:
1619
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
1620
+ dev: false
1621
+
1622
+ /color-name@1.1.4:
1623
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1624
+ dev: false
1625
+
1626
+ /colorette@2.0.20:
1627
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
1628
+ dev: false
1629
+
1630
+ /commander@2.20.3:
1631
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
1632
+ dev: false
1633
+
1634
+ /commander@7.2.0:
1635
+ resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
1636
+ engines: {node: '>= 10'}
1637
+ dev: false
1638
+
1639
+ /commondir@1.0.1:
1640
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
1641
+ dev: false
1642
+
1643
+ /compression-webpack-plugin@9.2.0(webpack@5.88.2):
1644
+ resolution: {integrity: sha512-R/Oi+2+UHotGfu72fJiRoVpuRifZT0tTC6UqFD/DUo+mv8dbOow9rVOuTvDv5nPPm3GZhHL/fKkwxwIHnJ8Nyw==}
1645
+ engines: {node: '>= 12.13.0'}
1646
+ peerDependencies:
1647
+ webpack: ^5.1.0
1648
+ dependencies:
1649
+ schema-utils: 4.2.0
1650
+ serialize-javascript: 6.0.1
1651
+ webpack: 5.88.2(webpack-cli@4.10.0)
1652
+ dev: false
1653
+
1654
+ /concat-map@0.0.1:
1655
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1656
+ dev: false
1657
+
1658
+ /convert-source-map@1.9.0:
1659
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
1660
+ dev: false
1661
+
1662
+ /core-js-compat@3.32.0:
1663
+ resolution: {integrity: sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==}
1664
+ dependencies:
1665
+ browserslist: 4.21.10
1666
+ dev: false
1667
+
1668
+ /cross-spawn@7.0.3:
1669
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1670
+ engines: {node: '>= 8'}
1671
+ dependencies:
1672
+ path-key: 3.1.1
1673
+ shebang-command: 2.0.0
1674
+ which: 2.0.2
1675
+ dev: false
1676
+
1677
+ /debug@4.3.4:
1678
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
1679
+ engines: {node: '>=6.0'}
1680
+ peerDependencies:
1681
+ supports-color: '*'
1682
+ peerDependenciesMeta:
1683
+ supports-color:
1684
+ optional: true
1685
+ dependencies:
1686
+ ms: 2.1.2
1687
+ dev: false
1688
+
1689
+ /deepmerge@4.3.1:
1690
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
1691
+ engines: {node: '>=0.10.0'}
1692
+ dev: false
1693
+
1694
+ /electron-to-chromium@1.4.490:
1695
+ resolution: {integrity: sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==}
1696
+ dev: false
1697
+
1698
+ /emojis-list@3.0.0:
1699
+ resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
1700
+ engines: {node: '>= 4'}
1701
+ dev: false
1702
+
1703
+ /enhanced-resolve@5.15.0:
1704
+ resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
1705
+ engines: {node: '>=10.13.0'}
1706
+ dependencies:
1707
+ graceful-fs: 4.2.11
1708
+ tapable: 2.2.1
1709
+ dev: false
1710
+
1711
+ /envinfo@7.10.0:
1712
+ resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==}
1713
+ engines: {node: '>=4'}
1714
+ hasBin: true
1715
+ dev: false
1716
+
1717
+ /es-module-lexer@1.3.0:
1718
+ resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
1719
+ dev: false
1720
+
1721
+ /escalade@3.1.1:
1722
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
1723
+ engines: {node: '>=6'}
1724
+ dev: false
1725
+
1726
+ /escape-string-regexp@1.0.5:
1727
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
1728
+ engines: {node: '>=0.8.0'}
1729
+ dev: false
1730
+
1731
+ /eslint-scope@5.1.1:
1732
+ resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
1733
+ engines: {node: '>=8.0.0'}
1734
+ dependencies:
1735
+ esrecurse: 4.3.0
1736
+ estraverse: 4.3.0
1737
+ dev: false
1738
+
1739
+ /esrecurse@4.3.0:
1740
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1741
+ engines: {node: '>=4.0'}
1742
+ dependencies:
1743
+ estraverse: 5.3.0
1744
+ dev: false
1745
+
1746
+ /estraverse@4.3.0:
1747
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
1748
+ engines: {node: '>=4.0'}
1749
+ dev: false
1750
+
1751
+ /estraverse@5.3.0:
1752
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1753
+ engines: {node: '>=4.0'}
1754
+ dev: false
1755
+
1756
+ /esutils@2.0.3:
1757
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1758
+ engines: {node: '>=0.10.0'}
1759
+ dev: false
1760
+
1761
+ /events@3.3.0:
1762
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
1763
+ engines: {node: '>=0.8.x'}
1764
+ dev: false
1765
+
1766
+ /fast-deep-equal@3.1.3:
1767
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1768
+ dev: false
1769
+
1770
+ /fast-json-stable-stringify@2.1.0:
1771
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1772
+ dev: false
1773
+
1774
+ /fastest-levenshtein@1.0.16:
1775
+ resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
1776
+ engines: {node: '>= 4.9.1'}
1777
+ dev: false
1778
+
1779
+ /find-cache-dir@3.3.2:
1780
+ resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
1781
+ engines: {node: '>=8'}
1782
+ dependencies:
1783
+ commondir: 1.0.1
1784
+ make-dir: 3.1.0
1785
+ pkg-dir: 4.2.0
1786
+ dev: false
1787
+
1788
+ /find-up@4.1.0:
1789
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
1790
+ engines: {node: '>=8'}
1791
+ dependencies:
1792
+ locate-path: 5.0.0
1793
+ path-exists: 4.0.0
1794
+ dev: false
1795
+
1796
+ /fs.realpath@1.0.0:
1797
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1798
+ dev: false
1799
+
1800
+ /function-bind@1.1.1:
1801
+ resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
1802
+ dev: false
1803
+
1804
+ /gensync@1.0.0-beta.2:
1805
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1806
+ engines: {node: '>=6.9.0'}
1807
+ dev: false
1808
+
1809
+ /glob-to-regexp@0.4.1:
1810
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
1811
+ dev: false
1812
+
1813
+ /glob@7.2.3:
1814
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1815
+ dependencies:
1816
+ fs.realpath: 1.0.0
1817
+ inflight: 1.0.6
1818
+ inherits: 2.0.4
1819
+ minimatch: 3.1.2
1820
+ once: 1.4.0
1821
+ path-is-absolute: 1.0.1
1822
+ dev: false
1823
+
1824
+ /globals@11.12.0:
1825
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
1826
+ engines: {node: '>=4'}
1827
+ dev: false
1828
+
1829
+ /graceful-fs@4.2.11:
1830
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1831
+ dev: false
1832
+
1833
+ /has-flag@3.0.0:
1834
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
1835
+ engines: {node: '>=4'}
1836
+ dev: false
1837
+
1838
+ /has-flag@4.0.0:
1839
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1840
+ engines: {node: '>=8'}
1841
+ dev: false
1842
+
1843
+ /has@1.0.3:
1844
+ resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
1845
+ engines: {node: '>= 0.4.0'}
1846
+ dependencies:
1847
+ function-bind: 1.1.1
1848
+ dev: false
1849
+
1850
+ /import-local@3.1.0:
1851
+ resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
1852
+ engines: {node: '>=8'}
1853
+ hasBin: true
1854
+ dependencies:
1855
+ pkg-dir: 4.2.0
1856
+ resolve-cwd: 3.0.0
1857
+ dev: false
1858
+
1859
+ /inflight@1.0.6:
1860
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1861
+ dependencies:
1862
+ once: 1.4.0
1863
+ wrappy: 1.0.2
1864
+ dev: false
1865
+
1866
+ /inherits@2.0.4:
1867
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1868
+ dev: false
1869
+
1870
+ /interpret@2.2.0:
1871
+ resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
1872
+ engines: {node: '>= 0.10'}
1873
+ dev: false
1874
+
1875
+ /is-core-module@2.13.0:
1876
+ resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
1877
+ dependencies:
1878
+ has: 1.0.3
1879
+ dev: false
1880
+
1881
+ /is-plain-object@2.0.4:
1882
+ resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
1883
+ engines: {node: '>=0.10.0'}
1884
+ dependencies:
1885
+ isobject: 3.0.1
1886
+ dev: false
1887
+
1888
+ /isexe@2.0.0:
1889
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1890
+ dev: false
1891
+
1892
+ /isobject@3.0.1:
1893
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
1894
+ engines: {node: '>=0.10.0'}
1895
+ dev: false
1896
+
1897
+ /jest-worker@27.5.1:
1898
+ resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
1899
+ engines: {node: '>= 10.13.0'}
1900
+ dependencies:
1901
+ '@types/node': 20.4.10
1902
+ merge-stream: 2.0.0
1903
+ supports-color: 8.1.1
1904
+ dev: false
1905
+
1906
+ /js-tokens@4.0.0:
1907
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1908
+ dev: false
1909
+
1910
+ /js-yaml@4.1.0:
1911
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1912
+ hasBin: true
1913
+ dependencies:
1914
+ argparse: 2.0.1
1915
+ dev: false
1916
+
1917
+ /jsesc@0.5.0:
1918
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
1919
+ hasBin: true
1920
+ dev: false
1921
+
1922
+ /jsesc@2.5.2:
1923
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
1924
+ engines: {node: '>=4'}
1925
+ hasBin: true
1926
+ dev: false
1927
+
1928
+ /json-parse-even-better-errors@2.3.1:
1929
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
1930
+ dev: false
1931
+
1932
+ /json-schema-traverse@0.4.1:
1933
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1934
+ dev: false
1935
+
1936
+ /json-schema-traverse@1.0.0:
1937
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
1938
+ dev: false
1939
+
1940
+ /json5@2.2.3:
1941
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1942
+ engines: {node: '>=6'}
1943
+ hasBin: true
1944
+ dev: false
1945
+
1946
+ /kind-of@6.0.3:
1947
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
1948
+ engines: {node: '>=0.10.0'}
1949
+ dev: false
1950
+
1951
+ /loader-runner@4.3.0:
1952
+ resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
1953
+ engines: {node: '>=6.11.5'}
1954
+ dev: false
1955
+
1956
+ /loader-utils@2.0.4:
1957
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
1958
+ engines: {node: '>=8.9.0'}
1959
+ dependencies:
1960
+ big.js: 5.2.2
1961
+ emojis-list: 3.0.0
1962
+ json5: 2.2.3
1963
+ dev: false
1964
+
1965
+ /locate-path@5.0.0:
1966
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
1967
+ engines: {node: '>=8'}
1968
+ dependencies:
1969
+ p-locate: 4.1.0
1970
+ dev: false
1971
+
1972
+ /lockfile@1.0.4:
1973
+ resolution: {integrity: sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==}
1974
+ dependencies:
1975
+ signal-exit: 3.0.7
1976
+ dev: false
1977
+
1978
+ /lodash.debounce@4.0.8:
1979
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
1980
+ dev: false
1981
+
1982
+ /lodash.get@4.4.2:
1983
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
1984
+ dev: false
1985
+
1986
+ /lodash.has@4.5.2:
1987
+ resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==}
1988
+ dev: false
1989
+
1990
+ /lru-cache@5.1.1:
1991
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1992
+ dependencies:
1993
+ yallist: 3.1.1
1994
+ dev: false
1995
+
1996
+ /make-dir@3.1.0:
1997
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
1998
+ engines: {node: '>=8'}
1999
+ dependencies:
2000
+ semver: 6.3.1
2001
+ dev: false
2002
+
2003
+ /merge-stream@2.0.0:
2004
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
2005
+ dev: false
2006
+
2007
+ /mime-db@1.52.0:
2008
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
2009
+ engines: {node: '>= 0.6'}
2010
+ dev: false
2011
+
2012
+ /mime-types@2.1.35:
2013
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
2014
+ engines: {node: '>= 0.6'}
2015
+ dependencies:
2016
+ mime-db: 1.52.0
2017
+ dev: false
2018
+
2019
+ /minimatch@3.1.2:
2020
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
2021
+ dependencies:
2022
+ brace-expansion: 1.1.11
2023
+ dev: false
2024
+
2025
+ /ms@2.1.2:
2026
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2027
+ dev: false
2028
+
2029
+ /neo-async@2.6.2:
2030
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
2031
+ dev: false
2032
+
2033
+ /node-releases@2.0.13:
2034
+ resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
2035
+ dev: false
2036
+
2037
+ /once@1.4.0:
2038
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2039
+ dependencies:
2040
+ wrappy: 1.0.2
2041
+ dev: false
2042
+
2043
+ /p-limit@2.3.0:
2044
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
2045
+ engines: {node: '>=6'}
2046
+ dependencies:
2047
+ p-try: 2.2.0
2048
+ dev: false
2049
+
2050
+ /p-locate@4.1.0:
2051
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
2052
+ engines: {node: '>=8'}
2053
+ dependencies:
2054
+ p-limit: 2.3.0
2055
+ dev: false
2056
+
2057
+ /p-try@2.2.0:
2058
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
2059
+ engines: {node: '>=6'}
2060
+ dev: false
2061
+
2062
+ /path-complete-extname@1.0.0:
2063
+ resolution: {integrity: sha512-CVjiWcMRdGU8ubs08YQVzhutOR5DEfO97ipRIlOGMK5Bek5nQySknBpuxVAVJ36hseTNs+vdIcv57ZrWxH7zvg==}
2064
+ dev: false
2065
+
2066
+ /path-exists@4.0.0:
2067
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
2068
+ engines: {node: '>=8'}
2069
+ dev: false
2070
+
2071
+ /path-is-absolute@1.0.1:
2072
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
2073
+ engines: {node: '>=0.10.0'}
2074
+ dev: false
2075
+
2076
+ /path-key@3.1.1:
2077
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
2078
+ engines: {node: '>=8'}
2079
+ dev: false
2080
+
2081
+ /path-parse@1.0.7:
2082
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
2083
+ dev: false
2084
+
2085
+ /picocolors@1.0.0:
2086
+ resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2087
+ dev: false
2088
+
2089
+ /pkg-dir@4.2.0:
2090
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
2091
+ engines: {node: '>=8'}
2092
+ dependencies:
2093
+ find-up: 4.1.0
2094
+ dev: false
2095
+
2096
+ /pnp-webpack-plugin@1.7.0:
2097
+ resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==}
2098
+ engines: {node: '>=6'}
2099
+ dependencies:
2100
+ ts-pnp: 1.2.0
2101
+ transitivePeerDependencies:
2102
+ - typescript
2103
+ dev: false
2104
+
2105
+ /punycode@2.3.0:
2106
+ resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
2107
+ engines: {node: '>=6'}
2108
+ dev: false
2109
+
2110
+ /randombytes@2.1.0:
2111
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
2112
+ dependencies:
2113
+ safe-buffer: 5.2.1
2114
+ dev: false
2115
+
2116
+ /rechoir@0.7.1:
2117
+ resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
2118
+ engines: {node: '>= 0.10'}
2119
+ dependencies:
2120
+ resolve: 1.22.4
2121
+ dev: false
2122
+
2123
+ /regenerate-unicode-properties@10.1.0:
2124
+ resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
2125
+ engines: {node: '>=4'}
2126
+ dependencies:
2127
+ regenerate: 1.4.2
2128
+ dev: false
2129
+
2130
+ /regenerate@1.4.2:
2131
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
2132
+ dev: false
2133
+
2134
+ /regenerator-runtime@0.14.0:
2135
+ resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
2136
+ dev: false
2137
+
2138
+ /regenerator-transform@0.15.2:
2139
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
2140
+ dependencies:
2141
+ '@babel/runtime': 7.22.10
2142
+ dev: false
2143
+
2144
+ /regexpu-core@5.3.2:
2145
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
2146
+ engines: {node: '>=4'}
2147
+ dependencies:
2148
+ '@babel/regjsgen': 0.8.0
2149
+ regenerate: 1.4.2
2150
+ regenerate-unicode-properties: 10.1.0
2151
+ regjsparser: 0.9.1
2152
+ unicode-match-property-ecmascript: 2.0.0
2153
+ unicode-match-property-value-ecmascript: 2.1.0
2154
+ dev: false
2155
+
2156
+ /regjsparser@0.9.1:
2157
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
2158
+ hasBin: true
2159
+ dependencies:
2160
+ jsesc: 0.5.0
2161
+ dev: false
2162
+
2163
+ /require-from-string@2.0.2:
2164
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
2165
+ engines: {node: '>=0.10.0'}
2166
+ dev: false
2167
+
2168
+ /resolve-cwd@3.0.0:
2169
+ resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
2170
+ engines: {node: '>=8'}
2171
+ dependencies:
2172
+ resolve-from: 5.0.0
2173
+ dev: false
2174
+
2175
+ /resolve-from@5.0.0:
2176
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
2177
+ engines: {node: '>=8'}
2178
+ dev: false
2179
+
2180
+ /resolve@1.22.4:
2181
+ resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==}
2182
+ hasBin: true
2183
+ dependencies:
2184
+ is-core-module: 2.13.0
2185
+ path-parse: 1.0.7
2186
+ supports-preserve-symlinks-flag: 1.0.0
2187
+ dev: false
2188
+
2189
+ /right-pad@1.0.1:
2190
+ resolution: {integrity: sha512-bYBjgxmkvTAfgIYy328fmkwhp39v8lwVgWhhrzxPV3yHtcSqyYKe9/XOhvW48UFjATg3VuJbpsp5822ACNvkmw==}
2191
+ engines: {node: '>= 0.10'}
2192
+ dev: true
2193
+
2194
+ /safe-buffer@5.2.1:
2195
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
2196
+ dev: false
2197
+
2198
+ /schema-utils@2.7.1:
2199
+ resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
2200
+ engines: {node: '>= 8.9.0'}
2201
+ dependencies:
2202
+ '@types/json-schema': 7.0.12
2203
+ ajv: 6.12.6
2204
+ ajv-keywords: 3.5.2(ajv@6.12.6)
2205
+ dev: false
2206
+
2207
+ /schema-utils@3.3.0:
2208
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
2209
+ engines: {node: '>= 10.13.0'}
2210
+ dependencies:
2211
+ '@types/json-schema': 7.0.12
2212
+ ajv: 6.12.6
2213
+ ajv-keywords: 3.5.2(ajv@6.12.6)
2214
+ dev: false
2215
+
2216
+ /schema-utils@4.2.0:
2217
+ resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
2218
+ engines: {node: '>= 12.13.0'}
2219
+ dependencies:
2220
+ '@types/json-schema': 7.0.12
2221
+ ajv: 8.12.0
2222
+ ajv-formats: 2.1.1(ajv@8.12.0)
2223
+ ajv-keywords: 5.1.0(ajv@8.12.0)
2224
+ dev: false
2225
+
2226
+ /semver@6.3.1:
2227
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
2228
+ hasBin: true
2229
+ dev: false
2230
+
2231
+ /serialize-javascript@6.0.1:
2232
+ resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
2233
+ dependencies:
2234
+ randombytes: 2.1.0
2235
+ dev: false
2236
+
2237
+ /shakapacker@6.0.0(@babel/core@7.22.10)(@babel/plugin-transform-runtime@7.22.10)(@babel/preset-env@7.22.10)(@babel/runtime@7.22.10)(babel-loader@8.3.0)(compression-webpack-plugin@9.2.0)(pnp-webpack-plugin@1.7.0)(terser-webpack-plugin@5.3.9)(webpack-assets-manifest@5.1.0)(webpack-cli@4.10.0)(webpack-merge@5.9.0)(webpack@5.88.2):
2238
+ resolution: {integrity: sha512-kNkBPkvmeda0ZK1aNmdICqKWYEwzkqzRpTtJd50ArM+ZpY7wIlCuVBXGE2SM4opzQVfp9bJG00XA+NCE1K6E7Q==}
2239
+ engines: {node: ^12.13.0 || ^14 || >=16, yarn: '>=1 <4'}
2240
+ peerDependencies:
2241
+ '@babel/core': ^7.15.5
2242
+ '@babel/plugin-transform-runtime': ^7.15.0
2243
+ '@babel/preset-env': ^7.15.6
2244
+ '@babel/runtime': ^7.15.4
2245
+ babel-loader: ^8.2.2
2246
+ compression-webpack-plugin: ^9.0.0
2247
+ pnp-webpack-plugin: ^1.7.0
2248
+ terser-webpack-plugin: ^5.2.4
2249
+ webpack: ^5.53.0
2250
+ webpack-assets-manifest: ^5.0.6
2251
+ webpack-cli: ^4.8.0
2252
+ webpack-merge: ^5.8.0
2253
+ dependencies:
2254
+ '@babel/core': 7.22.10
2255
+ '@babel/plugin-transform-runtime': 7.22.10(@babel/core@7.22.10)
2256
+ '@babel/preset-env': 7.22.10(@babel/core@7.22.10)
2257
+ '@babel/runtime': 7.22.10
2258
+ babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@5.88.2)
2259
+ compression-webpack-plugin: 9.2.0(webpack@5.88.2)
2260
+ glob: 7.2.3
2261
+ js-yaml: 4.1.0
2262
+ path-complete-extname: 1.0.0
2263
+ pnp-webpack-plugin: 1.7.0
2264
+ terser-webpack-plugin: 5.3.9(webpack@5.88.2)
2265
+ webpack: 5.88.2(webpack-cli@4.10.0)
2266
+ webpack-assets-manifest: 5.1.0(webpack@5.88.2)
2267
+ webpack-cli: 4.10.0(webpack@5.88.2)
2268
+ webpack-merge: 5.9.0
2269
+ dev: false
2270
+
2271
+ /shallow-clone@3.0.1:
2272
+ resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
2273
+ engines: {node: '>=8'}
2274
+ dependencies:
2275
+ kind-of: 6.0.3
2276
+ dev: false
2277
+
2278
+ /shebang-command@2.0.0:
2279
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2280
+ engines: {node: '>=8'}
2281
+ dependencies:
2282
+ shebang-regex: 3.0.0
2283
+ dev: false
2284
+
2285
+ /shebang-regex@3.0.0:
2286
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2287
+ engines: {node: '>=8'}
2288
+ dev: false
2289
+
2290
+ /signal-exit@3.0.7:
2291
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
2292
+ dev: false
2293
+
2294
+ /source-map-support@0.5.21:
2295
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
2296
+ dependencies:
2297
+ buffer-from: 1.1.2
2298
+ source-map: 0.6.1
2299
+ dev: false
2300
+
2301
+ /source-map@0.6.1:
2302
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
2303
+ engines: {node: '>=0.10.0'}
2304
+ dev: false
2305
+
2306
+ /supports-color@5.5.0:
2307
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
2308
+ engines: {node: '>=4'}
2309
+ dependencies:
2310
+ has-flag: 3.0.0
2311
+ dev: false
2312
+
2313
+ /supports-color@7.2.0:
2314
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2315
+ engines: {node: '>=8'}
2316
+ dependencies:
2317
+ has-flag: 4.0.0
2318
+ dev: false
2319
+
2320
+ /supports-color@8.1.1:
2321
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
2322
+ engines: {node: '>=10'}
2323
+ dependencies:
2324
+ has-flag: 4.0.0
2325
+ dev: false
2326
+
2327
+ /supports-preserve-symlinks-flag@1.0.0:
2328
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
2329
+ engines: {node: '>= 0.4'}
2330
+ dev: false
2331
+
2332
+ /tapable@2.2.1:
2333
+ resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
2334
+ engines: {node: '>=6'}
2335
+ dev: false
2336
+
2337
+ /terser-webpack-plugin@5.3.9(webpack@5.88.2):
2338
+ resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
2339
+ engines: {node: '>= 10.13.0'}
2340
+ peerDependencies:
2341
+ '@swc/core': '*'
2342
+ esbuild: '*'
2343
+ uglify-js: '*'
2344
+ webpack: ^5.1.0
2345
+ peerDependenciesMeta:
2346
+ '@swc/core':
2347
+ optional: true
2348
+ esbuild:
2349
+ optional: true
2350
+ uglify-js:
2351
+ optional: true
2352
+ dependencies:
2353
+ '@jridgewell/trace-mapping': 0.3.19
2354
+ jest-worker: 27.5.1
2355
+ schema-utils: 3.3.0
2356
+ serialize-javascript: 6.0.1
2357
+ terser: 5.19.2
2358
+ webpack: 5.88.2(webpack-cli@4.10.0)
2359
+ dev: false
2360
+
2361
+ /terser@5.19.2:
2362
+ resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==}
2363
+ engines: {node: '>=10'}
2364
+ hasBin: true
2365
+ dependencies:
2366
+ '@jridgewell/source-map': 0.3.5
2367
+ acorn: 8.10.0
2368
+ commander: 2.20.3
2369
+ source-map-support: 0.5.21
2370
+ dev: false
2371
+
2372
+ /to-fast-properties@2.0.0:
2373
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
2374
+ engines: {node: '>=4'}
2375
+ dev: false
2376
+
2377
+ /ts-pnp@1.2.0:
2378
+ resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
2379
+ engines: {node: '>=6'}
2380
+ peerDependencies:
2381
+ typescript: '*'
2382
+ peerDependenciesMeta:
2383
+ typescript:
2384
+ optional: true
2385
+ dev: false
2386
+
2387
+ /unicode-canonical-property-names-ecmascript@2.0.0:
2388
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
2389
+ engines: {node: '>=4'}
2390
+ dev: false
2391
+
2392
+ /unicode-match-property-ecmascript@2.0.0:
2393
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
2394
+ engines: {node: '>=4'}
2395
+ dependencies:
2396
+ unicode-canonical-property-names-ecmascript: 2.0.0
2397
+ unicode-property-aliases-ecmascript: 2.1.0
2398
+ dev: false
2399
+
2400
+ /unicode-match-property-value-ecmascript@2.1.0:
2401
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
2402
+ engines: {node: '>=4'}
2403
+ dev: false
2404
+
2405
+ /unicode-property-aliases-ecmascript@2.1.0:
2406
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
2407
+ engines: {node: '>=4'}
2408
+ dev: false
2409
+
2410
+ /update-browserslist-db@1.0.11(browserslist@4.21.10):
2411
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
2412
+ hasBin: true
2413
+ peerDependencies:
2414
+ browserslist: '>= 4.21.0'
2415
+ dependencies:
2416
+ browserslist: 4.21.10
2417
+ escalade: 3.1.1
2418
+ picocolors: 1.0.0
2419
+ dev: false
2420
+
2421
+ /uri-js@4.4.1:
2422
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2423
+ dependencies:
2424
+ punycode: 2.3.0
2425
+ dev: false
2426
+
2427
+ /watchpack@2.4.0:
2428
+ resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
2429
+ engines: {node: '>=10.13.0'}
2430
+ dependencies:
2431
+ glob-to-regexp: 0.4.1
2432
+ graceful-fs: 4.2.11
2433
+ dev: false
2434
+
2435
+ /webpack-assets-manifest@5.1.0(webpack@5.88.2):
2436
+ resolution: {integrity: sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==}
2437
+ engines: {node: '>=10.13.0'}
2438
+ peerDependencies:
2439
+ webpack: ^5.2.0
2440
+ dependencies:
2441
+ chalk: 4.1.2
2442
+ deepmerge: 4.3.1
2443
+ lockfile: 1.0.4
2444
+ lodash.get: 4.4.2
2445
+ lodash.has: 4.5.2
2446
+ schema-utils: 3.3.0
2447
+ tapable: 2.2.1
2448
+ webpack: 5.88.2(webpack-cli@4.10.0)
2449
+ dev: false
2450
+
2451
+ /webpack-cli@4.10.0(webpack@5.88.2):
2452
+ resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==}
2453
+ engines: {node: '>=10.13.0'}
2454
+ hasBin: true
2455
+ peerDependencies:
2456
+ '@webpack-cli/generators': '*'
2457
+ '@webpack-cli/migrate': '*'
2458
+ webpack: 4.x.x || 5.x.x
2459
+ webpack-bundle-analyzer: '*'
2460
+ webpack-dev-server: '*'
2461
+ peerDependenciesMeta:
2462
+ '@webpack-cli/generators':
2463
+ optional: true
2464
+ '@webpack-cli/migrate':
2465
+ optional: true
2466
+ webpack-bundle-analyzer:
2467
+ optional: true
2468
+ webpack-dev-server:
2469
+ optional: true
2470
+ dependencies:
2471
+ '@discoveryjs/json-ext': 0.5.7
2472
+ '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@5.88.2)
2473
+ '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0)
2474
+ '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)
2475
+ colorette: 2.0.20
2476
+ commander: 7.2.0
2477
+ cross-spawn: 7.0.3
2478
+ fastest-levenshtein: 1.0.16
2479
+ import-local: 3.1.0
2480
+ interpret: 2.2.0
2481
+ rechoir: 0.7.1
2482
+ webpack: 5.88.2(webpack-cli@4.10.0)
2483
+ webpack-merge: 5.9.0
2484
+ dev: false
2485
+
2486
+ /webpack-merge@5.9.0:
2487
+ resolution: {integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==}
2488
+ engines: {node: '>=10.0.0'}
2489
+ dependencies:
2490
+ clone-deep: 4.0.1
2491
+ wildcard: 2.0.1
2492
+ dev: false
2493
+
2494
+ /webpack-sources@3.2.3:
2495
+ resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
2496
+ engines: {node: '>=10.13.0'}
2497
+ dev: false
2498
+
2499
+ /webpack@5.88.2(webpack-cli@4.10.0):
2500
+ resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==}
2501
+ engines: {node: '>=10.13.0'}
2502
+ hasBin: true
2503
+ peerDependencies:
2504
+ webpack-cli: '*'
2505
+ peerDependenciesMeta:
2506
+ webpack-cli:
2507
+ optional: true
2508
+ dependencies:
2509
+ '@types/eslint-scope': 3.7.4
2510
+ '@types/estree': 1.0.1
2511
+ '@webassemblyjs/ast': 1.11.6
2512
+ '@webassemblyjs/wasm-edit': 1.11.6
2513
+ '@webassemblyjs/wasm-parser': 1.11.6
2514
+ acorn: 8.10.0
2515
+ acorn-import-assertions: 1.9.0(acorn@8.10.0)
2516
+ browserslist: 4.21.10
2517
+ chrome-trace-event: 1.0.3
2518
+ enhanced-resolve: 5.15.0
2519
+ es-module-lexer: 1.3.0
2520
+ eslint-scope: 5.1.1
2521
+ events: 3.3.0
2522
+ glob-to-regexp: 0.4.1
2523
+ graceful-fs: 4.2.11
2524
+ json-parse-even-better-errors: 2.3.1
2525
+ loader-runner: 4.3.0
2526
+ mime-types: 2.1.35
2527
+ neo-async: 2.6.2
2528
+ schema-utils: 3.3.0
2529
+ tapable: 2.2.1
2530
+ terser-webpack-plugin: 5.3.9(webpack@5.88.2)
2531
+ watchpack: 2.4.0
2532
+ webpack-cli: 4.10.0(webpack@5.88.2)
2533
+ webpack-sources: 3.2.3
2534
+ transitivePeerDependencies:
2535
+ - '@swc/core'
2536
+ - esbuild
2537
+ - uglify-js
2538
+ dev: false
2539
+
2540
+ /which@2.0.2:
2541
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2542
+ engines: {node: '>= 8'}
2543
+ hasBin: true
2544
+ dependencies:
2545
+ isexe: 2.0.0
2546
+ dev: false
2547
+
2548
+ /wildcard@2.0.1:
2549
+ resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
2550
+ dev: false
2551
+
2552
+ /wrappy@1.0.2:
2553
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2554
+ dev: false
2555
+
2556
+ /yallist@3.1.1:
2557
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
2558
+ dev: false