qubicl-cli 0.1.0-dev.0 → 0.1.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 (91) hide show
  1. package/README.md +46 -21
  2. package/dist/SBOM.spdx.json +222 -0
  3. package/dist/THIRD_PARTY_NOTICES.txt +244 -0
  4. package/dist/assets/chromium-seccomp.json +181 -0
  5. package/dist/assets/computer/BROWSER_SKILLS_THIRD_PARTY_NOTICES.txt +23 -0
  6. package/dist/assets/computer/Dockerfile +191 -49
  7. package/dist/assets/computer/PLAYWRIGHT_THIRD_PARTY_NOTICES.txt +217 -0
  8. package/dist/assets/computer/SKILLS_THIRD_PARTY_NOTICES.txt +29 -0
  9. package/dist/assets/computer/THIRD_PARTY_NOTICES.txt +28 -0
  10. package/dist/assets/computer/WEB_THIRD_PARTY_NOTICES.txt +42 -0
  11. package/dist/assets/computer/browser-skills-requirements.txt +12 -0
  12. package/dist/assets/computer/chromium-wrapper.sh +12 -0
  13. package/dist/assets/computer/control.mjs +112 -52
  14. package/dist/assets/computer/entrypoint.sh +272 -35
  15. package/dist/assets/computer/libreoffice-registrymodifications.xcu +8 -0
  16. package/dist/assets/computer/manifests/browser.json +72 -0
  17. package/dist/assets/computer/manifests/computer.json +76 -0
  18. package/dist/assets/computer/manifests/file-system.json +42 -0
  19. package/dist/assets/computer/manifests/workstation.json +78 -0
  20. package/dist/assets/computer/node_modules/playwright-core/LICENSE +202 -0
  21. package/dist/assets/computer/node_modules/playwright-core/NOTICE +5 -0
  22. package/dist/assets/computer/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  23. package/dist/assets/computer/node_modules/playwright-core/browsers.json +75 -0
  24. package/dist/assets/computer/node_modules/playwright-core/index.js +17 -0
  25. package/dist/assets/computer/node_modules/playwright-core/index.mjs +28 -0
  26. package/dist/assets/computer/node_modules/playwright-core/lib/bootstrap.js +88 -0
  27. package/dist/assets/computer/node_modules/playwright-core/lib/coreBundle.js +74830 -0
  28. package/dist/assets/computer/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  29. package/dist/assets/computer/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  30. package/dist/assets/computer/node_modules/playwright-core/lib/webp_codec.LICENSE +173 -0
  31. package/dist/assets/computer/node_modules/playwright-core/lib/webp_codec.wasm +0 -0
  32. package/dist/assets/computer/node_modules/playwright-core/lib/xdg-open +1267 -0
  33. package/dist/assets/computer/node_modules/playwright-core/package.json +34 -0
  34. package/dist/assets/computer/skills/core/docx/LICENSE +21 -0
  35. package/dist/assets/computer/skills/core/docx/SKILL.md +21 -0
  36. package/dist/assets/computer/skills/core/docx/references/revisions-and-comments.md +88 -0
  37. package/dist/assets/computer/skills/core/docx/scripts/docx_comments.py +289 -0
  38. package/dist/assets/computer/skills/core/docx/scripts/docx_common.py +94 -0
  39. package/dist/assets/computer/skills/core/docx/scripts/docx_create.py +177 -0
  40. package/dist/assets/computer/skills/core/docx/scripts/docx_edit.py +250 -0
  41. package/dist/assets/computer/skills/core/docx/scripts/docx_read.py +149 -0
  42. package/dist/assets/computer/skills/core/docx/scripts/docx_revisions.py +147 -0
  43. package/dist/assets/computer/skills/core/docx/scripts/docx_template.py +70 -0
  44. package/dist/assets/computer/skills/core/docx/scripts/docx_validate.py +156 -0
  45. package/dist/assets/computer/skills/core/ocr-and-documents/LICENSE +21 -0
  46. package/dist/assets/computer/skills/core/ocr-and-documents/SKILL.md +24 -0
  47. package/dist/assets/computer/skills/core/ocr-and-documents/scripts/ocr_document.py +132 -0
  48. package/dist/assets/computer/skills/core/pdf/LICENSE +21 -0
  49. package/dist/assets/computer/skills/core/pdf/SKILL.md +25 -0
  50. package/dist/assets/computer/skills/core/pdf/references/forms.md +100 -0
  51. package/dist/assets/computer/skills/core/pdf/scripts/_raster.py +76 -0
  52. package/dist/assets/computer/skills/core/pdf/scripts/pdf_create.py +130 -0
  53. package/dist/assets/computer/skills/core/pdf/scripts/pdf_fill_form.py +97 -0
  54. package/dist/assets/computer/skills/core/pdf/scripts/pdf_form_layout.py +168 -0
  55. package/dist/assets/computer/skills/core/pdf/scripts/pdf_make_form.py +145 -0
  56. package/dist/assets/computer/skills/core/pdf/scripts/pdf_merge.py +50 -0
  57. package/dist/assets/computer/skills/core/pdf/scripts/pdf_meta.py +115 -0
  58. package/dist/assets/computer/skills/core/pdf/scripts/pdf_page_image.py +99 -0
  59. package/dist/assets/computer/skills/core/pdf/scripts/pdf_read.py +153 -0
  60. package/dist/assets/computer/skills/core/pdf/scripts/pdf_secure.py +71 -0
  61. package/dist/assets/computer/skills/core/pdf/scripts/pdf_split.py +84 -0
  62. package/dist/assets/computer/skills/core/pdf/scripts/pdf_stamp.py +143 -0
  63. package/dist/assets/computer/skills/core/pdf/scripts/pdf_watermark.py +51 -0
  64. package/dist/assets/computer/skills/core/plan/LICENSE +21 -0
  65. package/dist/assets/computer/skills/core/plan/SKILL.md +21 -0
  66. package/dist/assets/computer/skills/core/powerpoint/LICENSE +21 -0
  67. package/dist/assets/computer/skills/core/powerpoint/SKILL.md +18 -0
  68. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_create.py +214 -0
  69. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_edit.py +436 -0
  70. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_from_template.py +88 -0
  71. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_read.py +131 -0
  72. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_render.py +93 -0
  73. package/dist/assets/computer/skills/core/xlsx/LICENSE +21 -0
  74. package/dist/assets/computer/skills/core/xlsx/SKILL.md +22 -0
  75. package/dist/assets/computer/skills/core/xlsx/references/restructuring.md +71 -0
  76. package/dist/assets/computer/skills/core/xlsx/scripts/csv_to_xlsx.py +104 -0
  77. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_create.py +259 -0
  78. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_edit.py +263 -0
  79. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_read.py +160 -0
  80. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_recalc.py +110 -0
  81. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_restructure.py +337 -0
  82. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_to_csv.py +69 -0
  83. package/dist/assets/computer/skills/core-catalog.json +246 -0
  84. package/dist/assets/computer/skills-requirements.txt +18 -0
  85. package/dist/assets/computer/web-provider.py +592 -0
  86. package/dist/assets/computer/web-requirements.txt +37 -0
  87. package/dist/assets/gateway/Dockerfile +3 -1
  88. package/dist/assets/gateway/gateway.mjs +69 -40
  89. package/dist/assets/image-catalog.json +183 -0
  90. package/dist/qubicl.mjs +297 -167
  91. package/package.json +7 -7
@@ -0,0 +1,2179 @@
1
+ packages/playwright-core/lib/utilsBundle.js
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ The following npm packages are inlined into this bundle.
6
+
7
+ - @hono/node-server@1.19.14 (https://github.com/honojs/node-server)
8
+ - @modelcontextprotocol/sdk@1.29.0 (https://github.com/modelcontextprotocol/typescript-sdk)
9
+ - @sec-ant/readable-stream@0.4.1 (https://github.com/Sec-ant/readable-stream)
10
+ - agent-base@9.0.0 (https://github.com/TooTallNate/proxy-agents)
11
+ - ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
12
+ - ajv@8.20.0 (https://github.com/ajv-validator/ajv)
13
+ - ansi-colors@4.1.3 (https://github.com/doowb/ansi-colors)
14
+ - ansi-regex@5.0.1 (https://github.com/chalk/ansi-regex)
15
+ - anymatch@3.1.3 (https://github.com/micromatch/anymatch)
16
+ - balanced-match@4.0.4 (https://github.com/juliangruber/balanced-match)
17
+ - binary-extensions@2.3.0 (https://github.com/sindresorhus/binary-extensions)
18
+ - brace-expansion@5.0.7 (https://github.com/juliangruber/brace-expansion)
19
+ - braces@3.0.3 (https://github.com/micromatch/braces)
20
+ - buffer-crc32@1.0.0 (https://github.com/brianloveswords/buffer-crc32)
21
+ - buffer-from@1.1.2 (https://github.com/LinusU/buffer-from)
22
+ - bundle-name@4.1.0 (https://github.com/sindresorhus/bundle-name)
23
+ - bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
24
+ - chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
25
+ - colors@1.4.0 (https://github.com/Marak/colors.js)
26
+ - commander@15.0.0 (https://github.com/tj/commander.js)
27
+ - content-type@1.0.5 (https://github.com/jshttp/content-type)
28
+ - cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
29
+ - debug@4.4.3 (https://github.com/debug-js/debug)
30
+ - default-browser-id@5.0.1 (https://github.com/sindresorhus/default-browser-id)
31
+ - default-browser@5.5.0 (https://github.com/sindresorhus/default-browser)
32
+ - define-lazy-prop@3.0.0 (https://github.com/sindresorhus/define-lazy-prop)
33
+ - diff@9.0.0 (https://github.com/kpdecker/jsdiff)
34
+ - dotenv@17.4.2 (https://github.com/motdotla/dotenv)
35
+ - enquirer@2.4.1 (https://github.com/enquirer/enquirer)
36
+ - eventsource-parser@3.1.0 (https://github.com/rexxars/eventsource-parser)
37
+ - eventsource@3.0.7 (https://github.com/EventSource/eventsource)
38
+ - fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
39
+ - fast-uri@3.1.3 (https://github.com/fastify/fast-uri)
40
+ - fill-range@7.1.1 (https://github.com/jonschlinkert/fill-range)
41
+ - get-east-asian-width@1.6.0 (https://github.com/sindresorhus/get-east-asian-width)
42
+ - get-stream@9.0.1 (https://github.com/sindresorhus/get-stream)
43
+ - glob-parent@5.1.2 (https://github.com/gulpjs/glob-parent)
44
+ - graceful-fs@4.2.11 (https://github.com/isaacs/node-graceful-fs)
45
+ - has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
46
+ - https-proxy-agent@9.1.0 (https://github.com/TooTallNate/proxy-agents)
47
+ - ini@7.0.0 (https://github.com/npm/ini)
48
+ - ip-address@10.2.0 (https://github.com/beaugunderson/ip-address)
49
+ - is-binary-path@2.1.0 (https://github.com/sindresorhus/is-binary-path)
50
+ - is-docker@3.0.0 (https://github.com/sindresorhus/is-docker)
51
+ - is-extglob@2.1.1 (https://github.com/jonschlinkert/is-extglob)
52
+ - is-glob@4.0.3 (https://github.com/micromatch/is-glob)
53
+ - is-in-ssh@1.0.0 (https://github.com/sindresorhus/is-in-ssh)
54
+ - is-inside-container@1.0.0 (https://github.com/sindresorhus/is-inside-container)
55
+ - is-number@7.0.0 (https://github.com/jonschlinkert/is-number)
56
+ - is-stream@4.0.1 (https://github.com/sindresorhus/is-stream)
57
+ - is-wsl@3.1.1 (https://github.com/sindresorhus/is-wsl)
58
+ - isexe@2.0.0 (https://github.com/isaacs/isexe)
59
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
60
+ - json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
61
+ - json5@2.2.3 (https://github.com/json5/json5)
62
+ - mime@4.1.0 (https://github.com/broofa/mime)
63
+ - minimatch@10.2.5 (https://github.com/isaacs/minimatch)
64
+ - ms@2.1.3 (https://github.com/vercel/ms)
65
+ - normalize-path@3.0.0 (https://github.com/jonschlinkert/normalize-path)
66
+ - open@11.0.0 (https://github.com/sindresorhus/open)
67
+ - path-key@3.1.1 (https://github.com/sindresorhus/path-key)
68
+ - pend@1.2.0 (https://github.com/andrewrk/node-pend)
69
+ - picomatch@2.3.2 (https://github.com/micromatch/picomatch)
70
+ - pkce-challenge@5.0.1 (https://github.com/crouchcd/pkce-challenge)
71
+ - pngjs@7.0.0 (https://github.com/pngjs/pngjs)
72
+ - powershell-utils@0.1.0 (https://github.com/sindresorhus/powershell-utils)
73
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
74
+ - proxy-agent-negotiate@1.1.0 (https://github.com/TooTallNate/proxy-agents)
75
+ - proxy-from-env@2.1.0 (https://github.com/Rob--W/proxy-from-env)
76
+ - readdirp@3.6.0 (https://github.com/paulmillr/readdirp)
77
+ - retry@0.13.1 (https://github.com/tim-kos/node-retry)
78
+ - run-applescript@7.1.0 (https://github.com/sindresorhus/run-applescript)
79
+ - shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
80
+ - shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
81
+ - signal-exit@4.1.0 (https://github.com/tapjs/signal-exit)
82
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
83
+ - socks-proxy-agent@10.1.0 (https://github.com/TooTallNate/proxy-agents)
84
+ - socks@2.8.9 (https://github.com/JoshGlazebrook/socks)
85
+ - source-map-support@0.5.21 (https://github.com/evanw/node-source-map-support)
86
+ - source-map@0.6.1 (https://github.com/mozilla/source-map)
87
+ - strip-ansi@6.0.1 (https://github.com/chalk/strip-ansi)
88
+ - supports-color@7.2.0 (https://github.com/chalk/supports-color)
89
+ - to-regex-range@5.0.1 (https://github.com/micromatch/to-regex-range)
90
+ - which@2.0.2 (https://github.com/isaacs/node-which)
91
+ - ws@8.21.0 (https://github.com/websockets/ws)
92
+ - wsl-utils@0.3.1 (https://github.com/sindresorhus/wsl-utils)
93
+ - yaml@2.9.0 (https://github.com/eemeli/yaml)
94
+ - yauzl@3.4.0 (https://github.com/thejoshwolfe/yauzl)
95
+ - yazl@3.3.1 (https://github.com/thejoshwolfe/yazl)
96
+ - zod-to-json-schema@3.25.2 (https://github.com/StefanTerdell/zod-to-json-schema)
97
+ - zod@4.4.3 (https://github.com/colinhacks/zod)
98
+
99
+ %% @hono/node-server@1.19.14 NOTICES AND INFORMATION BEGIN HERE
100
+ =========================================
101
+ MIT License
102
+
103
+ Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
104
+
105
+ Permission is hereby granted, free of charge, to any person obtaining a copy
106
+ of this software and associated documentation files (the "Software"), to deal
107
+ in the Software without restriction, including without limitation the rights
108
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
109
+ copies of the Software, and to permit persons to whom the Software is
110
+ furnished to do so, subject to the following conditions:
111
+
112
+ The above copyright notice and this permission notice shall be included in all
113
+ copies or substantial portions of the Software.
114
+
115
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
116
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
117
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
118
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
119
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
120
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
121
+ SOFTWARE.
122
+ =========================================
123
+ END OF @hono/node-server@1.19.14 NOTICES AND INFORMATION
124
+
125
+ %% @modelcontextprotocol/sdk@1.29.0 NOTICES AND INFORMATION BEGIN HERE
126
+ =========================================
127
+ MIT License
128
+
129
+ Copyright (c) 2024 Anthropic, PBC
130
+
131
+ Permission is hereby granted, free of charge, to any person obtaining a copy
132
+ of this software and associated documentation files (the "Software"), to deal
133
+ in the Software without restriction, including without limitation the rights
134
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
135
+ copies of the Software, and to permit persons to whom the Software is
136
+ furnished to do so, subject to the following conditions:
137
+
138
+ The above copyright notice and this permission notice shall be included in all
139
+ copies or substantial portions of the Software.
140
+
141
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
142
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
143
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
144
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
145
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
146
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
147
+ SOFTWARE.
148
+ =========================================
149
+ END OF @modelcontextprotocol/sdk@1.29.0 NOTICES AND INFORMATION
150
+
151
+ %% @sec-ant/readable-stream@0.4.1 NOTICES AND INFORMATION BEGIN HERE
152
+ =========================================
153
+ MIT License
154
+
155
+ Copyright (c) 2022 Ze-Zheng Wu
156
+
157
+ Permission is hereby granted, free of charge, to any person obtaining a copy
158
+ of this software and associated documentation files (the "Software"), to deal
159
+ in the Software without restriction, including without limitation the rights
160
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
161
+ copies of the Software, and to permit persons to whom the Software is
162
+ furnished to do so, subject to the following conditions:
163
+
164
+ The above copyright notice and this permission notice shall be included in all
165
+ copies or substantial portions of the Software.
166
+
167
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
168
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
169
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
170
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
171
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
172
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
173
+ SOFTWARE.
174
+ =========================================
175
+ END OF @sec-ant/readable-stream@0.4.1 NOTICES AND INFORMATION
176
+
177
+ %% agent-base@9.0.0 NOTICES AND INFORMATION BEGIN HERE
178
+ =========================================
179
+ (The MIT License)
180
+
181
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
182
+
183
+ Permission is hereby granted, free of charge, to any person obtaining
184
+ a copy of this software and associated documentation files (the
185
+ 'Software'), to deal in the Software without restriction, including
186
+ without limitation the rights to use, copy, modify, merge, publish,
187
+ distribute, sublicense, and/or sell copies of the Software, and to
188
+ permit persons to whom the Software is furnished to do so, subject to
189
+ the following conditions:
190
+
191
+ The above copyright notice and this permission notice shall be
192
+ included in all copies or substantial portions of the Software.
193
+
194
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
195
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
196
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
197
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
198
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
199
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
200
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
201
+ =========================================
202
+ END OF agent-base@9.0.0 NOTICES AND INFORMATION
203
+
204
+ %% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
205
+ =========================================
206
+ MIT License
207
+
208
+ Copyright (c) 2020 Evgeny Poberezkin
209
+
210
+ Permission is hereby granted, free of charge, to any person obtaining a copy
211
+ of this software and associated documentation files (the "Software"), to deal
212
+ in the Software without restriction, including without limitation the rights
213
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
214
+ copies of the Software, and to permit persons to whom the Software is
215
+ furnished to do so, subject to the following conditions:
216
+
217
+ The above copyright notice and this permission notice shall be included in all
218
+ copies or substantial portions of the Software.
219
+
220
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
221
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
222
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
223
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
224
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
225
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
226
+ SOFTWARE.
227
+ =========================================
228
+ END OF ajv-formats@3.0.1 NOTICES AND INFORMATION
229
+
230
+ %% ajv@8.20.0 NOTICES AND INFORMATION BEGIN HERE
231
+ =========================================
232
+ The MIT License (MIT)
233
+
234
+ Copyright (c) 2015-2021 Evgeny Poberezkin
235
+
236
+ Permission is hereby granted, free of charge, to any person obtaining a copy
237
+ of this software and associated documentation files (the "Software"), to deal
238
+ in the Software without restriction, including without limitation the rights
239
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
240
+ copies of the Software, and to permit persons to whom the Software is
241
+ furnished to do so, subject to the following conditions:
242
+
243
+ The above copyright notice and this permission notice shall be included in all
244
+ copies or substantial portions of the Software.
245
+
246
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
247
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
248
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
249
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
250
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
251
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
252
+ SOFTWARE.
253
+ =========================================
254
+ END OF ajv@8.20.0 NOTICES AND INFORMATION
255
+
256
+ %% ansi-colors@4.1.3 NOTICES AND INFORMATION BEGIN HERE
257
+ =========================================
258
+ The MIT License (MIT)
259
+
260
+ Copyright (c) 2015-present, Brian Woodward.
261
+
262
+ Permission is hereby granted, free of charge, to any person obtaining a copy
263
+ of this software and associated documentation files (the "Software"), to deal
264
+ in the Software without restriction, including without limitation the rights
265
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
266
+ copies of the Software, and to permit persons to whom the Software is
267
+ furnished to do so, subject to the following conditions:
268
+
269
+ The above copyright notice and this permission notice shall be included in
270
+ all copies or substantial portions of the Software.
271
+
272
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
273
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
274
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
275
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
276
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
277
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
278
+ THE SOFTWARE.
279
+ =========================================
280
+ END OF ansi-colors@4.1.3 NOTICES AND INFORMATION
281
+
282
+ %% ansi-regex@5.0.1 NOTICES AND INFORMATION BEGIN HERE
283
+ =========================================
284
+ MIT License
285
+
286
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
287
+
288
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
289
+
290
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
291
+
292
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
293
+ =========================================
294
+ END OF ansi-regex@5.0.1 NOTICES AND INFORMATION
295
+
296
+ %% anymatch@3.1.3 NOTICES AND INFORMATION BEGIN HERE
297
+ =========================================
298
+ The ISC License
299
+
300
+ Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
301
+
302
+ Permission to use, copy, modify, and/or distribute this software for any
303
+ purpose with or without fee is hereby granted, provided that the above
304
+ copyright notice and this permission notice appear in all copies.
305
+
306
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
307
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
308
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
309
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
310
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
311
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
312
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
313
+ =========================================
314
+ END OF anymatch@3.1.3 NOTICES AND INFORMATION
315
+
316
+ %% balanced-match@4.0.4 NOTICES AND INFORMATION BEGIN HERE
317
+ =========================================
318
+ (MIT)
319
+
320
+ Original code Copyright Julian Gruber <julian@juliangruber.com>
321
+
322
+ Port to TypeScript Copyright Isaac Z. Schlueter <i@izs.me>
323
+
324
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
325
+ this software and associated documentation files (the "Software"), to deal in
326
+ the Software without restriction, including without limitation the rights to
327
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
328
+ of the Software, and to permit persons to whom the Software is furnished to do
329
+ so, subject to the following conditions:
330
+
331
+ The above copyright notice and this permission notice shall be included in all
332
+ copies or substantial portions of the Software.
333
+
334
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
335
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
336
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
337
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
338
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
339
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
340
+ SOFTWARE.
341
+ =========================================
342
+ END OF balanced-match@4.0.4 NOTICES AND INFORMATION
343
+
344
+ %% binary-extensions@2.3.0 NOTICES AND INFORMATION BEGIN HERE
345
+ =========================================
346
+ MIT License
347
+
348
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
349
+ Copyright (c) Paul Miller (https://paulmillr.com)
350
+
351
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
352
+
353
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
354
+
355
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
356
+ =========================================
357
+ END OF binary-extensions@2.3.0 NOTICES AND INFORMATION
358
+
359
+ %% brace-expansion@5.0.7 NOTICES AND INFORMATION BEGIN HERE
360
+ =========================================
361
+ MIT License
362
+
363
+ Copyright Julian Gruber <julian@juliangruber.com>
364
+
365
+ TypeScript port Copyright Isaac Z. Schlueter <i@izs.me>
366
+
367
+ Permission is hereby granted, free of charge, to any person obtaining a copy
368
+ of this software and associated documentation files (the "Software"), to deal
369
+ in the Software without restriction, including without limitation the rights
370
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
371
+ copies of the Software, and to permit persons to whom the Software is
372
+ furnished to do so, subject to the following conditions:
373
+
374
+ The above copyright notice and this permission notice shall be included in all
375
+ copies or substantial portions of the Software.
376
+
377
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
378
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
379
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
380
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
381
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
382
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
383
+ SOFTWARE.
384
+ =========================================
385
+ END OF brace-expansion@5.0.7 NOTICES AND INFORMATION
386
+
387
+ %% braces@3.0.3 NOTICES AND INFORMATION BEGIN HERE
388
+ =========================================
389
+ The MIT License (MIT)
390
+
391
+ Copyright (c) 2014-present, Jon Schlinkert.
392
+
393
+ Permission is hereby granted, free of charge, to any person obtaining a copy
394
+ of this software and associated documentation files (the "Software"), to deal
395
+ in the Software without restriction, including without limitation the rights
396
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
397
+ copies of the Software, and to permit persons to whom the Software is
398
+ furnished to do so, subject to the following conditions:
399
+
400
+ The above copyright notice and this permission notice shall be included in
401
+ all copies or substantial portions of the Software.
402
+
403
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
404
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
405
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
406
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
407
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
408
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
409
+ THE SOFTWARE.
410
+ =========================================
411
+ END OF braces@3.0.3 NOTICES AND INFORMATION
412
+
413
+ %% buffer-crc32@1.0.0 NOTICES AND INFORMATION BEGIN HERE
414
+ =========================================
415
+ The MIT License
416
+
417
+ Copyright (c) 2013-2024 Brian J. Brennan
418
+
419
+ Permission is hereby granted, free of charge, to any person obtaining a copy
420
+ of this software and associated documentation files (the "Software"), to deal in
421
+ the Software without restriction, including without limitation the rights to use,
422
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
423
+ Software, and to permit persons to whom the Software is furnished to do so,
424
+ subject to the following conditions:
425
+
426
+ The above copyright notice and this permission notice shall be included in all
427
+ copies or substantial portions of the Software.
428
+
429
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
430
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
431
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
432
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
433
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
434
+ =========================================
435
+ END OF buffer-crc32@1.0.0 NOTICES AND INFORMATION
436
+
437
+ %% buffer-from@1.1.2 NOTICES AND INFORMATION BEGIN HERE
438
+ =========================================
439
+ MIT License
440
+
441
+ Copyright (c) 2016, 2018 Linus Unnebäck
442
+
443
+ Permission is hereby granted, free of charge, to any person obtaining a copy
444
+ of this software and associated documentation files (the "Software"), to deal
445
+ in the Software without restriction, including without limitation the rights
446
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
447
+ copies of the Software, and to permit persons to whom the Software is
448
+ furnished to do so, subject to the following conditions:
449
+
450
+ The above copyright notice and this permission notice shall be included in all
451
+ copies or substantial portions of the Software.
452
+
453
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
454
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
455
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
456
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
457
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
458
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
459
+ SOFTWARE.
460
+ =========================================
461
+ END OF buffer-from@1.1.2 NOTICES AND INFORMATION
462
+
463
+ %% bundle-name@4.1.0 NOTICES AND INFORMATION BEGIN HERE
464
+ =========================================
465
+ MIT License
466
+
467
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
468
+
469
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
470
+
471
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
472
+
473
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
474
+ =========================================
475
+ END OF bundle-name@4.1.0 NOTICES AND INFORMATION
476
+
477
+ %% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
478
+ =========================================
479
+ (The MIT License)
480
+
481
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
482
+ Copyright (c) 2015 Jed Watson <jed.watson@me.com>
483
+
484
+ Permission is hereby granted, free of charge, to any person obtaining
485
+ a copy of this software and associated documentation files (the
486
+ 'Software'), to deal in the Software without restriction, including
487
+ without limitation the rights to use, copy, modify, merge, publish,
488
+ distribute, sublicense, and/or sell copies of the Software, and to
489
+ permit persons to whom the Software is furnished to do so, subject to
490
+ the following conditions:
491
+
492
+ The above copyright notice and this permission notice shall be
493
+ included in all copies or substantial portions of the Software.
494
+
495
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
496
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
497
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
498
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
499
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
500
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
501
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
502
+ =========================================
503
+ END OF bytes@3.1.2 NOTICES AND INFORMATION
504
+
505
+ %% chokidar@3.6.0 NOTICES AND INFORMATION BEGIN HERE
506
+ =========================================
507
+ The MIT License (MIT)
508
+
509
+ Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
510
+
511
+ Permission is hereby granted, free of charge, to any person obtaining a copy
512
+ of this software and associated documentation files (the “Software”), to deal
513
+ in the Software without restriction, including without limitation the rights
514
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
515
+ copies of the Software, and to permit persons to whom the Software is
516
+ furnished to do so, subject to the following conditions:
517
+
518
+ The above copyright notice and this permission notice shall be included in
519
+ all copies or substantial portions of the Software.
520
+
521
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
522
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
523
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
524
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
525
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
526
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
527
+ THE SOFTWARE.
528
+ =========================================
529
+ END OF chokidar@3.6.0 NOTICES AND INFORMATION
530
+
531
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
532
+ =========================================
533
+ MIT License
534
+
535
+ Original Library
536
+ - Copyright (c) Marak Squires
537
+
538
+ Additional Functionality
539
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
540
+
541
+ Permission is hereby granted, free of charge, to any person obtaining a copy
542
+ of this software and associated documentation files (the "Software"), to deal
543
+ in the Software without restriction, including without limitation the rights
544
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
545
+ copies of the Software, and to permit persons to whom the Software is
546
+ furnished to do so, subject to the following conditions:
547
+
548
+ The above copyright notice and this permission notice shall be included in
549
+ all copies or substantial portions of the Software.
550
+
551
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
552
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
553
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
554
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
555
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
556
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
557
+ THE SOFTWARE.
558
+ =========================================
559
+ END OF colors@1.4.0 NOTICES AND INFORMATION
560
+
561
+ %% commander@15.0.0 NOTICES AND INFORMATION BEGIN HERE
562
+ =========================================
563
+ (The MIT License)
564
+
565
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
566
+
567
+ Permission is hereby granted, free of charge, to any person obtaining
568
+ a copy of this software and associated documentation files (the
569
+ 'Software'), to deal in the Software without restriction, including
570
+ without limitation the rights to use, copy, modify, merge, publish,
571
+ distribute, sublicense, and/or sell copies of the Software, and to
572
+ permit persons to whom the Software is furnished to do so, subject to
573
+ the following conditions:
574
+
575
+ The above copyright notice and this permission notice shall be
576
+ included in all copies or substantial portions of the Software.
577
+
578
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
579
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
580
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
581
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
582
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
583
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
584
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
585
+ =========================================
586
+ END OF commander@15.0.0 NOTICES AND INFORMATION
587
+
588
+ %% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
589
+ =========================================
590
+ (The MIT License)
591
+
592
+ Copyright (c) 2015 Douglas Christopher Wilson
593
+
594
+ Permission is hereby granted, free of charge, to any person obtaining
595
+ a copy of this software and associated documentation files (the
596
+ 'Software'), to deal in the Software without restriction, including
597
+ without limitation the rights to use, copy, modify, merge, publish,
598
+ distribute, sublicense, and/or sell copies of the Software, and to
599
+ permit persons to whom the Software is furnished to do so, subject to
600
+ the following conditions:
601
+
602
+ The above copyright notice and this permission notice shall be
603
+ included in all copies or substantial portions of the Software.
604
+
605
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
606
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
607
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
608
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
609
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
610
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
611
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
612
+ =========================================
613
+ END OF content-type@1.0.5 NOTICES AND INFORMATION
614
+
615
+ %% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
616
+ =========================================
617
+ The MIT License (MIT)
618
+
619
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
620
+
621
+ Permission is hereby granted, free of charge, to any person obtaining a copy
622
+ of this software and associated documentation files (the "Software"), to deal
623
+ in the Software without restriction, including without limitation the rights
624
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
625
+ copies of the Software, and to permit persons to whom the Software is
626
+ furnished to do so, subject to the following conditions:
627
+
628
+ The above copyright notice and this permission notice shall be included in
629
+ all copies or substantial portions of the Software.
630
+
631
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
632
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
633
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
634
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
635
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
636
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
637
+ THE SOFTWARE.
638
+ =========================================
639
+ END OF cross-spawn@7.0.6 NOTICES AND INFORMATION
640
+
641
+ %% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
642
+ =========================================
643
+ (The MIT License)
644
+
645
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
646
+ Copyright (c) 2018-2021 Josh Junon
647
+
648
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
649
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
650
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
651
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
652
+ subject to the following conditions:
653
+
654
+ The above copyright notice and this permission notice shall be included in all copies or substantial
655
+ portions of the Software.
656
+
657
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
658
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
659
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
660
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
661
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
662
+ =========================================
663
+ END OF debug@4.4.3 NOTICES AND INFORMATION
664
+
665
+ %% default-browser-id@5.0.1 NOTICES AND INFORMATION BEGIN HERE
666
+ =========================================
667
+ MIT License
668
+
669
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
670
+
671
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
672
+
673
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
674
+
675
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
676
+ =========================================
677
+ END OF default-browser-id@5.0.1 NOTICES AND INFORMATION
678
+
679
+ %% default-browser@5.5.0 NOTICES AND INFORMATION BEGIN HERE
680
+ =========================================
681
+ MIT License
682
+
683
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
684
+
685
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
686
+
687
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
688
+
689
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
690
+ =========================================
691
+ END OF default-browser@5.5.0 NOTICES AND INFORMATION
692
+
693
+ %% define-lazy-prop@3.0.0 NOTICES AND INFORMATION BEGIN HERE
694
+ =========================================
695
+ MIT License
696
+
697
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
698
+
699
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
700
+
701
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
702
+
703
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
704
+ =========================================
705
+ END OF define-lazy-prop@3.0.0 NOTICES AND INFORMATION
706
+
707
+ %% diff@9.0.0 NOTICES AND INFORMATION BEGIN HERE
708
+ =========================================
709
+ BSD 3-Clause License
710
+
711
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
712
+ All rights reserved.
713
+
714
+ Redistribution and use in source and binary forms, with or without
715
+ modification, are permitted provided that the following conditions are met:
716
+
717
+ 1. Redistributions of source code must retain the above copyright notice, this
718
+ list of conditions and the following disclaimer.
719
+
720
+ 2. Redistributions in binary form must reproduce the above copyright notice,
721
+ this list of conditions and the following disclaimer in the documentation
722
+ and/or other materials provided with the distribution.
723
+
724
+ 3. Neither the name of the copyright holder nor the names of its
725
+ contributors may be used to endorse or promote products derived from
726
+ this software without specific prior written permission.
727
+
728
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
729
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
730
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
731
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
732
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
733
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
734
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
735
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
736
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
737
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
738
+ =========================================
739
+ END OF diff@9.0.0 NOTICES AND INFORMATION
740
+
741
+ %% dotenv@17.4.2 NOTICES AND INFORMATION BEGIN HERE
742
+ =========================================
743
+ Copyright (c) 2015, Scott Motte
744
+ All rights reserved.
745
+
746
+ Redistribution and use in source and binary forms, with or without
747
+ modification, are permitted provided that the following conditions are met:
748
+
749
+ * Redistributions of source code must retain the above copyright notice, this
750
+ list of conditions and the following disclaimer.
751
+
752
+ * Redistributions in binary form must reproduce the above copyright notice,
753
+ this list of conditions and the following disclaimer in the documentation
754
+ and/or other materials provided with the distribution.
755
+
756
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
757
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
758
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
759
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
760
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
761
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
762
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
763
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
764
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
765
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
766
+ =========================================
767
+ END OF dotenv@17.4.2 NOTICES AND INFORMATION
768
+
769
+ %% enquirer@2.4.1 NOTICES AND INFORMATION BEGIN HERE
770
+ =========================================
771
+ The MIT License (MIT)
772
+
773
+ Copyright (c) 2016-present, Jon Schlinkert.
774
+
775
+ Permission is hereby granted, free of charge, to any person obtaining a copy
776
+ of this software and associated documentation files (the "Software"), to deal
777
+ in the Software without restriction, including without limitation the rights
778
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
779
+ copies of the Software, and to permit persons to whom the Software is
780
+ furnished to do so, subject to the following conditions:
781
+
782
+ The above copyright notice and this permission notice shall be included in
783
+ all copies or substantial portions of the Software.
784
+
785
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
786
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
787
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
788
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
789
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
790
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
791
+ THE SOFTWARE.
792
+ =========================================
793
+ END OF enquirer@2.4.1 NOTICES AND INFORMATION
794
+
795
+ %% eventsource-parser@3.1.0 NOTICES AND INFORMATION BEGIN HERE
796
+ =========================================
797
+ MIT License
798
+
799
+ Copyright (c) 2026 Espen Hovlandsdal <espen@hovlandsdal.com>
800
+
801
+ Permission is hereby granted, free of charge, to any person obtaining a copy
802
+ of this software and associated documentation files (the "Software"), to deal
803
+ in the Software without restriction, including without limitation the rights
804
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
805
+ copies of the Software, and to permit persons to whom the Software is
806
+ furnished to do so, subject to the following conditions:
807
+
808
+ The above copyright notice and this permission notice shall be included in all
809
+ copies or substantial portions of the Software.
810
+
811
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
812
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
813
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
814
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
815
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
816
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
817
+ SOFTWARE.
818
+ =========================================
819
+ END OF eventsource-parser@3.1.0 NOTICES AND INFORMATION
820
+
821
+ %% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
822
+ =========================================
823
+ The MIT License
824
+
825
+ Copyright (c) EventSource GitHub organisation
826
+
827
+ Permission is hereby granted, free of charge, to any person obtaining
828
+ a copy of this software and associated documentation files (the
829
+ "Software"), to deal in the Software without restriction, including
830
+ without limitation the rights to use, copy, modify, merge, publish,
831
+ distribute, sublicense, and/or sell copies of the Software, and to
832
+ permit persons to whom the Software is furnished to do so, subject to
833
+ the following conditions:
834
+
835
+ The above copyright notice and this permission notice shall be
836
+ included in all copies or substantial portions of the Software.
837
+
838
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
839
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
840
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
841
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
842
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
843
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
844
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
845
+ =========================================
846
+ END OF eventsource@3.0.7 NOTICES AND INFORMATION
847
+
848
+ %% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
849
+ =========================================
850
+ MIT License
851
+
852
+ Copyright (c) 2017 Evgeny Poberezkin
853
+
854
+ Permission is hereby granted, free of charge, to any person obtaining a copy
855
+ of this software and associated documentation files (the "Software"), to deal
856
+ in the Software without restriction, including without limitation the rights
857
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
858
+ copies of the Software, and to permit persons to whom the Software is
859
+ furnished to do so, subject to the following conditions:
860
+
861
+ The above copyright notice and this permission notice shall be included in all
862
+ copies or substantial portions of the Software.
863
+
864
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
865
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
866
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
867
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
868
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
869
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
870
+ SOFTWARE.
871
+ =========================================
872
+ END OF fast-deep-equal@3.1.3 NOTICES AND INFORMATION
873
+
874
+ %% fast-uri@3.1.3 NOTICES AND INFORMATION BEGIN HERE
875
+ =========================================
876
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
877
+ Copyright (c) 2021-present The Fastify team <https://github.com/fastify/fastify#team>
878
+ All rights reserved.
879
+
880
+ Redistribution and use in source and binary forms, with or without
881
+ modification, are permitted provided that the following conditions are met:
882
+ * Redistributions of source code must retain the above copyright
883
+ notice, this list of conditions and the following disclaimer.
884
+ * Redistributions in binary form must reproduce the above copyright
885
+ notice, this list of conditions and the following disclaimer in the
886
+ documentation and/or other materials provided with the distribution.
887
+ * The names of any contributors may not be used to endorse or promote
888
+ products derived from this software without specific prior written
889
+ permission.
890
+
891
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
892
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
893
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
894
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
895
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
896
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
897
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
898
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
899
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
900
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
901
+
902
+ * * *
903
+
904
+ The complete list of contributors can be found at:
905
+ - https://github.com/garycourt/uri-js/graphs/contributors
906
+ =========================================
907
+ END OF fast-uri@3.1.3 NOTICES AND INFORMATION
908
+
909
+ %% fill-range@7.1.1 NOTICES AND INFORMATION BEGIN HERE
910
+ =========================================
911
+ The MIT License (MIT)
912
+
913
+ Copyright (c) 2014-present, Jon Schlinkert.
914
+
915
+ Permission is hereby granted, free of charge, to any person obtaining a copy
916
+ of this software and associated documentation files (the "Software"), to deal
917
+ in the Software without restriction, including without limitation the rights
918
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
919
+ copies of the Software, and to permit persons to whom the Software is
920
+ furnished to do so, subject to the following conditions:
921
+
922
+ The above copyright notice and this permission notice shall be included in
923
+ all copies or substantial portions of the Software.
924
+
925
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
926
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
927
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
928
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
929
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
930
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931
+ THE SOFTWARE.
932
+ =========================================
933
+ END OF fill-range@7.1.1 NOTICES AND INFORMATION
934
+
935
+ %% get-east-asian-width@1.6.0 NOTICES AND INFORMATION BEGIN HERE
936
+ =========================================
937
+ MIT License
938
+
939
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
940
+
941
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
942
+
943
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
944
+
945
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
946
+ =========================================
947
+ END OF get-east-asian-width@1.6.0 NOTICES AND INFORMATION
948
+
949
+ %% get-stream@9.0.1 NOTICES AND INFORMATION BEGIN HERE
950
+ =========================================
951
+ MIT License
952
+
953
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
954
+
955
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
956
+
957
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
958
+
959
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
960
+ =========================================
961
+ END OF get-stream@9.0.1 NOTICES AND INFORMATION
962
+
963
+ %% glob-parent@5.1.2 NOTICES AND INFORMATION BEGIN HERE
964
+ =========================================
965
+ The ISC License
966
+
967
+ Copyright (c) 2015, 2019 Elan Shanker
968
+
969
+ Permission to use, copy, modify, and/or distribute this software for any
970
+ purpose with or without fee is hereby granted, provided that the above
971
+ copyright notice and this permission notice appear in all copies.
972
+
973
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
974
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
975
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
976
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
977
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
978
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
979
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
980
+ =========================================
981
+ END OF glob-parent@5.1.2 NOTICES AND INFORMATION
982
+
983
+ %% graceful-fs@4.2.11 NOTICES AND INFORMATION BEGIN HERE
984
+ =========================================
985
+ The ISC License
986
+
987
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
988
+
989
+ Permission to use, copy, modify, and/or distribute this software for any
990
+ purpose with or without fee is hereby granted, provided that the above
991
+ copyright notice and this permission notice appear in all copies.
992
+
993
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
994
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
995
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
996
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
997
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
998
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
999
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1000
+ =========================================
1001
+ END OF graceful-fs@4.2.11 NOTICES AND INFORMATION
1002
+
1003
+ %% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
1004
+ =========================================
1005
+ MIT License
1006
+
1007
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1008
+
1009
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1010
+
1011
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1012
+
1013
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1014
+ =========================================
1015
+ END OF has-flag@4.0.0 NOTICES AND INFORMATION
1016
+
1017
+ %% https-proxy-agent@9.1.0 NOTICES AND INFORMATION BEGIN HERE
1018
+ =========================================
1019
+ (The MIT License)
1020
+
1021
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1022
+
1023
+ Permission is hereby granted, free of charge, to any person obtaining
1024
+ a copy of this software and associated documentation files (the
1025
+ 'Software'), to deal in the Software without restriction, including
1026
+ without limitation the rights to use, copy, modify, merge, publish,
1027
+ distribute, sublicense, and/or sell copies of the Software, and to
1028
+ permit persons to whom the Software is furnished to do so, subject to
1029
+ the following conditions:
1030
+
1031
+ The above copyright notice and this permission notice shall be
1032
+ included in all copies or substantial portions of the Software.
1033
+
1034
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1035
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1036
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1037
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1038
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1039
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1040
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1041
+ =========================================
1042
+ END OF https-proxy-agent@9.1.0 NOTICES AND INFORMATION
1043
+
1044
+ %% ini@7.0.0 NOTICES AND INFORMATION BEGIN HERE
1045
+ =========================================
1046
+ The ISC License
1047
+
1048
+ Copyright (c) Isaac Z. Schlueter and Contributors
1049
+
1050
+ Permission to use, copy, modify, and/or distribute this software for any
1051
+ purpose with or without fee is hereby granted, provided that the above
1052
+ copyright notice and this permission notice appear in all copies.
1053
+
1054
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1055
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1056
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1057
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1058
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1059
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1060
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1061
+ =========================================
1062
+ END OF ini@7.0.0 NOTICES AND INFORMATION
1063
+
1064
+ %% ip-address@10.2.0 NOTICES AND INFORMATION BEGIN HERE
1065
+ =========================================
1066
+ Copyright (C) 2011 by Beau Gunderson
1067
+
1068
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1069
+ of this software and associated documentation files (the "Software"), to deal
1070
+ in the Software without restriction, including without limitation the rights
1071
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1072
+ copies of the Software, and to permit persons to whom the Software is
1073
+ furnished to do so, subject to the following conditions:
1074
+
1075
+ The above copyright notice and this permission notice shall be included in
1076
+ all copies or substantial portions of the Software.
1077
+
1078
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1079
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1080
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1081
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1082
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1083
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1084
+ THE SOFTWARE.
1085
+ =========================================
1086
+ END OF ip-address@10.2.0 NOTICES AND INFORMATION
1087
+
1088
+ %% is-binary-path@2.1.0 NOTICES AND INFORMATION BEGIN HERE
1089
+ =========================================
1090
+ MIT License
1091
+
1092
+ Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
1093
+
1094
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1095
+
1096
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1097
+
1098
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1099
+ =========================================
1100
+ END OF is-binary-path@2.1.0 NOTICES AND INFORMATION
1101
+
1102
+ %% is-docker@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1103
+ =========================================
1104
+ MIT License
1105
+
1106
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1107
+
1108
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1109
+
1110
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1111
+
1112
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1113
+ =========================================
1114
+ END OF is-docker@3.0.0 NOTICES AND INFORMATION
1115
+
1116
+ %% is-extglob@2.1.1 NOTICES AND INFORMATION BEGIN HERE
1117
+ =========================================
1118
+ The MIT License (MIT)
1119
+
1120
+ Copyright (c) 2014-2016, Jon Schlinkert
1121
+
1122
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1123
+ of this software and associated documentation files (the "Software"), to deal
1124
+ in the Software without restriction, including without limitation the rights
1125
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1126
+ copies of the Software, and to permit persons to whom the Software is
1127
+ furnished to do so, subject to the following conditions:
1128
+
1129
+ The above copyright notice and this permission notice shall be included in
1130
+ all copies or substantial portions of the Software.
1131
+
1132
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1133
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1134
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1135
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1136
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1137
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1138
+ THE SOFTWARE.
1139
+ =========================================
1140
+ END OF is-extglob@2.1.1 NOTICES AND INFORMATION
1141
+
1142
+ %% is-glob@4.0.3 NOTICES AND INFORMATION BEGIN HERE
1143
+ =========================================
1144
+ The MIT License (MIT)
1145
+
1146
+ Copyright (c) 2014-2017, Jon Schlinkert.
1147
+
1148
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1149
+ of this software and associated documentation files (the "Software"), to deal
1150
+ in the Software without restriction, including without limitation the rights
1151
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1152
+ copies of the Software, and to permit persons to whom the Software is
1153
+ furnished to do so, subject to the following conditions:
1154
+
1155
+ The above copyright notice and this permission notice shall be included in
1156
+ all copies or substantial portions of the Software.
1157
+
1158
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1159
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1160
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1161
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1162
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1163
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1164
+ THE SOFTWARE.
1165
+ =========================================
1166
+ END OF is-glob@4.0.3 NOTICES AND INFORMATION
1167
+
1168
+ %% is-in-ssh@1.0.0 NOTICES AND INFORMATION BEGIN HERE
1169
+ =========================================
1170
+ MIT License
1171
+
1172
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1173
+
1174
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1175
+
1176
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1177
+
1178
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1179
+ =========================================
1180
+ END OF is-in-ssh@1.0.0 NOTICES AND INFORMATION
1181
+
1182
+ %% is-inside-container@1.0.0 NOTICES AND INFORMATION BEGIN HERE
1183
+ =========================================
1184
+ MIT License
1185
+
1186
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1187
+
1188
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1189
+
1190
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1191
+
1192
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1193
+ =========================================
1194
+ END OF is-inside-container@1.0.0 NOTICES AND INFORMATION
1195
+
1196
+ %% is-number@7.0.0 NOTICES AND INFORMATION BEGIN HERE
1197
+ =========================================
1198
+ The MIT License (MIT)
1199
+
1200
+ Copyright (c) 2014-present, Jon Schlinkert.
1201
+
1202
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1203
+ of this software and associated documentation files (the "Software"), to deal
1204
+ in the Software without restriction, including without limitation the rights
1205
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1206
+ copies of the Software, and to permit persons to whom the Software is
1207
+ furnished to do so, subject to the following conditions:
1208
+
1209
+ The above copyright notice and this permission notice shall be included in
1210
+ all copies or substantial portions of the Software.
1211
+
1212
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1213
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1214
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1215
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1216
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1217
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1218
+ THE SOFTWARE.
1219
+ =========================================
1220
+ END OF is-number@7.0.0 NOTICES AND INFORMATION
1221
+
1222
+ %% is-stream@4.0.1 NOTICES AND INFORMATION BEGIN HERE
1223
+ =========================================
1224
+ MIT License
1225
+
1226
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1227
+
1228
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1229
+
1230
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1231
+
1232
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1233
+ =========================================
1234
+ END OF is-stream@4.0.1 NOTICES AND INFORMATION
1235
+
1236
+ %% is-wsl@3.1.1 NOTICES AND INFORMATION BEGIN HERE
1237
+ =========================================
1238
+ MIT License
1239
+
1240
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1241
+
1242
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1243
+
1244
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1245
+
1246
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1247
+ =========================================
1248
+ END OF is-wsl@3.1.1 NOTICES AND INFORMATION
1249
+
1250
+ %% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1251
+ =========================================
1252
+ The ISC License
1253
+
1254
+ Copyright (c) Isaac Z. Schlueter and Contributors
1255
+
1256
+ Permission to use, copy, modify, and/or distribute this software for any
1257
+ purpose with or without fee is hereby granted, provided that the above
1258
+ copyright notice and this permission notice appear in all copies.
1259
+
1260
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1261
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1262
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1263
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1264
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1265
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1266
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1267
+ =========================================
1268
+ END OF isexe@2.0.0 NOTICES AND INFORMATION
1269
+
1270
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
1271
+ =========================================
1272
+ Copyright (c) 2014, Eugene Ware
1273
+ All rights reserved.
1274
+
1275
+ Redistribution and use in source and binary forms, with or without
1276
+ modification, are permitted provided that the following conditions are met:
1277
+
1278
+ 1. Redistributions of source code must retain the above copyright
1279
+ notice, this list of conditions and the following disclaimer.
1280
+ 2. Redistributions in binary form must reproduce the above copyright
1281
+ notice, this list of conditions and the following disclaimer in the
1282
+ documentation and/or other materials provided with the distribution.
1283
+ 3. Neither the name of Eugene Ware nor the names of its contributors
1284
+ may be used to endorse or promote products derived from this software
1285
+ without specific prior written permission.
1286
+
1287
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
1288
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1289
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1290
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
1291
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1292
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1293
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1294
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1295
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1296
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1297
+ =========================================
1298
+ END OF jpeg-js@0.4.4 NOTICES AND INFORMATION
1299
+
1300
+ %% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
1301
+ =========================================
1302
+ MIT License
1303
+
1304
+ Copyright (c) 2017 Evgeny Poberezkin
1305
+
1306
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1307
+ of this software and associated documentation files (the "Software"), to deal
1308
+ in the Software without restriction, including without limitation the rights
1309
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1310
+ copies of the Software, and to permit persons to whom the Software is
1311
+ furnished to do so, subject to the following conditions:
1312
+
1313
+ The above copyright notice and this permission notice shall be included in all
1314
+ copies or substantial portions of the Software.
1315
+
1316
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1317
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1318
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1319
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1320
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1321
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1322
+ SOFTWARE.
1323
+ =========================================
1324
+ END OF json-schema-traverse@1.0.0 NOTICES AND INFORMATION
1325
+
1326
+ %% json5@2.2.3 NOTICES AND INFORMATION BEGIN HERE
1327
+ =========================================
1328
+ MIT License
1329
+
1330
+ Copyright (c) 2012-2018 Aseem Kishore, and [others].
1331
+
1332
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1333
+ of this software and associated documentation files (the "Software"), to deal
1334
+ in the Software without restriction, including without limitation the rights
1335
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1336
+ copies of the Software, and to permit persons to whom the Software is
1337
+ furnished to do so, subject to the following conditions:
1338
+
1339
+ The above copyright notice and this permission notice shall be included in all
1340
+ copies or substantial portions of the Software.
1341
+
1342
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1343
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1344
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1345
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1346
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1347
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1348
+ SOFTWARE.
1349
+
1350
+ [others]: https://github.com/json5/json5/contributors
1351
+ =========================================
1352
+ END OF json5@2.2.3 NOTICES AND INFORMATION
1353
+
1354
+ %% mime@4.1.0 NOTICES AND INFORMATION BEGIN HERE
1355
+ =========================================
1356
+ MIT License
1357
+
1358
+ Copyright (c) 2023 Robert Kieffer
1359
+
1360
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1361
+ of this software and associated documentation files (the "Software"), to deal
1362
+ in the Software without restriction, including without limitation the rights
1363
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1364
+ copies of the Software, and to permit persons to whom the Software is
1365
+ furnished to do so, subject to the following conditions:
1366
+
1367
+ The above copyright notice and this permission notice shall be included in all
1368
+ copies or substantial portions of the Software.
1369
+
1370
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1371
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1372
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1373
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1374
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1375
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1376
+ SOFTWARE.
1377
+ =========================================
1378
+ END OF mime@4.1.0 NOTICES AND INFORMATION
1379
+
1380
+ %% minimatch@10.2.5 NOTICES AND INFORMATION BEGIN HERE
1381
+ =========================================
1382
+ # Blue Oak Model License
1383
+
1384
+ Version 1.0.0
1385
+
1386
+ ## Purpose
1387
+
1388
+ This license gives everyone as much permission to work with
1389
+ this software as possible, while protecting contributors
1390
+ from liability.
1391
+
1392
+ ## Acceptance
1393
+
1394
+ In order to receive this license, you must agree to its
1395
+ rules. The rules of this license are both obligations
1396
+ under that agreement and conditions to your license.
1397
+ You must not do anything with this software that triggers
1398
+ a rule that you cannot or will not follow.
1399
+
1400
+ ## Copyright
1401
+
1402
+ Each contributor licenses you to do everything with this
1403
+ software that would otherwise infringe that contributor's
1404
+ copyright in it.
1405
+
1406
+ ## Notices
1407
+
1408
+ You must ensure that everyone who gets a copy of
1409
+ any part of this software from you, with or without
1410
+ changes, also gets the text of this license or a link to
1411
+ <https://blueoakcouncil.org/license/1.0.0>.
1412
+
1413
+ ## Excuse
1414
+
1415
+ If anyone notifies you in writing that you have not
1416
+ complied with [Notices](#notices), you can keep your
1417
+ license by taking all practical steps to comply within 30
1418
+ days after the notice. If you do not do so, your license
1419
+ ends immediately.
1420
+
1421
+ ## Patent
1422
+
1423
+ Each contributor licenses you to do everything with this
1424
+ software that would otherwise infringe any patent claims
1425
+ they can license or become able to license.
1426
+
1427
+ ## Reliability
1428
+
1429
+ No contributor can revoke this license.
1430
+
1431
+ ## No Liability
1432
+
1433
+ **_As far as the law allows, this software comes as is,
1434
+ without any warranty or condition, and no contributor
1435
+ will be liable to anyone for any damages related to this
1436
+ software or this license, under any kind of legal claim._**
1437
+ =========================================
1438
+ END OF minimatch@10.2.5 NOTICES AND INFORMATION
1439
+
1440
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
1441
+ =========================================
1442
+ The MIT License (MIT)
1443
+
1444
+ Copyright (c) 2020 Vercel, Inc.
1445
+
1446
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1447
+ of this software and associated documentation files (the "Software"), to deal
1448
+ in the Software without restriction, including without limitation the rights
1449
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1450
+ copies of the Software, and to permit persons to whom the Software is
1451
+ furnished to do so, subject to the following conditions:
1452
+
1453
+ The above copyright notice and this permission notice shall be included in all
1454
+ copies or substantial portions of the Software.
1455
+
1456
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1457
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1458
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1459
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1460
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1461
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1462
+ SOFTWARE.
1463
+ =========================================
1464
+ END OF ms@2.1.3 NOTICES AND INFORMATION
1465
+
1466
+ %% normalize-path@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1467
+ =========================================
1468
+ The MIT License (MIT)
1469
+
1470
+ Copyright (c) 2014-2018, Jon Schlinkert.
1471
+
1472
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1473
+ of this software and associated documentation files (the "Software"), to deal
1474
+ in the Software without restriction, including without limitation the rights
1475
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1476
+ copies of the Software, and to permit persons to whom the Software is
1477
+ furnished to do so, subject to the following conditions:
1478
+
1479
+ The above copyright notice and this permission notice shall be included in
1480
+ all copies or substantial portions of the Software.
1481
+
1482
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1483
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1484
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1485
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1486
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1487
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1488
+ THE SOFTWARE.
1489
+ =========================================
1490
+ END OF normalize-path@3.0.0 NOTICES AND INFORMATION
1491
+
1492
+ %% open@11.0.0 NOTICES AND INFORMATION BEGIN HERE
1493
+ =========================================
1494
+ MIT License
1495
+
1496
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1497
+
1498
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1499
+
1500
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1501
+
1502
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1503
+ =========================================
1504
+ END OF open@11.0.0 NOTICES AND INFORMATION
1505
+
1506
+ %% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
1507
+ =========================================
1508
+ MIT License
1509
+
1510
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1511
+
1512
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1513
+
1514
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1515
+
1516
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1517
+ =========================================
1518
+ END OF path-key@3.1.1 NOTICES AND INFORMATION
1519
+
1520
+ %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
1521
+ =========================================
1522
+ The MIT License (Expat)
1523
+
1524
+ Copyright (c) 2014 Andrew Kelley
1525
+
1526
+ Permission is hereby granted, free of charge, to any person
1527
+ obtaining a copy of this software and associated documentation files
1528
+ (the "Software"), to deal in the Software without restriction,
1529
+ including without limitation the rights to use, copy, modify, merge,
1530
+ publish, distribute, sublicense, and/or sell copies of the Software,
1531
+ and to permit persons to whom the Software is furnished to do so,
1532
+ subject to the following conditions:
1533
+
1534
+ The above copyright notice and this permission notice shall be
1535
+ included in all copies or substantial portions of the Software.
1536
+
1537
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1538
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1539
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1540
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1541
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1542
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1543
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1544
+ SOFTWARE.
1545
+ =========================================
1546
+ END OF pend@1.2.0 NOTICES AND INFORMATION
1547
+
1548
+ %% picomatch@2.3.2 NOTICES AND INFORMATION BEGIN HERE
1549
+ =========================================
1550
+ The MIT License (MIT)
1551
+
1552
+ Copyright (c) 2017-present, Jon Schlinkert.
1553
+
1554
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1555
+ of this software and associated documentation files (the "Software"), to deal
1556
+ in the Software without restriction, including without limitation the rights
1557
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1558
+ copies of the Software, and to permit persons to whom the Software is
1559
+ furnished to do so, subject to the following conditions:
1560
+
1561
+ The above copyright notice and this permission notice shall be included in
1562
+ all copies or substantial portions of the Software.
1563
+
1564
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1565
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1566
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1567
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1568
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1569
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1570
+ THE SOFTWARE.
1571
+ =========================================
1572
+ END OF picomatch@2.3.2 NOTICES AND INFORMATION
1573
+
1574
+ %% pkce-challenge@5.0.1 NOTICES AND INFORMATION BEGIN HERE
1575
+ =========================================
1576
+ MIT License
1577
+
1578
+ Copyright (c) 2019
1579
+
1580
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1581
+ of this software and associated documentation files (the "Software"), to deal
1582
+ in the Software without restriction, including without limitation the rights
1583
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1584
+ copies of the Software, and to permit persons to whom the Software is
1585
+ furnished to do so, subject to the following conditions:
1586
+
1587
+ The above copyright notice and this permission notice shall be included in all
1588
+ copies or substantial portions of the Software.
1589
+
1590
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1591
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1592
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1593
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1594
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1595
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1596
+ SOFTWARE.
1597
+ =========================================
1598
+ END OF pkce-challenge@5.0.1 NOTICES AND INFORMATION
1599
+
1600
+ %% pngjs@7.0.0 NOTICES AND INFORMATION BEGIN HERE
1601
+ =========================================
1602
+ pngjs original work Copyright (c) 2015 Luke Page & Original Contributors
1603
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
1604
+
1605
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1606
+ of this software and associated documentation files (the "Software"), to deal
1607
+ in the Software without restriction, including without limitation the rights
1608
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1609
+ copies of the Software, and to permit persons to whom the Software is
1610
+ furnished to do so, subject to the following conditions:
1611
+
1612
+ The above copyright notice and this permission notice shall be included in
1613
+ all copies or substantial portions of the Software.
1614
+
1615
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1617
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1618
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1619
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1620
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1621
+ THE SOFTWARE.
1622
+ =========================================
1623
+ END OF pngjs@7.0.0 NOTICES AND INFORMATION
1624
+
1625
+ %% powershell-utils@0.1.0 NOTICES AND INFORMATION BEGIN HERE
1626
+ =========================================
1627
+ MIT License
1628
+
1629
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1630
+
1631
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1632
+
1633
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1634
+
1635
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1636
+ =========================================
1637
+ END OF powershell-utils@0.1.0 NOTICES AND INFORMATION
1638
+
1639
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
1640
+ =========================================
1641
+ (The MIT License)
1642
+
1643
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
1644
+
1645
+ Permission is hereby granted, free of charge, to any person obtaining
1646
+ a copy of this software and associated documentation files (the
1647
+ 'Software'), to deal in the Software without restriction, including
1648
+ without limitation the rights to use, copy, modify, merge, publish,
1649
+ distribute, sublicense, and/or sell copies of the Software, and to
1650
+ permit persons to whom the Software is furnished to do so, subject to
1651
+ the following conditions:
1652
+
1653
+ The above copyright notice and this permission notice shall be
1654
+ included in all copies or substantial portions of the Software.
1655
+
1656
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1657
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1658
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1659
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1660
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1661
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1662
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1663
+ =========================================
1664
+ END OF progress@2.0.3 NOTICES AND INFORMATION
1665
+
1666
+ %% proxy-agent-negotiate@1.1.0 NOTICES AND INFORMATION BEGIN HERE
1667
+ =========================================
1668
+ (no license text found; declared licenses: MIT)
1669
+ =========================================
1670
+ END OF proxy-agent-negotiate@1.1.0 NOTICES AND INFORMATION
1671
+
1672
+ %% proxy-from-env@2.1.0 NOTICES AND INFORMATION BEGIN HERE
1673
+ =========================================
1674
+ The MIT License
1675
+
1676
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
1677
+
1678
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1679
+ this software and associated documentation files (the "Software"), to deal in
1680
+ the Software without restriction, including without limitation the rights to
1681
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1682
+ of the Software, and to permit persons to whom the Software is furnished to do
1683
+ so, subject to the following conditions:
1684
+
1685
+ The above copyright notice and this permission notice shall be included in all
1686
+ copies or substantial portions of the Software.
1687
+
1688
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1689
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1690
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1691
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1692
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1693
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1694
+ =========================================
1695
+ END OF proxy-from-env@2.1.0 NOTICES AND INFORMATION
1696
+
1697
+ %% readdirp@3.6.0 NOTICES AND INFORMATION BEGIN HERE
1698
+ =========================================
1699
+ MIT License
1700
+
1701
+ Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
1702
+
1703
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1704
+ of this software and associated documentation files (the "Software"), to deal
1705
+ in the Software without restriction, including without limitation the rights
1706
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1707
+ copies of the Software, and to permit persons to whom the Software is
1708
+ furnished to do so, subject to the following conditions:
1709
+
1710
+ The above copyright notice and this permission notice shall be included in all
1711
+ copies or substantial portions of the Software.
1712
+
1713
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1714
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1715
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1716
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1717
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1718
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1719
+ SOFTWARE.
1720
+ =========================================
1721
+ END OF readdirp@3.6.0 NOTICES AND INFORMATION
1722
+
1723
+ %% retry@0.13.1 NOTICES AND INFORMATION BEGIN HERE
1724
+ =========================================
1725
+ Copyright (c) 2011:
1726
+ Tim Koschützki (tim@debuggable.com)
1727
+ Felix Geisendörfer (felix@debuggable.com)
1728
+
1729
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1730
+ of this software and associated documentation files (the "Software"), to deal
1731
+ in the Software without restriction, including without limitation the rights
1732
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1733
+ copies of the Software, and to permit persons to whom the Software is
1734
+ furnished to do so, subject to the following conditions:
1735
+
1736
+ The above copyright notice and this permission notice shall be included in
1737
+ all copies or substantial portions of the Software.
1738
+
1739
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1740
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1741
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1742
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1743
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1744
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1745
+ THE SOFTWARE.
1746
+ =========================================
1747
+ END OF retry@0.13.1 NOTICES AND INFORMATION
1748
+
1749
+ %% run-applescript@7.1.0 NOTICES AND INFORMATION BEGIN HERE
1750
+ =========================================
1751
+ MIT License
1752
+
1753
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1754
+
1755
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1756
+
1757
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1758
+
1759
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1760
+ =========================================
1761
+ END OF run-applescript@7.1.0 NOTICES AND INFORMATION
1762
+
1763
+ %% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1764
+ =========================================
1765
+ MIT License
1766
+
1767
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
1768
+
1769
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1770
+
1771
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1772
+
1773
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1774
+ =========================================
1775
+ END OF shebang-command@2.0.0 NOTICES AND INFORMATION
1776
+
1777
+ %% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1778
+ =========================================
1779
+ MIT License
1780
+
1781
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1782
+
1783
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1784
+
1785
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1786
+
1787
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1788
+ =========================================
1789
+ END OF shebang-regex@3.0.0 NOTICES AND INFORMATION
1790
+
1791
+ %% signal-exit@4.1.0 NOTICES AND INFORMATION BEGIN HERE
1792
+ =========================================
1793
+ The ISC License
1794
+
1795
+ Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors
1796
+
1797
+ Permission to use, copy, modify, and/or distribute this software
1798
+ for any purpose with or without fee is hereby granted, provided
1799
+ that the above copyright notice and this permission notice
1800
+ appear in all copies.
1801
+
1802
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1803
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
1804
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
1805
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
1806
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1807
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1808
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1809
+ =========================================
1810
+ END OF signal-exit@4.1.0 NOTICES AND INFORMATION
1811
+
1812
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
1813
+ =========================================
1814
+ The MIT License (MIT)
1815
+
1816
+ Copyright (c) 2013-2017 Josh Glazebrook
1817
+
1818
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1819
+ this software and associated documentation files (the "Software"), to deal in
1820
+ the Software without restriction, including without limitation the rights to
1821
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1822
+ the Software, and to permit persons to whom the Software is furnished to do so,
1823
+ subject to the following conditions:
1824
+
1825
+ The above copyright notice and this permission notice shall be included in all
1826
+ copies or substantial portions of the Software.
1827
+
1828
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1829
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1830
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1831
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1832
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1833
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1834
+ =========================================
1835
+ END OF smart-buffer@4.2.0 NOTICES AND INFORMATION
1836
+
1837
+ %% socks-proxy-agent@10.1.0 NOTICES AND INFORMATION BEGIN HERE
1838
+ =========================================
1839
+ (The MIT License)
1840
+
1841
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1842
+
1843
+ Permission is hereby granted, free of charge, to any person obtaining
1844
+ a copy of this software and associated documentation files (the
1845
+ 'Software'), to deal in the Software without restriction, including
1846
+ without limitation the rights to use, copy, modify, merge, publish,
1847
+ distribute, sublicense, and/or sell copies of the Software, and to
1848
+ permit persons to whom the Software is furnished to do so, subject to
1849
+ the following conditions:
1850
+
1851
+ The above copyright notice and this permission notice shall be
1852
+ included in all copies or substantial portions of the Software.
1853
+
1854
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1855
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1856
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1857
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1858
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1859
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1860
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1861
+ =========================================
1862
+ END OF socks-proxy-agent@10.1.0 NOTICES AND INFORMATION
1863
+
1864
+ %% socks@2.8.9 NOTICES AND INFORMATION BEGIN HERE
1865
+ =========================================
1866
+ The MIT License (MIT)
1867
+
1868
+ Copyright (c) 2013 Josh Glazebrook
1869
+
1870
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1871
+ this software and associated documentation files (the "Software"), to deal in
1872
+ the Software without restriction, including without limitation the rights to
1873
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1874
+ the Software, and to permit persons to whom the Software is furnished to do so,
1875
+ subject to the following conditions:
1876
+
1877
+ The above copyright notice and this permission notice shall be included in all
1878
+ copies or substantial portions of the Software.
1879
+
1880
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1881
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1882
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1883
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1884
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1885
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1886
+ =========================================
1887
+ END OF socks@2.8.9 NOTICES AND INFORMATION
1888
+
1889
+ %% source-map-support@0.5.21 NOTICES AND INFORMATION BEGIN HERE
1890
+ =========================================
1891
+ The MIT License (MIT)
1892
+
1893
+ Copyright (c) 2014 Evan Wallace
1894
+
1895
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1896
+ of this software and associated documentation files (the "Software"), to deal
1897
+ in the Software without restriction, including without limitation the rights
1898
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1899
+ copies of the Software, and to permit persons to whom the Software is
1900
+ furnished to do so, subject to the following conditions:
1901
+
1902
+ The above copyright notice and this permission notice shall be included in all
1903
+ copies or substantial portions of the Software.
1904
+
1905
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1906
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1907
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1908
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1909
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1910
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1911
+ SOFTWARE.
1912
+ =========================================
1913
+ END OF source-map-support@0.5.21 NOTICES AND INFORMATION
1914
+
1915
+ %% source-map@0.6.1 NOTICES AND INFORMATION BEGIN HERE
1916
+ =========================================
1917
+ Copyright (c) 2009-2011, Mozilla Foundation and contributors
1918
+ All rights reserved.
1919
+
1920
+ Redistribution and use in source and binary forms, with or without
1921
+ modification, are permitted provided that the following conditions are met:
1922
+
1923
+ * Redistributions of source code must retain the above copyright notice, this
1924
+ list of conditions and the following disclaimer.
1925
+
1926
+ * Redistributions in binary form must reproduce the above copyright notice,
1927
+ this list of conditions and the following disclaimer in the documentation
1928
+ and/or other materials provided with the distribution.
1929
+
1930
+ * Neither the names of the Mozilla Foundation nor the names of project
1931
+ contributors may be used to endorse or promote products derived from this
1932
+ software without specific prior written permission.
1933
+
1934
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1935
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1936
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1937
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1938
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1939
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1940
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1941
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1942
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1943
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1944
+ =========================================
1945
+ END OF source-map@0.6.1 NOTICES AND INFORMATION
1946
+
1947
+ %% strip-ansi@6.0.1 NOTICES AND INFORMATION BEGIN HERE
1948
+ =========================================
1949
+ MIT License
1950
+
1951
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1952
+
1953
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1954
+
1955
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1956
+
1957
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1958
+ =========================================
1959
+ END OF strip-ansi@6.0.1 NOTICES AND INFORMATION
1960
+
1961
+ %% supports-color@7.2.0 NOTICES AND INFORMATION BEGIN HERE
1962
+ =========================================
1963
+ MIT License
1964
+
1965
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1966
+
1967
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1968
+
1969
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1970
+
1971
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1972
+ =========================================
1973
+ END OF supports-color@7.2.0 NOTICES AND INFORMATION
1974
+
1975
+ %% to-regex-range@5.0.1 NOTICES AND INFORMATION BEGIN HERE
1976
+ =========================================
1977
+ The MIT License (MIT)
1978
+
1979
+ Copyright (c) 2015-present, Jon Schlinkert.
1980
+
1981
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1982
+ of this software and associated documentation files (the "Software"), to deal
1983
+ in the Software without restriction, including without limitation the rights
1984
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1985
+ copies of the Software, and to permit persons to whom the Software is
1986
+ furnished to do so, subject to the following conditions:
1987
+
1988
+ The above copyright notice and this permission notice shall be included in
1989
+ all copies or substantial portions of the Software.
1990
+
1991
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1992
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1993
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1994
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1995
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1996
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1997
+ THE SOFTWARE.
1998
+ =========================================
1999
+ END OF to-regex-range@5.0.1 NOTICES AND INFORMATION
2000
+
2001
+ %% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
2002
+ =========================================
2003
+ The ISC License
2004
+
2005
+ Copyright (c) Isaac Z. Schlueter and Contributors
2006
+
2007
+ Permission to use, copy, modify, and/or distribute this software for any
2008
+ purpose with or without fee is hereby granted, provided that the above
2009
+ copyright notice and this permission notice appear in all copies.
2010
+
2011
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2012
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2013
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2014
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2015
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2016
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2017
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2018
+ =========================================
2019
+ END OF which@2.0.2 NOTICES AND INFORMATION
2020
+
2021
+ %% ws@8.21.0 NOTICES AND INFORMATION BEGIN HERE
2022
+ =========================================
2023
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
2024
+ Copyright (c) 2013 Arnout Kazemier and contributors
2025
+ Copyright (c) 2016 Luigi Pinca and contributors
2026
+
2027
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2028
+ this software and associated documentation files (the "Software"), to deal in
2029
+ the Software without restriction, including without limitation the rights to
2030
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2031
+ the Software, and to permit persons to whom the Software is furnished to do so,
2032
+ subject to the following conditions:
2033
+
2034
+ The above copyright notice and this permission notice shall be included in all
2035
+ copies or substantial portions of the Software.
2036
+
2037
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2038
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2039
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2040
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2041
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2042
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2043
+ =========================================
2044
+ END OF ws@8.21.0 NOTICES AND INFORMATION
2045
+
2046
+ %% wsl-utils@0.3.1 NOTICES AND INFORMATION BEGIN HERE
2047
+ =========================================
2048
+ MIT License
2049
+
2050
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2051
+
2052
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2053
+
2054
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2055
+
2056
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2057
+ =========================================
2058
+ END OF wsl-utils@0.3.1 NOTICES AND INFORMATION
2059
+
2060
+ %% yaml@2.9.0 NOTICES AND INFORMATION BEGIN HERE
2061
+ =========================================
2062
+ Copyright Eemeli Aro <eemeli@gmail.com>
2063
+
2064
+ Permission to use, copy, modify, and/or distribute this software for any purpose
2065
+ with or without fee is hereby granted, provided that the above copyright notice
2066
+ and this permission notice appear in all copies.
2067
+
2068
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
2069
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
2070
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
2071
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
2072
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
2073
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
2074
+ THIS SOFTWARE.
2075
+ =========================================
2076
+ END OF yaml@2.9.0 NOTICES AND INFORMATION
2077
+
2078
+ %% yauzl@3.4.0 NOTICES AND INFORMATION BEGIN HERE
2079
+ =========================================
2080
+ The MIT License (MIT)
2081
+
2082
+ Copyright (c) 2014 Josh Wolfe
2083
+
2084
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2085
+ of this software and associated documentation files (the "Software"), to deal
2086
+ in the Software without restriction, including without limitation the rights
2087
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2088
+ copies of the Software, and to permit persons to whom the Software is
2089
+ furnished to do so, subject to the following conditions:
2090
+
2091
+ The above copyright notice and this permission notice shall be included in all
2092
+ copies or substantial portions of the Software.
2093
+
2094
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2095
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2096
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2097
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2098
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2099
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2100
+ SOFTWARE.
2101
+ =========================================
2102
+ END OF yauzl@3.4.0 NOTICES AND INFORMATION
2103
+
2104
+ %% yazl@3.3.1 NOTICES AND INFORMATION BEGIN HERE
2105
+ =========================================
2106
+ The MIT License (MIT)
2107
+
2108
+ Copyright (c) 2014 Josh Wolfe
2109
+
2110
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2111
+ of this software and associated documentation files (the "Software"), to deal
2112
+ in the Software without restriction, including without limitation the rights
2113
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2114
+ copies of the Software, and to permit persons to whom the Software is
2115
+ furnished to do so, subject to the following conditions:
2116
+
2117
+ The above copyright notice and this permission notice shall be included in all
2118
+ copies or substantial portions of the Software.
2119
+
2120
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2121
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2122
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2123
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2124
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2125
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2126
+ SOFTWARE.
2127
+ =========================================
2128
+ END OF yazl@3.3.1 NOTICES AND INFORMATION
2129
+
2130
+ %% zod-to-json-schema@3.25.2 NOTICES AND INFORMATION BEGIN HERE
2131
+ =========================================
2132
+ ISC License
2133
+
2134
+ Copyright (c) 2020, Stefan Terdell
2135
+
2136
+ Permission to use, copy, modify, and/or distribute this software for any
2137
+ purpose with or without fee is hereby granted, provided that the above
2138
+ copyright notice and this permission notice appear in all copies.
2139
+
2140
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2141
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2142
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2143
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2144
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2145
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2146
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2147
+ =========================================
2148
+ END OF zod-to-json-schema@3.25.2 NOTICES AND INFORMATION
2149
+
2150
+ %% zod@4.4.3 NOTICES AND INFORMATION BEGIN HERE
2151
+ =========================================
2152
+ MIT License
2153
+
2154
+ Copyright (c) 2025 Colin McDonnell
2155
+
2156
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2157
+ of this software and associated documentation files (the "Software"), to deal
2158
+ in the Software without restriction, including without limitation the rights
2159
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2160
+ copies of the Software, and to permit persons to whom the Software is
2161
+ furnished to do so, subject to the following conditions:
2162
+
2163
+ The above copyright notice and this permission notice shall be included in all
2164
+ copies or substantial portions of the Software.
2165
+
2166
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2167
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2168
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2169
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2170
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2171
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2172
+ SOFTWARE.
2173
+ =========================================
2174
+ END OF zod@4.4.3 NOTICES AND INFORMATION
2175
+
2176
+ SUMMARY
2177
+ =========================================
2178
+ Total Packages: 91
2179
+ =========================================