Handle project references that return invalid target paths
Closes 7277
Rob Mensching committed
Mar 16, 2023 at 00:44 UTC
eac8b61c7532b96d281c3f8a088a1e78a70730bc
23 files changed
+29930
-2
src/test/wix/TestData/EsprojReact/.gitignore
new
+23
@@ -0,0 +1,23 @@
1
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+# dependencies
4
+/node_modules
5
+/.pnp
6
+.pnp.js
7
+
8
+# testing
9
+/coverage
10
+
11
+# production
12
+/build
13
+
14
+# misc
15
+.DS_Store
16
+.env.local
17
+.env.development.local
18
+.env.test.local
19
+.env.production.local
20
+
21
+npm-debug.log*
22
+yarn-debug.log*
23
+yarn-error.log*
src/test/wix/TestData/EsprojReact/EsprojReact.esproj
new
+13
@@ -0,0 +1,13 @@
1
+<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/0.5.74-alpha">
2
+ <PropertyGroup>
3
+ <StartupCommand>set BROWSER=none&&npm start</StartupCommand>
4
+ <JavaScriptTestRoot>src\</JavaScriptTestRoot>
5
+ <JavaScriptTestFramework>Jest</JavaScriptTestFramework>
6
+ <!-- Command to run on project build -->
7
+ <BuildCommand></BuildCommand>
8
+ <!-- Command to create an optimized build of the project that's ready for publishing -->
9
+ <ProductionBuildCommand>npm run build</ProductionBuildCommand>
10
+ <!-- Folder where production build objects will be placed -->
11
+ <BuildOutputFolder>$(MSBuildProjectDirectory)\build</BuildOutputFolder>
12
+ </PropertyGroup>
13
+</Project>
src/test/wix/TestData/EsprojReact/README.md
new
+70
@@ -0,0 +1,70 @@
1
+# Getting Started with Create React App
2
+
3
+This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
+
5
+## Available Scripts
6
+
7
+In the project directory, you can run:
8
+
9
+### `npm start`
10
+
11
+Runs the app in the development mode.\
12
+Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
13
+
14
+The page will reload when you make changes.\
15
+You may also see any lint errors in the console.
16
+
17
+### `npm test`
18
+
19
+Launches the test runner in the interactive watch mode.\
20
+See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
+
22
+### `npm run build`
23
+
24
+Builds the app for production to the `build` folder.\
25
+It correctly bundles React in production mode and optimizes the build for the best performance.
26
+
27
+The build is minified and the filenames include the hashes.\
28
+Your app is ready to be deployed!
29
+
30
+See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
+
32
+### `npm run eject`
33
+
34
+**Note: this is a one-way operation. Once you `eject`, you can't go back!**
35
+
36
+If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37
+
38
+Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
39
+
40
+You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
41
+
42
+## Learn More
43
+
44
+You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
+
46
+To learn React, check out the [React documentation](https://reactjs.org/).
47
+
48
+### Code Splitting
49
+
50
+This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51
+
52
+### Analyzing the Bundle Size
53
+
54
+This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55
+
56
+### Making a Progressive Web App
57
+
58
+This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59
+
60
+### Advanced Configuration
61
+
62
+This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63
+
64
+### Deployment
65
+
66
+This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67
+
68
+### `npm run build` fails to minify
69
+
70
+This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
src/test/wix/TestData/EsprojReact/package-lock.json
new
+29545
@@ -0,0 +1,29545 @@
1
+{
2
+ "name": "reactproject1",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 2,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "reactproject1",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@testing-library/jest-dom": "^5.16.5",
12
+ "@testing-library/react": "^13.4.0",
13
+ "@testing-library/user-event": "^13.5.0",
14
+ "react": "^18.2.0",
15
+ "react-dom": "^18.2.0",
16
+ "react-scripts": "5.0.1",
17
+ "web-vitals": "^2.1.4"
18
+ },
19
+ "devDependencies": {
20
+ "eslint-config-react-app": "^7.0.1",
21
+ "jest-editor-support": "^31.0.1"
22
+ }
23
+ },
24
+ "node_modules/@adobe/css-tools": {
25
+ "version": "4.2.0",
26
+ "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz",
27
+ "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA=="
28
+ },
29
+ "node_modules/@ampproject/remapping": {
30
+ "version": "2.2.0",
31
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
32
+ "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
33
+ "dependencies": {
34
+ "@jridgewell/gen-mapping": "^0.1.0",
35
+ "@jridgewell/trace-mapping": "^0.3.9"
36
+ },
37
+ "engines": {
38
+ "node": ">=6.0.0"
39
+ }
40
+ },
41
+ "node_modules/@babel/code-frame": {
42
+ "version": "7.18.6",
43
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
44
+ "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
45
+ "dependencies": {
46
+ "@babel/highlight": "^7.18.6"
47
+ },
48
+ "engines": {
49
+ "node": ">=6.9.0"
50
+ }
51
+ },
52
+ "node_modules/@babel/compat-data": {
53
+ "version": "7.21.0",
54
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.0.tgz",
55
+ "integrity": "sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==",
56
+ "engines": {
57
+ "node": ">=6.9.0"
58
+ }
59
+ },
60
+ "node_modules/@babel/core": {
61
+ "version": "7.21.3",
62
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.3.tgz",
63
+ "integrity": "sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==",
64
+ "dependencies": {
65
+ "@ampproject/remapping": "^2.2.0",
66
+ "@babel/code-frame": "^7.18.6",
67
+ "@babel/generator": "^7.21.3",
68
+ "@babel/helper-compilation-targets": "^7.20.7",
69
+ "@babel/helper-module-transforms": "^7.21.2",
70
+ "@babel/helpers": "^7.21.0",
71
+ "@babel/parser": "^7.21.3",
72
+ "@babel/template": "^7.20.7",
73
+ "@babel/traverse": "^7.21.3",
74
+ "@babel/types": "^7.21.3",
75
+ "convert-source-map": "^1.7.0",
76
+ "debug": "^4.1.0",
77
+ "gensync": "^1.0.0-beta.2",
78
+ "json5": "^2.2.2",
79
+ "semver": "^6.3.0"
80
+ },
81
+ "engines": {
82
+ "node": ">=6.9.0"
83
+ },
84
+ "funding": {
85
+ "type": "opencollective",
86
+ "url": "https://opencollective.com/babel"
87
+ }
88
+ },
89
+ "node_modules/@babel/core/node_modules/semver": {
90
+ "version": "6.3.0",
91
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
92
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
93
+ "bin": {
94
+ "semver": "bin/semver.js"
95
+ }
96
+ },
97
+ "node_modules/@babel/eslint-parser": {
98
+ "version": "7.21.3",
99
+ "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz",
100
+ "integrity": "sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==",
101
+ "dependencies": {
102
+ "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
103
+ "eslint-visitor-keys": "^2.1.0",
104
+ "semver": "^6.3.0"
105
+ },
106
+ "engines": {
107
+ "node": "^10.13.0 || ^12.13.0 || >=14.0.0"
108
+ },
109
+ "peerDependencies": {
110
+ "@babel/core": ">=7.11.0",
111
+ "eslint": "^7.5.0 || ^8.0.0"
112
+ }
113
+ },
114
+ "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": {
115
+ "version": "2.1.0",
116
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
117
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
118
+ "engines": {
119
+ "node": ">=10"
120
+ }
121
+ },
122
+ "node_modules/@babel/eslint-parser/node_modules/semver": {
123
+ "version": "6.3.0",
124
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
125
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
126
+ "bin": {
127
+ "semver": "bin/semver.js"
128
+ }
129
+ },
130
+ "node_modules/@babel/generator": {
131
+ "version": "7.21.3",
132
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.3.tgz",
133
+ "integrity": "sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==",
134
+ "dependencies": {
135
+ "@babel/types": "^7.21.3",
136
+ "@jridgewell/gen-mapping": "^0.3.2",
137
+ "@jridgewell/trace-mapping": "^0.3.17",
138
+ "jsesc": "^2.5.1"
139
+ },
140
+ "engines": {
141
+ "node": ">=6.9.0"
142
+ }
143
+ },
144
+ "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": {
145
+ "version": "0.3.2",
146
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
147
+ "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
148
+ "dependencies": {
149
+ "@jridgewell/set-array": "^1.0.1",
150
+ "@jridgewell/sourcemap-codec": "^1.4.10",
151
+ "@jridgewell/trace-mapping": "^0.3.9"
152
+ },
153
+ "engines": {
154
+ "node": ">=6.0.0"
155
+ }
156
+ },
157
+ "node_modules/@babel/helper-annotate-as-pure": {
158
+ "version": "7.18.6",
159
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
160
+ "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
161
+ "dependencies": {
162
+ "@babel/types": "^7.18.6"
163
+ },
164
+ "engines": {
165
+ "node": ">=6.9.0"
166
+ }
167
+ },
168
+ "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
169
+ "version": "7.18.9",
170
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz",
171
+ "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==",
172
+ "dependencies": {
173
+ "@babel/helper-explode-assignable-expression": "^7.18.6",
174
+ "@babel/types": "^7.18.9"
175
+ },
176
+ "engines": {
177
+ "node": ">=6.9.0"
178
+ }
179
+ },
180
+ "node_modules/@babel/helper-compilation-targets": {
181
+ "version": "7.20.7",
182
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz",
183
+ "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==",
184
+ "dependencies": {
185
+ "@babel/compat-data": "^7.20.5",
186
+ "@babel/helper-validator-option": "^7.18.6",
187
+ "browserslist": "^4.21.3",
188
+ "lru-cache": "^5.1.1",
189
+ "semver": "^6.3.0"
190
+ },
191
+ "engines": {
192
+ "node": ">=6.9.0"
193
+ },
194
+ "peerDependencies": {
195
+ "@babel/core": "^7.0.0"
196
+ }
197
+ },
198
+ "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
199
+ "version": "6.3.0",
200
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
201
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
202
+ "bin": {
203
+ "semver": "bin/semver.js"
204
+ }
205
+ },
206
+ "node_modules/@babel/helper-create-class-features-plugin": {
207
+ "version": "7.21.0",
208
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.0.tgz",
209
+ "integrity": "sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==",
210
+ "dependencies": {
211
+ "@babel/helper-annotate-as-pure": "^7.18.6",
212
+ "@babel/helper-environment-visitor": "^7.18.9",
213
+ "@babel/helper-function-name": "^7.21.0",
214
+ "@babel/helper-member-expression-to-functions": "^7.21.0",
215
+ "@babel/helper-optimise-call-expression": "^7.18.6",
216
+ "@babel/helper-replace-supers": "^7.20.7",
217
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
218
+ "@babel/helper-split-export-declaration": "^7.18.6"
219
+ },
220
+ "engines": {
221
+ "node": ">=6.9.0"
222
+ },
223
+ "peerDependencies": {
224
+ "@babel/core": "^7.0.0"
225
+ }
226
+ },
227
+ "node_modules/@babel/helper-create-regexp-features-plugin": {
228
+ "version": "7.21.0",
229
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.0.tgz",
230
+ "integrity": "sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==",
231
+ "dependencies": {
232
+ "@babel/helper-annotate-as-pure": "^7.18.6",
233
+ "regexpu-core": "^5.3.1"
234
+ },
235
+ "engines": {
236
+ "node": ">=6.9.0"
237
+ },
238
+ "peerDependencies": {
239
+ "@babel/core": "^7.0.0"
240
+ }
241
+ },
242
+ "node_modules/@babel/helper-define-polyfill-provider": {
243
+ "version": "0.3.3",
244
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
245
+ "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
246
+ "dependencies": {
247
+ "@babel/helper-compilation-targets": "^7.17.7",
248
+ "@babel/helper-plugin-utils": "^7.16.7",
249
+ "debug": "^4.1.1",
250
+ "lodash.debounce": "^4.0.8",
251
+ "resolve": "^1.14.2",
252
+ "semver": "^6.1.2"
253
+ },
254
+ "peerDependencies": {
255
+ "@babel/core": "^7.4.0-0"
256
+ }
257
+ },
258
+ "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": {
259
+ "version": "6.3.0",
260
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
261
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
262
+ "bin": {
263
+ "semver": "bin/semver.js"
264
+ }
265
+ },
266
+ "node_modules/@babel/helper-environment-visitor": {
267
+ "version": "7.18.9",
268
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
269
+ "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==",
270
+ "engines": {
271
+ "node": ">=6.9.0"
272
+ }
273
+ },
274
+ "node_modules/@babel/helper-explode-assignable-expression": {
275
+ "version": "7.18.6",
276
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz",
277
+ "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==",
278
+ "dependencies": {
279
+ "@babel/types": "^7.18.6"
280
+ },
281
+ "engines": {
282
+ "node": ">=6.9.0"
283
+ }
284
+ },
285
+ "node_modules/@babel/helper-function-name": {
286
+ "version": "7.21.0",
287
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
288
+ "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
289
+ "dependencies": {
290
+ "@babel/template": "^7.20.7",
291
+ "@babel/types": "^7.21.0"
292
+ },
293
+ "engines": {
294
+ "node": ">=6.9.0"
295
+ }
296
+ },
297
+ "node_modules/@babel/helper-hoist-variables": {
298
+ "version": "7.18.6",
299
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
300
+ "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
301
+ "dependencies": {
302
+ "@babel/types": "^7.18.6"
303
+ },
304
+ "engines": {
305
+ "node": ">=6.9.0"
306
+ }
307
+ },
308
+ "node_modules/@babel/helper-member-expression-to-functions": {
309
+ "version": "7.21.0",
310
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz",
311
+ "integrity": "sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==",
312
+ "dependencies": {
313
+ "@babel/types": "^7.21.0"
314
+ },
315
+ "engines": {
316
+ "node": ">=6.9.0"
317
+ }
318
+ },
319
+ "node_modules/@babel/helper-module-imports": {
320
+ "version": "7.18.6",
321
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
322
+ "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
323
+ "dependencies": {
324
+ "@babel/types": "^7.18.6"
325
+ },
326
+ "engines": {
327
+ "node": ">=6.9.0"
328
+ }
329
+ },
330
+ "node_modules/@babel/helper-module-transforms": {
331
+ "version": "7.21.2",
332
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz",
333
+ "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==",
334
+ "dependencies": {
335
+ "@babel/helper-environment-visitor": "^7.18.9",
336
+ "@babel/helper-module-imports": "^7.18.6",
337
+ "@babel/helper-simple-access": "^7.20.2",
338
+ "@babel/helper-split-export-declaration": "^7.18.6",
339
+ "@babel/helper-validator-identifier": "^7.19.1",
340
+ "@babel/template": "^7.20.7",
341
+ "@babel/traverse": "^7.21.2",
342
+ "@babel/types": "^7.21.2"
343
+ },
344
+ "engines": {
345
+ "node": ">=6.9.0"
346
+ }
347
+ },
348
+ "node_modules/@babel/helper-optimise-call-expression": {
349
+ "version": "7.18.6",
350
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
351
+ "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
352
+ "dependencies": {
353
+ "@babel/types": "^7.18.6"
354
+ },
355
+ "engines": {
356
+ "node": ">=6.9.0"
357
+ }
358
+ },
359
+ "node_modules/@babel/helper-plugin-utils": {
360
+ "version": "7.20.2",
361
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz",
362
+ "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==",
363
+ "engines": {
364
+ "node": ">=6.9.0"
365
+ }
366
+ },
367
+ "node_modules/@babel/helper-remap-async-to-generator": {
368
+ "version": "7.18.9",
369
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
370
+ "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
371
+ "dependencies": {
372
+ "@babel/helper-annotate-as-pure": "^7.18.6",
373
+ "@babel/helper-environment-visitor": "^7.18.9",
374
+ "@babel/helper-wrap-function": "^7.18.9",
375
+ "@babel/types": "^7.18.9"
376
+ },
377
+ "engines": {
378
+ "node": ">=6.9.0"
379
+ },
380
+ "peerDependencies": {
381
+ "@babel/core": "^7.0.0"
382
+ }
383
+ },
384
+ "node_modules/@babel/helper-replace-supers": {
385
+ "version": "7.20.7",
386
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz",
387
+ "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==",
388
+ "dependencies": {
389
+ "@babel/helper-environment-visitor": "^7.18.9",
390
+ "@babel/helper-member-expression-to-functions": "^7.20.7",
391
+ "@babel/helper-optimise-call-expression": "^7.18.6",
392
+ "@babel/template": "^7.20.7",
393
+ "@babel/traverse": "^7.20.7",
394
+ "@babel/types": "^7.20.7"
395
+ },
396
+ "engines": {
397
+ "node": ">=6.9.0"
398
+ }
399
+ },
400
+ "node_modules/@babel/helper-simple-access": {
401
+ "version": "7.20.2",
402
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz",
403
+ "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==",
404
+ "dependencies": {
405
+ "@babel/types": "^7.20.2"
406
+ },
407
+ "engines": {
408
+ "node": ">=6.9.0"
409
+ }
410
+ },
411
+ "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
412
+ "version": "7.20.0",
413
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
414
+ "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
415
+ "dependencies": {
416
+ "@babel/types": "^7.20.0"
417
+ },
418
+ "engines": {
419
+ "node": ">=6.9.0"
420
+ }
421
+ },
422
+ "node_modules/@babel/helper-split-export-declaration": {
423
+ "version": "7.18.6",
424
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
425
+ "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
426
+ "dependencies": {
427
+ "@babel/types": "^7.18.6"
428
+ },
429
+ "engines": {
430
+ "node": ">=6.9.0"
431
+ }
432
+ },
433
+ "node_modules/@babel/helper-string-parser": {
434
+ "version": "7.19.4",
435
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
436
+ "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==",
437
+ "engines": {
438
+ "node": ">=6.9.0"
439
+ }
440
+ },
441
+ "node_modules/@babel/helper-validator-identifier": {
442
+ "version": "7.19.1",
443
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
444
+ "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
445
+ "engines": {
446
+ "node": ">=6.9.0"
447
+ }
448
+ },
449
+ "node_modules/@babel/helper-validator-option": {
450
+ "version": "7.21.0",
451
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
452
+ "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==",
453
+ "engines": {
454
+ "node": ">=6.9.0"
455
+ }
456
+ },
457
+ "node_modules/@babel/helper-wrap-function": {
458
+ "version": "7.20.5",
459
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
460
+ "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
461
+ "dependencies": {
462
+ "@babel/helper-function-name": "^7.19.0",
463
+ "@babel/template": "^7.18.10",
464
+ "@babel/traverse": "^7.20.5",
465
+ "@babel/types": "^7.20.5"
466
+ },
467
+ "engines": {
468
+ "node": ">=6.9.0"
469
+ }
470
+ },
471
+ "node_modules/@babel/helpers": {
472
+ "version": "7.21.0",
473
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz",
474
+ "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==",
475
+ "dependencies": {
476
+ "@babel/template": "^7.20.7",
477
+ "@babel/traverse": "^7.21.0",
478
+ "@babel/types": "^7.21.0"
479
+ },
480
+ "engines": {
481
+ "node": ">=6.9.0"
482
+ }
483
+ },
484
+ "node_modules/@babel/highlight": {
485
+ "version": "7.18.6",
486
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
487
+ "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
488
+ "dependencies": {
489
+ "@babel/helper-validator-identifier": "^7.18.6",
490
+ "chalk": "^2.0.0",
491
+ "js-tokens": "^4.0.0"
492
+ },
493
+ "engines": {
494
+ "node": ">=6.9.0"
495
+ }
496
+ },
497
+ "node_modules/@babel/parser": {
498
+ "version": "7.21.3",
499
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.3.tgz",
500
+ "integrity": "sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==",
501
+ "bin": {
502
+ "parser": "bin/babel-parser.js"
503
+ },
504
+ "engines": {
505
+ "node": ">=6.0.0"
506
+ }
507
+ },
508
+ "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
509
+ "version": "7.18.6",
510
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
511
+ "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
512
+ "dependencies": {
513
+ "@babel/helper-plugin-utils": "^7.18.6"
514
+ },
515
+ "engines": {
516
+ "node": ">=6.9.0"
517
+ },
518
+ "peerDependencies": {
519
+ "@babel/core": "^7.0.0"
520
+ }
521
+ },
522
+ "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
523
+ "version": "7.20.7",
524
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
525
+ "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
526
+ "dependencies": {
527
+ "@babel/helper-plugin-utils": "^7.20.2",
528
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
529
+ "@babel/plugin-proposal-optional-chaining": "^7.20.7"
530
+ },
531
+ "engines": {
532
+ "node": ">=6.9.0"
533
+ },
534
+ "peerDependencies": {
535
+ "@babel/core": "^7.13.0"
536
+ }
537
+ },
538
+ "node_modules/@babel/plugin-proposal-async-generator-functions": {
539
+ "version": "7.20.7",
540
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
541
+ "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
542
+ "dependencies": {
543
+ "@babel/helper-environment-visitor": "^7.18.9",
544
+ "@babel/helper-plugin-utils": "^7.20.2",
545
+ "@babel/helper-remap-async-to-generator": "^7.18.9",
546
+ "@babel/plugin-syntax-async-generators": "^7.8.4"
547
+ },
548
+ "engines": {
549
+ "node": ">=6.9.0"
550
+ },
551
+ "peerDependencies": {
552
+ "@babel/core": "^7.0.0-0"
553
+ }
554
+ },
555
+ "node_modules/@babel/plugin-proposal-class-properties": {
556
+ "version": "7.18.6",
557
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
558
+ "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
559
+ "dependencies": {
560
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
561
+ "@babel/helper-plugin-utils": "^7.18.6"
562
+ },
563
+ "engines": {
564
+ "node": ">=6.9.0"
565
+ },
566
+ "peerDependencies": {
567
+ "@babel/core": "^7.0.0-0"
568
+ }
569
+ },
570
+ "node_modules/@babel/plugin-proposal-class-static-block": {
571
+ "version": "7.21.0",
572
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
573
+ "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
574
+ "dependencies": {
575
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
576
+ "@babel/helper-plugin-utils": "^7.20.2",
577
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
578
+ },
579
+ "engines": {
580
+ "node": ">=6.9.0"
581
+ },
582
+ "peerDependencies": {
583
+ "@babel/core": "^7.12.0"
584
+ }
585
+ },
586
+ "node_modules/@babel/plugin-proposal-decorators": {
587
+ "version": "7.21.0",
588
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz",
589
+ "integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==",
590
+ "dependencies": {
591
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
592
+ "@babel/helper-plugin-utils": "^7.20.2",
593
+ "@babel/helper-replace-supers": "^7.20.7",
594
+ "@babel/helper-split-export-declaration": "^7.18.6",
595
+ "@babel/plugin-syntax-decorators": "^7.21.0"
596
+ },
597
+ "engines": {
598
+ "node": ">=6.9.0"
599
+ },
600
+ "peerDependencies": {
601
+ "@babel/core": "^7.0.0-0"
602
+ }
603
+ },
604
+ "node_modules/@babel/plugin-proposal-dynamic-import": {
605
+ "version": "7.18.6",
606
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
607
+ "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
608
+ "dependencies": {
609
+ "@babel/helper-plugin-utils": "^7.18.6",
610
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3"
611
+ },
612
+ "engines": {
613
+ "node": ">=6.9.0"
614
+ },
615
+ "peerDependencies": {
616
+ "@babel/core": "^7.0.0-0"
617
+ }
618
+ },
619
+ "node_modules/@babel/plugin-proposal-export-namespace-from": {
620
+ "version": "7.18.9",
621
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
622
+ "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
623
+ "dependencies": {
624
+ "@babel/helper-plugin-utils": "^7.18.9",
625
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
626
+ },
627
+ "engines": {
628
+ "node": ">=6.9.0"
629
+ },
630
+ "peerDependencies": {
631
+ "@babel/core": "^7.0.0-0"
632
+ }
633
+ },
634
+ "node_modules/@babel/plugin-proposal-json-strings": {
635
+ "version": "7.18.6",
636
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
637
+ "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
638
+ "dependencies": {
639
+ "@babel/helper-plugin-utils": "^7.18.6",
640
+ "@babel/plugin-syntax-json-strings": "^7.8.3"
641
+ },
642
+ "engines": {
643
+ "node": ">=6.9.0"
644
+ },
645
+ "peerDependencies": {
646
+ "@babel/core": "^7.0.0-0"
647
+ }
648
+ },
649
+ "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
650
+ "version": "7.20.7",
651
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
652
+ "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
653
+ "dependencies": {
654
+ "@babel/helper-plugin-utils": "^7.20.2",
655
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
656
+ },
657
+ "engines": {
658
+ "node": ">=6.9.0"
659
+ },
660
+ "peerDependencies": {
661
+ "@babel/core": "^7.0.0-0"
662
+ }
663
+ },
664
+ "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
665
+ "version": "7.18.6",
666
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
667
+ "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
668
+ "dependencies": {
669
+ "@babel/helper-plugin-utils": "^7.18.6",
670
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
671
+ },
672
+ "engines": {
673
+ "node": ">=6.9.0"
674
+ },
675
+ "peerDependencies": {
676
+ "@babel/core": "^7.0.0-0"
677
+ }
678
+ },
679
+ "node_modules/@babel/plugin-proposal-numeric-separator": {
680
+ "version": "7.18.6",
681
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
682
+ "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
683
+ "dependencies": {
684
+ "@babel/helper-plugin-utils": "^7.18.6",
685
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
686
+ },
687
+ "engines": {
688
+ "node": ">=6.9.0"
689
+ },
690
+ "peerDependencies": {
691
+ "@babel/core": "^7.0.0-0"
692
+ }
693
+ },
694
+ "node_modules/@babel/plugin-proposal-object-rest-spread": {
695
+ "version": "7.20.7",
696
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
697
+ "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
698
+ "dependencies": {
699
+ "@babel/compat-data": "^7.20.5",
700
+ "@babel/helper-compilation-targets": "^7.20.7",
701
+ "@babel/helper-plugin-utils": "^7.20.2",
702
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
703
+ "@babel/plugin-transform-parameters": "^7.20.7"
704
+ },
705
+ "engines": {
706
+ "node": ">=6.9.0"
707
+ },
708
+ "peerDependencies": {
709
+ "@babel/core": "^7.0.0-0"
710
+ }
711
+ },
712
+ "node_modules/@babel/plugin-proposal-optional-catch-binding": {
713
+ "version": "7.18.6",
714
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
715
+ "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
716
+ "dependencies": {
717
+ "@babel/helper-plugin-utils": "^7.18.6",
718
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
719
+ },
720
+ "engines": {
721
+ "node": ">=6.9.0"
722
+ },
723
+ "peerDependencies": {
724
+ "@babel/core": "^7.0.0-0"
725
+ }
726
+ },
727
+ "node_modules/@babel/plugin-proposal-optional-chaining": {
728
+ "version": "7.21.0",
729
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
730
+ "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
731
+ "dependencies": {
732
+ "@babel/helper-plugin-utils": "^7.20.2",
733
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
734
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
735
+ },
736
+ "engines": {
737
+ "node": ">=6.9.0"
738
+ },
739
+ "peerDependencies": {
740
+ "@babel/core": "^7.0.0-0"
741
+ }
742
+ },
743
+ "node_modules/@babel/plugin-proposal-private-methods": {
744
+ "version": "7.18.6",
745
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
746
+ "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
747
+ "dependencies": {
748
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
749
+ "@babel/helper-plugin-utils": "^7.18.6"
750
+ },
751
+ "engines": {
752
+ "node": ">=6.9.0"
753
+ },
754
+ "peerDependencies": {
755
+ "@babel/core": "^7.0.0-0"
756
+ }
757
+ },
758
+ "node_modules/@babel/plugin-proposal-private-property-in-object": {
759
+ "version": "7.21.0",
760
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
761
+ "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
762
+ "dependencies": {
763
+ "@babel/helper-annotate-as-pure": "^7.18.6",
764
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
765
+ "@babel/helper-plugin-utils": "^7.20.2",
766
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
767
+ },
768
+ "engines": {
769
+ "node": ">=6.9.0"
770
+ },
771
+ "peerDependencies": {
772
+ "@babel/core": "^7.0.0-0"
773
+ }
774
+ },
775
+ "node_modules/@babel/plugin-proposal-unicode-property-regex": {
776
+ "version": "7.18.6",
777
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
778
+ "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
779
+ "dependencies": {
780
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
781
+ "@babel/helper-plugin-utils": "^7.18.6"
782
+ },
783
+ "engines": {
784
+ "node": ">=4"
785
+ },
786
+ "peerDependencies": {
787
+ "@babel/core": "^7.0.0-0"
788
+ }
789
+ },
790
+ "node_modules/@babel/plugin-syntax-async-generators": {
791
+ "version": "7.8.4",
792
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
793
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
794
+ "dependencies": {
795
+ "@babel/helper-plugin-utils": "^7.8.0"
796
+ },
797
+ "peerDependencies": {
798
+ "@babel/core": "^7.0.0-0"
799
+ }
800
+ },
801
+ "node_modules/@babel/plugin-syntax-bigint": {
802
+ "version": "7.8.3",
803
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
804
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
805
+ "dependencies": {
806
+ "@babel/helper-plugin-utils": "^7.8.0"
807
+ },
808
+ "peerDependencies": {
809
+ "@babel/core": "^7.0.0-0"
810
+ }
811
+ },
812
+ "node_modules/@babel/plugin-syntax-class-properties": {
813
+ "version": "7.12.13",
814
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
815
+ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
816
+ "dependencies": {
817
+ "@babel/helper-plugin-utils": "^7.12.13"
818
+ },
819
+ "peerDependencies": {
820
+ "@babel/core": "^7.0.0-0"
821
+ }
822
+ },
823
+ "node_modules/@babel/plugin-syntax-class-static-block": {
824
+ "version": "7.14.5",
825
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
826
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
827
+ "dependencies": {
828
+ "@babel/helper-plugin-utils": "^7.14.5"
829
+ },
830
+ "engines": {
831
+ "node": ">=6.9.0"
832
+ },
833
+ "peerDependencies": {
834
+ "@babel/core": "^7.0.0-0"
835
+ }
836
+ },
837
+ "node_modules/@babel/plugin-syntax-decorators": {
838
+ "version": "7.21.0",
839
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz",
840
+ "integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==",
841
+ "dependencies": {
842
+ "@babel/helper-plugin-utils": "^7.20.2"
843
+ },
844
+ "engines": {
845
+ "node": ">=6.9.0"
846
+ },
847
+ "peerDependencies": {
848
+ "@babel/core": "^7.0.0-0"
849
+ }
850
+ },
851
+ "node_modules/@babel/plugin-syntax-dynamic-import": {
852
+ "version": "7.8.3",
853
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
854
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
855
+ "dependencies": {
856
+ "@babel/helper-plugin-utils": "^7.8.0"
857
+ },
858
+ "peerDependencies": {
859
+ "@babel/core": "^7.0.0-0"
860
+ }
861
+ },
862
+ "node_modules/@babel/plugin-syntax-export-namespace-from": {
863
+ "version": "7.8.3",
864
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
865
+ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
866
+ "dependencies": {
867
+ "@babel/helper-plugin-utils": "^7.8.3"
868
+ },
869
+ "peerDependencies": {
870
+ "@babel/core": "^7.0.0-0"
871
+ }
872
+ },
873
+ "node_modules/@babel/plugin-syntax-flow": {
874
+ "version": "7.18.6",
875
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz",
876
+ "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==",
877
+ "dependencies": {
878
+ "@babel/helper-plugin-utils": "^7.18.6"
879
+ },
880
+ "engines": {
881
+ "node": ">=6.9.0"
882
+ },
883
+ "peerDependencies": {
884
+ "@babel/core": "^7.0.0-0"
885
+ }
886
+ },
887
+ "node_modules/@babel/plugin-syntax-import-assertions": {
888
+ "version": "7.20.0",
889
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
890
+ "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
891
+ "dependencies": {
892
+ "@babel/helper-plugin-utils": "^7.19.0"
893
+ },
894
+ "engines": {
895
+ "node": ">=6.9.0"
896
+ },
897
+ "peerDependencies": {
898
+ "@babel/core": "^7.0.0-0"
899
+ }
900
+ },
901
+ "node_modules/@babel/plugin-syntax-import-meta": {
902
+ "version": "7.10.4",
903
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
904
+ "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
905
+ "dependencies": {
906
+ "@babel/helper-plugin-utils": "^7.10.4"
907
+ },
908
+ "peerDependencies": {
909
+ "@babel/core": "^7.0.0-0"
910
+ }
911
+ },
912
+ "node_modules/@babel/plugin-syntax-json-strings": {
913
+ "version": "7.8.3",
914
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
915
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
916
+ "dependencies": {
917
+ "@babel/helper-plugin-utils": "^7.8.0"
918
+ },
919
+ "peerDependencies": {
920
+ "@babel/core": "^7.0.0-0"
921
+ }
922
+ },
923
+ "node_modules/@babel/plugin-syntax-jsx": {
924
+ "version": "7.18.6",
925
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz",
926
+ "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==",
927
+ "dependencies": {
928
+ "@babel/helper-plugin-utils": "^7.18.6"
929
+ },
930
+ "engines": {
931
+ "node": ">=6.9.0"
932
+ },
933
+ "peerDependencies": {
934
+ "@babel/core": "^7.0.0-0"
935
+ }
936
+ },
937
+ "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
938
+ "version": "7.10.4",
939
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
940
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
941
+ "dependencies": {
942
+ "@babel/helper-plugin-utils": "^7.10.4"
943
+ },
944
+ "peerDependencies": {
945
+ "@babel/core": "^7.0.0-0"
946
+ }
947
+ },
948
+ "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
949
+ "version": "7.8.3",
950
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
951
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
952
+ "dependencies": {
953
+ "@babel/helper-plugin-utils": "^7.8.0"
954
+ },
955
+ "peerDependencies": {
956
+ "@babel/core": "^7.0.0-0"
957
+ }
958
+ },
959
+ "node_modules/@babel/plugin-syntax-numeric-separator": {
960
+ "version": "7.10.4",
961
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
962
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
963
+ "dependencies": {
964
+ "@babel/helper-plugin-utils": "^7.10.4"
965
+ },
966
+ "peerDependencies": {
967
+ "@babel/core": "^7.0.0-0"
968
+ }
969
+ },
970
+ "node_modules/@babel/plugin-syntax-object-rest-spread": {
971
+ "version": "7.8.3",
972
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
973
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
974
+ "dependencies": {
975
+ "@babel/helper-plugin-utils": "^7.8.0"
976
+ },
977
+ "peerDependencies": {
978
+ "@babel/core": "^7.0.0-0"
979
+ }
980
+ },
981
+ "node_modules/@babel/plugin-syntax-optional-catch-binding": {
982
+ "version": "7.8.3",
983
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
984
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
985
+ "dependencies": {
986
+ "@babel/helper-plugin-utils": "^7.8.0"
987
+ },
988
+ "peerDependencies": {
989
+ "@babel/core": "^7.0.0-0"
990
+ }
991
+ },
992
+ "node_modules/@babel/plugin-syntax-optional-chaining": {
993
+ "version": "7.8.3",
994
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
995
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
996
+ "dependencies": {
997
+ "@babel/helper-plugin-utils": "^7.8.0"
998
+ },
999
+ "peerDependencies": {
1000
+ "@babel/core": "^7.0.0-0"
1001
+ }
1002
+ },
1003
+ "node_modules/@babel/plugin-syntax-private-property-in-object": {
1004
+ "version": "7.14.5",
1005
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
1006
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
1007
+ "dependencies": {
1008
+ "@babel/helper-plugin-utils": "^7.14.5"
1009
+ },
1010
+ "engines": {
1011
+ "node": ">=6.9.0"
1012
+ },
1013
+ "peerDependencies": {
1014
+ "@babel/core": "^7.0.0-0"
1015
+ }
1016
+ },
1017
+ "node_modules/@babel/plugin-syntax-top-level-await": {
1018
+ "version": "7.14.5",
1019
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
1020
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
1021
+ "dependencies": {
1022
+ "@babel/helper-plugin-utils": "^7.14.5"
1023
+ },
1024
+ "engines": {
1025
+ "node": ">=6.9.0"
1026
+ },
1027
+ "peerDependencies": {
1028
+ "@babel/core": "^7.0.0-0"
1029
+ }
1030
+ },
1031
+ "node_modules/@babel/plugin-syntax-typescript": {
1032
+ "version": "7.20.0",
1033
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz",
1034
+ "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==",
1035
+ "dependencies": {
1036
+ "@babel/helper-plugin-utils": "^7.19.0"
1037
+ },
1038
+ "engines": {
1039
+ "node": ">=6.9.0"
1040
+ },
1041
+ "peerDependencies": {
1042
+ "@babel/core": "^7.0.0-0"
1043
+ }
1044
+ },
1045
+ "node_modules/@babel/plugin-transform-arrow-functions": {
1046
+ "version": "7.20.7",
1047
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz",
1048
+ "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==",
1049
+ "dependencies": {
1050
+ "@babel/helper-plugin-utils": "^7.20.2"
1051
+ },
1052
+ "engines": {
1053
+ "node": ">=6.9.0"
1054
+ },
1055
+ "peerDependencies": {
1056
+ "@babel/core": "^7.0.0-0"
1057
+ }
1058
+ },
1059
+ "node_modules/@babel/plugin-transform-async-to-generator": {
1060
+ "version": "7.20.7",
1061
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
1062
+ "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
1063
+ "dependencies": {
1064
+ "@babel/helper-module-imports": "^7.18.6",
1065
+ "@babel/helper-plugin-utils": "^7.20.2",
1066
+ "@babel/helper-remap-async-to-generator": "^7.18.9"
1067
+ },
1068
+ "engines": {
1069
+ "node": ">=6.9.0"
1070
+ },
1071
+ "peerDependencies": {
1072
+ "@babel/core": "^7.0.0-0"
1073
+ }
1074
+ },
1075
+ "node_modules/@babel/plugin-transform-block-scoped-functions": {
1076
+ "version": "7.18.6",
1077
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
1078
+ "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
1079
+ "dependencies": {
1080
+ "@babel/helper-plugin-utils": "^7.18.6"
1081
+ },
1082
+ "engines": {
1083
+ "node": ">=6.9.0"
1084
+ },
1085
+ "peerDependencies": {
1086
+ "@babel/core": "^7.0.0-0"
1087
+ }
1088
+ },
1089
+ "node_modules/@babel/plugin-transform-block-scoping": {
1090
+ "version": "7.21.0",
1091
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
1092
+ "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
1093
+ "dependencies": {
1094
+ "@babel/helper-plugin-utils": "^7.20.2"
1095
+ },
1096
+ "engines": {
1097
+ "node": ">=6.9.0"
1098
+ },
1099
+ "peerDependencies": {
1100
+ "@babel/core": "^7.0.0-0"
1101
+ }
1102
+ },
1103
+ "node_modules/@babel/plugin-transform-classes": {
1104
+ "version": "7.21.0",
1105
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
1106
+ "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
1107
+ "dependencies": {
1108
+ "@babel/helper-annotate-as-pure": "^7.18.6",
1109
+ "@babel/helper-compilation-targets": "^7.20.7",
1110
+ "@babel/helper-environment-visitor": "^7.18.9",
1111
+ "@babel/helper-function-name": "^7.21.0",
1112
+ "@babel/helper-optimise-call-expression": "^7.18.6",
1113
+ "@babel/helper-plugin-utils": "^7.20.2",
1114
+ "@babel/helper-replace-supers": "^7.20.7",
1115
+ "@babel/helper-split-export-declaration": "^7.18.6",
1116
+ "globals": "^11.1.0"
1117
+ },
1118
+ "engines": {
1119
+ "node": ">=6.9.0"
1120
+ },
1121
+ "peerDependencies": {
1122
+ "@babel/core": "^7.0.0-0"
1123
+ }
1124
+ },
1125
+ "node_modules/@babel/plugin-transform-computed-properties": {
1126
+ "version": "7.20.7",
1127
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz",
1128
+ "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==",
1129
+ "dependencies": {
1130
+ "@babel/helper-plugin-utils": "^7.20.2",
1131
+ "@babel/template": "^7.20.7"
1132
+ },
1133
+ "engines": {
1134
+ "node": ">=6.9.0"
1135
+ },
1136
+ "peerDependencies": {
1137
+ "@babel/core": "^7.0.0-0"
1138
+ }
1139
+ },
1140
+ "node_modules/@babel/plugin-transform-destructuring": {
1141
+ "version": "7.21.3",
1142
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
1143
+ "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
1144
+ "dependencies": {
1145
+ "@babel/helper-plugin-utils": "^7.20.2"
1146
+ },
1147
+ "engines": {
1148
+ "node": ">=6.9.0"
1149
+ },
1150
+ "peerDependencies": {
1151
+ "@babel/core": "^7.0.0-0"
1152
+ }
1153
+ },
1154
+ "node_modules/@babel/plugin-transform-dotall-regex": {
1155
+ "version": "7.18.6",
1156
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
1157
+ "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
1158
+ "dependencies": {
1159
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
1160
+ "@babel/helper-plugin-utils": "^7.18.6"
1161
+ },
1162
+ "engines": {
1163
+ "node": ">=6.9.0"
1164
+ },
1165
+ "peerDependencies": {
1166
+ "@babel/core": "^7.0.0-0"
1167
+ }
1168
+ },
1169
+ "node_modules/@babel/plugin-transform-duplicate-keys": {
1170
+ "version": "7.18.9",
1171
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
1172
+ "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
1173
+ "dependencies": {
1174
+ "@babel/helper-plugin-utils": "^7.18.9"
1175
+ },
1176
+ "engines": {
1177
+ "node": ">=6.9.0"
1178
+ },
1179
+ "peerDependencies": {
1180
+ "@babel/core": "^7.0.0-0"
1181
+ }
1182
+ },
1183
+ "node_modules/@babel/plugin-transform-exponentiation-operator": {
1184
+ "version": "7.18.6",
1185
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
1186
+ "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
1187
+ "dependencies": {
1188
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
1189
+ "@babel/helper-plugin-utils": "^7.18.6"
1190
+ },
1191
+ "engines": {
1192
+ "node": ">=6.9.0"
1193
+ },
1194
+ "peerDependencies": {
1195
+ "@babel/core": "^7.0.0-0"
1196
+ }
1197
+ },
1198
+ "node_modules/@babel/plugin-transform-flow-strip-types": {
1199
+ "version": "7.21.0",
1200
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz",
1201
+ "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==",
1202
+ "dependencies": {
1203
+ "@babel/helper-plugin-utils": "^7.20.2",
1204
+ "@babel/plugin-syntax-flow": "^7.18.6"
1205
+ },
1206
+ "engines": {
1207
+ "node": ">=6.9.0"
1208
+ },
1209
+ "peerDependencies": {
1210
+ "@babel/core": "^7.0.0-0"
1211
+ }
1212
+ },
1213
+ "node_modules/@babel/plugin-transform-for-of": {
1214
+ "version": "7.21.0",
1215
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz",
1216
+ "integrity": "sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==",
1217
+ "dependencies": {
1218
+ "@babel/helper-plugin-utils": "^7.20.2"
1219
+ },
1220
+ "engines": {
1221
+ "node": ">=6.9.0"
1222
+ },
1223
+ "peerDependencies": {
1224
+ "@babel/core": "^7.0.0-0"
1225
+ }
1226
+ },
1227
+ "node_modules/@babel/plugin-transform-function-name": {
1228
+ "version": "7.18.9",
1229
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
1230
+ "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
1231
+ "dependencies": {
1232
+ "@babel/helper-compilation-targets": "^7.18.9",
1233
+ "@babel/helper-function-name": "^7.18.9",
1234
+ "@babel/helper-plugin-utils": "^7.18.9"
1235
+ },
1236
+ "engines": {
1237
+ "node": ">=6.9.0"
1238
+ },
1239
+ "peerDependencies": {
1240
+ "@babel/core": "^7.0.0-0"
1241
+ }
1242
+ },
1243
+ "node_modules/@babel/plugin-transform-literals": {
1244
+ "version": "7.18.9",
1245
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
1246
+ "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
1247
+ "dependencies": {
1248
+ "@babel/helper-plugin-utils": "^7.18.9"
1249
+ },
1250
+ "engines": {
1251
+ "node": ">=6.9.0"
1252
+ },
1253
+ "peerDependencies": {
1254
+ "@babel/core": "^7.0.0-0"
1255
+ }
1256
+ },
1257
+ "node_modules/@babel/plugin-transform-member-expression-literals": {
1258
+ "version": "7.18.6",
1259
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
1260
+ "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
1261
+ "dependencies": {
1262
+ "@babel/helper-plugin-utils": "^7.18.6"
1263
+ },
1264
+ "engines": {
1265
+ "node": ">=6.9.0"
1266
+ },
1267
+ "peerDependencies": {
1268
+ "@babel/core": "^7.0.0-0"
1269
+ }
1270
+ },
1271
+ "node_modules/@babel/plugin-transform-modules-amd": {
1272
+ "version": "7.20.11",
1273
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
1274
+ "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
1275
+ "dependencies": {
1276
+ "@babel/helper-module-transforms": "^7.20.11",
1277
+ "@babel/helper-plugin-utils": "^7.20.2"
1278
+ },
1279
+ "engines": {
1280
+ "node": ">=6.9.0"
1281
+ },
1282
+ "peerDependencies": {
1283
+ "@babel/core": "^7.0.0-0"
1284
+ }
1285
+ },
1286
+ "node_modules/@babel/plugin-transform-modules-commonjs": {
1287
+ "version": "7.21.2",
1288
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz",
1289
+ "integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==",
1290
+ "dependencies": {
1291
+ "@babel/helper-module-transforms": "^7.21.2",
1292
+ "@babel/helper-plugin-utils": "^7.20.2",
1293
+ "@babel/helper-simple-access": "^7.20.2"
1294
+ },
1295
+ "engines": {
1296
+ "node": ">=6.9.0"
1297
+ },
1298
+ "peerDependencies": {
1299
+ "@babel/core": "^7.0.0-0"
1300
+ }
1301
+ },
1302
+ "node_modules/@babel/plugin-transform-modules-systemjs": {
1303
+ "version": "7.20.11",
1304
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
1305
+ "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
1306
+ "dependencies": {
1307
+ "@babel/helper-hoist-variables": "^7.18.6",
1308
+ "@babel/helper-module-transforms": "^7.20.11",
1309
+ "@babel/helper-plugin-utils": "^7.20.2",
1310
+ "@babel/helper-validator-identifier": "^7.19.1"
1311
+ },
1312
+ "engines": {
1313
+ "node": ">=6.9.0"
1314
+ },
1315
+ "peerDependencies": {
1316
+ "@babel/core": "^7.0.0-0"
1317
+ }
1318
+ },
1319
+ "node_modules/@babel/plugin-transform-modules-umd": {
1320
+ "version": "7.18.6",
1321
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
1322
+ "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
1323
+ "dependencies": {
1324
+ "@babel/helper-module-transforms": "^7.18.6",
1325
+ "@babel/helper-plugin-utils": "^7.18.6"
1326
+ },
1327
+ "engines": {
1328
+ "node": ">=6.9.0"
1329
+ },
1330
+ "peerDependencies": {
1331
+ "@babel/core": "^7.0.0-0"
1332
+ }
1333
+ },
1334
+ "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
1335
+ "version": "7.20.5",
1336
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
1337
+ "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
1338
+ "dependencies": {
1339
+ "@babel/helper-create-regexp-features-plugin": "^7.20.5",
1340
+ "@babel/helper-plugin-utils": "^7.20.2"
1341
+ },
1342
+ "engines": {
1343
+ "node": ">=6.9.0"
1344
+ },
1345
+ "peerDependencies": {
1346
+ "@babel/core": "^7.0.0"
1347
+ }
1348
+ },
1349
+ "node_modules/@babel/plugin-transform-new-target": {
1350
+ "version": "7.18.6",
1351
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
1352
+ "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
1353
+ "dependencies": {
1354
+ "@babel/helper-plugin-utils": "^7.18.6"
1355
+ },
1356
+ "engines": {
1357
+ "node": ">=6.9.0"
1358
+ },
1359
+ "peerDependencies": {
1360
+ "@babel/core": "^7.0.0-0"
1361
+ }
1362
+ },
1363
+ "node_modules/@babel/plugin-transform-object-super": {
1364
+ "version": "7.18.6",
1365
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
1366
+ "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
1367
+ "dependencies": {
1368
+ "@babel/helper-plugin-utils": "^7.18.6",
1369
+ "@babel/helper-replace-supers": "^7.18.6"
1370
+ },
1371
+ "engines": {
1372
+ "node": ">=6.9.0"
1373
+ },
1374
+ "peerDependencies": {
1375
+ "@babel/core": "^7.0.0-0"
1376
+ }
1377
+ },
1378
+ "node_modules/@babel/plugin-transform-parameters": {
1379
+ "version": "7.21.3",
1380
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
1381
+ "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
1382
+ "dependencies": {
1383
+ "@babel/helper-plugin-utils": "^7.20.2"
1384
+ },
1385
+ "engines": {
1386
+ "node": ">=6.9.0"
1387
+ },
1388
+ "peerDependencies": {
1389
+ "@babel/core": "^7.0.0-0"
1390
+ }
1391
+ },
1392
+ "node_modules/@babel/plugin-transform-property-literals": {
1393
+ "version": "7.18.6",
1394
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
1395
+ "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
1396
+ "dependencies": {
1397
+ "@babel/helper-plugin-utils": "^7.18.6"
1398
+ },
1399
+ "engines": {
1400
+ "node": ">=6.9.0"
1401
+ },
1402
+ "peerDependencies": {
1403
+ "@babel/core": "^7.0.0-0"
1404
+ }
1405
+ },
1406
+ "node_modules/@babel/plugin-transform-react-constant-elements": {
1407
+ "version": "7.21.3",
1408
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.21.3.tgz",
1409
+ "integrity": "sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==",
1410
+ "dependencies": {
1411
+ "@babel/helper-plugin-utils": "^7.20.2"
1412
+ },
1413
+ "engines": {
1414
+ "node": ">=6.9.0"
1415
+ },
1416
+ "peerDependencies": {
1417
+ "@babel/core": "^7.0.0-0"
1418
+ }
1419
+ },
1420
+ "node_modules/@babel/plugin-transform-react-display-name": {
1421
+ "version": "7.18.6",
1422
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz",
1423
+ "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==",
1424
+ "dependencies": {
1425
+ "@babel/helper-plugin-utils": "^7.18.6"
1426
+ },
1427
+ "engines": {
1428
+ "node": ">=6.9.0"
1429
+ },
1430
+ "peerDependencies": {
1431
+ "@babel/core": "^7.0.0-0"
1432
+ }
1433
+ },
1434
+ "node_modules/@babel/plugin-transform-react-jsx": {
1435
+ "version": "7.21.0",
1436
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz",
1437
+ "integrity": "sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==",
1438
+ "dependencies": {
1439
+ "@babel/helper-annotate-as-pure": "^7.18.6",
1440
+ "@babel/helper-module-imports": "^7.18.6",
1441
+ "@babel/helper-plugin-utils": "^7.20.2",
1442
+ "@babel/plugin-syntax-jsx": "^7.18.6",
1443
+ "@babel/types": "^7.21.0"
1444
+ },
1445
+ "engines": {
1446
+ "node": ">=6.9.0"
1447
+ },
1448
+ "peerDependencies": {
1449
+ "@babel/core": "^7.0.0-0"
1450
+ }
1451
+ },
1452
+ "node_modules/@babel/plugin-transform-react-jsx-development": {
1453
+ "version": "7.18.6",
1454
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz",
1455
+ "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==",
1456
+ "dependencies": {
1457
+ "@babel/plugin-transform-react-jsx": "^7.18.6"
1458
+ },
1459
+ "engines": {
1460
+ "node": ">=6.9.0"
1461
+ },
1462
+ "peerDependencies": {
1463
+ "@babel/core": "^7.0.0-0"
1464
+ }
1465
+ },
1466
+ "node_modules/@babel/plugin-transform-react-pure-annotations": {
1467
+ "version": "7.18.6",
1468
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz",
1469
+ "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==",
1470
+ "dependencies": {
1471
+ "@babel/helper-annotate-as-pure": "^7.18.6",
1472
+ "@babel/helper-plugin-utils": "^7.18.6"
1473
+ },
1474
+ "engines": {
1475
+ "node": ">=6.9.0"
1476
+ },
1477
+ "peerDependencies": {
1478
+ "@babel/core": "^7.0.0-0"
1479
+ }
1480
+ },
1481
+ "node_modules/@babel/plugin-transform-regenerator": {
1482
+ "version": "7.20.5",
1483
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz",
1484
+ "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==",
1485
+ "dependencies": {
1486
+ "@babel/helper-plugin-utils": "^7.20.2",
1487
+ "regenerator-transform": "^0.15.1"
1488
+ },
1489
+ "engines": {
1490
+ "node": ">=6.9.0"
1491
+ },
1492
+ "peerDependencies": {
1493
+ "@babel/core": "^7.0.0-0"
1494
+ }
1495
+ },
1496
+ "node_modules/@babel/plugin-transform-reserved-words": {
1497
+ "version": "7.18.6",
1498
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
1499
+ "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
1500
+ "dependencies": {
1501
+ "@babel/helper-plugin-utils": "^7.18.6"
1502
+ },
1503
+ "engines": {
1504
+ "node": ">=6.9.0"
1505
+ },
1506
+ "peerDependencies": {
1507
+ "@babel/core": "^7.0.0-0"
1508
+ }
1509
+ },
1510
+ "node_modules/@babel/plugin-transform-runtime": {
1511
+ "version": "7.21.0",
1512
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.0.tgz",
1513
+ "integrity": "sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==",
1514
+ "dependencies": {
1515
+ "@babel/helper-module-imports": "^7.18.6",
1516
+ "@babel/helper-plugin-utils": "^7.20.2",
1517
+ "babel-plugin-polyfill-corejs2": "^0.3.3",
1518
+ "babel-plugin-polyfill-corejs3": "^0.6.0",
1519
+ "babel-plugin-polyfill-regenerator": "^0.4.1",
1520
+ "semver": "^6.3.0"
1521
+ },
1522
+ "engines": {
1523
+ "node": ">=6.9.0"
1524
+ },
1525
+ "peerDependencies": {
1526
+ "@babel/core": "^7.0.0-0"
1527
+ }
1528
+ },
1529
+ "node_modules/@babel/plugin-transform-runtime/node_modules/semver": {
1530
+ "version": "6.3.0",
1531
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1532
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1533
+ "bin": {
1534
+ "semver": "bin/semver.js"
1535
+ }
1536
+ },
1537
+ "node_modules/@babel/plugin-transform-shorthand-properties": {
1538
+ "version": "7.18.6",
1539
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
1540
+ "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
1541
+ "dependencies": {
1542
+ "@babel/helper-plugin-utils": "^7.18.6"
1543
+ },
1544
+ "engines": {
1545
+ "node": ">=6.9.0"
1546
+ },
1547
+ "peerDependencies": {
1548
+ "@babel/core": "^7.0.0-0"
1549
+ }
1550
+ },
1551
+ "node_modules/@babel/plugin-transform-spread": {
1552
+ "version": "7.20.7",
1553
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
1554
+ "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
1555
+ "dependencies": {
1556
+ "@babel/helper-plugin-utils": "^7.20.2",
1557
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
1558
+ },
1559
+ "engines": {
1560
+ "node": ">=6.9.0"
1561
+ },
1562
+ "peerDependencies": {
1563
+ "@babel/core": "^7.0.0-0"
1564
+ }
1565
+ },
1566
+ "node_modules/@babel/plugin-transform-sticky-regex": {
1567
+ "version": "7.18.6",
1568
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
1569
+ "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
1570
+ "dependencies": {
1571
+ "@babel/helper-plugin-utils": "^7.18.6"
1572
+ },
1573
+ "engines": {
1574
+ "node": ">=6.9.0"
1575
+ },
1576
+ "peerDependencies": {
1577
+ "@babel/core": "^7.0.0-0"
1578
+ }
1579
+ },
1580
+ "node_modules/@babel/plugin-transform-template-literals": {
1581
+ "version": "7.18.9",
1582
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
1583
+ "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
1584
+ "dependencies": {
1585
+ "@babel/helper-plugin-utils": "^7.18.9"
1586
+ },
1587
+ "engines": {
1588
+ "node": ">=6.9.0"
1589
+ },
1590
+ "peerDependencies": {
1591
+ "@babel/core": "^7.0.0-0"
1592
+ }
1593
+ },
1594
+ "node_modules/@babel/plugin-transform-typeof-symbol": {
1595
+ "version": "7.18.9",
1596
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
1597
+ "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
1598
+ "dependencies": {
1599
+ "@babel/helper-plugin-utils": "^7.18.9"
1600
+ },
1601
+ "engines": {
1602
+ "node": ">=6.9.0"
1603
+ },
1604
+ "peerDependencies": {
1605
+ "@babel/core": "^7.0.0-0"
1606
+ }
1607
+ },
1608
+ "node_modules/@babel/plugin-transform-typescript": {
1609
+ "version": "7.21.3",
1610
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz",
1611
+ "integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==",
1612
+ "dependencies": {
1613
+ "@babel/helper-annotate-as-pure": "^7.18.6",
1614
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
1615
+ "@babel/helper-plugin-utils": "^7.20.2",
1616
+ "@babel/plugin-syntax-typescript": "^7.20.0"
1617
+ },
1618
+ "engines": {
1619
+ "node": ">=6.9.0"
1620
+ },
1621
+ "peerDependencies": {
1622
+ "@babel/core": "^7.0.0-0"
1623
+ }
1624
+ },
1625
+ "node_modules/@babel/plugin-transform-unicode-escapes": {
1626
+ "version": "7.18.10",
1627
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz",
1628
+ "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==",
1629
+ "dependencies": {
1630
+ "@babel/helper-plugin-utils": "^7.18.9"
1631
+ },
1632
+ "engines": {
1633
+ "node": ">=6.9.0"
1634
+ },
1635
+ "peerDependencies": {
1636
+ "@babel/core": "^7.0.0-0"
1637
+ }
1638
+ },
1639
+ "node_modules/@babel/plugin-transform-unicode-regex": {
1640
+ "version": "7.18.6",
1641
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
1642
+ "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
1643
+ "dependencies": {
1644
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
1645
+ "@babel/helper-plugin-utils": "^7.18.6"
1646
+ },
1647
+ "engines": {
1648
+ "node": ">=6.9.0"
1649
+ },
1650
+ "peerDependencies": {
1651
+ "@babel/core": "^7.0.0-0"
1652
+ }
1653
+ },
1654
+ "node_modules/@babel/preset-env": {
1655
+ "version": "7.20.2",
1656
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz",
1657
+ "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==",
1658
+ "dependencies": {
1659
+ "@babel/compat-data": "^7.20.1",
1660
+ "@babel/helper-compilation-targets": "^7.20.0",
1661
+ "@babel/helper-plugin-utils": "^7.20.2",
1662
+ "@babel/helper-validator-option": "^7.18.6",
1663
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
1664
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9",
1665
+ "@babel/plugin-proposal-async-generator-functions": "^7.20.1",
1666
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
1667
+ "@babel/plugin-proposal-class-static-block": "^7.18.6",
1668
+ "@babel/plugin-proposal-dynamic-import": "^7.18.6",
1669
+ "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
1670
+ "@babel/plugin-proposal-json-strings": "^7.18.6",
1671
+ "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
1672
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
1673
+ "@babel/plugin-proposal-numeric-separator": "^7.18.6",
1674
+ "@babel/plugin-proposal-object-rest-spread": "^7.20.2",
1675
+ "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
1676
+ "@babel/plugin-proposal-optional-chaining": "^7.18.9",
1677
+ "@babel/plugin-proposal-private-methods": "^7.18.6",
1678
+ "@babel/plugin-proposal-private-property-in-object": "^7.18.6",
1679
+ "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
1680
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
1681
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
1682
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
1683
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
1684
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
1685
+ "@babel/plugin-syntax-import-assertions": "^7.20.0",
1686
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
1687
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
1688
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
1689
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
1690
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
1691
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
1692
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
1693
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
1694
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
1695
+ "@babel/plugin-transform-arrow-functions": "^7.18.6",
1696
+ "@babel/plugin-transform-async-to-generator": "^7.18.6",
1697
+ "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
1698
+ "@babel/plugin-transform-block-scoping": "^7.20.2",
1699
+ "@babel/plugin-transform-classes": "^7.20.2",
1700
+ "@babel/plugin-transform-computed-properties": "^7.18.9",
1701
+ "@babel/plugin-transform-destructuring": "^7.20.2",
1702
+ "@babel/plugin-transform-dotall-regex": "^7.18.6",
1703
+ "@babel/plugin-transform-duplicate-keys": "^7.18.9",
1704
+ "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
1705
+ "@babel/plugin-transform-for-of": "^7.18.8",
1706
+ "@babel/plugin-transform-function-name": "^7.18.9",
1707
+ "@babel/plugin-transform-literals": "^7.18.9",
1708
+ "@babel/plugin-transform-member-expression-literals": "^7.18.6",
1709
+ "@babel/plugin-transform-modules-amd": "^7.19.6",
1710
+ "@babel/plugin-transform-modules-commonjs": "^7.19.6",
1711
+ "@babel/plugin-transform-modules-systemjs": "^7.19.6",
1712
+ "@babel/plugin-transform-modules-umd": "^7.18.6",
1713
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1",
1714
+ "@babel/plugin-transform-new-target": "^7.18.6",
1715
+ "@babel/plugin-transform-object-super": "^7.18.6",
1716
+ "@babel/plugin-transform-parameters": "^7.20.1",
1717
+ "@babel/plugin-transform-property-literals": "^7.18.6",
1718
+ "@babel/plugin-transform-regenerator": "^7.18.6",
1719
+ "@babel/plugin-transform-reserved-words": "^7.18.6",
1720
+ "@babel/plugin-transform-shorthand-properties": "^7.18.6",
1721
+ "@babel/plugin-transform-spread": "^7.19.0",
1722
+ "@babel/plugin-transform-sticky-regex": "^7.18.6",
1723
+ "@babel/plugin-transform-template-literals": "^7.18.9",
1724
+ "@babel/plugin-transform-typeof-symbol": "^7.18.9",
1725
+ "@babel/plugin-transform-unicode-escapes": "^7.18.10",
1726
+ "@babel/plugin-transform-unicode-regex": "^7.18.6",
1727
+ "@babel/preset-modules": "^0.1.5",
1728
+ "@babel/types": "^7.20.2",
1729
+ "babel-plugin-polyfill-corejs2": "^0.3.3",
1730
+ "babel-plugin-polyfill-corejs3": "^0.6.0",
1731
+ "babel-plugin-polyfill-regenerator": "^0.4.1",
1732
+ "core-js-compat": "^3.25.1",
1733
+ "semver": "^6.3.0"
1734
+ },
1735
+ "engines": {
1736
+ "node": ">=6.9.0"
1737
+ },
1738
+ "peerDependencies": {
1739
+ "@babel/core": "^7.0.0-0"
1740
+ }
1741
+ },
1742
+ "node_modules/@babel/preset-env/node_modules/semver": {
1743
+ "version": "6.3.0",
1744
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1745
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1746
+ "bin": {
1747
+ "semver": "bin/semver.js"
1748
+ }
1749
+ },
1750
+ "node_modules/@babel/preset-modules": {
1751
+ "version": "0.1.5",
1752
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
1753
+ "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
1754
+ "dependencies": {
1755
+ "@babel/helper-plugin-utils": "^7.0.0",
1756
+ "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
1757
+ "@babel/plugin-transform-dotall-regex": "^7.4.4",
1758
+ "@babel/types": "^7.4.4",
1759
+ "esutils": "^2.0.2"
1760
+ },
1761
+ "peerDependencies": {
1762
+ "@babel/core": "^7.0.0-0"
1763
+ }
1764
+ },
1765
+ "node_modules/@babel/preset-react": {
1766
+ "version": "7.18.6",
1767
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz",
1768
+ "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==",
1769
+ "dependencies": {
1770
+ "@babel/helper-plugin-utils": "^7.18.6",
1771
+ "@babel/helper-validator-option": "^7.18.6",
1772
+ "@babel/plugin-transform-react-display-name": "^7.18.6",
1773
+ "@babel/plugin-transform-react-jsx": "^7.18.6",
1774
+ "@babel/plugin-transform-react-jsx-development": "^7.18.6",
1775
+ "@babel/plugin-transform-react-pure-annotations": "^7.18.6"
1776
+ },
1777
+ "engines": {
1778
+ "node": ">=6.9.0"
1779
+ },
1780
+ "peerDependencies": {
1781
+ "@babel/core": "^7.0.0-0"
1782
+ }
1783
+ },
1784
+ "node_modules/@babel/preset-typescript": {
1785
+ "version": "7.21.0",
1786
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.0.tgz",
1787
+ "integrity": "sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==",
1788
+ "dependencies": {
1789
+ "@babel/helper-plugin-utils": "^7.20.2",
1790
+ "@babel/helper-validator-option": "^7.21.0",
1791
+ "@babel/plugin-transform-typescript": "^7.21.0"
1792
+ },
1793
+ "engines": {
1794
+ "node": ">=6.9.0"
1795
+ },
1796
+ "peerDependencies": {
1797
+ "@babel/core": "^7.0.0-0"
1798
+ }
1799
+ },
1800
+ "node_modules/@babel/regjsgen": {
1801
+ "version": "0.8.0",
1802
+ "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz",
1803
+ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="
1804
+ },
1805
+ "node_modules/@babel/runtime": {
1806
+ "version": "7.21.0",
1807
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz",
1808
+ "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==",
1809
+ "dependencies": {
1810
+ "regenerator-runtime": "^0.13.11"
1811
+ },
1812
+ "engines": {
1813
+ "node": ">=6.9.0"
1814
+ }
1815
+ },
1816
+ "node_modules/@babel/template": {
1817
+ "version": "7.20.7",
1818
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
1819
+ "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
1820
+ "dependencies": {
1821
+ "@babel/code-frame": "^7.18.6",
1822
+ "@babel/parser": "^7.20.7",
1823
+ "@babel/types": "^7.20.7"
1824
+ },
1825
+ "engines": {
1826
+ "node": ">=6.9.0"
1827
+ }
1828
+ },
1829
+ "node_modules/@babel/traverse": {
1830
+ "version": "7.21.3",
1831
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.3.tgz",
1832
+ "integrity": "sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==",
1833
+ "dependencies": {
1834
+ "@babel/code-frame": "^7.18.6",
1835
+ "@babel/generator": "^7.21.3",
1836
+ "@babel/helper-environment-visitor": "^7.18.9",
1837
+ "@babel/helper-function-name": "^7.21.0",
1838
+ "@babel/helper-hoist-variables": "^7.18.6",
1839
+ "@babel/helper-split-export-declaration": "^7.18.6",
1840
+ "@babel/parser": "^7.21.3",
1841
+ "@babel/types": "^7.21.3",
1842
+ "debug": "^4.1.0",
1843
+ "globals": "^11.1.0"
1844
+ },
1845
+ "engines": {
1846
+ "node": ">=6.9.0"
1847
+ }
1848
+ },
1849
+ "node_modules/@babel/types": {
1850
+ "version": "7.21.3",
1851
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.3.tgz",
1852
+ "integrity": "sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==",
1853
+ "dependencies": {
1854
+ "@babel/helper-string-parser": "^7.19.4",
1855
+ "@babel/helper-validator-identifier": "^7.19.1",
1856
+ "to-fast-properties": "^2.0.0"
1857
+ },
1858
+ "engines": {
1859
+ "node": ">=6.9.0"
1860
+ }
1861
+ },
1862
+ "node_modules/@bcoe/v8-coverage": {
1863
+ "version": "0.2.3",
1864
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
1865
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
1866
+ },
1867
+ "node_modules/@csstools/normalize.css": {
1868
+ "version": "12.0.0",
1869
+ "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz",
1870
+ "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg=="
1871
+ },
1872
+ "node_modules/@csstools/postcss-cascade-layers": {
1873
+ "version": "1.1.1",
1874
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz",
1875
+ "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==",
1876
+ "dependencies": {
1877
+ "@csstools/selector-specificity": "^2.0.2",
1878
+ "postcss-selector-parser": "^6.0.10"
1879
+ },
1880
+ "engines": {
1881
+ "node": "^12 || ^14 || >=16"
1882
+ },
1883
+ "funding": {
1884
+ "type": "opencollective",
1885
+ "url": "https://opencollective.com/csstools"
1886
+ },
1887
+ "peerDependencies": {
1888
+ "postcss": "^8.2"
1889
+ }
1890
+ },
1891
+ "node_modules/@csstools/postcss-color-function": {
1892
+ "version": "1.1.1",
1893
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz",
1894
+ "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==",
1895
+ "dependencies": {
1896
+ "@csstools/postcss-progressive-custom-properties": "^1.1.0",
1897
+ "postcss-value-parser": "^4.2.0"
1898
+ },
1899
+ "engines": {
1900
+ "node": "^12 || ^14 || >=16"
1901
+ },
1902
+ "funding": {
1903
+ "type": "opencollective",
1904
+ "url": "https://opencollective.com/csstools"
1905
+ },
1906
+ "peerDependencies": {
1907
+ "postcss": "^8.2"
1908
+ }
1909
+ },
1910
+ "node_modules/@csstools/postcss-font-format-keywords": {
1911
+ "version": "1.0.1",
1912
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz",
1913
+ "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==",
1914
+ "dependencies": {
1915
+ "postcss-value-parser": "^4.2.0"
1916
+ },
1917
+ "engines": {
1918
+ "node": "^12 || ^14 || >=16"
1919
+ },
1920
+ "funding": {
1921
+ "type": "opencollective",
1922
+ "url": "https://opencollective.com/csstools"
1923
+ },
1924
+ "peerDependencies": {
1925
+ "postcss": "^8.2"
1926
+ }
1927
+ },
1928
+ "node_modules/@csstools/postcss-hwb-function": {
1929
+ "version": "1.0.2",
1930
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz",
1931
+ "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==",
1932
+ "dependencies": {
1933
+ "postcss-value-parser": "^4.2.0"
1934
+ },
1935
+ "engines": {
1936
+ "node": "^12 || ^14 || >=16"
1937
+ },
1938
+ "funding": {
1939
+ "type": "opencollective",
1940
+ "url": "https://opencollective.com/csstools"
1941
+ },
1942
+ "peerDependencies": {
1943
+ "postcss": "^8.2"
1944
+ }
1945
+ },
1946
+ "node_modules/@csstools/postcss-ic-unit": {
1947
+ "version": "1.0.1",
1948
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz",
1949
+ "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==",
1950
+ "dependencies": {
1951
+ "@csstools/postcss-progressive-custom-properties": "^1.1.0",
1952
+ "postcss-value-parser": "^4.2.0"
1953
+ },
1954
+ "engines": {
1955
+ "node": "^12 || ^14 || >=16"
1956
+ },
1957
+ "funding": {
1958
+ "type": "opencollective",
1959
+ "url": "https://opencollective.com/csstools"
1960
+ },
1961
+ "peerDependencies": {
1962
+ "postcss": "^8.2"
1963
+ }
1964
+ },
1965
+ "node_modules/@csstools/postcss-is-pseudo-class": {
1966
+ "version": "2.0.7",
1967
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz",
1968
+ "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==",
1969
+ "dependencies": {
1970
+ "@csstools/selector-specificity": "^2.0.0",
1971
+ "postcss-selector-parser": "^6.0.10"
1972
+ },
1973
+ "engines": {
1974
+ "node": "^12 || ^14 || >=16"
1975
+ },
1976
+ "funding": {
1977
+ "type": "opencollective",
1978
+ "url": "https://opencollective.com/csstools"
1979
+ },
1980
+ "peerDependencies": {
1981
+ "postcss": "^8.2"
1982
+ }
1983
+ },
1984
+ "node_modules/@csstools/postcss-nested-calc": {
1985
+ "version": "1.0.0",
1986
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz",
1987
+ "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==",
1988
+ "dependencies": {
1989
+ "postcss-value-parser": "^4.2.0"
1990
+ },
1991
+ "engines": {
1992
+ "node": "^12 || ^14 || >=16"
1993
+ },
1994
+ "funding": {
1995
+ "type": "opencollective",
1996
+ "url": "https://opencollective.com/csstools"
1997
+ },
1998
+ "peerDependencies": {
1999
+ "postcss": "^8.2"
2000
+ }
2001
+ },
2002
+ "node_modules/@csstools/postcss-normalize-display-values": {
2003
+ "version": "1.0.1",
2004
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz",
2005
+ "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==",
2006
+ "dependencies": {
2007
+ "postcss-value-parser": "^4.2.0"
2008
+ },
2009
+ "engines": {
2010
+ "node": "^12 || ^14 || >=16"
2011
+ },
2012
+ "funding": {
2013
+ "type": "opencollective",
2014
+ "url": "https://opencollective.com/csstools"
2015
+ },
2016
+ "peerDependencies": {
2017
+ "postcss": "^8.2"
2018
+ }
2019
+ },
2020
+ "node_modules/@csstools/postcss-oklab-function": {
2021
+ "version": "1.1.1",
2022
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz",
2023
+ "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==",
2024
+ "dependencies": {
2025
+ "@csstools/postcss-progressive-custom-properties": "^1.1.0",
2026
+ "postcss-value-parser": "^4.2.0"
2027
+ },
2028
+ "engines": {
2029
+ "node": "^12 || ^14 || >=16"
2030
+ },
2031
+ "funding": {
2032
+ "type": "opencollective",
2033
+ "url": "https://opencollective.com/csstools"
2034
+ },
2035
+ "peerDependencies": {
2036
+ "postcss": "^8.2"
2037
+ }
2038
+ },
2039
+ "node_modules/@csstools/postcss-progressive-custom-properties": {
2040
+ "version": "1.3.0",
2041
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz",
2042
+ "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==",
2043
+ "dependencies": {
2044
+ "postcss-value-parser": "^4.2.0"
2045
+ },
2046
+ "engines": {
2047
+ "node": "^12 || ^14 || >=16"
2048
+ },
2049
+ "peerDependencies": {
2050
+ "postcss": "^8.3"
2051
+ }
2052
+ },
2053
+ "node_modules/@csstools/postcss-stepped-value-functions": {
2054
+ "version": "1.0.1",
2055
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz",
2056
+ "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==",
2057
+ "dependencies": {
2058
+ "postcss-value-parser": "^4.2.0"
2059
+ },
2060
+ "engines": {
2061
+ "node": "^12 || ^14 || >=16"
2062
+ },
2063
+ "funding": {
2064
+ "type": "opencollective",
2065
+ "url": "https://opencollective.com/csstools"
2066
+ },
2067
+ "peerDependencies": {
2068
+ "postcss": "^8.2"
2069
+ }
2070
+ },
2071
+ "node_modules/@csstools/postcss-text-decoration-shorthand": {
2072
+ "version": "1.0.0",
2073
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz",
2074
+ "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==",
2075
+ "dependencies": {
2076
+ "postcss-value-parser": "^4.2.0"
2077
+ },
2078
+ "engines": {
2079
+ "node": "^12 || ^14 || >=16"
2080
+ },
2081
+ "funding": {
2082
+ "type": "opencollective",
2083
+ "url": "https://opencollective.com/csstools"
2084
+ },
2085
+ "peerDependencies": {
2086
+ "postcss": "^8.2"
2087
+ }
2088
+ },
2089
+ "node_modules/@csstools/postcss-trigonometric-functions": {
2090
+ "version": "1.0.2",
2091
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz",
2092
+ "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==",
2093
+ "dependencies": {
2094
+ "postcss-value-parser": "^4.2.0"
2095
+ },
2096
+ "engines": {
2097
+ "node": "^14 || >=16"
2098
+ },
2099
+ "funding": {
2100
+ "type": "opencollective",
2101
+ "url": "https://opencollective.com/csstools"
2102
+ },
2103
+ "peerDependencies": {
2104
+ "postcss": "^8.2"
2105
+ }
2106
+ },
2107
+ "node_modules/@csstools/postcss-unset-value": {
2108
+ "version": "1.0.2",
2109
+ "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz",
2110
+ "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==",
2111
+ "engines": {
2112
+ "node": "^12 || ^14 || >=16"
2113
+ },
2114
+ "funding": {
2115
+ "type": "opencollective",
2116
+ "url": "https://opencollective.com/csstools"
2117
+ },
2118
+ "peerDependencies": {
2119
+ "postcss": "^8.2"
2120
+ }
2121
+ },
2122
+ "node_modules/@csstools/selector-specificity": {
2123
+ "version": "2.1.1",
2124
+ "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz",
2125
+ "integrity": "sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==",
2126
+ "engines": {
2127
+ "node": "^14 || ^16 || >=18"
2128
+ },
2129
+ "funding": {
2130
+ "type": "opencollective",
2131
+ "url": "https://opencollective.com/csstools"
2132
+ },
2133
+ "peerDependencies": {
2134
+ "postcss": "^8.4",
2135
+ "postcss-selector-parser": "^6.0.10"
2136
+ }
2137
+ },
2138
+ "node_modules/@eslint-community/eslint-utils": {
2139
+ "version": "4.2.0",
2140
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz",
2141
+ "integrity": "sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==",
2142
+ "dependencies": {
2143
+ "eslint-visitor-keys": "^3.3.0"
2144
+ },
2145
+ "engines": {
2146
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2147
+ },
2148
+ "peerDependencies": {
2149
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
2150
+ }
2151
+ },
2152
+ "node_modules/@eslint-community/regexpp": {
2153
+ "version": "4.4.0",
2154
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.4.0.tgz",
2155
+ "integrity": "sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==",
2156
+ "engines": {
2157
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
2158
+ }
2159
+ },
2160
+ "node_modules/@eslint/eslintrc": {
2161
+ "version": "2.0.1",
2162
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.1.tgz",
2163
+ "integrity": "sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==",
2164
+ "dependencies": {
2165
+ "ajv": "^6.12.4",
2166
+ "debug": "^4.3.2",
2167
+ "espree": "^9.5.0",
2168
+ "globals": "^13.19.0",
2169
+ "ignore": "^5.2.0",
2170
+ "import-fresh": "^3.2.1",
2171
+ "js-yaml": "^4.1.0",
2172
+ "minimatch": "^3.1.2",
2173
+ "strip-json-comments": "^3.1.1"
2174
+ },
2175
+ "engines": {
2176
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2177
+ },
2178
+ "funding": {
2179
+ "url": "https://opencollective.com/eslint"
2180
+ }
2181
+ },
2182
+ "node_modules/@eslint/eslintrc/node_modules/argparse": {
2183
+ "version": "2.0.1",
2184
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2185
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
2186
+ },
2187
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
2188
+ "version": "13.20.0",
2189
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
2190
+ "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
2191
+ "dependencies": {
2192
+ "type-fest": "^0.20.2"
2193
+ },
2194
+ "engines": {
2195
+ "node": ">=8"
2196
+ },
2197
+ "funding": {
2198
+ "url": "https://github.com/sponsors/sindresorhus"
2199
+ }
2200
+ },
2201
+ "node_modules/@eslint/eslintrc/node_modules/js-yaml": {
2202
+ "version": "4.1.0",
2203
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2204
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2205
+ "dependencies": {
2206
+ "argparse": "^2.0.1"
2207
+ },
2208
+ "bin": {
2209
+ "js-yaml": "bin/js-yaml.js"
2210
+ }
2211
+ },
2212
+ "node_modules/@eslint/eslintrc/node_modules/type-fest": {
2213
+ "version": "0.20.2",
2214
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
2215
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
2216
+ "engines": {
2217
+ "node": ">=10"
2218
+ },
2219
+ "funding": {
2220
+ "url": "https://github.com/sponsors/sindresorhus"
2221
+ }
2222
+ },
2223
+ "node_modules/@eslint/js": {
2224
+ "version": "8.36.0",
2225
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.36.0.tgz",
2226
+ "integrity": "sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==",
2227
+ "engines": {
2228
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2229
+ }
2230
+ },
2231
+ "node_modules/@humanwhocodes/config-array": {
2232
+ "version": "0.11.8",
2233
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
2234
+ "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
2235
+ "dependencies": {
2236
+ "@humanwhocodes/object-schema": "^1.2.1",
2237
+ "debug": "^4.1.1",
2238
+ "minimatch": "^3.0.5"
2239
+ },
2240
+ "engines": {
2241
+ "node": ">=10.10.0"
2242
+ }
2243
+ },
2244
+ "node_modules/@humanwhocodes/module-importer": {
2245
+ "version": "1.0.1",
2246
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
2247
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
2248
+ "engines": {
2249
+ "node": ">=12.22"
2250
+ },
2251
+ "funding": {
2252
+ "type": "github",
2253
+ "url": "https://github.com/sponsors/nzakas"
2254
+ }
2255
+ },
2256
+ "node_modules/@humanwhocodes/object-schema": {
2257
+ "version": "1.2.1",
2258
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
2259
+ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
2260
+ },
2261
+ "node_modules/@istanbuljs/load-nyc-config": {
2262
+ "version": "1.1.0",
2263
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
2264
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
2265
+ "dependencies": {
2266
+ "camelcase": "^5.3.1",
2267
+ "find-up": "^4.1.0",
2268
+ "get-package-type": "^0.1.0",
2269
+ "js-yaml": "^3.13.1",
2270
+ "resolve-from": "^5.0.0"
2271
+ },
2272
+ "engines": {
2273
+ "node": ">=8"
2274
+ }
2275
+ },
2276
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": {
2277
+ "version": "5.3.1",
2278
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
2279
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
2280
+ "engines": {
2281
+ "node": ">=6"
2282
+ }
2283
+ },
2284
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
2285
+ "version": "4.1.0",
2286
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
2287
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
2288
+ "dependencies": {
2289
+ "locate-path": "^5.0.0",
2290
+ "path-exists": "^4.0.0"
2291
+ },
2292
+ "engines": {
2293
+ "node": ">=8"
2294
+ }
2295
+ },
2296
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
2297
+ "version": "5.0.0",
2298
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
2299
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
2300
+ "dependencies": {
2301
+ "p-locate": "^4.1.0"
2302
+ },
2303
+ "engines": {
2304
+ "node": ">=8"
2305
+ }
2306
+ },
2307
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": {
2308
+ "version": "2.3.0",
2309
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
2310
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
2311
+ "dependencies": {
2312
+ "p-try": "^2.0.0"
2313
+ },
2314
+ "engines": {
2315
+ "node": ">=6"
2316
+ },
2317
+ "funding": {
2318
+ "url": "https://github.com/sponsors/sindresorhus"
2319
+ }
2320
+ },
2321
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": {
2322
+ "version": "4.1.0",
2323
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
2324
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
2325
+ "dependencies": {
2326
+ "p-limit": "^2.2.0"
2327
+ },
2328
+ "engines": {
2329
+ "node": ">=8"
2330
+ }
2331
+ },
2332
+ "node_modules/@istanbuljs/schema": {
2333
+ "version": "0.1.3",
2334
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
2335
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
2336
+ "engines": {
2337
+ "node": ">=8"
2338
+ }
2339
+ },
2340
+ "node_modules/@jest/console": {
2341
+ "version": "27.5.1",
2342
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz",
2343
+ "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==",
2344
+ "dependencies": {
2345
+ "@jest/types": "^27.5.1",
2346
+ "@types/node": "*",
2347
+ "chalk": "^4.0.0",
2348
+ "jest-message-util": "^27.5.1",
2349
+ "jest-util": "^27.5.1",
2350
+ "slash": "^3.0.0"
2351
+ },
2352
+ "engines": {
2353
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2354
+ }
2355
+ },
2356
+ "node_modules/@jest/console/node_modules/ansi-styles": {
2357
+ "version": "4.3.0",
2358
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2359
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2360
+ "dependencies": {
2361
+ "color-convert": "^2.0.1"
2362
+ },
2363
+ "engines": {
2364
+ "node": ">=8"
2365
+ },
2366
+ "funding": {
2367
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2368
+ }
2369
+ },
2370
+ "node_modules/@jest/console/node_modules/chalk": {
2371
+ "version": "4.1.2",
2372
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2373
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2374
+ "dependencies": {
2375
+ "ansi-styles": "^4.1.0",
2376
+ "supports-color": "^7.1.0"
2377
+ },
2378
+ "engines": {
2379
+ "node": ">=10"
2380
+ },
2381
+ "funding": {
2382
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2383
+ }
2384
+ },
2385
+ "node_modules/@jest/console/node_modules/color-convert": {
2386
+ "version": "2.0.1",
2387
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2388
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2389
+ "dependencies": {
2390
+ "color-name": "~1.1.4"
2391
+ },
2392
+ "engines": {
2393
+ "node": ">=7.0.0"
2394
+ }
2395
+ },
2396
+ "node_modules/@jest/console/node_modules/color-name": {
2397
+ "version": "1.1.4",
2398
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2399
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
2400
+ },
2401
+ "node_modules/@jest/console/node_modules/has-flag": {
2402
+ "version": "4.0.0",
2403
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2404
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2405
+ "engines": {
2406
+ "node": ">=8"
2407
+ }
2408
+ },
2409
+ "node_modules/@jest/console/node_modules/supports-color": {
2410
+ "version": "7.2.0",
2411
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2412
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2413
+ "dependencies": {
2414
+ "has-flag": "^4.0.0"
2415
+ },
2416
+ "engines": {
2417
+ "node": ">=8"
2418
+ }
2419
+ },
2420
+ "node_modules/@jest/core": {
2421
+ "version": "27.5.1",
2422
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz",
2423
+ "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==",
2424
+ "dependencies": {
2425
+ "@jest/console": "^27.5.1",
2426
+ "@jest/reporters": "^27.5.1",
2427
+ "@jest/test-result": "^27.5.1",
2428
+ "@jest/transform": "^27.5.1",
2429
+ "@jest/types": "^27.5.1",
2430
+ "@types/node": "*",
2431
+ "ansi-escapes": "^4.2.1",
2432
+ "chalk": "^4.0.0",
2433
+ "emittery": "^0.8.1",
2434
+ "exit": "^0.1.2",
2435
+ "graceful-fs": "^4.2.9",
2436
+ "jest-changed-files": "^27.5.1",
2437
+ "jest-config": "^27.5.1",
2438
+ "jest-haste-map": "^27.5.1",
2439
+ "jest-message-util": "^27.5.1",
2440
+ "jest-regex-util": "^27.5.1",
2441
+ "jest-resolve": "^27.5.1",
2442
+ "jest-resolve-dependencies": "^27.5.1",
2443
+ "jest-runner": "^27.5.1",
2444
+ "jest-runtime": "^27.5.1",
2445
+ "jest-snapshot": "^27.5.1",
2446
+ "jest-util": "^27.5.1",
2447
+ "jest-validate": "^27.5.1",
2448
+ "jest-watcher": "^27.5.1",
2449
+ "micromatch": "^4.0.4",
2450
+ "rimraf": "^3.0.0",
2451
+ "slash": "^3.0.0",
2452
+ "strip-ansi": "^6.0.0"
2453
+ },
2454
+ "engines": {
2455
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2456
+ },
2457
+ "peerDependencies": {
2458
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
2459
+ },
2460
+ "peerDependenciesMeta": {
2461
+ "node-notifier": {
2462
+ "optional": true
2463
+ }
2464
+ }
2465
+ },
2466
+ "node_modules/@jest/core/node_modules/ansi-styles": {
2467
+ "version": "4.3.0",
2468
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2469
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2470
+ "dependencies": {
2471
+ "color-convert": "^2.0.1"
2472
+ },
2473
+ "engines": {
2474
+ "node": ">=8"
2475
+ },
2476
+ "funding": {
2477
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2478
+ }
2479
+ },
2480
+ "node_modules/@jest/core/node_modules/chalk": {
2481
+ "version": "4.1.2",
2482
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2483
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2484
+ "dependencies": {
2485
+ "ansi-styles": "^4.1.0",
2486
+ "supports-color": "^7.1.0"
2487
+ },
2488
+ "engines": {
2489
+ "node": ">=10"
2490
+ },
2491
+ "funding": {
2492
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2493
+ }
2494
+ },
2495
+ "node_modules/@jest/core/node_modules/color-convert": {
2496
+ "version": "2.0.1",
2497
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2498
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2499
+ "dependencies": {
2500
+ "color-name": "~1.1.4"
2501
+ },
2502
+ "engines": {
2503
+ "node": ">=7.0.0"
2504
+ }
2505
+ },
2506
+ "node_modules/@jest/core/node_modules/color-name": {
2507
+ "version": "1.1.4",
2508
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2509
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
2510
+ },
2511
+ "node_modules/@jest/core/node_modules/has-flag": {
2512
+ "version": "4.0.0",
2513
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2514
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2515
+ "engines": {
2516
+ "node": ">=8"
2517
+ }
2518
+ },
2519
+ "node_modules/@jest/core/node_modules/supports-color": {
2520
+ "version": "7.2.0",
2521
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2522
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2523
+ "dependencies": {
2524
+ "has-flag": "^4.0.0"
2525
+ },
2526
+ "engines": {
2527
+ "node": ">=8"
2528
+ }
2529
+ },
2530
+ "node_modules/@jest/environment": {
2531
+ "version": "27.5.1",
2532
+ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz",
2533
+ "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==",
2534
+ "dependencies": {
2535
+ "@jest/fake-timers": "^27.5.1",
2536
+ "@jest/types": "^27.5.1",
2537
+ "@types/node": "*",
2538
+ "jest-mock": "^27.5.1"
2539
+ },
2540
+ "engines": {
2541
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2542
+ }
2543
+ },
2544
+ "node_modules/@jest/expect-utils": {
2545
+ "version": "29.5.0",
2546
+ "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz",
2547
+ "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==",
2548
+ "dependencies": {
2549
+ "jest-get-type": "^29.4.3"
2550
+ },
2551
+ "engines": {
2552
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2553
+ }
2554
+ },
2555
+ "node_modules/@jest/expect-utils/node_modules/jest-get-type": {
2556
+ "version": "29.4.3",
2557
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz",
2558
+ "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==",
2559
+ "engines": {
2560
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2561
+ }
2562
+ },
2563
+ "node_modules/@jest/fake-timers": {
2564
+ "version": "27.5.1",
2565
+ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz",
2566
+ "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==",
2567
+ "dependencies": {
2568
+ "@jest/types": "^27.5.1",
2569
+ "@sinonjs/fake-timers": "^8.0.1",
2570
+ "@types/node": "*",
2571
+ "jest-message-util": "^27.5.1",
2572
+ "jest-mock": "^27.5.1",
2573
+ "jest-util": "^27.5.1"
2574
+ },
2575
+ "engines": {
2576
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2577
+ }
2578
+ },
2579
+ "node_modules/@jest/globals": {
2580
+ "version": "27.5.1",
2581
+ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz",
2582
+ "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==",
2583
+ "dependencies": {
2584
+ "@jest/environment": "^27.5.1",
2585
+ "@jest/types": "^27.5.1",
2586
+ "expect": "^27.5.1"
2587
+ },
2588
+ "engines": {
2589
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2590
+ }
2591
+ },
2592
+ "node_modules/@jest/reporters": {
2593
+ "version": "27.5.1",
2594
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz",
2595
+ "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==",
2596
+ "dependencies": {
2597
+ "@bcoe/v8-coverage": "^0.2.3",
2598
+ "@jest/console": "^27.5.1",
2599
+ "@jest/test-result": "^27.5.1",
2600
+ "@jest/transform": "^27.5.1",
2601
+ "@jest/types": "^27.5.1",
2602
+ "@types/node": "*",
2603
+ "chalk": "^4.0.0",
2604
+ "collect-v8-coverage": "^1.0.0",
2605
+ "exit": "^0.1.2",
2606
+ "glob": "^7.1.2",
2607
+ "graceful-fs": "^4.2.9",
2608
+ "istanbul-lib-coverage": "^3.0.0",
2609
+ "istanbul-lib-instrument": "^5.1.0",
2610
+ "istanbul-lib-report": "^3.0.0",
2611
+ "istanbul-lib-source-maps": "^4.0.0",
2612
+ "istanbul-reports": "^3.1.3",
2613
+ "jest-haste-map": "^27.5.1",
2614
+ "jest-resolve": "^27.5.1",
2615
+ "jest-util": "^27.5.1",
2616
+ "jest-worker": "^27.5.1",
2617
+ "slash": "^3.0.0",
2618
+ "source-map": "^0.6.0",
2619
+ "string-length": "^4.0.1",
2620
+ "terminal-link": "^2.0.0",
2621
+ "v8-to-istanbul": "^8.1.0"
2622
+ },
2623
+ "engines": {
2624
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2625
+ },
2626
+ "peerDependencies": {
2627
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
2628
+ },
2629
+ "peerDependenciesMeta": {
2630
+ "node-notifier": {
2631
+ "optional": true
2632
+ }
2633
+ }
2634
+ },
2635
+ "node_modules/@jest/reporters/node_modules/ansi-styles": {
2636
+ "version": "4.3.0",
2637
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2638
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2639
+ "dependencies": {
2640
+ "color-convert": "^2.0.1"
2641
+ },
2642
+ "engines": {
2643
+ "node": ">=8"
2644
+ },
2645
+ "funding": {
2646
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2647
+ }
2648
+ },
2649
+ "node_modules/@jest/reporters/node_modules/chalk": {
2650
+ "version": "4.1.2",
2651
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2652
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2653
+ "dependencies": {
2654
+ "ansi-styles": "^4.1.0",
2655
+ "supports-color": "^7.1.0"
2656
+ },
2657
+ "engines": {
2658
+ "node": ">=10"
2659
+ },
2660
+ "funding": {
2661
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2662
+ }
2663
+ },
2664
+ "node_modules/@jest/reporters/node_modules/color-convert": {
2665
+ "version": "2.0.1",
2666
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2667
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2668
+ "dependencies": {
2669
+ "color-name": "~1.1.4"
2670
+ },
2671
+ "engines": {
2672
+ "node": ">=7.0.0"
2673
+ }
2674
+ },
2675
+ "node_modules/@jest/reporters/node_modules/color-name": {
2676
+ "version": "1.1.4",
2677
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2678
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
2679
+ },
2680
+ "node_modules/@jest/reporters/node_modules/has-flag": {
2681
+ "version": "4.0.0",
2682
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2683
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2684
+ "engines": {
2685
+ "node": ">=8"
2686
+ }
2687
+ },
2688
+ "node_modules/@jest/reporters/node_modules/source-map": {
2689
+ "version": "0.6.1",
2690
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
2691
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
2692
+ "engines": {
2693
+ "node": ">=0.10.0"
2694
+ }
2695
+ },
2696
+ "node_modules/@jest/reporters/node_modules/supports-color": {
2697
+ "version": "7.2.0",
2698
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2699
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2700
+ "dependencies": {
2701
+ "has-flag": "^4.0.0"
2702
+ },
2703
+ "engines": {
2704
+ "node": ">=8"
2705
+ }
2706
+ },
2707
+ "node_modules/@jest/schemas": {
2708
+ "version": "28.1.3",
2709
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz",
2710
+ "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==",
2711
+ "dependencies": {
2712
+ "@sinclair/typebox": "^0.24.1"
2713
+ },
2714
+ "engines": {
2715
+ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
2716
+ }
2717
+ },
2718
+ "node_modules/@jest/source-map": {
2719
+ "version": "27.5.1",
2720
+ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz",
2721
+ "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==",
2722
+ "dependencies": {
2723
+ "callsites": "^3.0.0",
2724
+ "graceful-fs": "^4.2.9",
2725
+ "source-map": "^0.6.0"
2726
+ },
2727
+ "engines": {
2728
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2729
+ }
2730
+ },
2731
+ "node_modules/@jest/source-map/node_modules/source-map": {
2732
+ "version": "0.6.1",
2733
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
2734
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
2735
+ "engines": {
2736
+ "node": ">=0.10.0"
2737
+ }
2738
+ },
2739
+ "node_modules/@jest/test-result": {
2740
+ "version": "27.5.1",
2741
+ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz",
2742
+ "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==",
2743
+ "dependencies": {
2744
+ "@jest/console": "^27.5.1",
2745
+ "@jest/types": "^27.5.1",
2746
+ "@types/istanbul-lib-coverage": "^2.0.0",
2747
+ "collect-v8-coverage": "^1.0.0"
2748
+ },
2749
+ "engines": {
2750
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2751
+ }
2752
+ },
2753
+ "node_modules/@jest/test-sequencer": {
2754
+ "version": "27.5.1",
2755
+ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz",
2756
+ "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==",
2757
+ "dependencies": {
2758
+ "@jest/test-result": "^27.5.1",
2759
+ "graceful-fs": "^4.2.9",
2760
+ "jest-haste-map": "^27.5.1",
2761
+ "jest-runtime": "^27.5.1"
2762
+ },
2763
+ "engines": {
2764
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2765
+ }
2766
+ },
2767
+ "node_modules/@jest/transform": {
2768
+ "version": "27.5.1",
2769
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz",
2770
+ "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==",
2771
+ "dependencies": {
2772
+ "@babel/core": "^7.1.0",
2773
+ "@jest/types": "^27.5.1",
2774
+ "babel-plugin-istanbul": "^6.1.1",
2775
+ "chalk": "^4.0.0",
2776
+ "convert-source-map": "^1.4.0",
2777
+ "fast-json-stable-stringify": "^2.0.0",
2778
+ "graceful-fs": "^4.2.9",
2779
+ "jest-haste-map": "^27.5.1",
2780
+ "jest-regex-util": "^27.5.1",
2781
+ "jest-util": "^27.5.1",
2782
+ "micromatch": "^4.0.4",
2783
+ "pirates": "^4.0.4",
2784
+ "slash": "^3.0.0",
2785
+ "source-map": "^0.6.1",
2786
+ "write-file-atomic": "^3.0.0"
2787
+ },
2788
+ "engines": {
2789
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2790
+ }
2791
+ },
2792
+ "node_modules/@jest/transform/node_modules/ansi-styles": {
2793
+ "version": "4.3.0",
2794
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2795
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2796
+ "dependencies": {
2797
+ "color-convert": "^2.0.1"
2798
+ },
2799
+ "engines": {
2800
+ "node": ">=8"
2801
+ },
2802
+ "funding": {
2803
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2804
+ }
2805
+ },
2806
+ "node_modules/@jest/transform/node_modules/chalk": {
2807
+ "version": "4.1.2",
2808
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2809
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2810
+ "dependencies": {
2811
+ "ansi-styles": "^4.1.0",
2812
+ "supports-color": "^7.1.0"
2813
+ },
2814
+ "engines": {
2815
+ "node": ">=10"
2816
+ },
2817
+ "funding": {
2818
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2819
+ }
2820
+ },
2821
+ "node_modules/@jest/transform/node_modules/color-convert": {
2822
+ "version": "2.0.1",
2823
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2824
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2825
+ "dependencies": {
2826
+ "color-name": "~1.1.4"
2827
+ },
2828
+ "engines": {
2829
+ "node": ">=7.0.0"
2830
+ }
2831
+ },
2832
+ "node_modules/@jest/transform/node_modules/color-name": {
2833
+ "version": "1.1.4",
2834
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2835
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
2836
+ },
2837
+ "node_modules/@jest/transform/node_modules/has-flag": {
2838
+ "version": "4.0.0",
2839
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2840
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2841
+ "engines": {
2842
+ "node": ">=8"
2843
+ }
2844
+ },
2845
+ "node_modules/@jest/transform/node_modules/source-map": {
2846
+ "version": "0.6.1",
2847
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
2848
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
2849
+ "engines": {
2850
+ "node": ">=0.10.0"
2851
+ }
2852
+ },
2853
+ "node_modules/@jest/transform/node_modules/supports-color": {
2854
+ "version": "7.2.0",
2855
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2856
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2857
+ "dependencies": {
2858
+ "has-flag": "^4.0.0"
2859
+ },
2860
+ "engines": {
2861
+ "node": ">=8"
2862
+ }
2863
+ },
2864
+ "node_modules/@jest/types": {
2865
+ "version": "27.5.1",
2866
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
2867
+ "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
2868
+ "dependencies": {
2869
+ "@types/istanbul-lib-coverage": "^2.0.0",
2870
+ "@types/istanbul-reports": "^3.0.0",
2871
+ "@types/node": "*",
2872
+ "@types/yargs": "^16.0.0",
2873
+ "chalk": "^4.0.0"
2874
+ },
2875
+ "engines": {
2876
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
2877
+ }
2878
+ },
2879
+ "node_modules/@jest/types/node_modules/ansi-styles": {
2880
+ "version": "4.3.0",
2881
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2882
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2883
+ "dependencies": {
2884
+ "color-convert": "^2.0.1"
2885
+ },
2886
+ "engines": {
2887
+ "node": ">=8"
2888
+ },
2889
+ "funding": {
2890
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2891
+ }
2892
+ },
2893
+ "node_modules/@jest/types/node_modules/chalk": {
2894
+ "version": "4.1.2",
2895
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2896
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2897
+ "dependencies": {
2898
+ "ansi-styles": "^4.1.0",
2899
+ "supports-color": "^7.1.0"
2900
+ },
2901
+ "engines": {
2902
+ "node": ">=10"
2903
+ },
2904
+ "funding": {
2905
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2906
+ }
2907
+ },
2908
+ "node_modules/@jest/types/node_modules/color-convert": {
2909
+ "version": "2.0.1",
2910
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2911
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2912
+ "dependencies": {
2913
+ "color-name": "~1.1.4"
2914
+ },
2915
+ "engines": {
2916
+ "node": ">=7.0.0"
2917
+ }
2918
+ },
2919
+ "node_modules/@jest/types/node_modules/color-name": {
2920
+ "version": "1.1.4",
2921
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2922
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
2923
+ },
2924
+ "node_modules/@jest/types/node_modules/has-flag": {
2925
+ "version": "4.0.0",
2926
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2927
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2928
+ "engines": {
2929
+ "node": ">=8"
2930
+ }
2931
+ },
2932
+ "node_modules/@jest/types/node_modules/supports-color": {
2933
+ "version": "7.2.0",
2934
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2935
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2936
+ "dependencies": {
2937
+ "has-flag": "^4.0.0"
2938
+ },
2939
+ "engines": {
2940
+ "node": ">=8"
2941
+ }
2942
+ },
2943
+ "node_modules/@jridgewell/gen-mapping": {
2944
+ "version": "0.1.1",
2945
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
2946
+ "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
2947
+ "dependencies": {
2948
+ "@jridgewell/set-array": "^1.0.0",
2949
+ "@jridgewell/sourcemap-codec": "^1.4.10"
2950
+ },
2951
+ "engines": {
2952
+ "node": ">=6.0.0"
2953
+ }
2954
+ },
2955
+ "node_modules/@jridgewell/resolve-uri": {
2956
+ "version": "3.1.0",
2957
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
2958
+ "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
2959
+ "engines": {
2960
+ "node": ">=6.0.0"
2961
+ }
2962
+ },
2963
+ "node_modules/@jridgewell/set-array": {
2964
+ "version": "1.1.2",
2965
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
2966
+ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
2967
+ "engines": {
2968
+ "node": ">=6.0.0"
2969
+ }
2970
+ },
2971
+ "node_modules/@jridgewell/source-map": {
2972
+ "version": "0.3.2",
2973
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz",
2974
+ "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
2975
+ "dependencies": {
2976
+ "@jridgewell/gen-mapping": "^0.3.0",
2977
+ "@jridgewell/trace-mapping": "^0.3.9"
2978
+ }
2979
+ },
2980
+ "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": {
2981
+ "version": "0.3.2",
2982
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
2983
+ "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
2984
+ "dependencies": {
2985
+ "@jridgewell/set-array": "^1.0.1",
2986
+ "@jridgewell/sourcemap-codec": "^1.4.10",
2987
+ "@jridgewell/trace-mapping": "^0.3.9"
2988
+ },
2989
+ "engines": {
2990
+ "node": ">=6.0.0"
2991
+ }
2992
+ },
2993
+ "node_modules/@jridgewell/sourcemap-codec": {
2994
+ "version": "1.4.14",
2995
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
2996
+ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
2997
+ },
2998
+ "node_modules/@jridgewell/trace-mapping": {
2999
+ "version": "0.3.17",
3000
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
3001
+ "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
3002
+ "dependencies": {
3003
+ "@jridgewell/resolve-uri": "3.1.0",
3004
+ "@jridgewell/sourcemap-codec": "1.4.14"
3005
+ }
3006
+ },
3007
+ "node_modules/@leichtgewicht/ip-codec": {
3008
+ "version": "2.0.4",
3009
+ "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
3010
+ "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="
3011
+ },
3012
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
3013
+ "version": "5.1.1-v1",
3014
+ "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
3015
+ "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
3016
+ "dependencies": {
3017
+ "eslint-scope": "5.1.1"
3018
+ }
3019
+ },
3020
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
3021
+ "version": "5.1.1",
3022
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
3023
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
3024
+ "dependencies": {
3025
+ "esrecurse": "^4.3.0",
3026
+ "estraverse": "^4.1.1"
3027
+ },
3028
+ "engines": {
3029
+ "node": ">=8.0.0"
3030
+ }
3031
+ },
3032
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
3033
+ "version": "4.3.0",
3034
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
3035
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
3036
+ "engines": {
3037
+ "node": ">=4.0"
3038
+ }
3039
+ },
3040
+ "node_modules/@nodelib/fs.scandir": {
3041
+ "version": "2.1.5",
3042
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
3043
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
3044
+ "dependencies": {
3045
+ "@nodelib/fs.stat": "2.0.5",
3046
+ "run-parallel": "^1.1.9"
3047
+ },
3048
+ "engines": {
3049
+ "node": ">= 8"
3050
+ }
3051
+ },
3052
+ "node_modules/@nodelib/fs.stat": {
3053
+ "version": "2.0.5",
3054
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
3055
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
3056
+ "engines": {
3057
+ "node": ">= 8"
3058
+ }
3059
+ },
3060
+ "node_modules/@nodelib/fs.walk": {
3061
+ "version": "1.2.8",
3062
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
3063
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
3064
+ "dependencies": {
3065
+ "@nodelib/fs.scandir": "2.1.5",
3066
+ "fastq": "^1.6.0"
3067
+ },
3068
+ "engines": {
3069
+ "node": ">= 8"
3070
+ }
3071
+ },
3072
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin": {
3073
+ "version": "0.5.10",
3074
+ "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz",
3075
+ "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==",
3076
+ "dependencies": {
3077
+ "ansi-html-community": "^0.0.8",
3078
+ "common-path-prefix": "^3.0.0",
3079
+ "core-js-pure": "^3.23.3",
3080
+ "error-stack-parser": "^2.0.6",
3081
+ "find-up": "^5.0.0",
3082
+ "html-entities": "^2.1.0",
3083
+ "loader-utils": "^2.0.4",
3084
+ "schema-utils": "^3.0.0",
3085
+ "source-map": "^0.7.3"
3086
+ },
3087
+ "engines": {
3088
+ "node": ">= 10.13"
3089
+ },
3090
+ "peerDependencies": {
3091
+ "@types/webpack": "4.x || 5.x",
3092
+ "react-refresh": ">=0.10.0 <1.0.0",
3093
+ "sockjs-client": "^1.4.0",
3094
+ "type-fest": ">=0.17.0 <4.0.0",
3095
+ "webpack": ">=4.43.0 <6.0.0",
3096
+ "webpack-dev-server": "3.x || 4.x",
3097
+ "webpack-hot-middleware": "2.x",
3098
+ "webpack-plugin-serve": "0.x || 1.x"
3099
+ },
3100
+ "peerDependenciesMeta": {
3101
+ "@types/webpack": {
3102
+ "optional": true
3103
+ },
3104
+ "sockjs-client": {
3105
+ "optional": true
3106
+ },
3107
+ "type-fest": {
3108
+ "optional": true
3109
+ },
3110
+ "webpack-dev-server": {
3111
+ "optional": true
3112
+ },
3113
+ "webpack-hot-middleware": {
3114
+ "optional": true
3115
+ },
3116
+ "webpack-plugin-serve": {
3117
+ "optional": true
3118
+ }
3119
+ }
3120
+ },
3121
+ "node_modules/@rollup/plugin-babel": {
3122
+ "version": "5.3.1",
3123
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz",
3124
+ "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==",
3125
+ "dependencies": {
3126
+ "@babel/helper-module-imports": "^7.10.4",
3127
+ "@rollup/pluginutils": "^3.1.0"
3128
+ },
3129
+ "engines": {
3130
+ "node": ">= 10.0.0"
3131
+ },
3132
+ "peerDependencies": {
3133
+ "@babel/core": "^7.0.0",
3134
+ "@types/babel__core": "^7.1.9",
3135
+ "rollup": "^1.20.0||^2.0.0"
3136
+ },
3137
+ "peerDependenciesMeta": {
3138
+ "@types/babel__core": {
3139
+ "optional": true
3140
+ }
3141
+ }
3142
+ },
3143
+ "node_modules/@rollup/plugin-node-resolve": {
3144
+ "version": "11.2.1",
3145
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz",
3146
+ "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==",
3147
+ "dependencies": {
3148
+ "@rollup/pluginutils": "^3.1.0",
3149
+ "@types/resolve": "1.17.1",
3150
+ "builtin-modules": "^3.1.0",
3151
+ "deepmerge": "^4.2.2",
3152
+ "is-module": "^1.0.0",
3153
+ "resolve": "^1.19.0"
3154
+ },
3155
+ "engines": {
3156
+ "node": ">= 10.0.0"
3157
+ },
3158
+ "peerDependencies": {
3159
+ "rollup": "^1.20.0||^2.0.0"
3160
+ }
3161
+ },
3162
+ "node_modules/@rollup/plugin-replace": {
3163
+ "version": "2.4.2",
3164
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz",
3165
+ "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==",
3166
+ "dependencies": {
3167
+ "@rollup/pluginutils": "^3.1.0",
3168
+ "magic-string": "^0.25.7"
3169
+ },
3170
+ "peerDependencies": {
3171
+ "rollup": "^1.20.0 || ^2.0.0"
3172
+ }
3173
+ },
3174
+ "node_modules/@rollup/pluginutils": {
3175
+ "version": "3.1.0",
3176
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
3177
+ "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
3178
+ "dependencies": {
3179
+ "@types/estree": "0.0.39",
3180
+ "estree-walker": "^1.0.1",
3181
+ "picomatch": "^2.2.2"
3182
+ },
3183
+ "engines": {
3184
+ "node": ">= 8.0.0"
3185
+ },
3186
+ "peerDependencies": {
3187
+ "rollup": "^1.20.0||^2.0.0"
3188
+ }
3189
+ },
3190
+ "node_modules/@rollup/pluginutils/node_modules/@types/estree": {
3191
+ "version": "0.0.39",
3192
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
3193
+ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="
3194
+ },
3195
+ "node_modules/@rushstack/eslint-patch": {
3196
+ "version": "1.2.0",
3197
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
3198
+ "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg=="
3199
+ },
3200
+ "node_modules/@sinclair/typebox": {
3201
+ "version": "0.24.51",
3202
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz",
3203
+ "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="
3204
+ },
3205
+ "node_modules/@sinonjs/commons": {
3206
+ "version": "1.8.6",
3207
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
3208
+ "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
3209
+ "dependencies": {
3210
+ "type-detect": "4.0.8"
3211
+ }
3212
+ },
3213
+ "node_modules/@sinonjs/fake-timers": {
3214
+ "version": "8.1.0",
3215
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
3216
+ "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
3217
+ "dependencies": {
3218
+ "@sinonjs/commons": "^1.7.0"
3219
+ }
3220
+ },
3221
+ "node_modules/@surma/rollup-plugin-off-main-thread": {
3222
+ "version": "2.2.3",
3223
+ "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz",
3224
+ "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==",
3225
+ "dependencies": {
3226
+ "ejs": "^3.1.6",
3227
+ "json5": "^2.2.0",
3228
+ "magic-string": "^0.25.0",
3229
+ "string.prototype.matchall": "^4.0.6"
3230
+ }
3231
+ },
3232
+ "node_modules/@svgr/babel-plugin-add-jsx-attribute": {
3233
+ "version": "5.4.0",
3234
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz",
3235
+ "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==",
3236
+ "engines": {
3237
+ "node": ">=10"
3238
+ },
3239
+ "funding": {
3240
+ "type": "github",
3241
+ "url": "https://github.com/sponsors/gregberge"
3242
+ }
3243
+ },
3244
+ "node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
3245
+ "version": "5.4.0",
3246
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz",
3247
+ "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==",
3248
+ "engines": {
3249
+ "node": ">=10"
3250
+ },
3251
+ "funding": {
3252
+ "type": "github",
3253
+ "url": "https://github.com/sponsors/gregberge"
3254
+ }
3255
+ },
3256
+ "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
3257
+ "version": "5.0.1",
3258
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz",
3259
+ "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==",
3260
+ "engines": {
3261
+ "node": ">=10"
3262
+ },
3263
+ "funding": {
3264
+ "type": "github",
3265
+ "url": "https://github.com/sponsors/gregberge"
3266
+ }
3267
+ },
3268
+ "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
3269
+ "version": "5.0.1",
3270
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz",
3271
+ "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==",
3272
+ "engines": {
3273
+ "node": ">=10"
3274
+ },
3275
+ "funding": {
3276
+ "type": "github",
3277
+ "url": "https://github.com/sponsors/gregberge"
3278
+ }
3279
+ },
3280
+ "node_modules/@svgr/babel-plugin-svg-dynamic-title": {
3281
+ "version": "5.4.0",
3282
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz",
3283
+ "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==",
3284
+ "engines": {
3285
+ "node": ">=10"
3286
+ },
3287
+ "funding": {
3288
+ "type": "github",
3289
+ "url": "https://github.com/sponsors/gregberge"
3290
+ }
3291
+ },
3292
+ "node_modules/@svgr/babel-plugin-svg-em-dimensions": {
3293
+ "version": "5.4.0",
3294
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz",
3295
+ "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==",
3296
+ "engines": {
3297
+ "node": ">=10"
3298
+ },
3299
+ "funding": {
3300
+ "type": "github",
3301
+ "url": "https://github.com/sponsors/gregberge"
3302
+ }
3303
+ },
3304
+ "node_modules/@svgr/babel-plugin-transform-react-native-svg": {
3305
+ "version": "5.4.0",
3306
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz",
3307
+ "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==",
3308
+ "engines": {
3309
+ "node": ">=10"
3310
+ },
3311
+ "funding": {
3312
+ "type": "github",
3313
+ "url": "https://github.com/sponsors/gregberge"
3314
+ }
3315
+ },
3316
+ "node_modules/@svgr/babel-plugin-transform-svg-component": {
3317
+ "version": "5.5.0",
3318
+ "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz",
3319
+ "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==",
3320
+ "engines": {
3321
+ "node": ">=10"
3322
+ },
3323
+ "funding": {
3324
+ "type": "github",
3325
+ "url": "https://github.com/sponsors/gregberge"
3326
+ }
3327
+ },
3328
+ "node_modules/@svgr/babel-preset": {
3329
+ "version": "5.5.0",
3330
+ "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz",
3331
+ "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==",
3332
+ "dependencies": {
3333
+ "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0",
3334
+ "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0",
3335
+ "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1",
3336
+ "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1",
3337
+ "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0",
3338
+ "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0",
3339
+ "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0",
3340
+ "@svgr/babel-plugin-transform-svg-component": "^5.5.0"
3341
+ },
3342
+ "engines": {
3343
+ "node": ">=10"
3344
+ },
3345
+ "funding": {
3346
+ "type": "github",
3347
+ "url": "https://github.com/sponsors/gregberge"
3348
+ }
3349
+ },
3350
+ "node_modules/@svgr/core": {
3351
+ "version": "5.5.0",
3352
+ "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz",
3353
+ "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==",
3354
+ "dependencies": {
3355
+ "@svgr/plugin-jsx": "^5.5.0",
3356
+ "camelcase": "^6.2.0",
3357
+ "cosmiconfig": "^7.0.0"
3358
+ },
3359
+ "engines": {
3360
+ "node": ">=10"
3361
+ },
3362
+ "funding": {
3363
+ "type": "github",
3364
+ "url": "https://github.com/sponsors/gregberge"
3365
+ }
3366
+ },
3367
+ "node_modules/@svgr/hast-util-to-babel-ast": {
3368
+ "version": "5.5.0",
3369
+ "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz",
3370
+ "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==",
3371
+ "dependencies": {
3372
+ "@babel/types": "^7.12.6"
3373
+ },
3374
+ "engines": {
3375
+ "node": ">=10"
3376
+ },
3377
+ "funding": {
3378
+ "type": "github",
3379
+ "url": "https://github.com/sponsors/gregberge"
3380
+ }
3381
+ },
3382
+ "node_modules/@svgr/plugin-jsx": {
3383
+ "version": "5.5.0",
3384
+ "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz",
3385
+ "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==",
3386
+ "dependencies": {
3387
+ "@babel/core": "^7.12.3",
3388
+ "@svgr/babel-preset": "^5.5.0",
3389
+ "@svgr/hast-util-to-babel-ast": "^5.5.0",
3390
+ "svg-parser": "^2.0.2"
3391
+ },
3392
+ "engines": {
3393
+ "node": ">=10"
3394
+ },
3395
+ "funding": {
3396
+ "type": "github",
3397
+ "url": "https://github.com/sponsors/gregberge"
3398
+ }
3399
+ },
3400
+ "node_modules/@svgr/plugin-svgo": {
3401
+ "version": "5.5.0",
3402
+ "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz",
3403
+ "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==",
3404
+ "dependencies": {
3405
+ "cosmiconfig": "^7.0.0",
3406
+ "deepmerge": "^4.2.2",
3407
+ "svgo": "^1.2.2"
3408
+ },
3409
+ "engines": {
3410
+ "node": ">=10"
3411
+ },
3412
+ "funding": {
3413
+ "type": "github",
3414
+ "url": "https://github.com/sponsors/gregberge"
3415
+ }
3416
+ },
3417
+ "node_modules/@svgr/webpack": {
3418
+ "version": "5.5.0",
3419
+ "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz",
3420
+ "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==",
3421
+ "dependencies": {
3422
+ "@babel/core": "^7.12.3",
3423
+ "@babel/plugin-transform-react-constant-elements": "^7.12.1",
3424
+ "@babel/preset-env": "^7.12.1",
3425
+ "@babel/preset-react": "^7.12.5",
3426
+ "@svgr/core": "^5.5.0",
3427
+ "@svgr/plugin-jsx": "^5.5.0",
3428
+ "@svgr/plugin-svgo": "^5.5.0",
3429
+ "loader-utils": "^2.0.0"
3430
+ },
3431
+ "engines": {
3432
+ "node": ">=10"
3433
+ },
3434
+ "funding": {
3435
+ "type": "github",
3436
+ "url": "https://github.com/sponsors/gregberge"
3437
+ }
3438
+ },
3439
+ "node_modules/@testing-library/dom": {
3440
+ "version": "9.0.1",
3441
+ "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.0.1.tgz",
3442
+ "integrity": "sha512-fTOVsMY9QLFCCXRHG3Ese6cMH5qIWwSbgxZsgeF5TNsy81HKaZ4kgehnSF8FsR3OF+numlIV2YcU79MzbnhSig==",
3443
+ "peer": true,
3444
+ "dependencies": {
3445
+ "@babel/code-frame": "^7.10.4",
3446
+ "@babel/runtime": "^7.12.5",
3447
+ "@types/aria-query": "^5.0.1",
3448
+ "aria-query": "^5.0.0",
3449
+ "chalk": "^4.1.0",
3450
+ "dom-accessibility-api": "^0.5.9",
3451
+ "lz-string": "^1.5.0",
3452
+ "pretty-format": "^27.0.2"
3453
+ },
3454
+ "engines": {
3455
+ "node": ">=14"
3456
+ }
3457
+ },
3458
+ "node_modules/@testing-library/dom/node_modules/ansi-styles": {
3459
+ "version": "4.3.0",
3460
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
3461
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
3462
+ "peer": true,
3463
+ "dependencies": {
3464
+ "color-convert": "^2.0.1"
3465
+ },
3466
+ "engines": {
3467
+ "node": ">=8"
3468
+ },
3469
+ "funding": {
3470
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3471
+ }
3472
+ },
3473
+ "node_modules/@testing-library/dom/node_modules/chalk": {
3474
+ "version": "4.1.2",
3475
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
3476
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
3477
+ "peer": true,
3478
+ "dependencies": {
3479
+ "ansi-styles": "^4.1.0",
3480
+ "supports-color": "^7.1.0"
3481
+ },
3482
+ "engines": {
3483
+ "node": ">=10"
3484
+ },
3485
+ "funding": {
3486
+ "url": "https://github.com/chalk/chalk?sponsor=1"
3487
+ }
3488
+ },
3489
+ "node_modules/@testing-library/dom/node_modules/color-convert": {
3490
+ "version": "2.0.1",
3491
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
3492
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
3493
+ "peer": true,
3494
+ "dependencies": {
3495
+ "color-name": "~1.1.4"
3496
+ },
3497
+ "engines": {
3498
+ "node": ">=7.0.0"
3499
+ }
3500
+ },
3501
+ "node_modules/@testing-library/dom/node_modules/color-name": {
3502
+ "version": "1.1.4",
3503
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
3504
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
3505
+ "peer": true
3506
+ },
3507
+ "node_modules/@testing-library/dom/node_modules/has-flag": {
3508
+ "version": "4.0.0",
3509
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
3510
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
3511
+ "peer": true,
3512
+ "engines": {
3513
+ "node": ">=8"
3514
+ }
3515
+ },
3516
+ "node_modules/@testing-library/dom/node_modules/supports-color": {
3517
+ "version": "7.2.0",
3518
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3519
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3520
+ "peer": true,
3521
+ "dependencies": {
3522
+ "has-flag": "^4.0.0"
3523
+ },
3524
+ "engines": {
3525
+ "node": ">=8"
3526
+ }
3527
+ },
3528
+ "node_modules/@testing-library/jest-dom": {
3529
+ "version": "5.16.5",
3530
+ "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz",
3531
+ "integrity": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==",
3532
+ "dependencies": {
3533
+ "@adobe/css-tools": "^4.0.1",
3534
+ "@babel/runtime": "^7.9.2",
3535
+ "@types/testing-library__jest-dom": "^5.9.1",
3536
+ "aria-query": "^5.0.0",
3537
+ "chalk": "^3.0.0",
3538
+ "css.escape": "^1.5.1",
3539
+ "dom-accessibility-api": "^0.5.6",
3540
+ "lodash": "^4.17.15",
3541
+ "redent": "^3.0.0"
3542
+ },
3543
+ "engines": {
3544
+ "node": ">=8",
3545
+ "npm": ">=6",
3546
+ "yarn": ">=1"
3547
+ }
3548
+ },
3549
+ "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": {
3550
+ "version": "4.3.0",
3551
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
3552
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
3553
+ "dependencies": {
3554
+ "color-convert": "^2.0.1"
3555
+ },
3556
+ "engines": {
3557
+ "node": ">=8"
3558
+ },
3559
+ "funding": {
3560
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3561
+ }
3562
+ },
3563
+ "node_modules/@testing-library/jest-dom/node_modules/chalk": {
3564
+ "version": "3.0.0",
3565
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
3566
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
3567
+ "dependencies": {
3568
+ "ansi-styles": "^4.1.0",
3569
+ "supports-color": "^7.1.0"
3570
+ },
3571
+ "engines": {
3572
+ "node": ">=8"
3573
+ }
3574
+ },
3575
+ "node_modules/@testing-library/jest-dom/node_modules/color-convert": {
3576
+ "version": "2.0.1",
3577
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
3578
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
3579
+ "dependencies": {
3580
+ "color-name": "~1.1.4"
3581
+ },
3582
+ "engines": {
3583
+ "node": ">=7.0.0"
3584
+ }
3585
+ },
3586
+ "node_modules/@testing-library/jest-dom/node_modules/color-name": {
3587
+ "version": "1.1.4",
3588
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
3589
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
3590
+ },
3591
+ "node_modules/@testing-library/jest-dom/node_modules/has-flag": {
3592
+ "version": "4.0.0",
3593
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
3594
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
3595
+ "engines": {
3596
+ "node": ">=8"
3597
+ }
3598
+ },
3599
+ "node_modules/@testing-library/jest-dom/node_modules/supports-color": {
3600
+ "version": "7.2.0",
3601
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3602
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3603
+ "dependencies": {
3604
+ "has-flag": "^4.0.0"
3605
+ },
3606
+ "engines": {
3607
+ "node": ">=8"
3608
+ }
3609
+ },
3610
+ "node_modules/@testing-library/react": {
3611
+ "version": "13.4.0",
3612
+ "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz",
3613
+ "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==",
3614
+ "dependencies": {
3615
+ "@babel/runtime": "^7.12.5",
3616
+ "@testing-library/dom": "^8.5.0",
3617
+ "@types/react-dom": "^18.0.0"
3618
+ },
3619
+ "engines": {
3620
+ "node": ">=12"
3621
+ },
3622
+ "peerDependencies": {
3623
+ "react": "^18.0.0",
3624
+ "react-dom": "^18.0.0"
3625
+ }
3626
+ },
3627
+ "node_modules/@testing-library/react/node_modules/@testing-library/dom": {
3628
+ "version": "8.20.0",
3629
+ "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz",
3630
+ "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==",
3631
+ "dependencies": {
3632
+ "@babel/code-frame": "^7.10.4",
3633
+ "@babel/runtime": "^7.12.5",
3634
+ "@types/aria-query": "^5.0.1",
3635
+ "aria-query": "^5.0.0",
3636
+ "chalk": "^4.1.0",
3637
+ "dom-accessibility-api": "^0.5.9",
3638
+ "lz-string": "^1.4.4",
3639
+ "pretty-format": "^27.0.2"
3640
+ },
3641
+ "engines": {
3642
+ "node": ">=12"
3643
+ }
3644
+ },
3645
+ "node_modules/@testing-library/react/node_modules/ansi-styles": {
3646
+ "version": "4.3.0",
3647
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
3648
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
3649
+ "dependencies": {
3650
+ "color-convert": "^2.0.1"
3651
+ },
3652
+ "engines": {
3653
+ "node": ">=8"
3654
+ },
3655
+ "funding": {
3656
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3657
+ }
3658
+ },
3659
+ "node_modules/@testing-library/react/node_modules/chalk": {
3660
+ "version": "4.1.2",
3661
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
3662
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
3663
+ "dependencies": {
3664
+ "ansi-styles": "^4.1.0",
3665
+ "supports-color": "^7.1.0"
3666
+ },
3667
+ "engines": {
3668
+ "node": ">=10"
3669
+ },
3670
+ "funding": {
3671
+ "url": "https://github.com/chalk/chalk?sponsor=1"
3672
+ }
3673
+ },
3674
+ "node_modules/@testing-library/react/node_modules/color-convert": {
3675
+ "version": "2.0.1",
3676
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
3677
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
3678
+ "dependencies": {
3679
+ "color-name": "~1.1.4"
3680
+ },
3681
+ "engines": {
3682
+ "node": ">=7.0.0"
3683
+ }
3684
+ },
3685
+ "node_modules/@testing-library/react/node_modules/color-name": {
3686
+ "version": "1.1.4",
3687
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
3688
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
3689
+ },
3690
+ "node_modules/@testing-library/react/node_modules/has-flag": {
3691
+ "version": "4.0.0",
3692
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
3693
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
3694
+ "engines": {
3695
+ "node": ">=8"
3696
+ }
3697
+ },
3698
+ "node_modules/@testing-library/react/node_modules/supports-color": {
3699
+ "version": "7.2.0",
3700
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3701
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3702
+ "dependencies": {
3703
+ "has-flag": "^4.0.0"
3704
+ },
3705
+ "engines": {
3706
+ "node": ">=8"
3707
+ }
3708
+ },
3709
+ "node_modules/@testing-library/user-event": {
3710
+ "version": "13.5.0",
3711
+ "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz",
3712
+ "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==",
3713
+ "dependencies": {
3714
+ "@babel/runtime": "^7.12.5"
3715
+ },
3716
+ "engines": {
3717
+ "node": ">=10",
3718
+ "npm": ">=6"
3719
+ },
3720
+ "peerDependencies": {
3721
+ "@testing-library/dom": ">=7.21.4"
3722
+ }
3723
+ },
3724
+ "node_modules/@tootallnate/once": {
3725
+ "version": "1.1.2",
3726
+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
3727
+ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
3728
+ "engines": {
3729
+ "node": ">= 6"
3730
+ }
3731
+ },
3732
+ "node_modules/@trysound/sax": {
3733
+ "version": "0.2.0",
3734
+ "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
3735
+ "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
3736
+ "engines": {
3737
+ "node": ">=10.13.0"
3738
+ }
3739
+ },
3740
+ "node_modules/@types/aria-query": {
3741
+ "version": "5.0.1",
3742
+ "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz",
3743
+ "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q=="
3744
+ },
3745
+ "node_modules/@types/babel__core": {
3746
+ "version": "7.20.0",
3747
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz",
3748
+ "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==",
3749
+ "dependencies": {
3750
+ "@babel/parser": "^7.20.7",
3751
+ "@babel/types": "^7.20.7",
3752
+ "@types/babel__generator": "*",
3753
+ "@types/babel__template": "*",
3754
+ "@types/babel__traverse": "*"
3755
+ }
3756
+ },
3757
+ "node_modules/@types/babel__generator": {
3758
+ "version": "7.6.4",
3759
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
3760
+ "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
3761
+ "dependencies": {
3762
+ "@babel/types": "^7.0.0"
3763
+ }
3764
+ },
3765
+ "node_modules/@types/babel__template": {
3766
+ "version": "7.4.1",
3767
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
3768
+ "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
3769
+ "dependencies": {
3770
+ "@babel/parser": "^7.1.0",
3771
+ "@babel/types": "^7.0.0"
3772
+ }
3773
+ },
3774
+ "node_modules/@types/babel__traverse": {
3775
+ "version": "7.18.3",
3776
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz",
3777
+ "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==",
3778
+ "dependencies": {
3779
+ "@babel/types": "^7.3.0"
3780
+ }
3781
+ },
3782
+ "node_modules/@types/body-parser": {
3783
+ "version": "1.19.2",
3784
+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
3785
+ "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
3786
+ "dependencies": {
3787
+ "@types/connect": "*",
3788
+ "@types/node": "*"
3789
+ }
3790
+ },
3791
+ "node_modules/@types/bonjour": {
3792
+ "version": "3.5.10",
3793
+ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz",
3794
+ "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==",
3795
+ "dependencies": {
3796
+ "@types/node": "*"
3797
+ }
3798
+ },
3799
+ "node_modules/@types/connect": {
3800
+ "version": "3.4.35",
3801
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
3802
+ "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
3803
+ "dependencies": {
3804
+ "@types/node": "*"
3805
+ }
3806
+ },
3807
+ "node_modules/@types/connect-history-api-fallback": {
3808
+ "version": "1.3.5",
3809
+ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz",
3810
+ "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==",
3811
+ "dependencies": {
3812
+ "@types/express-serve-static-core": "*",
3813
+ "@types/node": "*"
3814
+ }
3815
+ },
3816
+ "node_modules/@types/eslint": {
3817
+ "version": "8.21.2",
3818
+ "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.2.tgz",
3819
+ "integrity": "sha512-EMpxUyystd3uZVByZap1DACsMXvb82ypQnGn89e1Y0a+LYu3JJscUd/gqhRsVFDkaD2MIiWo0MT8EfXr3DGRKw==",
3820
+ "dependencies": {
3821
+ "@types/estree": "*",
3822
+ "@types/json-schema": "*"
3823
+ }
3824
+ },
3825
+ "node_modules/@types/eslint-scope": {
3826
+ "version": "3.7.4",
3827
+ "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz",
3828
+ "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==",
3829
+ "dependencies": {
3830
+ "@types/eslint": "*",
3831
+ "@types/estree": "*"
3832
+ }
3833
+ },
3834
+ "node_modules/@types/estree": {
3835
+ "version": "1.0.0",
3836
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
3837
+ "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="
3838
+ },
3839
+ "node_modules/@types/express": {
3840
+ "version": "4.17.17",
3841
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
3842
+ "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
3843
+ "dependencies": {
3844
+ "@types/body-parser": "*",
3845
+ "@types/express-serve-static-core": "^4.17.33",
3846
+ "@types/qs": "*",
3847
+ "@types/serve-static": "*"
3848
+ }
3849
+ },
3850
+ "node_modules/@types/express-serve-static-core": {
3851
+ "version": "4.17.33",
3852
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz",
3853
+ "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==",
3854
+ "dependencies": {
3855
+ "@types/node": "*",
3856
+ "@types/qs": "*",
3857
+ "@types/range-parser": "*"
3858
+ }
3859
+ },
3860
+ "node_modules/@types/graceful-fs": {
3861
+ "version": "4.1.6",
3862
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
3863
+ "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==",
3864
+ "dependencies": {
3865
+ "@types/node": "*"
3866
+ }
3867
+ },
3868
+ "node_modules/@types/html-minifier-terser": {
3869
+ "version": "6.1.0",
3870
+ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
3871
+ "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg=="
3872
+ },
3873
+ "node_modules/@types/http-proxy": {
3874
+ "version": "1.17.10",
3875
+ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.10.tgz",
3876
+ "integrity": "sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==",
3877
+ "dependencies": {
3878
+ "@types/node": "*"
3879
+ }
3880
+ },
3881
+ "node_modules/@types/istanbul-lib-coverage": {
3882
+ "version": "2.0.4",
3883
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
3884
+ "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
3885
+ },
3886
+ "node_modules/@types/istanbul-lib-report": {
3887
+ "version": "3.0.0",
3888
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
3889
+ "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
3890
+ "dependencies": {
3891
+ "@types/istanbul-lib-coverage": "*"
3892
+ }
3893
+ },
3894
+ "node_modules/@types/istanbul-reports": {
3895
+ "version": "3.0.1",
3896
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
3897
+ "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
3898
+ "dependencies": {
3899
+ "@types/istanbul-lib-report": "*"
3900
+ }
3901
+ },
3902
+ "node_modules/@types/jest": {
3903
+ "version": "29.4.2",
3904
+ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.4.2.tgz",
3905
+ "integrity": "sha512-bbne90W7is+m88ezmZrLiTpp41tIoTdvPC5t3gLoNgu/6qbGdWTC2JWqPWQRJn2Q7rVYTr8aTWqOjhGJDXyvAQ==",
3906
+ "dependencies": {
3907
+ "expect": "^29.0.0",
3908
+ "pretty-format": "^29.0.0"
3909
+ }
3910
+ },
3911
+ "node_modules/@types/jest/node_modules/@jest/schemas": {
3912
+ "version": "29.4.3",
3913
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz",
3914
+ "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==",
3915
+ "dependencies": {
3916
+ "@sinclair/typebox": "^0.25.16"
3917
+ },
3918
+ "engines": {
3919
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3920
+ }
3921
+ },
3922
+ "node_modules/@types/jest/node_modules/@jest/types": {
3923
+ "version": "29.5.0",
3924
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz",
3925
+ "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==",
3926
+ "dependencies": {
3927
+ "@jest/schemas": "^29.4.3",
3928
+ "@types/istanbul-lib-coverage": "^2.0.0",
3929
+ "@types/istanbul-reports": "^3.0.0",
3930
+ "@types/node": "*",
3931
+ "@types/yargs": "^17.0.8",
3932
+ "chalk": "^4.0.0"
3933
+ },
3934
+ "engines": {
3935
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3936
+ }
3937
+ },
3938
+ "node_modules/@types/jest/node_modules/@sinclair/typebox": {
3939
+ "version": "0.25.24",
3940
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz",
3941
+ "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="
3942
+ },
3943
+ "node_modules/@types/jest/node_modules/@types/yargs": {
3944
+ "version": "17.0.22",
3945
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz",
3946
+ "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==",
3947
+ "dependencies": {
3948
+ "@types/yargs-parser": "*"
3949
+ }
3950
+ },
3951
+ "node_modules/@types/jest/node_modules/ansi-styles": {
3952
+ "version": "4.3.0",
3953
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
3954
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
3955
+ "dependencies": {
3956
+ "color-convert": "^2.0.1"
3957
+ },
3958
+ "engines": {
3959
+ "node": ">=8"
3960
+ },
3961
+ "funding": {
3962
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3963
+ }
3964
+ },
3965
+ "node_modules/@types/jest/node_modules/chalk": {
3966
+ "version": "4.1.2",
3967
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
3968
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
3969
+ "dependencies": {
3970
+ "ansi-styles": "^4.1.0",
3971
+ "supports-color": "^7.1.0"
3972
+ },
3973
+ "engines": {
3974
+ "node": ">=10"
3975
+ },
3976
+ "funding": {
3977
+ "url": "https://github.com/chalk/chalk?sponsor=1"
3978
+ }
3979
+ },
3980
+ "node_modules/@types/jest/node_modules/color-convert": {
3981
+ "version": "2.0.1",
3982
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
3983
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
3984
+ "dependencies": {
3985
+ "color-name": "~1.1.4"
3986
+ },
3987
+ "engines": {
3988
+ "node": ">=7.0.0"
3989
+ }
3990
+ },
3991
+ "node_modules/@types/jest/node_modules/color-name": {
3992
+ "version": "1.1.4",
3993
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
3994
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
3995
+ },
3996
+ "node_modules/@types/jest/node_modules/diff-sequences": {
3997
+ "version": "29.4.3",
3998
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz",
3999
+ "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==",
4000
+ "engines": {
4001
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4002
+ }
4003
+ },
4004
+ "node_modules/@types/jest/node_modules/expect": {
4005
+ "version": "29.5.0",
4006
+ "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz",
4007
+ "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==",
4008
+ "dependencies": {
4009
+ "@jest/expect-utils": "^29.5.0",
4010
+ "jest-get-type": "^29.4.3",
4011
+ "jest-matcher-utils": "^29.5.0",
4012
+ "jest-message-util": "^29.5.0",
4013
+ "jest-util": "^29.5.0"
4014
+ },
4015
+ "engines": {
4016
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4017
+ }
4018
+ },
4019
+ "node_modules/@types/jest/node_modules/has-flag": {
4020
+ "version": "4.0.0",
4021
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
4022
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
4023
+ "engines": {
4024
+ "node": ">=8"
4025
+ }
4026
+ },
4027
+ "node_modules/@types/jest/node_modules/jest-diff": {
4028
+ "version": "29.5.0",
4029
+ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz",
4030
+ "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==",
4031
+ "dependencies": {
4032
+ "chalk": "^4.0.0",
4033
+ "diff-sequences": "^29.4.3",
4034
+ "jest-get-type": "^29.4.3",
4035
+ "pretty-format": "^29.5.0"
4036
+ },
4037
+ "engines": {
4038
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4039
+ }
4040
+ },
4041
+ "node_modules/@types/jest/node_modules/jest-get-type": {
4042
+ "version": "29.4.3",
4043
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz",
4044
+ "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==",
4045
+ "engines": {
4046
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4047
+ }
4048
+ },
4049
+ "node_modules/@types/jest/node_modules/jest-matcher-utils": {
4050
+ "version": "29.5.0",
4051
+ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz",
4052
+ "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==",
4053
+ "dependencies": {
4054
+ "chalk": "^4.0.0",
4055
+ "jest-diff": "^29.5.0",
4056
+ "jest-get-type": "^29.4.3",
4057
+ "pretty-format": "^29.5.0"
4058
+ },
4059
+ "engines": {
4060
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4061
+ }
4062
+ },
4063
+ "node_modules/@types/jest/node_modules/jest-message-util": {
4064
+ "version": "29.5.0",
4065
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz",
4066
+ "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==",
4067
+ "dependencies": {
4068
+ "@babel/code-frame": "^7.12.13",
4069
+ "@jest/types": "^29.5.0",
4070
+ "@types/stack-utils": "^2.0.0",
4071
+ "chalk": "^4.0.0",
4072
+ "graceful-fs": "^4.2.9",
4073
+ "micromatch": "^4.0.4",
4074
+ "pretty-format": "^29.5.0",
4075
+ "slash": "^3.0.0",
4076
+ "stack-utils": "^2.0.3"
4077
+ },
4078
+ "engines": {
4079
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4080
+ }
4081
+ },
4082
+ "node_modules/@types/jest/node_modules/jest-util": {
4083
+ "version": "29.5.0",
4084
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz",
4085
+ "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==",
4086
+ "dependencies": {
4087
+ "@jest/types": "^29.5.0",
4088
+ "@types/node": "*",
4089
+ "chalk": "^4.0.0",
4090
+ "ci-info": "^3.2.0",
4091
+ "graceful-fs": "^4.2.9",
4092
+ "picomatch": "^2.2.3"
4093
+ },
4094
+ "engines": {
4095
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4096
+ }
4097
+ },
4098
+ "node_modules/@types/jest/node_modules/pretty-format": {
4099
+ "version": "29.5.0",
4100
+ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz",
4101
+ "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==",
4102
+ "dependencies": {
4103
+ "@jest/schemas": "^29.4.3",
4104
+ "ansi-styles": "^5.0.0",
4105
+ "react-is": "^18.0.0"
4106
+ },
4107
+ "engines": {
4108
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
4109
+ }
4110
+ },
4111
+ "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": {
4112
+ "version": "5.2.0",
4113
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
4114
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
4115
+ "engines": {
4116
+ "node": ">=10"
4117
+ },
4118
+ "funding": {
4119
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
4120
+ }
4121
+ },
4122
+ "node_modules/@types/jest/node_modules/react-is": {
4123
+ "version": "18.2.0",
4124
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
4125
+ "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
4126
+ },
4127
+ "node_modules/@types/jest/node_modules/supports-color": {
4128
+ "version": "7.2.0",
4129
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4130
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4131
+ "dependencies": {
4132
+ "has-flag": "^4.0.0"
4133
+ },
4134
+ "engines": {
4135
+ "node": ">=8"
4136
+ }
4137
+ },
4138
+ "node_modules/@types/json-schema": {
4139
+ "version": "7.0.11",
4140
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
4141
+ "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
4142
+ },
4143
+ "node_modules/@types/json5": {
4144
+ "version": "0.0.29",
4145
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
4146
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
4147
+ },
4148
+ "node_modules/@types/mime": {
4149
+ "version": "3.0.1",
4150
+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz",
4151
+ "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="
4152
+ },
4153
+ "node_modules/@types/node": {
4154
+ "version": "18.15.3",
4155
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.3.tgz",
4156
+ "integrity": "sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw=="
4157
+ },
4158
+ "node_modules/@types/parse-json": {
4159
+ "version": "4.0.0",
4160
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
4161
+ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
4162
+ },
4163
+ "node_modules/@types/prettier": {
4164
+ "version": "2.7.2",
4165
+ "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz",
4166
+ "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg=="
4167
+ },
4168
+ "node_modules/@types/prop-types": {
4169
+ "version": "15.7.5",
4170
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
4171
+ "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
4172
+ },
4173
+ "node_modules/@types/q": {
4174
+ "version": "1.5.5",
4175
+ "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz",
4176
+ "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="
4177
+ },
4178
+ "node_modules/@types/qs": {
4179
+ "version": "6.9.7",
4180
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
4181
+ "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
4182
+ },
4183
+ "node_modules/@types/range-parser": {
4184
+ "version": "1.2.4",
4185
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
4186
+ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
4187
+ },
4188
+ "node_modules/@types/react": {
4189
+ "version": "18.0.28",
4190
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz",
4191
+ "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==",
4192
+ "dependencies": {
4193
+ "@types/prop-types": "*",
4194
+ "@types/scheduler": "*",
4195
+ "csstype": "^3.0.2"
4196
+ }
4197
+ },
4198
+ "node_modules/@types/react-dom": {
4199
+ "version": "18.0.11",
4200
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz",
4201
+ "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==",
4202
+ "dependencies": {
4203
+ "@types/react": "*"
4204
+ }
4205
+ },
4206
+ "node_modules/@types/resolve": {
4207
+ "version": "1.17.1",
4208
+ "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz",
4209
+ "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==",
4210
+ "dependencies": {
4211
+ "@types/node": "*"
4212
+ }
4213
+ },
4214
+ "node_modules/@types/retry": {
4215
+ "version": "0.12.0",
4216
+ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
4217
+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
4218
+ },
4219
+ "node_modules/@types/scheduler": {
4220
+ "version": "0.16.2",
4221
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
4222
+ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
4223
+ },
4224
+ "node_modules/@types/semver": {
4225
+ "version": "7.3.13",
4226
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz",
4227
+ "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw=="
4228
+ },
4229
+ "node_modules/@types/serve-index": {
4230
+ "version": "1.9.1",
4231
+ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz",
4232
+ "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==",
4233
+ "dependencies": {
4234
+ "@types/express": "*"
4235
+ }
4236
+ },
4237
+ "node_modules/@types/serve-static": {
4238
+ "version": "1.15.1",
4239
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz",
4240
+ "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
4241
+ "dependencies": {
4242
+ "@types/mime": "*",
4243
+ "@types/node": "*"
4244
+ }
4245
+ },
4246
+ "node_modules/@types/sockjs": {
4247
+ "version": "0.3.33",
4248
+ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz",
4249
+ "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==",
4250
+ "dependencies": {
4251
+ "@types/node": "*"
4252
+ }
4253
+ },
4254
+ "node_modules/@types/stack-utils": {
4255
+ "version": "2.0.1",
4256
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
4257
+ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
4258
+ },
4259
+ "node_modules/@types/testing-library__jest-dom": {
4260
+ "version": "5.14.5",
4261
+ "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz",
4262
+ "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==",
4263
+ "dependencies": {
4264
+ "@types/jest": "*"
4265
+ }
4266
+ },
4267
+ "node_modules/@types/trusted-types": {
4268
+ "version": "2.0.3",
4269
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz",
4270
+ "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g=="
4271
+ },
4272
+ "node_modules/@types/ws": {
4273
+ "version": "8.5.4",
4274
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz",
4275
+ "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==",
4276
+ "dependencies": {
4277
+ "@types/node": "*"
4278
+ }
4279
+ },
4280
+ "node_modules/@types/yargs": {
4281
+ "version": "16.0.5",
4282
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz",
4283
+ "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==",
4284
+ "dependencies": {
4285
+ "@types/yargs-parser": "*"
4286
+ }
4287
+ },
4288
+ "node_modules/@types/yargs-parser": {
4289
+ "version": "21.0.0",
4290
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
4291
+ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
4292
+ },
4293
+ "node_modules/@typescript-eslint/eslint-plugin": {
4294
+ "version": "5.55.0",
4295
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.55.0.tgz",
4296
+ "integrity": "sha512-IZGc50rtbjk+xp5YQoJvmMPmJEYoC53SiKPXyqWfv15XoD2Y5Kju6zN0DwlmaGJp1Iw33JsWJcQ7nw0lGCGjVg==",
4297
+ "dependencies": {
4298
+ "@eslint-community/regexpp": "^4.4.0",
4299
+ "@typescript-eslint/scope-manager": "5.55.0",
4300
+ "@typescript-eslint/type-utils": "5.55.0",
4301
+ "@typescript-eslint/utils": "5.55.0",
4302
+ "debug": "^4.3.4",
4303
+ "grapheme-splitter": "^1.0.4",
4304
+ "ignore": "^5.2.0",
4305
+ "natural-compare-lite": "^1.4.0",
4306
+ "semver": "^7.3.7",
4307
+ "tsutils": "^3.21.0"
4308
+ },
4309
+ "engines": {
4310
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4311
+ },
4312
+ "funding": {
4313
+ "type": "opencollective",
4314
+ "url": "https://opencollective.com/typescript-eslint"
4315
+ },
4316
+ "peerDependencies": {
4317
+ "@typescript-eslint/parser": "^5.0.0",
4318
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
4319
+ },
4320
+ "peerDependenciesMeta": {
4321
+ "typescript": {
4322
+ "optional": true
4323
+ }
4324
+ }
4325
+ },
4326
+ "node_modules/@typescript-eslint/experimental-utils": {
4327
+ "version": "5.55.0",
4328
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.55.0.tgz",
4329
+ "integrity": "sha512-3ZqXIZhdGyGQAIIGATeMtg7prA6VlyxGtcy5hYIR/3qUqp3t18pWWUYhL9mpsDm7y8F9mr3ISMt83TiqCt7OPQ==",
4330
+ "dependencies": {
4331
+ "@typescript-eslint/utils": "5.55.0"
4332
+ },
4333
+ "engines": {
4334
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4335
+ },
4336
+ "funding": {
4337
+ "type": "opencollective",
4338
+ "url": "https://opencollective.com/typescript-eslint"
4339
+ },
4340
+ "peerDependencies": {
4341
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
4342
+ }
4343
+ },
4344
+ "node_modules/@typescript-eslint/parser": {
4345
+ "version": "5.55.0",
4346
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.55.0.tgz",
4347
+ "integrity": "sha512-ppvmeF7hvdhUUZWSd2EEWfzcFkjJzgNQzVST22nzg958CR+sphy8A6K7LXQZd6V75m1VKjp+J4g/PCEfSCmzhw==",
4348
+ "dependencies": {
4349
+ "@typescript-eslint/scope-manager": "5.55.0",
4350
+ "@typescript-eslint/types": "5.55.0",
4351
+ "@typescript-eslint/typescript-estree": "5.55.0",
4352
+ "debug": "^4.3.4"
4353
+ },
4354
+ "engines": {
4355
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4356
+ },
4357
+ "funding": {
4358
+ "type": "opencollective",
4359
+ "url": "https://opencollective.com/typescript-eslint"
4360
+ },
4361
+ "peerDependencies": {
4362
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
4363
+ },
4364
+ "peerDependenciesMeta": {
4365
+ "typescript": {
4366
+ "optional": true
4367
+ }
4368
+ }
4369
+ },
4370
+ "node_modules/@typescript-eslint/scope-manager": {
4371
+ "version": "5.55.0",
4372
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.55.0.tgz",
4373
+ "integrity": "sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw==",
4374
+ "dependencies": {
4375
+ "@typescript-eslint/types": "5.55.0",
4376
+ "@typescript-eslint/visitor-keys": "5.55.0"
4377
+ },
4378
+ "engines": {
4379
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4380
+ },
4381
+ "funding": {
4382
+ "type": "opencollective",
4383
+ "url": "https://opencollective.com/typescript-eslint"
4384
+ }
4385
+ },
4386
+ "node_modules/@typescript-eslint/type-utils": {
4387
+ "version": "5.55.0",
4388
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.55.0.tgz",
4389
+ "integrity": "sha512-ObqxBgHIXj8rBNm0yh8oORFrICcJuZPZTqtAFh0oZQyr5DnAHZWfyw54RwpEEH+fD8suZaI0YxvWu5tYE/WswA==",
4390
+ "dependencies": {
4391
+ "@typescript-eslint/typescript-estree": "5.55.0",
4392
+ "@typescript-eslint/utils": "5.55.0",
4393
+ "debug": "^4.3.4",
4394
+ "tsutils": "^3.21.0"
4395
+ },
4396
+ "engines": {
4397
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4398
+ },
4399
+ "funding": {
4400
+ "type": "opencollective",
4401
+ "url": "https://opencollective.com/typescript-eslint"
4402
+ },
4403
+ "peerDependencies": {
4404
+ "eslint": "*"
4405
+ },
4406
+ "peerDependenciesMeta": {
4407
+ "typescript": {
4408
+ "optional": true
4409
+ }
4410
+ }
4411
+ },
4412
+ "node_modules/@typescript-eslint/types": {
4413
+ "version": "5.55.0",
4414
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.55.0.tgz",
4415
+ "integrity": "sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug==",
4416
+ "engines": {
4417
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4418
+ },
4419
+ "funding": {
4420
+ "type": "opencollective",
4421
+ "url": "https://opencollective.com/typescript-eslint"
4422
+ }
4423
+ },
4424
+ "node_modules/@typescript-eslint/typescript-estree": {
4425
+ "version": "5.55.0",
4426
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.55.0.tgz",
4427
+ "integrity": "sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ==",
4428
+ "dependencies": {
4429
+ "@typescript-eslint/types": "5.55.0",
4430
+ "@typescript-eslint/visitor-keys": "5.55.0",
4431
+ "debug": "^4.3.4",
4432
+ "globby": "^11.1.0",
4433
+ "is-glob": "^4.0.3",
4434
+ "semver": "^7.3.7",
4435
+ "tsutils": "^3.21.0"
4436
+ },
4437
+ "engines": {
4438
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4439
+ },
4440
+ "funding": {
4441
+ "type": "opencollective",
4442
+ "url": "https://opencollective.com/typescript-eslint"
4443
+ },
4444
+ "peerDependenciesMeta": {
4445
+ "typescript": {
4446
+ "optional": true
4447
+ }
4448
+ }
4449
+ },
4450
+ "node_modules/@typescript-eslint/utils": {
4451
+ "version": "5.55.0",
4452
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.55.0.tgz",
4453
+ "integrity": "sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==",
4454
+ "dependencies": {
4455
+ "@eslint-community/eslint-utils": "^4.2.0",
4456
+ "@types/json-schema": "^7.0.9",
4457
+ "@types/semver": "^7.3.12",
4458
+ "@typescript-eslint/scope-manager": "5.55.0",
4459
+ "@typescript-eslint/types": "5.55.0",
4460
+ "@typescript-eslint/typescript-estree": "5.55.0",
4461
+ "eslint-scope": "^5.1.1",
4462
+ "semver": "^7.3.7"
4463
+ },
4464
+ "engines": {
4465
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4466
+ },
4467
+ "funding": {
4468
+ "type": "opencollective",
4469
+ "url": "https://opencollective.com/typescript-eslint"
4470
+ },
4471
+ "peerDependencies": {
4472
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
4473
+ }
4474
+ },
4475
+ "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
4476
+ "version": "5.1.1",
4477
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
4478
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
4479
+ "dependencies": {
4480
+ "esrecurse": "^4.3.0",
4481
+ "estraverse": "^4.1.1"
4482
+ },
4483
+ "engines": {
4484
+ "node": ">=8.0.0"
4485
+ }
4486
+ },
4487
+ "node_modules/@typescript-eslint/utils/node_modules/estraverse": {
4488
+ "version": "4.3.0",
4489
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
4490
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
4491
+ "engines": {
4492
+ "node": ">=4.0"
4493
+ }
4494
+ },
4495
+ "node_modules/@typescript-eslint/visitor-keys": {
4496
+ "version": "5.55.0",
4497
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.55.0.tgz",
4498
+ "integrity": "sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw==",
4499
+ "dependencies": {
4500
+ "@typescript-eslint/types": "5.55.0",
4501
+ "eslint-visitor-keys": "^3.3.0"
4502
+ },
4503
+ "engines": {
4504
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4505
+ },
4506
+ "funding": {
4507
+ "type": "opencollective",
4508
+ "url": "https://opencollective.com/typescript-eslint"
4509
+ }
4510
+ },
4511
+ "node_modules/@webassemblyjs/ast": {
4512
+ "version": "1.11.1",
4513
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz",
4514
+ "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
4515
+ "dependencies": {
4516
+ "@webassemblyjs/helper-numbers": "1.11.1",
4517
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
4518
+ }
4519
+ },
4520
+ "node_modules/@webassemblyjs/floating-point-hex-parser": {
4521
+ "version": "1.11.1",
4522
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
4523
+ "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="
4524
+ },
4525
+ "node_modules/@webassemblyjs/helper-api-error": {
4526
+ "version": "1.11.1",
4527
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
4528
+ "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="
4529
+ },
4530
+ "node_modules/@webassemblyjs/helper-buffer": {
4531
+ "version": "1.11.1",
4532
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
4533
+ "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="
4534
+ },
4535
+ "node_modules/@webassemblyjs/helper-numbers": {
4536
+ "version": "1.11.1",
4537
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
4538
+ "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
4539
+ "dependencies": {
4540
+ "@webassemblyjs/floating-point-hex-parser": "1.11.1",
4541
+ "@webassemblyjs/helper-api-error": "1.11.1",
4542
+ "@xtuc/long": "4.2.2"
4543
+ }
4544
+ },
4545
+ "node_modules/@webassemblyjs/helper-wasm-bytecode": {
4546
+ "version": "1.11.1",
4547
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
4548
+ "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="
4549
+ },
4550
+ "node_modules/@webassemblyjs/helper-wasm-section": {
4551
+ "version": "1.11.1",
4552
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
4553
+ "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
4554
+ "dependencies": {
4555
+ "@webassemblyjs/ast": "1.11.1",
4556
+ "@webassemblyjs/helper-buffer": "1.11.1",
4557
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
4558
+ "@webassemblyjs/wasm-gen": "1.11.1"
4559
+ }
4560
+ },
4561
+ "node_modules/@webassemblyjs/ieee754": {
4562
+ "version": "1.11.1",
4563
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
4564
+ "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
4565
+ "dependencies": {
4566
+ "@xtuc/ieee754": "^1.2.0"
4567
+ }
4568
+ },
4569
+ "node_modules/@webassemblyjs/leb128": {
4570
+ "version": "1.11.1",
4571
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
4572
+ "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
4573
+ "dependencies": {
4574
+ "@xtuc/long": "4.2.2"
4575
+ }
4576
+ },
4577
+ "node_modules/@webassemblyjs/utf8": {
4578
+ "version": "1.11.1",
4579
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
4580
+ "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="
4581
+ },
4582
+ "node_modules/@webassemblyjs/wasm-edit": {
4583
+ "version": "1.11.1",
4584
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
4585
+ "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
4586
+ "dependencies": {
4587
+ "@webassemblyjs/ast": "1.11.1",
4588
+ "@webassemblyjs/helper-buffer": "1.11.1",
4589
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
4590
+ "@webassemblyjs/helper-wasm-section": "1.11.1",
4591
+ "@webassemblyjs/wasm-gen": "1.11.1",
4592
+ "@webassemblyjs/wasm-opt": "1.11.1",
4593
+ "@webassemblyjs/wasm-parser": "1.11.1",
4594
+ "@webassemblyjs/wast-printer": "1.11.1"
4595
+ }
4596
+ },
4597
+ "node_modules/@webassemblyjs/wasm-gen": {
4598
+ "version": "1.11.1",
4599
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
4600
+ "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
4601
+ "dependencies": {
4602
+ "@webassemblyjs/ast": "1.11.1",
4603
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
4604
+ "@webassemblyjs/ieee754": "1.11.1",
4605
+ "@webassemblyjs/leb128": "1.11.1",
4606
+ "@webassemblyjs/utf8": "1.11.1"
4607
+ }
4608
+ },
4609
+ "node_modules/@webassemblyjs/wasm-opt": {
4610
+ "version": "1.11.1",
4611
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
4612
+ "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
4613
+ "dependencies": {
4614
+ "@webassemblyjs/ast": "1.11.1",
4615
+ "@webassemblyjs/helper-buffer": "1.11.1",
4616
+ "@webassemblyjs/wasm-gen": "1.11.1",
4617
+ "@webassemblyjs/wasm-parser": "1.11.1"
4618
+ }
4619
+ },
4620
+ "node_modules/@webassemblyjs/wasm-parser": {
4621
+ "version": "1.11.1",
4622
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
4623
+ "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
4624
+ "dependencies": {
4625
+ "@webassemblyjs/ast": "1.11.1",
4626
+ "@webassemblyjs/helper-api-error": "1.11.1",
4627
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
4628
+ "@webassemblyjs/ieee754": "1.11.1",
4629
+ "@webassemblyjs/leb128": "1.11.1",
4630
+ "@webassemblyjs/utf8": "1.11.1"
4631
+ }
4632
+ },
4633
+ "node_modules/@webassemblyjs/wast-printer": {
4634
+ "version": "1.11.1",
4635
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
4636
+ "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
4637
+ "dependencies": {
4638
+ "@webassemblyjs/ast": "1.11.1",
4639
+ "@xtuc/long": "4.2.2"
4640
+ }
4641
+ },
4642
+ "node_modules/@xtuc/ieee754": {
4643
+ "version": "1.2.0",
4644
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
4645
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
4646
+ },
4647
+ "node_modules/@xtuc/long": {
4648
+ "version": "4.2.2",
4649
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
4650
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
4651
+ },
4652
+ "node_modules/abab": {
4653
+ "version": "2.0.6",
4654
+ "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
4655
+ "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="
4656
+ },
4657
+ "node_modules/accepts": {
4658
+ "version": "1.3.8",
4659
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
4660
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
4661
+ "dependencies": {
4662
+ "mime-types": "~2.1.34",
4663
+ "negotiator": "0.6.3"
4664
+ },
4665
+ "engines": {
4666
+ "node": ">= 0.6"
4667
+ }
4668
+ },
4669
+ "node_modules/acorn": {
4670
+ "version": "8.8.2",
4671
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
4672
+ "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
4673
+ "bin": {
4674
+ "acorn": "bin/acorn"
4675
+ },
4676
+ "engines": {
4677
+ "node": ">=0.4.0"
4678
+ }
4679
+ },
4680
+ "node_modules/acorn-globals": {
4681
+ "version": "6.0.0",
4682
+ "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
4683
+ "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
4684
+ "dependencies": {
4685
+ "acorn": "^7.1.1",
4686
+ "acorn-walk": "^7.1.1"
4687
+ }
4688
+ },
4689
+ "node_modules/acorn-globals/node_modules/acorn": {
4690
+ "version": "7.4.1",
4691
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
4692
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
4693
+ "bin": {
4694
+ "acorn": "bin/acorn"
4695
+ },
4696
+ "engines": {
4697
+ "node": ">=0.4.0"
4698
+ }
4699
+ },
4700
+ "node_modules/acorn-import-assertions": {
4701
+ "version": "1.8.0",
4702
+ "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
4703
+ "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
4704
+ "peerDependencies": {
4705
+ "acorn": "^8"
4706
+ }
4707
+ },
4708
+ "node_modules/acorn-jsx": {
4709
+ "version": "5.3.2",
4710
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
4711
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
4712
+ "peerDependencies": {
4713
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
4714
+ }
4715
+ },
4716
+ "node_modules/acorn-node": {
4717
+ "version": "1.8.2",
4718
+ "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz",
4719
+ "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==",
4720
+ "dependencies": {
4721
+ "acorn": "^7.0.0",
4722
+ "acorn-walk": "^7.0.0",
4723
+ "xtend": "^4.0.2"
4724
+ }
4725
+ },
4726
+ "node_modules/acorn-node/node_modules/acorn": {
4727
+ "version": "7.4.1",
4728
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
4729
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
4730
+ "bin": {
4731
+ "acorn": "bin/acorn"
4732
+ },
4733
+ "engines": {
4734
+ "node": ">=0.4.0"
4735
+ }
4736
+ },
4737
+ "node_modules/acorn-walk": {
4738
+ "version": "7.2.0",
4739
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
4740
+ "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
4741
+ "engines": {
4742
+ "node": ">=0.4.0"
4743
+ }
4744
+ },
4745
+ "node_modules/address": {
4746
+ "version": "1.2.2",
4747
+ "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
4748
+ "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
4749
+ "engines": {
4750
+ "node": ">= 10.0.0"
4751
+ }
4752
+ },
4753
+ "node_modules/adjust-sourcemap-loader": {
4754
+ "version": "4.0.0",
4755
+ "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
4756
+ "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==",
4757
+ "dependencies": {
4758
+ "loader-utils": "^2.0.0",
4759
+ "regex-parser": "^2.2.11"
4760
+ },
4761
+ "engines": {
4762
+ "node": ">=8.9"
4763
+ }
4764
+ },
4765
+ "node_modules/agent-base": {
4766
+ "version": "6.0.2",
4767
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
4768
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
4769
+ "dependencies": {
4770
+ "debug": "4"
4771
+ },
4772
+ "engines": {
4773
+ "node": ">= 6.0.0"
4774
+ }
4775
+ },
4776
+ "node_modules/ajv": {
4777
+ "version": "6.12.6",
4778
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
4779
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
4780
+ "dependencies": {
4781
+ "fast-deep-equal": "^3.1.1",
4782
+ "fast-json-stable-stringify": "^2.0.0",
4783
+ "json-schema-traverse": "^0.4.1",
4784
+ "uri-js": "^4.2.2"
4785
+ },
4786
+ "funding": {
4787
+ "type": "github",
4788
+ "url": "https://github.com/sponsors/epoberezkin"
4789
+ }
4790
+ },
4791
+ "node_modules/ajv-formats": {
4792
+ "version": "2.1.1",
4793
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
4794
+ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
4795
+ "dependencies": {
4796
+ "ajv": "^8.0.0"
4797
+ },
4798
+ "peerDependencies": {
4799
+ "ajv": "^8.0.0"
4800
+ },
4801
+ "peerDependenciesMeta": {
4802
+ "ajv": {
4803
+ "optional": true
4804
+ }
4805
+ }
4806
+ },
4807
+ "node_modules/ajv-formats/node_modules/ajv": {
4808
+ "version": "8.12.0",
4809
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
4810
+ "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
4811
+ "dependencies": {
4812
+ "fast-deep-equal": "^3.1.1",
4813
+ "json-schema-traverse": "^1.0.0",
4814
+ "require-from-string": "^2.0.2",
4815
+ "uri-js": "^4.2.2"
4816
+ },
4817
+ "funding": {
4818
+ "type": "github",
4819
+ "url": "https://github.com/sponsors/epoberezkin"
4820
+ }
4821
+ },
4822
+ "node_modules/ajv-formats/node_modules/json-schema-traverse": {
4823
+ "version": "1.0.0",
4824
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
4825
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
4826
+ },
4827
+ "node_modules/ajv-keywords": {
4828
+ "version": "3.5.2",
4829
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
4830
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
4831
+ "peerDependencies": {
4832
+ "ajv": "^6.9.1"
4833
+ }
4834
+ },
4835
+ "node_modules/ansi-escapes": {
4836
+ "version": "4.3.2",
4837
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
4838
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
4839
+ "dependencies": {
4840
+ "type-fest": "^0.21.3"
4841
+ },
4842
+ "engines": {
4843
+ "node": ">=8"
4844
+ },
4845
+ "funding": {
4846
+ "url": "https://github.com/sponsors/sindresorhus"
4847
+ }
4848
+ },
4849
+ "node_modules/ansi-html-community": {
4850
+ "version": "0.0.8",
4851
+ "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
4852
+ "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
4853
+ "engines": [
4854
+ "node >= 0.8.0"
4855
+ ],
4856
+ "bin": {
4857
+ "ansi-html": "bin/ansi-html"
4858
+ }
4859
+ },
4860
+ "node_modules/ansi-regex": {
4861
+ "version": "5.0.1",
4862
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
4863
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
4864
+ "engines": {
4865
+ "node": ">=8"
4866
+ }
4867
+ },
4868
+ "node_modules/ansi-styles": {
4869
+ "version": "3.2.1",
4870
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
4871
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
4872
+ "dependencies": {
4873
+ "color-convert": "^1.9.0"
4874
+ },
4875
+ "engines": {
4876
+ "node": ">=4"
4877
+ }
4878
+ },
4879
+ "node_modules/anymatch": {
4880
+ "version": "3.1.3",
4881
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
4882
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
4883
+ "dependencies": {
4884
+ "normalize-path": "^3.0.0",
4885
+ "picomatch": "^2.0.4"
4886
+ },
4887
+ "engines": {
4888
+ "node": ">= 8"
4889
+ }
4890
+ },
4891
+ "node_modules/arg": {
4892
+ "version": "5.0.2",
4893
+ "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
4894
+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
4895
+ },
4896
+ "node_modules/argparse": {
4897
+ "version": "1.0.10",
4898
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
4899
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
4900
+ "dependencies": {
4901
+ "sprintf-js": "~1.0.2"
4902
+ }
4903
+ },
4904
+ "node_modules/aria-query": {
4905
+ "version": "5.1.3",
4906
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
4907
+ "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
4908
+ "dependencies": {
4909
+ "deep-equal": "^2.0.5"
4910
+ }
4911
+ },
4912
+ "node_modules/array-buffer-byte-length": {
4913
+ "version": "1.0.0",
4914
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
4915
+ "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
4916
+ "dependencies": {
4917
+ "call-bind": "^1.0.2",
4918
+ "is-array-buffer": "^3.0.1"
4919
+ },
4920
+ "funding": {
4921
+ "url": "https://github.com/sponsors/ljharb"
4922
+ }
4923
+ },
4924
+ "node_modules/array-flatten": {
4925
+ "version": "2.1.2",
4926
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
4927
+ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
4928
+ },
4929
+ "node_modules/array-includes": {
4930
+ "version": "3.1.6",
4931
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
4932
+ "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
4933
+ "dependencies": {
4934
+ "call-bind": "^1.0.2",
4935
+ "define-properties": "^1.1.4",
4936
+ "es-abstract": "^1.20.4",
4937
+ "get-intrinsic": "^1.1.3",
4938
+ "is-string": "^1.0.7"
4939
+ },
4940
+ "engines": {
4941
+ "node": ">= 0.4"
4942
+ },
4943
+ "funding": {
4944
+ "url": "https://github.com/sponsors/ljharb"
4945
+ }
4946
+ },
4947
+ "node_modules/array-union": {
4948
+ "version": "2.1.0",
4949
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
4950
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
4951
+ "engines": {
4952
+ "node": ">=8"
4953
+ }
4954
+ },
4955
+ "node_modules/array.prototype.flat": {
4956
+ "version": "1.3.1",
4957
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
4958
+ "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
4959
+ "dependencies": {
4960
+ "call-bind": "^1.0.2",
4961
+ "define-properties": "^1.1.4",
4962
+ "es-abstract": "^1.20.4",
4963
+ "es-shim-unscopables": "^1.0.0"
4964
+ },
4965
+ "engines": {
4966
+ "node": ">= 0.4"
4967
+ },
4968
+ "funding": {
4969
+ "url": "https://github.com/sponsors/ljharb"
4970
+ }
4971
+ },
4972
+ "node_modules/array.prototype.flatmap": {
4973
+ "version": "1.3.1",
4974
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
4975
+ "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
4976
+ "dependencies": {
4977
+ "call-bind": "^1.0.2",
4978
+ "define-properties": "^1.1.4",
4979
+ "es-abstract": "^1.20.4",
4980
+ "es-shim-unscopables": "^1.0.0"
4981
+ },
4982
+ "engines": {
4983
+ "node": ">= 0.4"
4984
+ },
4985
+ "funding": {
4986
+ "url": "https://github.com/sponsors/ljharb"
4987
+ }
4988
+ },
4989
+ "node_modules/array.prototype.reduce": {
4990
+ "version": "1.0.5",
4991
+ "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz",
4992
+ "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==",
4993
+ "dependencies": {
4994
+ "call-bind": "^1.0.2",
4995
+ "define-properties": "^1.1.4",
4996
+ "es-abstract": "^1.20.4",
4997
+ "es-array-method-boxes-properly": "^1.0.0",
4998
+ "is-string": "^1.0.7"
4999
+ },
This file is too large to show in full.
src/test/wix/TestData/EsprojReact/package.json
new
+42
@@ -0,0 +1,42 @@
1
+{
2
+ "name": "reactproject1",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "dependencies": {
6
+ "@testing-library/jest-dom": "^5.16.5",
7
+ "@testing-library/react": "^13.4.0",
8
+ "@testing-library/user-event": "^13.5.0",
9
+ "react": "^18.2.0",
10
+ "react-dom": "^18.2.0",
11
+ "react-scripts": "5.0.1",
12
+ "web-vitals": "^2.1.4"
13
+ },
14
+ "scripts": {
15
+ "start": "react-scripts start",
16
+ "build": "react-scripts build",
17
+ "test": "react-scripts test",
18
+ "eject": "react-scripts eject"
19
+ },
20
+ "eslintConfig": {
21
+ "extends": [
22
+ "react-app",
23
+ "react-app/jest"
24
+ ]
25
+ },
26
+ "browserslist": {
27
+ "production": [
28
+ ">0.2%",
29
+ "not dead",
30
+ "not op_mini all"
31
+ ],
32
+ "development": [
33
+ "last 1 chrome version",
34
+ "last 1 firefox version",
35
+ "last 1 safari version"
36
+ ]
37
+ },
38
+ "devDependencies": {
39
+ "eslint-config-react-app": "^7.0.1",
40
+ "jest-editor-support": "^31.0.1"
41
+ }
42
+}
src/test/wix/TestData/EsprojReact/public/favicon.ico
Binary files /dev/null and b/src/test/wix/TestData/EsprojReact/public/favicon.ico differ
src/test/wix/TestData/EsprojReact/public/index.html
new
+43
@@ -0,0 +1,43 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-react-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
+ <!--
14
+ manifest.json provides metadata used when your web app is installed on a
15
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
+ -->
17
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
+ <!--
19
+ Notice the use of %PUBLIC_URL% in the tags above.
20
+ It will be replaced with the URL of the `public` folder during the build.
21
+ Only files inside the `public` folder can be referenced from the HTML.
22
+
23
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
+ work correctly both with client-side routing and a non-root public URL.
25
+ Learn how to configure a non-root public URL by running `npm run build`.
26
+ -->
27
+ <title>React App</title>
28
+ </head>
29
+ <body>
30
+ <noscript>You need to enable JavaScript to run this app.</noscript>
31
+ <div id="root"></div>
32
+ <!--
33
+ This HTML file is a template.
34
+ If you open it directly in the browser, you will see an empty page.
35
+
36
+ You can add webfonts, meta tags, or analytics to this file.
37
+ The build step will place the bundled scripts into the <body> tag.
38
+
39
+ To begin the development, run `npm start` or `yarn start`.
40
+ To create a production bundle, use `npm run build` or `yarn build`.
41
+ -->
42
+ </body>
43
+</html>
src/test/wix/TestData/EsprojReact/public/logo192.png
Binary files /dev/null and b/src/test/wix/TestData/EsprojReact/public/logo192.png differ
src/test/wix/TestData/EsprojReact/public/logo512.png
Binary files /dev/null and b/src/test/wix/TestData/EsprojReact/public/logo512.png differ
src/test/wix/TestData/EsprojReact/public/manifest.json
new
+25
@@ -0,0 +1,25 @@
1
+{
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+}
src/test/wix/TestData/EsprojReact/public/robots.txt
new
+3
@@ -0,0 +1,3 @@
1
+# https://www.robotstxt.org/robotstxt.html
2
+User-agent: *
3
+Disallow:
src/test/wix/TestData/EsprojReact/src/App.css
new
+38
@@ -0,0 +1,38 @@
1
+.App {
2
+ text-align: center;
3
+}
4
+
5
+.App-logo {
6
+ height: 40vmin;
7
+ pointer-events: none;
8
+}
9
+
10
+@media (prefers-reduced-motion: no-preference) {
11
+ .App-logo {
12
+ animation: App-logo-spin infinite 20s linear;
13
+ }
14
+}
15
+
16
+.App-header {
17
+ background-color: #282c34;
18
+ min-height: 100vh;
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: center;
22
+ justify-content: center;
23
+ font-size: calc(10px + 2vmin);
24
+ color: white;
25
+}
26
+
27
+.App-link {
28
+ color: #61dafb;
29
+}
30
+
31
+@keyframes App-logo-spin {
32
+ from {
33
+ transform: rotate(0deg);
34
+ }
35
+ to {
36
+ transform: rotate(360deg);
37
+ }
38
+}
src/test/wix/TestData/EsprojReact/src/App.js
new
+25
@@ -0,0 +1,25 @@
1
+import logo from './logo.svg';
2
+import './App.css';
3
+
4
+function App() {
5
+ return (
6
+ <div className="App">
7
+ <header className="App-header">
8
+ <img src={logo} className="App-logo" alt="logo" />
9
+ <p>
10
+ Edit <code>src/App.js</code> and save to reload.
11
+ </p>
12
+ <a
13
+ className="App-link"
14
+ href="https://reactjs.org"
15
+ target="_blank"
16
+ rel="noopener noreferrer"
17
+ >
18
+ Learn React
19
+ </a>
20
+ </header>
21
+ </div>
22
+ );
23
+}
24
+
25
+export default App;
src/test/wix/TestData/EsprojReact/src/App.test.js
new
+8
@@ -0,0 +1,8 @@
1
+import { render, screen } from '@testing-library/react';
2
+import App from './App';
3
+
4
+test('renders learn react link', () => {
5
+ render(<App />);
6
+ const linkElement = screen.getByText(/learn react/i);
7
+ expect(linkElement).toBeInTheDocument();
8
+});
src/test/wix/TestData/EsprojReact/src/index.css
new
+13
@@ -0,0 +1,13 @@
1
+body {
2
+ margin: 0;
3
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5
+ sans-serif;
6
+ -webkit-font-smoothing: antialiased;
7
+ -moz-osx-font-smoothing: grayscale;
8
+}
9
+
10
+code {
11
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12
+ monospace;
13
+}
src/test/wix/TestData/EsprojReact/src/index.js
new
+17
@@ -0,0 +1,17 @@
1
+import React from 'react';
2
+import ReactDOM from 'react-dom/client';
3
+import './index.css';
4
+import App from './App';
5
+import reportWebVitals from './reportWebVitals';
6
+
7
+const root = ReactDOM.createRoot(document.getElementById('root'));
8
+root.render(
9
+ <React.StrictMode>
10
+ <App />
11
+ </React.StrictMode>
12
+);
13
+
14
+// If you want to start measuring performance in your app, pass a function
15
+// to log results (for example: reportWebVitals(console.log))
16
+// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17
+reportWebVitals();
src/test/wix/TestData/EsprojReact/src/logo.svg
new
+1
@@ -0,0 +1 @@
1
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
\ No newline at end of file
src/test/wix/TestData/EsprojReact/src/reportWebVitals.js
new
+13
@@ -0,0 +1,13 @@
1
+const reportWebVitals = onPerfEntry => {
2
+ if (onPerfEntry && onPerfEntry instanceof Function) {
3
+ import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4
+ getCLS(onPerfEntry);
5
+ getFID(onPerfEntry);
6
+ getFCP(onPerfEntry);
7
+ getLCP(onPerfEntry);
8
+ getTTFB(onPerfEntry);
9
+ });
10
+ }
11
+};
12
+
13
+export default reportWebVitals;
src/test/wix/TestData/EsprojReact/src/setupTests.js
new
+5
@@ -0,0 +1,5 @@
1
+// jest-dom adds custom jest matchers for asserting on DOM nodes.
2
+// allows you to do things like:
3
+// expect(element).toHaveTextContent(/react/i)
4
+// learn more: https://github.com/testing-library/jest-dom
5
+import '@testing-library/jest-dom';
src/test/wix/TestData/WixprojPackageReact/Package.wxs
new
+15
@@ -0,0 +1,15 @@
1
+<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2
+ <Package Name='~React Package' Manufacturer='WiX Toolset' Version='0.0.1' UpgradeCode='41a2c17e-1976-465b-bcde-eae03516ca68'>
3
+
4
+ <StandardDirectory Id='ProgramFiles6432Folder'>
5
+ <Directory Id='ApplicationFolder' Name='~React App'>
6
+ </Directory>
7
+ </StandardDirectory>
8
+
9
+ <Feature Id='Main' Title='ReactApp'>
10
+ <Component Directory='ApplicationFolder'>
11
+ <File Source='src\App.js' />
12
+ </Component>
13
+ </Feature>
14
+ </Package>
15
+</Wix>
src/test/wix/TestData/WixprojPackageReact/WixprojPackageReact.wixproj
new
+6
@@ -0,0 +1,6 @@
1
+<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
2
+<Project Sdk='WixToolset.Sdk'>
3
+ <ItemGroup>
4
+ <ProjectReference Include="..\EsprojReact\EsprojReact.esproj" />
5
+ </ItemGroup>
6
+</Project>
src/test/wix/WixE2E/WixE2EFixture.cs
+11
@@ -45,6 +45,17 @@ namespace WixE2E
45
result.AssertSuccess();
46
}
47
48
+ [Fact]
49
+ public void CanBuildPackageWithReact()
50
+ {
51
+ var projectPath = TestData.Get("TestData", "WixprojPackageReact", "WixprojPackageReact.wixproj");
52
+
53
+ CleanEverything();
54
+
55
+ var result = RestoreAndBuild(projectPath);
56
+ result.AssertSuccess();
57
+ }
58
+
59
[Fact]
60
public void CanBuildPackageWithWebApp()
61
{
src/wix/WixToolset.BuildTasks/CreateProjectReferenceDefineConstantsAndBindPaths.cs
+14
-2
@@ -48,19 +48,31 @@ namespace WixToolset.BuildTasks
48
49
private void AddBindPathsForResolvedReference(IDictionary<string, List<ITaskItem>> bindPathByPaths, ITaskItem resolvedReference)
50
{
51
+ var projectPath = resolvedReference.GetMetadata("MSBuildSourceProjectFile");
52
+
53
// If the BindName was not explicitly provided, try to use the source project's filename
54
// as the bind name.
55
var name = resolvedReference.GetMetadata("BindName");
56
if (String.IsNullOrWhiteSpace(name))
57
{
56
- var projectPath = resolvedReference.GetMetadata("MSBuildSourceProjectFile");
58
name = String.IsNullOrWhiteSpace(projectPath) ? String.Empty : Path.GetFileNameWithoutExtension(projectPath);
59
}
60
61
var path = resolvedReference.GetMetadata("BindPath");
62
if (String.IsNullOrWhiteSpace(path))
63
{
63
- path = Path.GetDirectoryName(resolvedReference.GetMetadata("FullPath"));
64
+ var fullpath = resolvedReference.GetMetadata("FullPath");
65
+ path = Path.GetDirectoryName(fullpath);
66
+
67
+ // If the resolved project reference (incorrectly) points at a file then use the file's
68
+ // file's directory instead. When this happens, it is a problem in the referenced project
69
+ //
70
+ while (File.Exists(path))
71
+ {
72
+ this.Log.LogWarning("The project '{0}' target path '{1}' resolved to an invalid path where a filename was a child of a file. Using the parent directory '{2}' instead.", projectPath, fullpath, path);
73
+
74
+ path = Path.GetDirectoryName(path);
75
+ }
76
}
77
78
if (!bindPathByPaths.TryGetValue(path, out var bindPathsForPath) ||