flowquery 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/.github/workflows/npm-publish.yml +30 -0
  2. package/.github/workflows/release.yml +84 -0
  3. package/CODE_OF_CONDUCT.md +10 -0
  4. package/FlowQueryLogoIcon.png +0 -0
  5. package/LICENSE +21 -0
  6. package/README.md +113 -0
  7. package/SECURITY.md +14 -0
  8. package/SUPPORT.md +13 -0
  9. package/docs/flowquery.min.js +1 -0
  10. package/docs/index.html +105 -0
  11. package/flowquery-vscode/.vscode-test.mjs +5 -0
  12. package/flowquery-vscode/.vscodeignore +13 -0
  13. package/flowquery-vscode/LICENSE +21 -0
  14. package/flowquery-vscode/README.md +11 -0
  15. package/flowquery-vscode/demo/FlowQueryVSCodeDemo.gif +0 -0
  16. package/flowquery-vscode/eslint.config.mjs +25 -0
  17. package/flowquery-vscode/extension.js +508 -0
  18. package/flowquery-vscode/flowQueryEngine/flowquery.min.js +1 -0
  19. package/flowquery-vscode/flowquery-worker.js +66 -0
  20. package/flowquery-vscode/images/FlowQueryLogoIcon.png +0 -0
  21. package/flowquery-vscode/jsconfig.json +13 -0
  22. package/flowquery-vscode/libs/page.css +53 -0
  23. package/flowquery-vscode/libs/table.css +13 -0
  24. package/flowquery-vscode/libs/tabs.css +66 -0
  25. package/flowquery-vscode/package-lock.json +2917 -0
  26. package/flowquery-vscode/package.json +51 -0
  27. package/flowquery-vscode/test/extension.test.js +196 -0
  28. package/flowquery-vscode/test/worker.test.js +25 -0
  29. package/flowquery-vscode/vsc-extension-quickstart.md +42 -0
  30. package/jest.config.js +11 -0
  31. package/package.json +28 -0
  32. package/queries/analyze_catfacts.cql +75 -0
  33. package/queries/azure_openai_completions.cql +13 -0
  34. package/queries/azure_openai_models.cql +9 -0
  35. package/queries/mock_pipeline.cql +84 -0
  36. package/queries/openai_completions.cql +15 -0
  37. package/queries/openai_models.cql +13 -0
  38. package/queries/test.cql +6 -0
  39. package/queries/tool_inference.cql +24 -0
  40. package/queries/wisdom.cql +6 -0
  41. package/queries/wisdom_letter_histogram.cql +8 -0
  42. package/src/compute/runner.ts +65 -0
  43. package/src/index.browser.ts +11 -0
  44. package/src/index.ts +12 -0
  45. package/src/io/command_line.ts +74 -0
  46. package/src/parsing/alias.ts +23 -0
  47. package/src/parsing/alias_option.ts +5 -0
  48. package/src/parsing/ast_node.ts +153 -0
  49. package/src/parsing/base_parser.ts +92 -0
  50. package/src/parsing/components/csv.ts +9 -0
  51. package/src/parsing/components/from.ts +12 -0
  52. package/src/parsing/components/headers.ts +12 -0
  53. package/src/parsing/components/json.ts +9 -0
  54. package/src/parsing/components/null.ts +9 -0
  55. package/src/parsing/components/post.ts +9 -0
  56. package/src/parsing/components/text.ts +9 -0
  57. package/src/parsing/context.ts +48 -0
  58. package/src/parsing/data_structures/associative_array.ts +43 -0
  59. package/src/parsing/data_structures/json_array.ts +31 -0
  60. package/src/parsing/data_structures/key_value_pair.ts +37 -0
  61. package/src/parsing/data_structures/lookup.ts +40 -0
  62. package/src/parsing/data_structures/range_lookup.ts +36 -0
  63. package/src/parsing/expressions/expression.ts +142 -0
  64. package/src/parsing/expressions/f_string.ts +26 -0
  65. package/src/parsing/expressions/identifier.ts +22 -0
  66. package/src/parsing/expressions/number.ts +40 -0
  67. package/src/parsing/expressions/operator.ts +179 -0
  68. package/src/parsing/expressions/reference.ts +42 -0
  69. package/src/parsing/expressions/string.ts +34 -0
  70. package/src/parsing/functions/aggregate_function.ts +58 -0
  71. package/src/parsing/functions/avg.ts +37 -0
  72. package/src/parsing/functions/collect.ts +44 -0
  73. package/src/parsing/functions/function.ts +60 -0
  74. package/src/parsing/functions/function_factory.ts +66 -0
  75. package/src/parsing/functions/join.ts +26 -0
  76. package/src/parsing/functions/predicate_function.ts +44 -0
  77. package/src/parsing/functions/predicate_function_factory.ts +15 -0
  78. package/src/parsing/functions/predicate_sum.ts +29 -0
  79. package/src/parsing/functions/rand.ts +13 -0
  80. package/src/parsing/functions/range.ts +18 -0
  81. package/src/parsing/functions/reducer_element.ts +10 -0
  82. package/src/parsing/functions/replace.ts +19 -0
  83. package/src/parsing/functions/round.ts +17 -0
  84. package/src/parsing/functions/size.ts +17 -0
  85. package/src/parsing/functions/split.ts +26 -0
  86. package/src/parsing/functions/stringify.ts +26 -0
  87. package/src/parsing/functions/sum.ts +31 -0
  88. package/src/parsing/functions/to_json.ts +17 -0
  89. package/src/parsing/functions/value_holder.ts +13 -0
  90. package/src/parsing/logic/case.ts +26 -0
  91. package/src/parsing/logic/else.ts +12 -0
  92. package/src/parsing/logic/end.ts +9 -0
  93. package/src/parsing/logic/then.ts +12 -0
  94. package/src/parsing/logic/when.ts +12 -0
  95. package/src/parsing/operations/aggregated_return.ts +18 -0
  96. package/src/parsing/operations/aggregated_with.ts +18 -0
  97. package/src/parsing/operations/group_by.ts +124 -0
  98. package/src/parsing/operations/limit.ts +22 -0
  99. package/src/parsing/operations/load.ts +92 -0
  100. package/src/parsing/operations/operation.ts +65 -0
  101. package/src/parsing/operations/projection.ts +18 -0
  102. package/src/parsing/operations/return.ts +43 -0
  103. package/src/parsing/operations/unwind.ts +32 -0
  104. package/src/parsing/operations/where.ts +38 -0
  105. package/src/parsing/operations/with.ts +20 -0
  106. package/src/parsing/parser.ts +762 -0
  107. package/src/parsing/token_to_node.ts +91 -0
  108. package/src/tokenization/keyword.ts +43 -0
  109. package/src/tokenization/operator.ts +25 -0
  110. package/src/tokenization/string_walker.ts +194 -0
  111. package/src/tokenization/symbol.ts +15 -0
  112. package/src/tokenization/token.ts +633 -0
  113. package/src/tokenization/token_mapper.ts +53 -0
  114. package/src/tokenization/token_type.ts +15 -0
  115. package/src/tokenization/tokenizer.ts +229 -0
  116. package/src/tokenization/trie.ts +117 -0
  117. package/src/utils/object_utils.ts +17 -0
  118. package/src/utils/string_utils.ts +114 -0
  119. package/tests/compute/runner.test.ts +498 -0
  120. package/tests/parsing/context.test.ts +27 -0
  121. package/tests/parsing/expression.test.ts +40 -0
  122. package/tests/parsing/parser.test.ts +434 -0
  123. package/tests/tokenization/token_mapper.test.ts +47 -0
  124. package/tests/tokenization/tokenizer.test.ts +67 -0
  125. package/tests/tokenization/trie.test.ts +20 -0
  126. package/tsconfig.json +15 -0
  127. package/typedoc.json +16 -0
  128. package/webpack.config.js +26 -0
@@ -0,0 +1,2917 @@
1
+ {
2
+ "name": "flowquery-vscode",
3
+ "version": "0.0.1",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "flowquery-vscode",
9
+ "version": "0.0.1",
10
+ "license": "MIT",
11
+ "devDependencies": {
12
+ "@types/mocha": "^10.0.10",
13
+ "@types/node": "22.x",
14
+ "@types/vscode": "^1.104.0",
15
+ "@vscode/test-cli": "^0.0.11",
16
+ "@vscode/test-electron": "^2.5.2",
17
+ "eslint": "^9.34.0"
18
+ },
19
+ "engines": {
20
+ "vscode": "^1.104.0"
21
+ }
22
+ },
23
+ "node_modules/@bcoe/v8-coverage": {
24
+ "version": "0.2.3",
25
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
26
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
27
+ "dev": true,
28
+ "license": "MIT"
29
+ },
30
+ "node_modules/@eslint-community/eslint-utils": {
31
+ "version": "4.9.0",
32
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
33
+ "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
34
+ "dev": true,
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "eslint-visitor-keys": "^3.4.3"
38
+ },
39
+ "engines": {
40
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
41
+ },
42
+ "funding": {
43
+ "url": "https://opencollective.com/eslint"
44
+ },
45
+ "peerDependencies": {
46
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
47
+ }
48
+ },
49
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
50
+ "version": "3.4.3",
51
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
52
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
53
+ "dev": true,
54
+ "license": "Apache-2.0",
55
+ "engines": {
56
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
57
+ },
58
+ "funding": {
59
+ "url": "https://opencollective.com/eslint"
60
+ }
61
+ },
62
+ "node_modules/@eslint-community/regexpp": {
63
+ "version": "4.12.1",
64
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
65
+ "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
66
+ "dev": true,
67
+ "license": "MIT",
68
+ "engines": {
69
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
70
+ }
71
+ },
72
+ "node_modules/@eslint/config-array": {
73
+ "version": "0.21.0",
74
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz",
75
+ "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==",
76
+ "dev": true,
77
+ "license": "Apache-2.0",
78
+ "dependencies": {
79
+ "@eslint/object-schema": "^2.1.6",
80
+ "debug": "^4.3.1",
81
+ "minimatch": "^3.1.2"
82
+ },
83
+ "engines": {
84
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
85
+ }
86
+ },
87
+ "node_modules/@eslint/config-array/node_modules/brace-expansion": {
88
+ "version": "1.1.12",
89
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
90
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
91
+ "dev": true,
92
+ "license": "MIT",
93
+ "dependencies": {
94
+ "balanced-match": "^1.0.0",
95
+ "concat-map": "0.0.1"
96
+ }
97
+ },
98
+ "node_modules/@eslint/config-array/node_modules/minimatch": {
99
+ "version": "3.1.2",
100
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
101
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
102
+ "dev": true,
103
+ "license": "ISC",
104
+ "dependencies": {
105
+ "brace-expansion": "^1.1.7"
106
+ },
107
+ "engines": {
108
+ "node": "*"
109
+ }
110
+ },
111
+ "node_modules/@eslint/config-helpers": {
112
+ "version": "0.3.1",
113
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz",
114
+ "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==",
115
+ "dev": true,
116
+ "license": "Apache-2.0",
117
+ "engines": {
118
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
119
+ }
120
+ },
121
+ "node_modules/@eslint/core": {
122
+ "version": "0.15.2",
123
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz",
124
+ "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==",
125
+ "dev": true,
126
+ "license": "Apache-2.0",
127
+ "dependencies": {
128
+ "@types/json-schema": "^7.0.15"
129
+ },
130
+ "engines": {
131
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
132
+ }
133
+ },
134
+ "node_modules/@eslint/eslintrc": {
135
+ "version": "3.3.1",
136
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz",
137
+ "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==",
138
+ "dev": true,
139
+ "license": "MIT",
140
+ "dependencies": {
141
+ "ajv": "^6.12.4",
142
+ "debug": "^4.3.2",
143
+ "espree": "^10.0.1",
144
+ "globals": "^14.0.0",
145
+ "ignore": "^5.2.0",
146
+ "import-fresh": "^3.2.1",
147
+ "js-yaml": "^4.1.0",
148
+ "minimatch": "^3.1.2",
149
+ "strip-json-comments": "^3.1.1"
150
+ },
151
+ "engines": {
152
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
153
+ },
154
+ "funding": {
155
+ "url": "https://opencollective.com/eslint"
156
+ }
157
+ },
158
+ "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
159
+ "version": "1.1.12",
160
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
161
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
162
+ "dev": true,
163
+ "license": "MIT",
164
+ "dependencies": {
165
+ "balanced-match": "^1.0.0",
166
+ "concat-map": "0.0.1"
167
+ }
168
+ },
169
+ "node_modules/@eslint/eslintrc/node_modules/minimatch": {
170
+ "version": "3.1.2",
171
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
172
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
173
+ "dev": true,
174
+ "license": "ISC",
175
+ "dependencies": {
176
+ "brace-expansion": "^1.1.7"
177
+ },
178
+ "engines": {
179
+ "node": "*"
180
+ }
181
+ },
182
+ "node_modules/@eslint/js": {
183
+ "version": "9.35.0",
184
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.35.0.tgz",
185
+ "integrity": "sha512-30iXE9whjlILfWobBkNerJo+TXYsgVM5ERQwMcMKCHckHflCmf7wXDAHlARoWnh0s1U72WqlbeyE7iAcCzuCPw==",
186
+ "dev": true,
187
+ "license": "MIT",
188
+ "engines": {
189
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
190
+ },
191
+ "funding": {
192
+ "url": "https://eslint.org/donate"
193
+ }
194
+ },
195
+ "node_modules/@eslint/object-schema": {
196
+ "version": "2.1.6",
197
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz",
198
+ "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==",
199
+ "dev": true,
200
+ "license": "Apache-2.0",
201
+ "engines": {
202
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
203
+ }
204
+ },
205
+ "node_modules/@eslint/plugin-kit": {
206
+ "version": "0.3.5",
207
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz",
208
+ "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==",
209
+ "dev": true,
210
+ "license": "Apache-2.0",
211
+ "dependencies": {
212
+ "@eslint/core": "^0.15.2",
213
+ "levn": "^0.4.1"
214
+ },
215
+ "engines": {
216
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
217
+ }
218
+ },
219
+ "node_modules/@humanfs/core": {
220
+ "version": "0.19.1",
221
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
222
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
223
+ "dev": true,
224
+ "license": "Apache-2.0",
225
+ "engines": {
226
+ "node": ">=18.18.0"
227
+ }
228
+ },
229
+ "node_modules/@humanfs/node": {
230
+ "version": "0.16.7",
231
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
232
+ "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
233
+ "dev": true,
234
+ "license": "Apache-2.0",
235
+ "dependencies": {
236
+ "@humanfs/core": "^0.19.1",
237
+ "@humanwhocodes/retry": "^0.4.0"
238
+ },
239
+ "engines": {
240
+ "node": ">=18.18.0"
241
+ }
242
+ },
243
+ "node_modules/@humanwhocodes/module-importer": {
244
+ "version": "1.0.1",
245
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
246
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
247
+ "dev": true,
248
+ "license": "Apache-2.0",
249
+ "engines": {
250
+ "node": ">=12.22"
251
+ },
252
+ "funding": {
253
+ "type": "github",
254
+ "url": "https://github.com/sponsors/nzakas"
255
+ }
256
+ },
257
+ "node_modules/@humanwhocodes/retry": {
258
+ "version": "0.4.3",
259
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
260
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
261
+ "dev": true,
262
+ "license": "Apache-2.0",
263
+ "engines": {
264
+ "node": ">=18.18"
265
+ },
266
+ "funding": {
267
+ "type": "github",
268
+ "url": "https://github.com/sponsors/nzakas"
269
+ }
270
+ },
271
+ "node_modules/@isaacs/cliui": {
272
+ "version": "8.0.2",
273
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
274
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
275
+ "dev": true,
276
+ "license": "ISC",
277
+ "dependencies": {
278
+ "string-width": "^5.1.2",
279
+ "string-width-cjs": "npm:string-width@^4.2.0",
280
+ "strip-ansi": "^7.0.1",
281
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
282
+ "wrap-ansi": "^8.1.0",
283
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
284
+ },
285
+ "engines": {
286
+ "node": ">=12"
287
+ }
288
+ },
289
+ "node_modules/@istanbuljs/schema": {
290
+ "version": "0.1.3",
291
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
292
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
293
+ "dev": true,
294
+ "license": "MIT",
295
+ "engines": {
296
+ "node": ">=8"
297
+ }
298
+ },
299
+ "node_modules/@jridgewell/resolve-uri": {
300
+ "version": "3.1.2",
301
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
302
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
303
+ "dev": true,
304
+ "license": "MIT",
305
+ "engines": {
306
+ "node": ">=6.0.0"
307
+ }
308
+ },
309
+ "node_modules/@jridgewell/sourcemap-codec": {
310
+ "version": "1.5.5",
311
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
312
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
313
+ "dev": true,
314
+ "license": "MIT"
315
+ },
316
+ "node_modules/@jridgewell/trace-mapping": {
317
+ "version": "0.3.31",
318
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
319
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
320
+ "dev": true,
321
+ "license": "MIT",
322
+ "dependencies": {
323
+ "@jridgewell/resolve-uri": "^3.1.0",
324
+ "@jridgewell/sourcemap-codec": "^1.4.14"
325
+ }
326
+ },
327
+ "node_modules/@pkgjs/parseargs": {
328
+ "version": "0.11.0",
329
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
330
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
331
+ "dev": true,
332
+ "license": "MIT",
333
+ "optional": true,
334
+ "engines": {
335
+ "node": ">=14"
336
+ }
337
+ },
338
+ "node_modules/@types/estree": {
339
+ "version": "1.0.8",
340
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
341
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
342
+ "dev": true,
343
+ "license": "MIT"
344
+ },
345
+ "node_modules/@types/istanbul-lib-coverage": {
346
+ "version": "2.0.6",
347
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
348
+ "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
349
+ "dev": true,
350
+ "license": "MIT"
351
+ },
352
+ "node_modules/@types/json-schema": {
353
+ "version": "7.0.15",
354
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
355
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
356
+ "dev": true,
357
+ "license": "MIT"
358
+ },
359
+ "node_modules/@types/mocha": {
360
+ "version": "10.0.10",
361
+ "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.10.tgz",
362
+ "integrity": "sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==",
363
+ "dev": true,
364
+ "license": "MIT"
365
+ },
366
+ "node_modules/@types/node": {
367
+ "version": "22.18.6",
368
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.18.6.tgz",
369
+ "integrity": "sha512-r8uszLPpeIWbNKtvWRt/DbVi5zbqZyj1PTmhRMqBMvDnaz1QpmSKujUtJLrqGZeoM8v72MfYggDceY4K1itzWQ==",
370
+ "dev": true,
371
+ "license": "MIT",
372
+ "dependencies": {
373
+ "undici-types": "~6.21.0"
374
+ }
375
+ },
376
+ "node_modules/@types/vscode": {
377
+ "version": "1.104.0",
378
+ "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.104.0.tgz",
379
+ "integrity": "sha512-0KwoU2rZ2ecsTGFxo4K1+f+AErRsYW0fsp6A0zufzGuhyczc2IoKqYqcwXidKXmy2u8YB2GsYsOtiI9Izx3Tig==",
380
+ "dev": true,
381
+ "license": "MIT"
382
+ },
383
+ "node_modules/@vscode/test-cli": {
384
+ "version": "0.0.11",
385
+ "resolved": "https://registry.npmjs.org/@vscode/test-cli/-/test-cli-0.0.11.tgz",
386
+ "integrity": "sha512-qO332yvzFqGhBMJrp6TdwbIydiHgCtxXc2Nl6M58mbH/Z+0CyLR76Jzv4YWPEthhrARprzCRJUqzFvTHFhTj7Q==",
387
+ "dev": true,
388
+ "license": "MIT",
389
+ "dependencies": {
390
+ "@types/mocha": "^10.0.2",
391
+ "c8": "^9.1.0",
392
+ "chokidar": "^3.5.3",
393
+ "enhanced-resolve": "^5.15.0",
394
+ "glob": "^10.3.10",
395
+ "minimatch": "^9.0.3",
396
+ "mocha": "^11.1.0",
397
+ "supports-color": "^9.4.0",
398
+ "yargs": "^17.7.2"
399
+ },
400
+ "bin": {
401
+ "vscode-test": "out/bin.mjs"
402
+ },
403
+ "engines": {
404
+ "node": ">=18"
405
+ }
406
+ },
407
+ "node_modules/@vscode/test-electron": {
408
+ "version": "2.5.2",
409
+ "resolved": "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.5.2.tgz",
410
+ "integrity": "sha512-8ukpxv4wYe0iWMRQU18jhzJOHkeGKbnw7xWRX3Zw1WJA4cEKbHcmmLPdPrPtL6rhDcrlCZN+xKRpv09n4gRHYg==",
411
+ "dev": true,
412
+ "license": "MIT",
413
+ "dependencies": {
414
+ "http-proxy-agent": "^7.0.2",
415
+ "https-proxy-agent": "^7.0.5",
416
+ "jszip": "^3.10.1",
417
+ "ora": "^8.1.0",
418
+ "semver": "^7.6.2"
419
+ },
420
+ "engines": {
421
+ "node": ">=16"
422
+ }
423
+ },
424
+ "node_modules/acorn": {
425
+ "version": "8.15.0",
426
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
427
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
428
+ "dev": true,
429
+ "license": "MIT",
430
+ "bin": {
431
+ "acorn": "bin/acorn"
432
+ },
433
+ "engines": {
434
+ "node": ">=0.4.0"
435
+ }
436
+ },
437
+ "node_modules/acorn-jsx": {
438
+ "version": "5.3.2",
439
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
440
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
441
+ "dev": true,
442
+ "license": "MIT",
443
+ "peerDependencies": {
444
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
445
+ }
446
+ },
447
+ "node_modules/agent-base": {
448
+ "version": "7.1.4",
449
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
450
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
451
+ "dev": true,
452
+ "license": "MIT",
453
+ "engines": {
454
+ "node": ">= 14"
455
+ }
456
+ },
457
+ "node_modules/ajv": {
458
+ "version": "6.12.6",
459
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
460
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
461
+ "dev": true,
462
+ "license": "MIT",
463
+ "dependencies": {
464
+ "fast-deep-equal": "^3.1.1",
465
+ "fast-json-stable-stringify": "^2.0.0",
466
+ "json-schema-traverse": "^0.4.1",
467
+ "uri-js": "^4.2.2"
468
+ },
469
+ "funding": {
470
+ "type": "github",
471
+ "url": "https://github.com/sponsors/epoberezkin"
472
+ }
473
+ },
474
+ "node_modules/ansi-regex": {
475
+ "version": "6.2.2",
476
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
477
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
478
+ "dev": true,
479
+ "license": "MIT",
480
+ "engines": {
481
+ "node": ">=12"
482
+ },
483
+ "funding": {
484
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
485
+ }
486
+ },
487
+ "node_modules/ansi-styles": {
488
+ "version": "4.3.0",
489
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
490
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
491
+ "dev": true,
492
+ "license": "MIT",
493
+ "dependencies": {
494
+ "color-convert": "^2.0.1"
495
+ },
496
+ "engines": {
497
+ "node": ">=8"
498
+ },
499
+ "funding": {
500
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
501
+ }
502
+ },
503
+ "node_modules/anymatch": {
504
+ "version": "3.1.3",
505
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
506
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
507
+ "dev": true,
508
+ "license": "ISC",
509
+ "dependencies": {
510
+ "normalize-path": "^3.0.0",
511
+ "picomatch": "^2.0.4"
512
+ },
513
+ "engines": {
514
+ "node": ">= 8"
515
+ }
516
+ },
517
+ "node_modules/argparse": {
518
+ "version": "2.0.1",
519
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
520
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
521
+ "dev": true,
522
+ "license": "Python-2.0"
523
+ },
524
+ "node_modules/balanced-match": {
525
+ "version": "1.0.2",
526
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
527
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
528
+ "dev": true,
529
+ "license": "MIT"
530
+ },
531
+ "node_modules/binary-extensions": {
532
+ "version": "2.3.0",
533
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
534
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
535
+ "dev": true,
536
+ "license": "MIT",
537
+ "engines": {
538
+ "node": ">=8"
539
+ },
540
+ "funding": {
541
+ "url": "https://github.com/sponsors/sindresorhus"
542
+ }
543
+ },
544
+ "node_modules/brace-expansion": {
545
+ "version": "2.0.2",
546
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
547
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
548
+ "dev": true,
549
+ "license": "MIT",
550
+ "dependencies": {
551
+ "balanced-match": "^1.0.0"
552
+ }
553
+ },
554
+ "node_modules/braces": {
555
+ "version": "3.0.3",
556
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
557
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
558
+ "dev": true,
559
+ "license": "MIT",
560
+ "dependencies": {
561
+ "fill-range": "^7.1.1"
562
+ },
563
+ "engines": {
564
+ "node": ">=8"
565
+ }
566
+ },
567
+ "node_modules/browser-stdout": {
568
+ "version": "1.3.1",
569
+ "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
570
+ "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
571
+ "dev": true,
572
+ "license": "ISC"
573
+ },
574
+ "node_modules/c8": {
575
+ "version": "9.1.0",
576
+ "resolved": "https://registry.npmjs.org/c8/-/c8-9.1.0.tgz",
577
+ "integrity": "sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==",
578
+ "dev": true,
579
+ "license": "ISC",
580
+ "dependencies": {
581
+ "@bcoe/v8-coverage": "^0.2.3",
582
+ "@istanbuljs/schema": "^0.1.3",
583
+ "find-up": "^5.0.0",
584
+ "foreground-child": "^3.1.1",
585
+ "istanbul-lib-coverage": "^3.2.0",
586
+ "istanbul-lib-report": "^3.0.1",
587
+ "istanbul-reports": "^3.1.6",
588
+ "test-exclude": "^6.0.0",
589
+ "v8-to-istanbul": "^9.0.0",
590
+ "yargs": "^17.7.2",
591
+ "yargs-parser": "^21.1.1"
592
+ },
593
+ "bin": {
594
+ "c8": "bin/c8.js"
595
+ },
596
+ "engines": {
597
+ "node": ">=14.14.0"
598
+ }
599
+ },
600
+ "node_modules/callsites": {
601
+ "version": "3.1.0",
602
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
603
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
604
+ "dev": true,
605
+ "license": "MIT",
606
+ "engines": {
607
+ "node": ">=6"
608
+ }
609
+ },
610
+ "node_modules/camelcase": {
611
+ "version": "6.3.0",
612
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
613
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
614
+ "dev": true,
615
+ "license": "MIT",
616
+ "engines": {
617
+ "node": ">=10"
618
+ },
619
+ "funding": {
620
+ "url": "https://github.com/sponsors/sindresorhus"
621
+ }
622
+ },
623
+ "node_modules/chalk": {
624
+ "version": "4.1.2",
625
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
626
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
627
+ "dev": true,
628
+ "license": "MIT",
629
+ "dependencies": {
630
+ "ansi-styles": "^4.1.0",
631
+ "supports-color": "^7.1.0"
632
+ },
633
+ "engines": {
634
+ "node": ">=10"
635
+ },
636
+ "funding": {
637
+ "url": "https://github.com/chalk/chalk?sponsor=1"
638
+ }
639
+ },
640
+ "node_modules/chalk/node_modules/supports-color": {
641
+ "version": "7.2.0",
642
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
643
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
644
+ "dev": true,
645
+ "license": "MIT",
646
+ "dependencies": {
647
+ "has-flag": "^4.0.0"
648
+ },
649
+ "engines": {
650
+ "node": ">=8"
651
+ }
652
+ },
653
+ "node_modules/chokidar": {
654
+ "version": "3.6.0",
655
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
656
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
657
+ "dev": true,
658
+ "license": "MIT",
659
+ "dependencies": {
660
+ "anymatch": "~3.1.2",
661
+ "braces": "~3.0.2",
662
+ "glob-parent": "~5.1.2",
663
+ "is-binary-path": "~2.1.0",
664
+ "is-glob": "~4.0.1",
665
+ "normalize-path": "~3.0.0",
666
+ "readdirp": "~3.6.0"
667
+ },
668
+ "engines": {
669
+ "node": ">= 8.10.0"
670
+ },
671
+ "funding": {
672
+ "url": "https://paulmillr.com/funding/"
673
+ },
674
+ "optionalDependencies": {
675
+ "fsevents": "~2.3.2"
676
+ }
677
+ },
678
+ "node_modules/cli-cursor": {
679
+ "version": "5.0.0",
680
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
681
+ "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
682
+ "dev": true,
683
+ "license": "MIT",
684
+ "dependencies": {
685
+ "restore-cursor": "^5.0.0"
686
+ },
687
+ "engines": {
688
+ "node": ">=18"
689
+ },
690
+ "funding": {
691
+ "url": "https://github.com/sponsors/sindresorhus"
692
+ }
693
+ },
694
+ "node_modules/cli-spinners": {
695
+ "version": "2.9.2",
696
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
697
+ "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
698
+ "dev": true,
699
+ "license": "MIT",
700
+ "engines": {
701
+ "node": ">=6"
702
+ },
703
+ "funding": {
704
+ "url": "https://github.com/sponsors/sindresorhus"
705
+ }
706
+ },
707
+ "node_modules/cliui": {
708
+ "version": "8.0.1",
709
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
710
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
711
+ "dev": true,
712
+ "license": "ISC",
713
+ "dependencies": {
714
+ "string-width": "^4.2.0",
715
+ "strip-ansi": "^6.0.1",
716
+ "wrap-ansi": "^7.0.0"
717
+ },
718
+ "engines": {
719
+ "node": ">=12"
720
+ }
721
+ },
722
+ "node_modules/cliui/node_modules/ansi-regex": {
723
+ "version": "5.0.1",
724
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
725
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
726
+ "dev": true,
727
+ "license": "MIT",
728
+ "engines": {
729
+ "node": ">=8"
730
+ }
731
+ },
732
+ "node_modules/cliui/node_modules/emoji-regex": {
733
+ "version": "8.0.0",
734
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
735
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
736
+ "dev": true,
737
+ "license": "MIT"
738
+ },
739
+ "node_modules/cliui/node_modules/string-width": {
740
+ "version": "4.2.3",
741
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
742
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
743
+ "dev": true,
744
+ "license": "MIT",
745
+ "dependencies": {
746
+ "emoji-regex": "^8.0.0",
747
+ "is-fullwidth-code-point": "^3.0.0",
748
+ "strip-ansi": "^6.0.1"
749
+ },
750
+ "engines": {
751
+ "node": ">=8"
752
+ }
753
+ },
754
+ "node_modules/cliui/node_modules/strip-ansi": {
755
+ "version": "6.0.1",
756
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
757
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
758
+ "dev": true,
759
+ "license": "MIT",
760
+ "dependencies": {
761
+ "ansi-regex": "^5.0.1"
762
+ },
763
+ "engines": {
764
+ "node": ">=8"
765
+ }
766
+ },
767
+ "node_modules/cliui/node_modules/wrap-ansi": {
768
+ "version": "7.0.0",
769
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
770
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
771
+ "dev": true,
772
+ "license": "MIT",
773
+ "dependencies": {
774
+ "ansi-styles": "^4.0.0",
775
+ "string-width": "^4.1.0",
776
+ "strip-ansi": "^6.0.0"
777
+ },
778
+ "engines": {
779
+ "node": ">=10"
780
+ },
781
+ "funding": {
782
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
783
+ }
784
+ },
785
+ "node_modules/color-convert": {
786
+ "version": "2.0.1",
787
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
788
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
789
+ "dev": true,
790
+ "license": "MIT",
791
+ "dependencies": {
792
+ "color-name": "~1.1.4"
793
+ },
794
+ "engines": {
795
+ "node": ">=7.0.0"
796
+ }
797
+ },
798
+ "node_modules/color-name": {
799
+ "version": "1.1.4",
800
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
801
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
802
+ "dev": true,
803
+ "license": "MIT"
804
+ },
805
+ "node_modules/concat-map": {
806
+ "version": "0.0.1",
807
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
808
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
809
+ "dev": true,
810
+ "license": "MIT"
811
+ },
812
+ "node_modules/convert-source-map": {
813
+ "version": "2.0.0",
814
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
815
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
816
+ "dev": true,
817
+ "license": "MIT"
818
+ },
819
+ "node_modules/core-util-is": {
820
+ "version": "1.0.3",
821
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
822
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
823
+ "dev": true,
824
+ "license": "MIT"
825
+ },
826
+ "node_modules/cross-spawn": {
827
+ "version": "7.0.6",
828
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
829
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
830
+ "dev": true,
831
+ "license": "MIT",
832
+ "dependencies": {
833
+ "path-key": "^3.1.0",
834
+ "shebang-command": "^2.0.0",
835
+ "which": "^2.0.1"
836
+ },
837
+ "engines": {
838
+ "node": ">= 8"
839
+ }
840
+ },
841
+ "node_modules/debug": {
842
+ "version": "4.4.3",
843
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
844
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
845
+ "dev": true,
846
+ "license": "MIT",
847
+ "dependencies": {
848
+ "ms": "^2.1.3"
849
+ },
850
+ "engines": {
851
+ "node": ">=6.0"
852
+ },
853
+ "peerDependenciesMeta": {
854
+ "supports-color": {
855
+ "optional": true
856
+ }
857
+ }
858
+ },
859
+ "node_modules/decamelize": {
860
+ "version": "4.0.0",
861
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
862
+ "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
863
+ "dev": true,
864
+ "license": "MIT",
865
+ "engines": {
866
+ "node": ">=10"
867
+ },
868
+ "funding": {
869
+ "url": "https://github.com/sponsors/sindresorhus"
870
+ }
871
+ },
872
+ "node_modules/deep-is": {
873
+ "version": "0.1.4",
874
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
875
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
876
+ "dev": true,
877
+ "license": "MIT"
878
+ },
879
+ "node_modules/diff": {
880
+ "version": "7.0.0",
881
+ "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz",
882
+ "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==",
883
+ "dev": true,
884
+ "license": "BSD-3-Clause",
885
+ "engines": {
886
+ "node": ">=0.3.1"
887
+ }
888
+ },
889
+ "node_modules/eastasianwidth": {
890
+ "version": "0.2.0",
891
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
892
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
893
+ "dev": true,
894
+ "license": "MIT"
895
+ },
896
+ "node_modules/emoji-regex": {
897
+ "version": "9.2.2",
898
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
899
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
900
+ "dev": true,
901
+ "license": "MIT"
902
+ },
903
+ "node_modules/enhanced-resolve": {
904
+ "version": "5.18.3",
905
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz",
906
+ "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==",
907
+ "dev": true,
908
+ "license": "MIT",
909
+ "dependencies": {
910
+ "graceful-fs": "^4.2.4",
911
+ "tapable": "^2.2.0"
912
+ },
913
+ "engines": {
914
+ "node": ">=10.13.0"
915
+ }
916
+ },
917
+ "node_modules/escalade": {
918
+ "version": "3.2.0",
919
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
920
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
921
+ "dev": true,
922
+ "license": "MIT",
923
+ "engines": {
924
+ "node": ">=6"
925
+ }
926
+ },
927
+ "node_modules/escape-string-regexp": {
928
+ "version": "4.0.0",
929
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
930
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
931
+ "dev": true,
932
+ "license": "MIT",
933
+ "engines": {
934
+ "node": ">=10"
935
+ },
936
+ "funding": {
937
+ "url": "https://github.com/sponsors/sindresorhus"
938
+ }
939
+ },
940
+ "node_modules/eslint": {
941
+ "version": "9.35.0",
942
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.35.0.tgz",
943
+ "integrity": "sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==",
944
+ "dev": true,
945
+ "license": "MIT",
946
+ "dependencies": {
947
+ "@eslint-community/eslint-utils": "^4.8.0",
948
+ "@eslint-community/regexpp": "^4.12.1",
949
+ "@eslint/config-array": "^0.21.0",
950
+ "@eslint/config-helpers": "^0.3.1",
951
+ "@eslint/core": "^0.15.2",
952
+ "@eslint/eslintrc": "^3.3.1",
953
+ "@eslint/js": "9.35.0",
954
+ "@eslint/plugin-kit": "^0.3.5",
955
+ "@humanfs/node": "^0.16.6",
956
+ "@humanwhocodes/module-importer": "^1.0.1",
957
+ "@humanwhocodes/retry": "^0.4.2",
958
+ "@types/estree": "^1.0.6",
959
+ "@types/json-schema": "^7.0.15",
960
+ "ajv": "^6.12.4",
961
+ "chalk": "^4.0.0",
962
+ "cross-spawn": "^7.0.6",
963
+ "debug": "^4.3.2",
964
+ "escape-string-regexp": "^4.0.0",
965
+ "eslint-scope": "^8.4.0",
966
+ "eslint-visitor-keys": "^4.2.1",
967
+ "espree": "^10.4.0",
968
+ "esquery": "^1.5.0",
969
+ "esutils": "^2.0.2",
970
+ "fast-deep-equal": "^3.1.3",
971
+ "file-entry-cache": "^8.0.0",
972
+ "find-up": "^5.0.0",
973
+ "glob-parent": "^6.0.2",
974
+ "ignore": "^5.2.0",
975
+ "imurmurhash": "^0.1.4",
976
+ "is-glob": "^4.0.0",
977
+ "json-stable-stringify-without-jsonify": "^1.0.1",
978
+ "lodash.merge": "^4.6.2",
979
+ "minimatch": "^3.1.2",
980
+ "natural-compare": "^1.4.0",
981
+ "optionator": "^0.9.3"
982
+ },
983
+ "bin": {
984
+ "eslint": "bin/eslint.js"
985
+ },
986
+ "engines": {
987
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
988
+ },
989
+ "funding": {
990
+ "url": "https://eslint.org/donate"
991
+ },
992
+ "peerDependencies": {
993
+ "jiti": "*"
994
+ },
995
+ "peerDependenciesMeta": {
996
+ "jiti": {
997
+ "optional": true
998
+ }
999
+ }
1000
+ },
1001
+ "node_modules/eslint-scope": {
1002
+ "version": "8.4.0",
1003
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
1004
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
1005
+ "dev": true,
1006
+ "license": "BSD-2-Clause",
1007
+ "dependencies": {
1008
+ "esrecurse": "^4.3.0",
1009
+ "estraverse": "^5.2.0"
1010
+ },
1011
+ "engines": {
1012
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1013
+ },
1014
+ "funding": {
1015
+ "url": "https://opencollective.com/eslint"
1016
+ }
1017
+ },
1018
+ "node_modules/eslint-visitor-keys": {
1019
+ "version": "4.2.1",
1020
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
1021
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
1022
+ "dev": true,
1023
+ "license": "Apache-2.0",
1024
+ "engines": {
1025
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1026
+ },
1027
+ "funding": {
1028
+ "url": "https://opencollective.com/eslint"
1029
+ }
1030
+ },
1031
+ "node_modules/eslint/node_modules/brace-expansion": {
1032
+ "version": "1.1.12",
1033
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
1034
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
1035
+ "dev": true,
1036
+ "license": "MIT",
1037
+ "dependencies": {
1038
+ "balanced-match": "^1.0.0",
1039
+ "concat-map": "0.0.1"
1040
+ }
1041
+ },
1042
+ "node_modules/eslint/node_modules/glob-parent": {
1043
+ "version": "6.0.2",
1044
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1045
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1046
+ "dev": true,
1047
+ "license": "ISC",
1048
+ "dependencies": {
1049
+ "is-glob": "^4.0.3"
1050
+ },
1051
+ "engines": {
1052
+ "node": ">=10.13.0"
1053
+ }
1054
+ },
1055
+ "node_modules/eslint/node_modules/minimatch": {
1056
+ "version": "3.1.2",
1057
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1058
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1059
+ "dev": true,
1060
+ "license": "ISC",
1061
+ "dependencies": {
1062
+ "brace-expansion": "^1.1.7"
1063
+ },
1064
+ "engines": {
1065
+ "node": "*"
1066
+ }
1067
+ },
1068
+ "node_modules/espree": {
1069
+ "version": "10.4.0",
1070
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
1071
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
1072
+ "dev": true,
1073
+ "license": "BSD-2-Clause",
1074
+ "dependencies": {
1075
+ "acorn": "^8.15.0",
1076
+ "acorn-jsx": "^5.3.2",
1077
+ "eslint-visitor-keys": "^4.2.1"
1078
+ },
1079
+ "engines": {
1080
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1081
+ },
1082
+ "funding": {
1083
+ "url": "https://opencollective.com/eslint"
1084
+ }
1085
+ },
1086
+ "node_modules/esquery": {
1087
+ "version": "1.6.0",
1088
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
1089
+ "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
1090
+ "dev": true,
1091
+ "license": "BSD-3-Clause",
1092
+ "dependencies": {
1093
+ "estraverse": "^5.1.0"
1094
+ },
1095
+ "engines": {
1096
+ "node": ">=0.10"
1097
+ }
1098
+ },
1099
+ "node_modules/esrecurse": {
1100
+ "version": "4.3.0",
1101
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1102
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1103
+ "dev": true,
1104
+ "license": "BSD-2-Clause",
1105
+ "dependencies": {
1106
+ "estraverse": "^5.2.0"
1107
+ },
1108
+ "engines": {
1109
+ "node": ">=4.0"
1110
+ }
1111
+ },
1112
+ "node_modules/estraverse": {
1113
+ "version": "5.3.0",
1114
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1115
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1116
+ "dev": true,
1117
+ "license": "BSD-2-Clause",
1118
+ "engines": {
1119
+ "node": ">=4.0"
1120
+ }
1121
+ },
1122
+ "node_modules/esutils": {
1123
+ "version": "2.0.3",
1124
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1125
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1126
+ "dev": true,
1127
+ "license": "BSD-2-Clause",
1128
+ "engines": {
1129
+ "node": ">=0.10.0"
1130
+ }
1131
+ },
1132
+ "node_modules/fast-deep-equal": {
1133
+ "version": "3.1.3",
1134
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1135
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1136
+ "dev": true,
1137
+ "license": "MIT"
1138
+ },
1139
+ "node_modules/fast-json-stable-stringify": {
1140
+ "version": "2.1.0",
1141
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1142
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1143
+ "dev": true,
1144
+ "license": "MIT"
1145
+ },
1146
+ "node_modules/fast-levenshtein": {
1147
+ "version": "2.0.6",
1148
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1149
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1150
+ "dev": true,
1151
+ "license": "MIT"
1152
+ },
1153
+ "node_modules/file-entry-cache": {
1154
+ "version": "8.0.0",
1155
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1156
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1157
+ "dev": true,
1158
+ "license": "MIT",
1159
+ "dependencies": {
1160
+ "flat-cache": "^4.0.0"
1161
+ },
1162
+ "engines": {
1163
+ "node": ">=16.0.0"
1164
+ }
1165
+ },
1166
+ "node_modules/fill-range": {
1167
+ "version": "7.1.1",
1168
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
1169
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
1170
+ "dev": true,
1171
+ "license": "MIT",
1172
+ "dependencies": {
1173
+ "to-regex-range": "^5.0.1"
1174
+ },
1175
+ "engines": {
1176
+ "node": ">=8"
1177
+ }
1178
+ },
1179
+ "node_modules/find-up": {
1180
+ "version": "5.0.0",
1181
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1182
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1183
+ "dev": true,
1184
+ "license": "MIT",
1185
+ "dependencies": {
1186
+ "locate-path": "^6.0.0",
1187
+ "path-exists": "^4.0.0"
1188
+ },
1189
+ "engines": {
1190
+ "node": ">=10"
1191
+ },
1192
+ "funding": {
1193
+ "url": "https://github.com/sponsors/sindresorhus"
1194
+ }
1195
+ },
1196
+ "node_modules/flat": {
1197
+ "version": "5.0.2",
1198
+ "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
1199
+ "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
1200
+ "dev": true,
1201
+ "license": "BSD-3-Clause",
1202
+ "bin": {
1203
+ "flat": "cli.js"
1204
+ }
1205
+ },
1206
+ "node_modules/flat-cache": {
1207
+ "version": "4.0.1",
1208
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1209
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1210
+ "dev": true,
1211
+ "license": "MIT",
1212
+ "dependencies": {
1213
+ "flatted": "^3.2.9",
1214
+ "keyv": "^4.5.4"
1215
+ },
1216
+ "engines": {
1217
+ "node": ">=16"
1218
+ }
1219
+ },
1220
+ "node_modules/flatted": {
1221
+ "version": "3.3.3",
1222
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
1223
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
1224
+ "dev": true,
1225
+ "license": "ISC"
1226
+ },
1227
+ "node_modules/foreground-child": {
1228
+ "version": "3.3.1",
1229
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
1230
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
1231
+ "dev": true,
1232
+ "license": "ISC",
1233
+ "dependencies": {
1234
+ "cross-spawn": "^7.0.6",
1235
+ "signal-exit": "^4.0.1"
1236
+ },
1237
+ "engines": {
1238
+ "node": ">=14"
1239
+ },
1240
+ "funding": {
1241
+ "url": "https://github.com/sponsors/isaacs"
1242
+ }
1243
+ },
1244
+ "node_modules/fs.realpath": {
1245
+ "version": "1.0.0",
1246
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1247
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
1248
+ "dev": true,
1249
+ "license": "ISC"
1250
+ },
1251
+ "node_modules/fsevents": {
1252
+ "version": "2.3.3",
1253
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1254
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1255
+ "dev": true,
1256
+ "hasInstallScript": true,
1257
+ "license": "MIT",
1258
+ "optional": true,
1259
+ "os": [
1260
+ "darwin"
1261
+ ],
1262
+ "engines": {
1263
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1264
+ }
1265
+ },
1266
+ "node_modules/get-caller-file": {
1267
+ "version": "2.0.5",
1268
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
1269
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
1270
+ "dev": true,
1271
+ "license": "ISC",
1272
+ "engines": {
1273
+ "node": "6.* || 8.* || >= 10.*"
1274
+ }
1275
+ },
1276
+ "node_modules/get-east-asian-width": {
1277
+ "version": "1.4.0",
1278
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz",
1279
+ "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==",
1280
+ "dev": true,
1281
+ "license": "MIT",
1282
+ "engines": {
1283
+ "node": ">=18"
1284
+ },
1285
+ "funding": {
1286
+ "url": "https://github.com/sponsors/sindresorhus"
1287
+ }
1288
+ },
1289
+ "node_modules/glob": {
1290
+ "version": "10.5.0",
1291
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
1292
+ "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
1293
+ "dev": true,
1294
+ "license": "ISC",
1295
+ "dependencies": {
1296
+ "foreground-child": "^3.1.0",
1297
+ "jackspeak": "^3.1.2",
1298
+ "minimatch": "^9.0.4",
1299
+ "minipass": "^7.1.2",
1300
+ "package-json-from-dist": "^1.0.0",
1301
+ "path-scurry": "^1.11.1"
1302
+ },
1303
+ "bin": {
1304
+ "glob": "dist/esm/bin.mjs"
1305
+ },
1306
+ "funding": {
1307
+ "url": "https://github.com/sponsors/isaacs"
1308
+ }
1309
+ },
1310
+ "node_modules/glob-parent": {
1311
+ "version": "5.1.2",
1312
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1313
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1314
+ "dev": true,
1315
+ "license": "ISC",
1316
+ "dependencies": {
1317
+ "is-glob": "^4.0.1"
1318
+ },
1319
+ "engines": {
1320
+ "node": ">= 6"
1321
+ }
1322
+ },
1323
+ "node_modules/globals": {
1324
+ "version": "14.0.0",
1325
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
1326
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
1327
+ "dev": true,
1328
+ "license": "MIT",
1329
+ "engines": {
1330
+ "node": ">=18"
1331
+ },
1332
+ "funding": {
1333
+ "url": "https://github.com/sponsors/sindresorhus"
1334
+ }
1335
+ },
1336
+ "node_modules/graceful-fs": {
1337
+ "version": "4.2.11",
1338
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1339
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1340
+ "dev": true,
1341
+ "license": "ISC"
1342
+ },
1343
+ "node_modules/has-flag": {
1344
+ "version": "4.0.0",
1345
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1346
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1347
+ "dev": true,
1348
+ "license": "MIT",
1349
+ "engines": {
1350
+ "node": ">=8"
1351
+ }
1352
+ },
1353
+ "node_modules/he": {
1354
+ "version": "1.2.0",
1355
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
1356
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
1357
+ "dev": true,
1358
+ "license": "MIT",
1359
+ "bin": {
1360
+ "he": "bin/he"
1361
+ }
1362
+ },
1363
+ "node_modules/html-escaper": {
1364
+ "version": "2.0.2",
1365
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
1366
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
1367
+ "dev": true,
1368
+ "license": "MIT"
1369
+ },
1370
+ "node_modules/http-proxy-agent": {
1371
+ "version": "7.0.2",
1372
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
1373
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
1374
+ "dev": true,
1375
+ "license": "MIT",
1376
+ "dependencies": {
1377
+ "agent-base": "^7.1.0",
1378
+ "debug": "^4.3.4"
1379
+ },
1380
+ "engines": {
1381
+ "node": ">= 14"
1382
+ }
1383
+ },
1384
+ "node_modules/https-proxy-agent": {
1385
+ "version": "7.0.6",
1386
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
1387
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
1388
+ "dev": true,
1389
+ "license": "MIT",
1390
+ "dependencies": {
1391
+ "agent-base": "^7.1.2",
1392
+ "debug": "4"
1393
+ },
1394
+ "engines": {
1395
+ "node": ">= 14"
1396
+ }
1397
+ },
1398
+ "node_modules/ignore": {
1399
+ "version": "5.3.2",
1400
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
1401
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
1402
+ "dev": true,
1403
+ "license": "MIT",
1404
+ "engines": {
1405
+ "node": ">= 4"
1406
+ }
1407
+ },
1408
+ "node_modules/immediate": {
1409
+ "version": "3.0.6",
1410
+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
1411
+ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
1412
+ "dev": true,
1413
+ "license": "MIT"
1414
+ },
1415
+ "node_modules/import-fresh": {
1416
+ "version": "3.3.1",
1417
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
1418
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
1419
+ "dev": true,
1420
+ "license": "MIT",
1421
+ "dependencies": {
1422
+ "parent-module": "^1.0.0",
1423
+ "resolve-from": "^4.0.0"
1424
+ },
1425
+ "engines": {
1426
+ "node": ">=6"
1427
+ },
1428
+ "funding": {
1429
+ "url": "https://github.com/sponsors/sindresorhus"
1430
+ }
1431
+ },
1432
+ "node_modules/imurmurhash": {
1433
+ "version": "0.1.4",
1434
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1435
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1436
+ "dev": true,
1437
+ "license": "MIT",
1438
+ "engines": {
1439
+ "node": ">=0.8.19"
1440
+ }
1441
+ },
1442
+ "node_modules/inflight": {
1443
+ "version": "1.0.6",
1444
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1445
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
1446
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
1447
+ "dev": true,
1448
+ "license": "ISC",
1449
+ "dependencies": {
1450
+ "once": "^1.3.0",
1451
+ "wrappy": "1"
1452
+ }
1453
+ },
1454
+ "node_modules/inherits": {
1455
+ "version": "2.0.4",
1456
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1457
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1458
+ "dev": true,
1459
+ "license": "ISC"
1460
+ },
1461
+ "node_modules/is-binary-path": {
1462
+ "version": "2.1.0",
1463
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1464
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1465
+ "dev": true,
1466
+ "license": "MIT",
1467
+ "dependencies": {
1468
+ "binary-extensions": "^2.0.0"
1469
+ },
1470
+ "engines": {
1471
+ "node": ">=8"
1472
+ }
1473
+ },
1474
+ "node_modules/is-extglob": {
1475
+ "version": "2.1.1",
1476
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1477
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1478
+ "dev": true,
1479
+ "license": "MIT",
1480
+ "engines": {
1481
+ "node": ">=0.10.0"
1482
+ }
1483
+ },
1484
+ "node_modules/is-fullwidth-code-point": {
1485
+ "version": "3.0.0",
1486
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1487
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1488
+ "dev": true,
1489
+ "license": "MIT",
1490
+ "engines": {
1491
+ "node": ">=8"
1492
+ }
1493
+ },
1494
+ "node_modules/is-glob": {
1495
+ "version": "4.0.3",
1496
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1497
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1498
+ "dev": true,
1499
+ "license": "MIT",
1500
+ "dependencies": {
1501
+ "is-extglob": "^2.1.1"
1502
+ },
1503
+ "engines": {
1504
+ "node": ">=0.10.0"
1505
+ }
1506
+ },
1507
+ "node_modules/is-interactive": {
1508
+ "version": "2.0.0",
1509
+ "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
1510
+ "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
1511
+ "dev": true,
1512
+ "license": "MIT",
1513
+ "engines": {
1514
+ "node": ">=12"
1515
+ },
1516
+ "funding": {
1517
+ "url": "https://github.com/sponsors/sindresorhus"
1518
+ }
1519
+ },
1520
+ "node_modules/is-number": {
1521
+ "version": "7.0.0",
1522
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1523
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1524
+ "dev": true,
1525
+ "license": "MIT",
1526
+ "engines": {
1527
+ "node": ">=0.12.0"
1528
+ }
1529
+ },
1530
+ "node_modules/is-plain-obj": {
1531
+ "version": "2.1.0",
1532
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
1533
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
1534
+ "dev": true,
1535
+ "license": "MIT",
1536
+ "engines": {
1537
+ "node": ">=8"
1538
+ }
1539
+ },
1540
+ "node_modules/is-unicode-supported": {
1541
+ "version": "0.1.0",
1542
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
1543
+ "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
1544
+ "dev": true,
1545
+ "license": "MIT",
1546
+ "engines": {
1547
+ "node": ">=10"
1548
+ },
1549
+ "funding": {
1550
+ "url": "https://github.com/sponsors/sindresorhus"
1551
+ }
1552
+ },
1553
+ "node_modules/isarray": {
1554
+ "version": "1.0.0",
1555
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
1556
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
1557
+ "dev": true,
1558
+ "license": "MIT"
1559
+ },
1560
+ "node_modules/isexe": {
1561
+ "version": "2.0.0",
1562
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1563
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1564
+ "dev": true,
1565
+ "license": "ISC"
1566
+ },
1567
+ "node_modules/istanbul-lib-coverage": {
1568
+ "version": "3.2.2",
1569
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
1570
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
1571
+ "dev": true,
1572
+ "license": "BSD-3-Clause",
1573
+ "engines": {
1574
+ "node": ">=8"
1575
+ }
1576
+ },
1577
+ "node_modules/istanbul-lib-report": {
1578
+ "version": "3.0.1",
1579
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
1580
+ "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
1581
+ "dev": true,
1582
+ "license": "BSD-3-Clause",
1583
+ "dependencies": {
1584
+ "istanbul-lib-coverage": "^3.0.0",
1585
+ "make-dir": "^4.0.0",
1586
+ "supports-color": "^7.1.0"
1587
+ },
1588
+ "engines": {
1589
+ "node": ">=10"
1590
+ }
1591
+ },
1592
+ "node_modules/istanbul-lib-report/node_modules/supports-color": {
1593
+ "version": "7.2.0",
1594
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
1595
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
1596
+ "dev": true,
1597
+ "license": "MIT",
1598
+ "dependencies": {
1599
+ "has-flag": "^4.0.0"
1600
+ },
1601
+ "engines": {
1602
+ "node": ">=8"
1603
+ }
1604
+ },
1605
+ "node_modules/istanbul-reports": {
1606
+ "version": "3.2.0",
1607
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz",
1608
+ "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==",
1609
+ "dev": true,
1610
+ "license": "BSD-3-Clause",
1611
+ "dependencies": {
1612
+ "html-escaper": "^2.0.0",
1613
+ "istanbul-lib-report": "^3.0.0"
1614
+ },
1615
+ "engines": {
1616
+ "node": ">=8"
1617
+ }
1618
+ },
1619
+ "node_modules/jackspeak": {
1620
+ "version": "3.4.3",
1621
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
1622
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
1623
+ "dev": true,
1624
+ "license": "BlueOak-1.0.0",
1625
+ "dependencies": {
1626
+ "@isaacs/cliui": "^8.0.2"
1627
+ },
1628
+ "funding": {
1629
+ "url": "https://github.com/sponsors/isaacs"
1630
+ },
1631
+ "optionalDependencies": {
1632
+ "@pkgjs/parseargs": "^0.11.0"
1633
+ }
1634
+ },
1635
+ "node_modules/js-yaml": {
1636
+ "version": "4.1.1",
1637
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
1638
+ "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
1639
+ "dev": true,
1640
+ "license": "MIT",
1641
+ "dependencies": {
1642
+ "argparse": "^2.0.1"
1643
+ },
1644
+ "bin": {
1645
+ "js-yaml": "bin/js-yaml.js"
1646
+ }
1647
+ },
1648
+ "node_modules/json-buffer": {
1649
+ "version": "3.0.1",
1650
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
1651
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1652
+ "dev": true,
1653
+ "license": "MIT"
1654
+ },
1655
+ "node_modules/json-schema-traverse": {
1656
+ "version": "0.4.1",
1657
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1658
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1659
+ "dev": true,
1660
+ "license": "MIT"
1661
+ },
1662
+ "node_modules/json-stable-stringify-without-jsonify": {
1663
+ "version": "1.0.1",
1664
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1665
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1666
+ "dev": true,
1667
+ "license": "MIT"
1668
+ },
1669
+ "node_modules/jszip": {
1670
+ "version": "3.10.1",
1671
+ "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
1672
+ "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
1673
+ "dev": true,
1674
+ "license": "(MIT OR GPL-3.0-or-later)",
1675
+ "dependencies": {
1676
+ "lie": "~3.3.0",
1677
+ "pako": "~1.0.2",
1678
+ "readable-stream": "~2.3.6",
1679
+ "setimmediate": "^1.0.5"
1680
+ }
1681
+ },
1682
+ "node_modules/keyv": {
1683
+ "version": "4.5.4",
1684
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
1685
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1686
+ "dev": true,
1687
+ "license": "MIT",
1688
+ "dependencies": {
1689
+ "json-buffer": "3.0.1"
1690
+ }
1691
+ },
1692
+ "node_modules/levn": {
1693
+ "version": "0.4.1",
1694
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1695
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1696
+ "dev": true,
1697
+ "license": "MIT",
1698
+ "dependencies": {
1699
+ "prelude-ls": "^1.2.1",
1700
+ "type-check": "~0.4.0"
1701
+ },
1702
+ "engines": {
1703
+ "node": ">= 0.8.0"
1704
+ }
1705
+ },
1706
+ "node_modules/lie": {
1707
+ "version": "3.3.0",
1708
+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
1709
+ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
1710
+ "dev": true,
1711
+ "license": "MIT",
1712
+ "dependencies": {
1713
+ "immediate": "~3.0.5"
1714
+ }
1715
+ },
1716
+ "node_modules/locate-path": {
1717
+ "version": "6.0.0",
1718
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
1719
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
1720
+ "dev": true,
1721
+ "license": "MIT",
1722
+ "dependencies": {
1723
+ "p-locate": "^5.0.0"
1724
+ },
1725
+ "engines": {
1726
+ "node": ">=10"
1727
+ },
1728
+ "funding": {
1729
+ "url": "https://github.com/sponsors/sindresorhus"
1730
+ }
1731
+ },
1732
+ "node_modules/lodash.merge": {
1733
+ "version": "4.6.2",
1734
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
1735
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
1736
+ "dev": true,
1737
+ "license": "MIT"
1738
+ },
1739
+ "node_modules/log-symbols": {
1740
+ "version": "4.1.0",
1741
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
1742
+ "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
1743
+ "dev": true,
1744
+ "license": "MIT",
1745
+ "dependencies": {
1746
+ "chalk": "^4.1.0",
1747
+ "is-unicode-supported": "^0.1.0"
1748
+ },
1749
+ "engines": {
1750
+ "node": ">=10"
1751
+ },
1752
+ "funding": {
1753
+ "url": "https://github.com/sponsors/sindresorhus"
1754
+ }
1755
+ },
1756
+ "node_modules/lru-cache": {
1757
+ "version": "10.4.3",
1758
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
1759
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
1760
+ "dev": true,
1761
+ "license": "ISC"
1762
+ },
1763
+ "node_modules/make-dir": {
1764
+ "version": "4.0.0",
1765
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
1766
+ "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
1767
+ "dev": true,
1768
+ "license": "MIT",
1769
+ "dependencies": {
1770
+ "semver": "^7.5.3"
1771
+ },
1772
+ "engines": {
1773
+ "node": ">=10"
1774
+ },
1775
+ "funding": {
1776
+ "url": "https://github.com/sponsors/sindresorhus"
1777
+ }
1778
+ },
1779
+ "node_modules/mimic-function": {
1780
+ "version": "5.0.1",
1781
+ "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
1782
+ "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
1783
+ "dev": true,
1784
+ "license": "MIT",
1785
+ "engines": {
1786
+ "node": ">=18"
1787
+ },
1788
+ "funding": {
1789
+ "url": "https://github.com/sponsors/sindresorhus"
1790
+ }
1791
+ },
1792
+ "node_modules/minimatch": {
1793
+ "version": "9.0.5",
1794
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
1795
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
1796
+ "dev": true,
1797
+ "license": "ISC",
1798
+ "dependencies": {
1799
+ "brace-expansion": "^2.0.1"
1800
+ },
1801
+ "engines": {
1802
+ "node": ">=16 || 14 >=14.17"
1803
+ },
1804
+ "funding": {
1805
+ "url": "https://github.com/sponsors/isaacs"
1806
+ }
1807
+ },
1808
+ "node_modules/minipass": {
1809
+ "version": "7.1.2",
1810
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
1811
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
1812
+ "dev": true,
1813
+ "license": "ISC",
1814
+ "engines": {
1815
+ "node": ">=16 || 14 >=14.17"
1816
+ }
1817
+ },
1818
+ "node_modules/mocha": {
1819
+ "version": "11.7.2",
1820
+ "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.2.tgz",
1821
+ "integrity": "sha512-lkqVJPmqqG/w5jmmFtiRvtA2jkDyNVUcefFJKb2uyX4dekk8Okgqop3cgbFiaIvj8uCRJVTP5x9dfxGyXm2jvQ==",
1822
+ "dev": true,
1823
+ "license": "MIT",
1824
+ "dependencies": {
1825
+ "browser-stdout": "^1.3.1",
1826
+ "chokidar": "^4.0.1",
1827
+ "debug": "^4.3.5",
1828
+ "diff": "^7.0.0",
1829
+ "escape-string-regexp": "^4.0.0",
1830
+ "find-up": "^5.0.0",
1831
+ "glob": "^10.4.5",
1832
+ "he": "^1.2.0",
1833
+ "js-yaml": "^4.1.0",
1834
+ "log-symbols": "^4.1.0",
1835
+ "minimatch": "^9.0.5",
1836
+ "ms": "^2.1.3",
1837
+ "picocolors": "^1.1.1",
1838
+ "serialize-javascript": "^6.0.2",
1839
+ "strip-json-comments": "^3.1.1",
1840
+ "supports-color": "^8.1.1",
1841
+ "workerpool": "^9.2.0",
1842
+ "yargs": "^17.7.2",
1843
+ "yargs-parser": "^21.1.1",
1844
+ "yargs-unparser": "^2.0.0"
1845
+ },
1846
+ "bin": {
1847
+ "_mocha": "bin/_mocha",
1848
+ "mocha": "bin/mocha.js"
1849
+ },
1850
+ "engines": {
1851
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1852
+ }
1853
+ },
1854
+ "node_modules/mocha/node_modules/chokidar": {
1855
+ "version": "4.0.3",
1856
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
1857
+ "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
1858
+ "dev": true,
1859
+ "license": "MIT",
1860
+ "dependencies": {
1861
+ "readdirp": "^4.0.1"
1862
+ },
1863
+ "engines": {
1864
+ "node": ">= 14.16.0"
1865
+ },
1866
+ "funding": {
1867
+ "url": "https://paulmillr.com/funding/"
1868
+ }
1869
+ },
1870
+ "node_modules/mocha/node_modules/readdirp": {
1871
+ "version": "4.1.2",
1872
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
1873
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
1874
+ "dev": true,
1875
+ "license": "MIT",
1876
+ "engines": {
1877
+ "node": ">= 14.18.0"
1878
+ },
1879
+ "funding": {
1880
+ "type": "individual",
1881
+ "url": "https://paulmillr.com/funding/"
1882
+ }
1883
+ },
1884
+ "node_modules/mocha/node_modules/supports-color": {
1885
+ "version": "8.1.1",
1886
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
1887
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
1888
+ "dev": true,
1889
+ "license": "MIT",
1890
+ "dependencies": {
1891
+ "has-flag": "^4.0.0"
1892
+ },
1893
+ "engines": {
1894
+ "node": ">=10"
1895
+ },
1896
+ "funding": {
1897
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
1898
+ }
1899
+ },
1900
+ "node_modules/ms": {
1901
+ "version": "2.1.3",
1902
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1903
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1904
+ "dev": true,
1905
+ "license": "MIT"
1906
+ },
1907
+ "node_modules/natural-compare": {
1908
+ "version": "1.4.0",
1909
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
1910
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
1911
+ "dev": true,
1912
+ "license": "MIT"
1913
+ },
1914
+ "node_modules/normalize-path": {
1915
+ "version": "3.0.0",
1916
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1917
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1918
+ "dev": true,
1919
+ "license": "MIT",
1920
+ "engines": {
1921
+ "node": ">=0.10.0"
1922
+ }
1923
+ },
1924
+ "node_modules/once": {
1925
+ "version": "1.4.0",
1926
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1927
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1928
+ "dev": true,
1929
+ "license": "ISC",
1930
+ "dependencies": {
1931
+ "wrappy": "1"
1932
+ }
1933
+ },
1934
+ "node_modules/onetime": {
1935
+ "version": "7.0.0",
1936
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
1937
+ "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
1938
+ "dev": true,
1939
+ "license": "MIT",
1940
+ "dependencies": {
1941
+ "mimic-function": "^5.0.0"
1942
+ },
1943
+ "engines": {
1944
+ "node": ">=18"
1945
+ },
1946
+ "funding": {
1947
+ "url": "https://github.com/sponsors/sindresorhus"
1948
+ }
1949
+ },
1950
+ "node_modules/optionator": {
1951
+ "version": "0.9.4",
1952
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
1953
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
1954
+ "dev": true,
1955
+ "license": "MIT",
1956
+ "dependencies": {
1957
+ "deep-is": "^0.1.3",
1958
+ "fast-levenshtein": "^2.0.6",
1959
+ "levn": "^0.4.1",
1960
+ "prelude-ls": "^1.2.1",
1961
+ "type-check": "^0.4.0",
1962
+ "word-wrap": "^1.2.5"
1963
+ },
1964
+ "engines": {
1965
+ "node": ">= 0.8.0"
1966
+ }
1967
+ },
1968
+ "node_modules/ora": {
1969
+ "version": "8.2.0",
1970
+ "resolved": "https://registry.npmjs.org/ora/-/ora-8.2.0.tgz",
1971
+ "integrity": "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==",
1972
+ "dev": true,
1973
+ "license": "MIT",
1974
+ "dependencies": {
1975
+ "chalk": "^5.3.0",
1976
+ "cli-cursor": "^5.0.0",
1977
+ "cli-spinners": "^2.9.2",
1978
+ "is-interactive": "^2.0.0",
1979
+ "is-unicode-supported": "^2.0.0",
1980
+ "log-symbols": "^6.0.0",
1981
+ "stdin-discarder": "^0.2.2",
1982
+ "string-width": "^7.2.0",
1983
+ "strip-ansi": "^7.1.0"
1984
+ },
1985
+ "engines": {
1986
+ "node": ">=18"
1987
+ },
1988
+ "funding": {
1989
+ "url": "https://github.com/sponsors/sindresorhus"
1990
+ }
1991
+ },
1992
+ "node_modules/ora/node_modules/chalk": {
1993
+ "version": "5.6.2",
1994
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
1995
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
1996
+ "dev": true,
1997
+ "license": "MIT",
1998
+ "engines": {
1999
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
2000
+ },
2001
+ "funding": {
2002
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2003
+ }
2004
+ },
2005
+ "node_modules/ora/node_modules/emoji-regex": {
2006
+ "version": "10.5.0",
2007
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.5.0.tgz",
2008
+ "integrity": "sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==",
2009
+ "dev": true,
2010
+ "license": "MIT"
2011
+ },
2012
+ "node_modules/ora/node_modules/is-unicode-supported": {
2013
+ "version": "2.1.0",
2014
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
2015
+ "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
2016
+ "dev": true,
2017
+ "license": "MIT",
2018
+ "engines": {
2019
+ "node": ">=18"
2020
+ },
2021
+ "funding": {
2022
+ "url": "https://github.com/sponsors/sindresorhus"
2023
+ }
2024
+ },
2025
+ "node_modules/ora/node_modules/log-symbols": {
2026
+ "version": "6.0.0",
2027
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
2028
+ "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
2029
+ "dev": true,
2030
+ "license": "MIT",
2031
+ "dependencies": {
2032
+ "chalk": "^5.3.0",
2033
+ "is-unicode-supported": "^1.3.0"
2034
+ },
2035
+ "engines": {
2036
+ "node": ">=18"
2037
+ },
2038
+ "funding": {
2039
+ "url": "https://github.com/sponsors/sindresorhus"
2040
+ }
2041
+ },
2042
+ "node_modules/ora/node_modules/log-symbols/node_modules/is-unicode-supported": {
2043
+ "version": "1.3.0",
2044
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
2045
+ "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
2046
+ "dev": true,
2047
+ "license": "MIT",
2048
+ "engines": {
2049
+ "node": ">=12"
2050
+ },
2051
+ "funding": {
2052
+ "url": "https://github.com/sponsors/sindresorhus"
2053
+ }
2054
+ },
2055
+ "node_modules/ora/node_modules/string-width": {
2056
+ "version": "7.2.0",
2057
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
2058
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
2059
+ "dev": true,
2060
+ "license": "MIT",
2061
+ "dependencies": {
2062
+ "emoji-regex": "^10.3.0",
2063
+ "get-east-asian-width": "^1.0.0",
2064
+ "strip-ansi": "^7.1.0"
2065
+ },
2066
+ "engines": {
2067
+ "node": ">=18"
2068
+ },
2069
+ "funding": {
2070
+ "url": "https://github.com/sponsors/sindresorhus"
2071
+ }
2072
+ },
2073
+ "node_modules/p-limit": {
2074
+ "version": "3.1.0",
2075
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2076
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2077
+ "dev": true,
2078
+ "license": "MIT",
2079
+ "dependencies": {
2080
+ "yocto-queue": "^0.1.0"
2081
+ },
2082
+ "engines": {
2083
+ "node": ">=10"
2084
+ },
2085
+ "funding": {
2086
+ "url": "https://github.com/sponsors/sindresorhus"
2087
+ }
2088
+ },
2089
+ "node_modules/p-locate": {
2090
+ "version": "5.0.0",
2091
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2092
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2093
+ "dev": true,
2094
+ "license": "MIT",
2095
+ "dependencies": {
2096
+ "p-limit": "^3.0.2"
2097
+ },
2098
+ "engines": {
2099
+ "node": ">=10"
2100
+ },
2101
+ "funding": {
2102
+ "url": "https://github.com/sponsors/sindresorhus"
2103
+ }
2104
+ },
2105
+ "node_modules/package-json-from-dist": {
2106
+ "version": "1.0.1",
2107
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
2108
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
2109
+ "dev": true,
2110
+ "license": "BlueOak-1.0.0"
2111
+ },
2112
+ "node_modules/pako": {
2113
+ "version": "1.0.11",
2114
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
2115
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
2116
+ "dev": true,
2117
+ "license": "(MIT AND Zlib)"
2118
+ },
2119
+ "node_modules/parent-module": {
2120
+ "version": "1.0.1",
2121
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2122
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2123
+ "dev": true,
2124
+ "license": "MIT",
2125
+ "dependencies": {
2126
+ "callsites": "^3.0.0"
2127
+ },
2128
+ "engines": {
2129
+ "node": ">=6"
2130
+ }
2131
+ },
2132
+ "node_modules/path-exists": {
2133
+ "version": "4.0.0",
2134
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2135
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2136
+ "dev": true,
2137
+ "license": "MIT",
2138
+ "engines": {
2139
+ "node": ">=8"
2140
+ }
2141
+ },
2142
+ "node_modules/path-is-absolute": {
2143
+ "version": "1.0.1",
2144
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2145
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
2146
+ "dev": true,
2147
+ "license": "MIT",
2148
+ "engines": {
2149
+ "node": ">=0.10.0"
2150
+ }
2151
+ },
2152
+ "node_modules/path-key": {
2153
+ "version": "3.1.1",
2154
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2155
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2156
+ "dev": true,
2157
+ "license": "MIT",
2158
+ "engines": {
2159
+ "node": ">=8"
2160
+ }
2161
+ },
2162
+ "node_modules/path-scurry": {
2163
+ "version": "1.11.1",
2164
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
2165
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
2166
+ "dev": true,
2167
+ "license": "BlueOak-1.0.0",
2168
+ "dependencies": {
2169
+ "lru-cache": "^10.2.0",
2170
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2171
+ },
2172
+ "engines": {
2173
+ "node": ">=16 || 14 >=14.18"
2174
+ },
2175
+ "funding": {
2176
+ "url": "https://github.com/sponsors/isaacs"
2177
+ }
2178
+ },
2179
+ "node_modules/picocolors": {
2180
+ "version": "1.1.1",
2181
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2182
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2183
+ "dev": true,
2184
+ "license": "ISC"
2185
+ },
2186
+ "node_modules/picomatch": {
2187
+ "version": "2.3.1",
2188
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2189
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2190
+ "dev": true,
2191
+ "license": "MIT",
2192
+ "engines": {
2193
+ "node": ">=8.6"
2194
+ },
2195
+ "funding": {
2196
+ "url": "https://github.com/sponsors/jonschlinkert"
2197
+ }
2198
+ },
2199
+ "node_modules/prelude-ls": {
2200
+ "version": "1.2.1",
2201
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2202
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2203
+ "dev": true,
2204
+ "license": "MIT",
2205
+ "engines": {
2206
+ "node": ">= 0.8.0"
2207
+ }
2208
+ },
2209
+ "node_modules/process-nextick-args": {
2210
+ "version": "2.0.1",
2211
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
2212
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
2213
+ "dev": true,
2214
+ "license": "MIT"
2215
+ },
2216
+ "node_modules/punycode": {
2217
+ "version": "2.3.1",
2218
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2219
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2220
+ "dev": true,
2221
+ "license": "MIT",
2222
+ "engines": {
2223
+ "node": ">=6"
2224
+ }
2225
+ },
2226
+ "node_modules/randombytes": {
2227
+ "version": "2.1.0",
2228
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
2229
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
2230
+ "dev": true,
2231
+ "license": "MIT",
2232
+ "dependencies": {
2233
+ "safe-buffer": "^5.1.0"
2234
+ }
2235
+ },
2236
+ "node_modules/readable-stream": {
2237
+ "version": "2.3.8",
2238
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
2239
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
2240
+ "dev": true,
2241
+ "license": "MIT",
2242
+ "dependencies": {
2243
+ "core-util-is": "~1.0.0",
2244
+ "inherits": "~2.0.3",
2245
+ "isarray": "~1.0.0",
2246
+ "process-nextick-args": "~2.0.0",
2247
+ "safe-buffer": "~5.1.1",
2248
+ "string_decoder": "~1.1.1",
2249
+ "util-deprecate": "~1.0.1"
2250
+ }
2251
+ },
2252
+ "node_modules/readdirp": {
2253
+ "version": "3.6.0",
2254
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
2255
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
2256
+ "dev": true,
2257
+ "license": "MIT",
2258
+ "dependencies": {
2259
+ "picomatch": "^2.2.1"
2260
+ },
2261
+ "engines": {
2262
+ "node": ">=8.10.0"
2263
+ }
2264
+ },
2265
+ "node_modules/require-directory": {
2266
+ "version": "2.1.1",
2267
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
2268
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
2269
+ "dev": true,
2270
+ "license": "MIT",
2271
+ "engines": {
2272
+ "node": ">=0.10.0"
2273
+ }
2274
+ },
2275
+ "node_modules/resolve-from": {
2276
+ "version": "4.0.0",
2277
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2278
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2279
+ "dev": true,
2280
+ "license": "MIT",
2281
+ "engines": {
2282
+ "node": ">=4"
2283
+ }
2284
+ },
2285
+ "node_modules/restore-cursor": {
2286
+ "version": "5.1.0",
2287
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
2288
+ "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
2289
+ "dev": true,
2290
+ "license": "MIT",
2291
+ "dependencies": {
2292
+ "onetime": "^7.0.0",
2293
+ "signal-exit": "^4.1.0"
2294
+ },
2295
+ "engines": {
2296
+ "node": ">=18"
2297
+ },
2298
+ "funding": {
2299
+ "url": "https://github.com/sponsors/sindresorhus"
2300
+ }
2301
+ },
2302
+ "node_modules/safe-buffer": {
2303
+ "version": "5.1.2",
2304
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
2305
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
2306
+ "dev": true,
2307
+ "license": "MIT"
2308
+ },
2309
+ "node_modules/semver": {
2310
+ "version": "7.7.2",
2311
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
2312
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
2313
+ "dev": true,
2314
+ "license": "ISC",
2315
+ "bin": {
2316
+ "semver": "bin/semver.js"
2317
+ },
2318
+ "engines": {
2319
+ "node": ">=10"
2320
+ }
2321
+ },
2322
+ "node_modules/serialize-javascript": {
2323
+ "version": "6.0.2",
2324
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
2325
+ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
2326
+ "dev": true,
2327
+ "license": "BSD-3-Clause",
2328
+ "dependencies": {
2329
+ "randombytes": "^2.1.0"
2330
+ }
2331
+ },
2332
+ "node_modules/setimmediate": {
2333
+ "version": "1.0.5",
2334
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
2335
+ "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
2336
+ "dev": true,
2337
+ "license": "MIT"
2338
+ },
2339
+ "node_modules/shebang-command": {
2340
+ "version": "2.0.0",
2341
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2342
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2343
+ "dev": true,
2344
+ "license": "MIT",
2345
+ "dependencies": {
2346
+ "shebang-regex": "^3.0.0"
2347
+ },
2348
+ "engines": {
2349
+ "node": ">=8"
2350
+ }
2351
+ },
2352
+ "node_modules/shebang-regex": {
2353
+ "version": "3.0.0",
2354
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2355
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2356
+ "dev": true,
2357
+ "license": "MIT",
2358
+ "engines": {
2359
+ "node": ">=8"
2360
+ }
2361
+ },
2362
+ "node_modules/signal-exit": {
2363
+ "version": "4.1.0",
2364
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
2365
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2366
+ "dev": true,
2367
+ "license": "ISC",
2368
+ "engines": {
2369
+ "node": ">=14"
2370
+ },
2371
+ "funding": {
2372
+ "url": "https://github.com/sponsors/isaacs"
2373
+ }
2374
+ },
2375
+ "node_modules/stdin-discarder": {
2376
+ "version": "0.2.2",
2377
+ "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
2378
+ "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
2379
+ "dev": true,
2380
+ "license": "MIT",
2381
+ "engines": {
2382
+ "node": ">=18"
2383
+ },
2384
+ "funding": {
2385
+ "url": "https://github.com/sponsors/sindresorhus"
2386
+ }
2387
+ },
2388
+ "node_modules/string_decoder": {
2389
+ "version": "1.1.1",
2390
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
2391
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
2392
+ "dev": true,
2393
+ "license": "MIT",
2394
+ "dependencies": {
2395
+ "safe-buffer": "~5.1.0"
2396
+ }
2397
+ },
2398
+ "node_modules/string-width": {
2399
+ "version": "5.1.2",
2400
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
2401
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
2402
+ "dev": true,
2403
+ "license": "MIT",
2404
+ "dependencies": {
2405
+ "eastasianwidth": "^0.2.0",
2406
+ "emoji-regex": "^9.2.2",
2407
+ "strip-ansi": "^7.0.1"
2408
+ },
2409
+ "engines": {
2410
+ "node": ">=12"
2411
+ },
2412
+ "funding": {
2413
+ "url": "https://github.com/sponsors/sindresorhus"
2414
+ }
2415
+ },
2416
+ "node_modules/string-width-cjs": {
2417
+ "name": "string-width",
2418
+ "version": "4.2.3",
2419
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2420
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2421
+ "dev": true,
2422
+ "license": "MIT",
2423
+ "dependencies": {
2424
+ "emoji-regex": "^8.0.0",
2425
+ "is-fullwidth-code-point": "^3.0.0",
2426
+ "strip-ansi": "^6.0.1"
2427
+ },
2428
+ "engines": {
2429
+ "node": ">=8"
2430
+ }
2431
+ },
2432
+ "node_modules/string-width-cjs/node_modules/ansi-regex": {
2433
+ "version": "5.0.1",
2434
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2435
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2436
+ "dev": true,
2437
+ "license": "MIT",
2438
+ "engines": {
2439
+ "node": ">=8"
2440
+ }
2441
+ },
2442
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
2443
+ "version": "8.0.0",
2444
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2445
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2446
+ "dev": true,
2447
+ "license": "MIT"
2448
+ },
2449
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
2450
+ "version": "6.0.1",
2451
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2452
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2453
+ "dev": true,
2454
+ "license": "MIT",
2455
+ "dependencies": {
2456
+ "ansi-regex": "^5.0.1"
2457
+ },
2458
+ "engines": {
2459
+ "node": ">=8"
2460
+ }
2461
+ },
2462
+ "node_modules/strip-ansi": {
2463
+ "version": "7.1.2",
2464
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
2465
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
2466
+ "dev": true,
2467
+ "license": "MIT",
2468
+ "dependencies": {
2469
+ "ansi-regex": "^6.0.1"
2470
+ },
2471
+ "engines": {
2472
+ "node": ">=12"
2473
+ },
2474
+ "funding": {
2475
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2476
+ }
2477
+ },
2478
+ "node_modules/strip-ansi-cjs": {
2479
+ "name": "strip-ansi",
2480
+ "version": "6.0.1",
2481
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2482
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2483
+ "dev": true,
2484
+ "license": "MIT",
2485
+ "dependencies": {
2486
+ "ansi-regex": "^5.0.1"
2487
+ },
2488
+ "engines": {
2489
+ "node": ">=8"
2490
+ }
2491
+ },
2492
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
2493
+ "version": "5.0.1",
2494
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2495
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2496
+ "dev": true,
2497
+ "license": "MIT",
2498
+ "engines": {
2499
+ "node": ">=8"
2500
+ }
2501
+ },
2502
+ "node_modules/strip-json-comments": {
2503
+ "version": "3.1.1",
2504
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2505
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2506
+ "dev": true,
2507
+ "license": "MIT",
2508
+ "engines": {
2509
+ "node": ">=8"
2510
+ },
2511
+ "funding": {
2512
+ "url": "https://github.com/sponsors/sindresorhus"
2513
+ }
2514
+ },
2515
+ "node_modules/supports-color": {
2516
+ "version": "9.4.0",
2517
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
2518
+ "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==",
2519
+ "dev": true,
2520
+ "license": "MIT",
2521
+ "engines": {
2522
+ "node": ">=12"
2523
+ },
2524
+ "funding": {
2525
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
2526
+ }
2527
+ },
2528
+ "node_modules/tapable": {
2529
+ "version": "2.2.3",
2530
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.3.tgz",
2531
+ "integrity": "sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==",
2532
+ "dev": true,
2533
+ "license": "MIT",
2534
+ "engines": {
2535
+ "node": ">=6"
2536
+ },
2537
+ "funding": {
2538
+ "type": "opencollective",
2539
+ "url": "https://opencollective.com/webpack"
2540
+ }
2541
+ },
2542
+ "node_modules/test-exclude": {
2543
+ "version": "6.0.0",
2544
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
2545
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
2546
+ "dev": true,
2547
+ "license": "ISC",
2548
+ "dependencies": {
2549
+ "@istanbuljs/schema": "^0.1.2",
2550
+ "glob": "^7.1.4",
2551
+ "minimatch": "^3.0.4"
2552
+ },
2553
+ "engines": {
2554
+ "node": ">=8"
2555
+ }
2556
+ },
2557
+ "node_modules/test-exclude/node_modules/brace-expansion": {
2558
+ "version": "1.1.12",
2559
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
2560
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
2561
+ "dev": true,
2562
+ "license": "MIT",
2563
+ "dependencies": {
2564
+ "balanced-match": "^1.0.0",
2565
+ "concat-map": "0.0.1"
2566
+ }
2567
+ },
2568
+ "node_modules/test-exclude/node_modules/glob": {
2569
+ "version": "7.2.3",
2570
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2571
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2572
+ "deprecated": "Glob versions prior to v9 are no longer supported",
2573
+ "dev": true,
2574
+ "license": "ISC",
2575
+ "dependencies": {
2576
+ "fs.realpath": "^1.0.0",
2577
+ "inflight": "^1.0.4",
2578
+ "inherits": "2",
2579
+ "minimatch": "^3.1.1",
2580
+ "once": "^1.3.0",
2581
+ "path-is-absolute": "^1.0.0"
2582
+ },
2583
+ "engines": {
2584
+ "node": "*"
2585
+ },
2586
+ "funding": {
2587
+ "url": "https://github.com/sponsors/isaacs"
2588
+ }
2589
+ },
2590
+ "node_modules/test-exclude/node_modules/minimatch": {
2591
+ "version": "3.1.2",
2592
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2593
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2594
+ "dev": true,
2595
+ "license": "ISC",
2596
+ "dependencies": {
2597
+ "brace-expansion": "^1.1.7"
2598
+ },
2599
+ "engines": {
2600
+ "node": "*"
2601
+ }
2602
+ },
2603
+ "node_modules/to-regex-range": {
2604
+ "version": "5.0.1",
2605
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2606
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2607
+ "dev": true,
2608
+ "license": "MIT",
2609
+ "dependencies": {
2610
+ "is-number": "^7.0.0"
2611
+ },
2612
+ "engines": {
2613
+ "node": ">=8.0"
2614
+ }
2615
+ },
2616
+ "node_modules/type-check": {
2617
+ "version": "0.4.0",
2618
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2619
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2620
+ "dev": true,
2621
+ "license": "MIT",
2622
+ "dependencies": {
2623
+ "prelude-ls": "^1.2.1"
2624
+ },
2625
+ "engines": {
2626
+ "node": ">= 0.8.0"
2627
+ }
2628
+ },
2629
+ "node_modules/undici-types": {
2630
+ "version": "6.21.0",
2631
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
2632
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
2633
+ "dev": true,
2634
+ "license": "MIT"
2635
+ },
2636
+ "node_modules/uri-js": {
2637
+ "version": "4.4.1",
2638
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2639
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2640
+ "dev": true,
2641
+ "license": "BSD-2-Clause",
2642
+ "dependencies": {
2643
+ "punycode": "^2.1.0"
2644
+ }
2645
+ },
2646
+ "node_modules/util-deprecate": {
2647
+ "version": "1.0.2",
2648
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2649
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2650
+ "dev": true,
2651
+ "license": "MIT"
2652
+ },
2653
+ "node_modules/v8-to-istanbul": {
2654
+ "version": "9.3.0",
2655
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
2656
+ "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
2657
+ "dev": true,
2658
+ "license": "ISC",
2659
+ "dependencies": {
2660
+ "@jridgewell/trace-mapping": "^0.3.12",
2661
+ "@types/istanbul-lib-coverage": "^2.0.1",
2662
+ "convert-source-map": "^2.0.0"
2663
+ },
2664
+ "engines": {
2665
+ "node": ">=10.12.0"
2666
+ }
2667
+ },
2668
+ "node_modules/which": {
2669
+ "version": "2.0.2",
2670
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2671
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2672
+ "dev": true,
2673
+ "license": "ISC",
2674
+ "dependencies": {
2675
+ "isexe": "^2.0.0"
2676
+ },
2677
+ "bin": {
2678
+ "node-which": "bin/node-which"
2679
+ },
2680
+ "engines": {
2681
+ "node": ">= 8"
2682
+ }
2683
+ },
2684
+ "node_modules/word-wrap": {
2685
+ "version": "1.2.5",
2686
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
2687
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
2688
+ "dev": true,
2689
+ "license": "MIT",
2690
+ "engines": {
2691
+ "node": ">=0.10.0"
2692
+ }
2693
+ },
2694
+ "node_modules/workerpool": {
2695
+ "version": "9.3.4",
2696
+ "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-9.3.4.tgz",
2697
+ "integrity": "sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==",
2698
+ "dev": true,
2699
+ "license": "Apache-2.0"
2700
+ },
2701
+ "node_modules/wrap-ansi": {
2702
+ "version": "8.1.0",
2703
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
2704
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
2705
+ "dev": true,
2706
+ "license": "MIT",
2707
+ "dependencies": {
2708
+ "ansi-styles": "^6.1.0",
2709
+ "string-width": "^5.0.1",
2710
+ "strip-ansi": "^7.0.1"
2711
+ },
2712
+ "engines": {
2713
+ "node": ">=12"
2714
+ },
2715
+ "funding": {
2716
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2717
+ }
2718
+ },
2719
+ "node_modules/wrap-ansi-cjs": {
2720
+ "name": "wrap-ansi",
2721
+ "version": "7.0.0",
2722
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
2723
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
2724
+ "dev": true,
2725
+ "license": "MIT",
2726
+ "dependencies": {
2727
+ "ansi-styles": "^4.0.0",
2728
+ "string-width": "^4.1.0",
2729
+ "strip-ansi": "^6.0.0"
2730
+ },
2731
+ "engines": {
2732
+ "node": ">=10"
2733
+ },
2734
+ "funding": {
2735
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2736
+ }
2737
+ },
2738
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
2739
+ "version": "5.0.1",
2740
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2741
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2742
+ "dev": true,
2743
+ "license": "MIT",
2744
+ "engines": {
2745
+ "node": ">=8"
2746
+ }
2747
+ },
2748
+ "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
2749
+ "version": "8.0.0",
2750
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2751
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2752
+ "dev": true,
2753
+ "license": "MIT"
2754
+ },
2755
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
2756
+ "version": "4.2.3",
2757
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2758
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2759
+ "dev": true,
2760
+ "license": "MIT",
2761
+ "dependencies": {
2762
+ "emoji-regex": "^8.0.0",
2763
+ "is-fullwidth-code-point": "^3.0.0",
2764
+ "strip-ansi": "^6.0.1"
2765
+ },
2766
+ "engines": {
2767
+ "node": ">=8"
2768
+ }
2769
+ },
2770
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
2771
+ "version": "6.0.1",
2772
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2773
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2774
+ "dev": true,
2775
+ "license": "MIT",
2776
+ "dependencies": {
2777
+ "ansi-regex": "^5.0.1"
2778
+ },
2779
+ "engines": {
2780
+ "node": ">=8"
2781
+ }
2782
+ },
2783
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
2784
+ "version": "6.2.3",
2785
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
2786
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
2787
+ "dev": true,
2788
+ "license": "MIT",
2789
+ "engines": {
2790
+ "node": ">=12"
2791
+ },
2792
+ "funding": {
2793
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2794
+ }
2795
+ },
2796
+ "node_modules/wrappy": {
2797
+ "version": "1.0.2",
2798
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2799
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
2800
+ "dev": true,
2801
+ "license": "ISC"
2802
+ },
2803
+ "node_modules/y18n": {
2804
+ "version": "5.0.8",
2805
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
2806
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
2807
+ "dev": true,
2808
+ "license": "ISC",
2809
+ "engines": {
2810
+ "node": ">=10"
2811
+ }
2812
+ },
2813
+ "node_modules/yargs": {
2814
+ "version": "17.7.2",
2815
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
2816
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
2817
+ "dev": true,
2818
+ "license": "MIT",
2819
+ "dependencies": {
2820
+ "cliui": "^8.0.1",
2821
+ "escalade": "^3.1.1",
2822
+ "get-caller-file": "^2.0.5",
2823
+ "require-directory": "^2.1.1",
2824
+ "string-width": "^4.2.3",
2825
+ "y18n": "^5.0.5",
2826
+ "yargs-parser": "^21.1.1"
2827
+ },
2828
+ "engines": {
2829
+ "node": ">=12"
2830
+ }
2831
+ },
2832
+ "node_modules/yargs-parser": {
2833
+ "version": "21.1.1",
2834
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
2835
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
2836
+ "dev": true,
2837
+ "license": "ISC",
2838
+ "engines": {
2839
+ "node": ">=12"
2840
+ }
2841
+ },
2842
+ "node_modules/yargs-unparser": {
2843
+ "version": "2.0.0",
2844
+ "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
2845
+ "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
2846
+ "dev": true,
2847
+ "license": "MIT",
2848
+ "dependencies": {
2849
+ "camelcase": "^6.0.0",
2850
+ "decamelize": "^4.0.0",
2851
+ "flat": "^5.0.2",
2852
+ "is-plain-obj": "^2.1.0"
2853
+ },
2854
+ "engines": {
2855
+ "node": ">=10"
2856
+ }
2857
+ },
2858
+ "node_modules/yargs/node_modules/ansi-regex": {
2859
+ "version": "5.0.1",
2860
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2861
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2862
+ "dev": true,
2863
+ "license": "MIT",
2864
+ "engines": {
2865
+ "node": ">=8"
2866
+ }
2867
+ },
2868
+ "node_modules/yargs/node_modules/emoji-regex": {
2869
+ "version": "8.0.0",
2870
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2871
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2872
+ "dev": true,
2873
+ "license": "MIT"
2874
+ },
2875
+ "node_modules/yargs/node_modules/string-width": {
2876
+ "version": "4.2.3",
2877
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2878
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2879
+ "dev": true,
2880
+ "license": "MIT",
2881
+ "dependencies": {
2882
+ "emoji-regex": "^8.0.0",
2883
+ "is-fullwidth-code-point": "^3.0.0",
2884
+ "strip-ansi": "^6.0.1"
2885
+ },
2886
+ "engines": {
2887
+ "node": ">=8"
2888
+ }
2889
+ },
2890
+ "node_modules/yargs/node_modules/strip-ansi": {
2891
+ "version": "6.0.1",
2892
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2893
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2894
+ "dev": true,
2895
+ "license": "MIT",
2896
+ "dependencies": {
2897
+ "ansi-regex": "^5.0.1"
2898
+ },
2899
+ "engines": {
2900
+ "node": ">=8"
2901
+ }
2902
+ },
2903
+ "node_modules/yocto-queue": {
2904
+ "version": "0.1.0",
2905
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2906
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2907
+ "dev": true,
2908
+ "license": "MIT",
2909
+ "engines": {
2910
+ "node": ">=10"
2911
+ },
2912
+ "funding": {
2913
+ "url": "https://github.com/sponsors/sindresorhus"
2914
+ }
2915
+ }
2916
+ }
2917
+ }