@pedropaulovc/playwright-core 1.59.0-next
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.
- package/README.md +3 -0
- package/ThirdPartyNotices.txt +4076 -0
- package/bin/install_media_pack.ps1 +5 -0
- package/bin/install_webkit_wsl.ps1 +33 -0
- package/bin/reinstall_chrome_beta_linux.sh +42 -0
- package/bin/reinstall_chrome_beta_mac.sh +13 -0
- package/bin/reinstall_chrome_beta_win.ps1 +24 -0
- package/bin/reinstall_chrome_stable_linux.sh +42 -0
- package/bin/reinstall_chrome_stable_mac.sh +12 -0
- package/bin/reinstall_chrome_stable_win.ps1 +24 -0
- package/bin/reinstall_msedge_beta_linux.sh +48 -0
- package/bin/reinstall_msedge_beta_mac.sh +11 -0
- package/bin/reinstall_msedge_beta_win.ps1 +23 -0
- package/bin/reinstall_msedge_dev_linux.sh +48 -0
- package/bin/reinstall_msedge_dev_mac.sh +11 -0
- package/bin/reinstall_msedge_dev_win.ps1 +23 -0
- package/bin/reinstall_msedge_stable_linux.sh +48 -0
- package/bin/reinstall_msedge_stable_mac.sh +11 -0
- package/bin/reinstall_msedge_stable_win.ps1 +24 -0
- package/browsers.json +79 -0
- package/cli.js +18 -0
- package/index.d.ts +17 -0
- package/index.js +32 -0
- package/index.mjs +28 -0
- package/lib/androidServerImpl.js +65 -0
- package/lib/browserServerImpl.js +120 -0
- package/lib/cli/driver.js +97 -0
- package/lib/cli/program.js +603 -0
- package/lib/cli/programWithTestStub.js +74 -0
- package/lib/client/android.js +361 -0
- package/lib/client/api.js +137 -0
- package/lib/client/artifact.js +79 -0
- package/lib/client/browser.js +161 -0
- package/lib/client/browserContext.js +582 -0
- package/lib/client/browserType.js +185 -0
- package/lib/client/cdpSession.js +51 -0
- package/lib/client/channelOwner.js +194 -0
- package/lib/client/clientHelper.js +64 -0
- package/lib/client/clientInstrumentation.js +55 -0
- package/lib/client/clientStackTrace.js +69 -0
- package/lib/client/clock.js +68 -0
- package/lib/client/connection.js +318 -0
- package/lib/client/consoleMessage.js +58 -0
- package/lib/client/coverage.js +44 -0
- package/lib/client/dialog.js +56 -0
- package/lib/client/download.js +62 -0
- package/lib/client/electron.js +138 -0
- package/lib/client/elementHandle.js +284 -0
- package/lib/client/errors.js +77 -0
- package/lib/client/eventEmitter.js +314 -0
- package/lib/client/events.js +103 -0
- package/lib/client/fetch.js +368 -0
- package/lib/client/fileChooser.js +46 -0
- package/lib/client/fileUtils.js +34 -0
- package/lib/client/frame.js +409 -0
- package/lib/client/harRouter.js +87 -0
- package/lib/client/input.js +84 -0
- package/lib/client/jsHandle.js +109 -0
- package/lib/client/jsonPipe.js +39 -0
- package/lib/client/localUtils.js +60 -0
- package/lib/client/locator.js +369 -0
- package/lib/client/network.js +747 -0
- package/lib/client/page.js +745 -0
- package/lib/client/pageAgent.js +64 -0
- package/lib/client/platform.js +77 -0
- package/lib/client/playwright.js +71 -0
- package/lib/client/selectors.js +55 -0
- package/lib/client/stream.js +39 -0
- package/lib/client/timeoutSettings.js +79 -0
- package/lib/client/tracing.js +119 -0
- package/lib/client/types.js +28 -0
- package/lib/client/video.js +59 -0
- package/lib/client/waiter.js +142 -0
- package/lib/client/webError.js +39 -0
- package/lib/client/webSocket.js +93 -0
- package/lib/client/worker.js +85 -0
- package/lib/client/writableStream.js +39 -0
- package/lib/generated/bindingsControllerSource.js +28 -0
- package/lib/generated/clockSource.js +28 -0
- package/lib/generated/injectedScriptSource.js +28 -0
- package/lib/generated/pollingRecorderSource.js +28 -0
- package/lib/generated/storageScriptSource.js +28 -0
- package/lib/generated/utilityScriptSource.js +28 -0
- package/lib/generated/webSocketMockSource.js +336 -0
- package/lib/inProcessFactory.js +60 -0
- package/lib/inprocess.js +3 -0
- package/lib/mcpBundle.js +84 -0
- package/lib/mcpBundleImpl/index.js +147 -0
- package/lib/outofprocess.js +76 -0
- package/lib/protocol/serializers.js +197 -0
- package/lib/protocol/validator.js +2969 -0
- package/lib/protocol/validatorPrimitives.js +193 -0
- package/lib/remote/playwrightConnection.js +129 -0
- package/lib/remote/playwrightServer.js +334 -0
- package/lib/server/agent/actionRunner.js +335 -0
- package/lib/server/agent/actions.js +128 -0
- package/lib/server/agent/codegen.js +111 -0
- package/lib/server/agent/context.js +150 -0
- package/lib/server/agent/expectTools.js +156 -0
- package/lib/server/agent/pageAgent.js +204 -0
- package/lib/server/agent/performTools.js +262 -0
- package/lib/server/agent/tool.js +109 -0
- package/lib/server/android/android.js +465 -0
- package/lib/server/android/backendAdb.js +177 -0
- package/lib/server/artifact.js +127 -0
- package/lib/server/bidi/bidiBrowser.js +549 -0
- package/lib/server/bidi/bidiChromium.js +148 -0
- package/lib/server/bidi/bidiConnection.js +213 -0
- package/lib/server/bidi/bidiDeserializer.js +116 -0
- package/lib/server/bidi/bidiExecutionContext.js +267 -0
- package/lib/server/bidi/bidiFirefox.js +128 -0
- package/lib/server/bidi/bidiInput.js +146 -0
- package/lib/server/bidi/bidiNetworkManager.js +383 -0
- package/lib/server/bidi/bidiOverCdp.js +102 -0
- package/lib/server/bidi/bidiPage.js +583 -0
- package/lib/server/bidi/bidiPdf.js +106 -0
- package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
- package/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
- package/lib/server/bidi/third_party/bidiProtocol.js +24 -0
- package/lib/server/bidi/third_party/bidiProtocolCore.js +180 -0
- package/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
- package/lib/server/bidi/third_party/bidiSerializer.js +148 -0
- package/lib/server/bidi/third_party/firefoxPrefs.js +259 -0
- package/lib/server/browser.js +149 -0
- package/lib/server/browserContext.js +702 -0
- package/lib/server/browserType.js +336 -0
- package/lib/server/callLog.js +82 -0
- package/lib/server/chromium/appIcon.png +0 -0
- package/lib/server/chromium/chromium.js +395 -0
- package/lib/server/chromium/chromiumSwitches.js +104 -0
- package/lib/server/chromium/crBrowser.js +511 -0
- package/lib/server/chromium/crConnection.js +197 -0
- package/lib/server/chromium/crCoverage.js +235 -0
- package/lib/server/chromium/crDevTools.js +111 -0
- package/lib/server/chromium/crDragDrop.js +131 -0
- package/lib/server/chromium/crExecutionContext.js +146 -0
- package/lib/server/chromium/crInput.js +187 -0
- package/lib/server/chromium/crNetworkManager.js +707 -0
- package/lib/server/chromium/crPage.js +1001 -0
- package/lib/server/chromium/crPdf.js +121 -0
- package/lib/server/chromium/crProtocolHelper.js +145 -0
- package/lib/server/chromium/crServiceWorker.js +136 -0
- package/lib/server/chromium/defaultFontFamilies.js +162 -0
- package/lib/server/chromium/protocol.d.js +16 -0
- package/lib/server/clock.js +149 -0
- package/lib/server/codegen/csharp.js +327 -0
- package/lib/server/codegen/java.js +274 -0
- package/lib/server/codegen/javascript.js +247 -0
- package/lib/server/codegen/jsonl.js +52 -0
- package/lib/server/codegen/language.js +132 -0
- package/lib/server/codegen/languages.js +68 -0
- package/lib/server/codegen/python.js +279 -0
- package/lib/server/codegen/types.js +16 -0
- package/lib/server/console.js +57 -0
- package/lib/server/cookieStore.js +206 -0
- package/lib/server/debugController.js +191 -0
- package/lib/server/debugger.js +119 -0
- package/lib/server/deviceDescriptors.js +39 -0
- package/lib/server/deviceDescriptorsSource.json +1779 -0
- package/lib/server/dialog.js +116 -0
- package/lib/server/dispatchers/androidDispatcher.js +325 -0
- package/lib/server/dispatchers/artifactDispatcher.js +118 -0
- package/lib/server/dispatchers/browserContextDispatcher.js +384 -0
- package/lib/server/dispatchers/browserDispatcher.js +118 -0
- package/lib/server/dispatchers/browserTypeDispatcher.js +64 -0
- package/lib/server/dispatchers/cdpSessionDispatcher.js +44 -0
- package/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
- package/lib/server/dispatchers/dialogDispatcher.js +47 -0
- package/lib/server/dispatchers/dispatcher.js +364 -0
- package/lib/server/dispatchers/electronDispatcher.js +89 -0
- package/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
- package/lib/server/dispatchers/frameDispatcher.js +227 -0
- package/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
- package/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
- package/lib/server/dispatchers/localUtilsDispatcher.js +149 -0
- package/lib/server/dispatchers/networkDispatchers.js +213 -0
- package/lib/server/dispatchers/pageAgentDispatcher.js +96 -0
- package/lib/server/dispatchers/pageDispatcher.js +393 -0
- package/lib/server/dispatchers/playwrightDispatcher.js +108 -0
- package/lib/server/dispatchers/streamDispatcher.js +67 -0
- package/lib/server/dispatchers/tracingDispatcher.js +68 -0
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +165 -0
- package/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
- package/lib/server/dom.js +815 -0
- package/lib/server/download.js +70 -0
- package/lib/server/electron/electron.js +273 -0
- package/lib/server/electron/loader.js +29 -0
- package/lib/server/errors.js +69 -0
- package/lib/server/fetch.js +621 -0
- package/lib/server/fileChooser.js +43 -0
- package/lib/server/fileUploadUtils.js +84 -0
- package/lib/server/firefox/ffBrowser.js +418 -0
- package/lib/server/firefox/ffConnection.js +142 -0
- package/lib/server/firefox/ffExecutionContext.js +150 -0
- package/lib/server/firefox/ffInput.js +159 -0
- package/lib/server/firefox/ffNetworkManager.js +256 -0
- package/lib/server/firefox/ffPage.js +497 -0
- package/lib/server/firefox/firefox.js +114 -0
- package/lib/server/firefox/protocol.d.js +16 -0
- package/lib/server/formData.js +147 -0
- package/lib/server/frameSelectors.js +160 -0
- package/lib/server/frames.js +1471 -0
- package/lib/server/har/harRecorder.js +147 -0
- package/lib/server/har/harTracer.js +607 -0
- package/lib/server/harBackend.js +157 -0
- package/lib/server/helper.js +96 -0
- package/lib/server/index.js +58 -0
- package/lib/server/input.js +277 -0
- package/lib/server/instrumentation.js +72 -0
- package/lib/server/javascript.js +291 -0
- package/lib/server/launchApp.js +128 -0
- package/lib/server/localUtils.js +214 -0
- package/lib/server/macEditingCommands.js +143 -0
- package/lib/server/network.js +667 -0
- package/lib/server/page.js +830 -0
- package/lib/server/pipeTransport.js +89 -0
- package/lib/server/playwright.js +69 -0
- package/lib/server/progress.js +132 -0
- package/lib/server/protocolError.js +52 -0
- package/lib/server/recorder/chat.js +161 -0
- package/lib/server/recorder/recorderApp.js +366 -0
- package/lib/server/recorder/recorderRunner.js +138 -0
- package/lib/server/recorder/recorderSignalProcessor.js +83 -0
- package/lib/server/recorder/recorderUtils.js +157 -0
- package/lib/server/recorder/throttledFile.js +57 -0
- package/lib/server/recorder.js +499 -0
- package/lib/server/registry/browserFetcher.js +177 -0
- package/lib/server/registry/dependencies.js +371 -0
- package/lib/server/registry/index.js +1422 -0
- package/lib/server/registry/nativeDeps.js +1280 -0
- package/lib/server/registry/oopDownloadBrowserMain.js +127 -0
- package/lib/server/screencast.js +190 -0
- package/lib/server/screenshotter.js +333 -0
- package/lib/server/selectors.js +112 -0
- package/lib/server/socksClientCertificatesInterceptor.js +383 -0
- package/lib/server/socksInterceptor.js +95 -0
- package/lib/server/trace/recorder/snapshotter.js +147 -0
- package/lib/server/trace/recorder/snapshotterInjected.js +561 -0
- package/lib/server/trace/recorder/tracing.js +604 -0
- package/lib/server/trace/viewer/traceExporter.js +679 -0
- package/lib/server/trace/viewer/traceParser.js +72 -0
- package/lib/server/trace/viewer/traceViewer.js +245 -0
- package/lib/server/transport.js +181 -0
- package/lib/server/types.js +28 -0
- package/lib/server/usKeyboardLayout.js +145 -0
- package/lib/server/utils/ascii.js +44 -0
- package/lib/server/utils/comparators.js +139 -0
- package/lib/server/utils/crypto.js +216 -0
- package/lib/server/utils/debug.js +42 -0
- package/lib/server/utils/debugLogger.js +122 -0
- package/lib/server/utils/env.js +73 -0
- package/lib/server/utils/eventsHelper.js +39 -0
- package/lib/server/utils/expectUtils.js +123 -0
- package/lib/server/utils/fileUtils.js +191 -0
- package/lib/server/utils/happyEyeballs.js +207 -0
- package/lib/server/utils/hostPlatform.js +123 -0
- package/lib/server/utils/httpServer.js +203 -0
- package/lib/server/utils/imageUtils.js +141 -0
- package/lib/server/utils/image_tools/colorUtils.js +89 -0
- package/lib/server/utils/image_tools/compare.js +109 -0
- package/lib/server/utils/image_tools/imageChannel.js +78 -0
- package/lib/server/utils/image_tools/stats.js +102 -0
- package/lib/server/utils/linuxUtils.js +71 -0
- package/lib/server/utils/network.js +242 -0
- package/lib/server/utils/nodePlatform.js +154 -0
- package/lib/server/utils/pipeTransport.js +84 -0
- package/lib/server/utils/processLauncher.js +241 -0
- package/lib/server/utils/profiler.js +65 -0
- package/lib/server/utils/socksProxy.js +511 -0
- package/lib/server/utils/spawnAsync.js +41 -0
- package/lib/server/utils/task.js +51 -0
- package/lib/server/utils/userAgent.js +98 -0
- package/lib/server/utils/wsServer.js +121 -0
- package/lib/server/utils/zipFile.js +74 -0
- package/lib/server/utils/zones.js +57 -0
- package/lib/server/videoRecorder.js +124 -0
- package/lib/server/webkit/protocol.d.js +16 -0
- package/lib/server/webkit/webkit.js +108 -0
- package/lib/server/webkit/wkBrowser.js +335 -0
- package/lib/server/webkit/wkConnection.js +144 -0
- package/lib/server/webkit/wkExecutionContext.js +154 -0
- package/lib/server/webkit/wkInput.js +181 -0
- package/lib/server/webkit/wkInterceptableRequest.js +197 -0
- package/lib/server/webkit/wkPage.js +1158 -0
- package/lib/server/webkit/wkProvisionalPage.js +83 -0
- package/lib/server/webkit/wkWorkers.js +105 -0
- package/lib/third_party/pixelmatch.js +255 -0
- package/lib/utils/isomorphic/ariaSnapshot.js +455 -0
- package/lib/utils/isomorphic/assert.js +31 -0
- package/lib/utils/isomorphic/colors.js +72 -0
- package/lib/utils/isomorphic/cssParser.js +245 -0
- package/lib/utils/isomorphic/cssTokenizer.js +1051 -0
- package/lib/utils/isomorphic/headers.js +53 -0
- package/lib/utils/isomorphic/locatorGenerators.js +689 -0
- package/lib/utils/isomorphic/locatorParser.js +176 -0
- package/lib/utils/isomorphic/locatorUtils.js +81 -0
- package/lib/utils/isomorphic/lruCache.js +51 -0
- package/lib/utils/isomorphic/manualPromise.js +114 -0
- package/lib/utils/isomorphic/mimeType.js +459 -0
- package/lib/utils/isomorphic/multimap.js +80 -0
- package/lib/utils/isomorphic/protocolFormatter.js +81 -0
- package/lib/utils/isomorphic/protocolMetainfo.js +330 -0
- package/lib/utils/isomorphic/rtti.js +43 -0
- package/lib/utils/isomorphic/selectorParser.js +386 -0
- package/lib/utils/isomorphic/semaphore.js +54 -0
- package/lib/utils/isomorphic/stackTrace.js +158 -0
- package/lib/utils/isomorphic/stringUtils.js +204 -0
- package/lib/utils/isomorphic/time.js +49 -0
- package/lib/utils/isomorphic/timeoutRunner.js +66 -0
- package/lib/utils/isomorphic/trace/entries.js +16 -0
- package/lib/utils/isomorphic/trace/snapshotRenderer.js +499 -0
- package/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
- package/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
- package/lib/utils/isomorphic/trace/traceLoader.js +131 -0
- package/lib/utils/isomorphic/trace/traceModel.js +365 -0
- package/lib/utils/isomorphic/trace/traceModernizer.js +400 -0
- package/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
- package/lib/utils/isomorphic/traceUtils.js +58 -0
- package/lib/utils/isomorphic/types.js +16 -0
- package/lib/utils/isomorphic/urlMatch.js +190 -0
- package/lib/utils/isomorphic/utilityScriptSerializers.js +251 -0
- package/lib/utils/isomorphic/yaml.js +84 -0
- package/lib/utils.js +111 -0
- package/lib/utilsBundle.js +109 -0
- package/lib/utilsBundleImpl/index.js +218 -0
- package/lib/utilsBundleImpl/xdg-open +1066 -0
- package/lib/vite/htmlReport/index.html +84 -0
- package/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
- package/lib/vite/recorder/assets/codeMirrorModule-DadYNm1I.js +32 -0
- package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
- package/lib/vite/recorder/assets/index-BSjZa4pk.css +1 -0
- package/lib/vite/recorder/assets/index-BhTWtUlo.js +193 -0
- package/lib/vite/recorder/index.html +29 -0
- package/lib/vite/recorder/playwright-logo.svg +9 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-DwzBH9eL.js +32 -0
- package/lib/vite/traceViewer/assets/codeMirrorModule-a5XoALAZ.js +32 -0
- package/lib/vite/traceViewer/assets/defaultSettingsView-CJSZINFr.js +266 -0
- package/lib/vite/traceViewer/assets/defaultSettingsView-CdCX8877.js +266 -0
- package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
- package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
- package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
- package/lib/vite/traceViewer/defaultSettingsView.7ch9cixO.css +1 -0
- package/lib/vite/traceViewer/index.BVu7tZDe.css +1 -0
- package/lib/vite/traceViewer/index.Dd9jebqr.js +2 -0
- package/lib/vite/traceViewer/index.f4OcrOqs.js +2 -0
- package/lib/vite/traceViewer/index.html +43 -0
- package/lib/vite/traceViewer/manifest.webmanifest +16 -0
- package/lib/vite/traceViewer/playwright-logo.svg +9 -0
- package/lib/vite/traceViewer/snapshot.html +21 -0
- package/lib/vite/traceViewer/sw.bundle.js +5 -0
- package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
- package/lib/vite/traceViewer/uiMode.CQJ9SCIQ.js +5 -0
- package/lib/vite/traceViewer/uiMode.html +17 -0
- package/lib/vite/traceViewer/uiMode.qcahlSup.js +5 -0
- package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
- package/lib/zipBundle.js +34 -0
- package/lib/zipBundleImpl.js +5 -0
- package/package.json +43 -0
- package/types/protocol.d.ts +23824 -0
- package/types/structs.d.ts +45 -0
- package/types/types.d.ts +22843 -0
|
@@ -0,0 +1,4076 @@
|
|
|
1
|
+
microsoft/playwright-core
|
|
2
|
+
|
|
3
|
+
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
|
|
4
|
+
|
|
5
|
+
This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
|
|
6
|
+
|
|
7
|
+
- @hono/node-server@1.19.8 (https://github.com/honojs/node-server)
|
|
8
|
+
- @lowire/loop@0.0.25 (https://github.com/pavelfeldman/lowire)
|
|
9
|
+
- @modelcontextprotocol/sdk@1.25.2 (https://github.com/modelcontextprotocol/typescript-sdk)
|
|
10
|
+
- accepts@2.0.0 (https://github.com/jshttp/accepts)
|
|
11
|
+
- agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
|
|
12
|
+
- ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
|
|
13
|
+
- ajv@8.17.1 (https://github.com/ajv-validator/ajv)
|
|
14
|
+
- balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
|
|
15
|
+
- body-parser@2.2.1 (https://github.com/expressjs/body-parser)
|
|
16
|
+
- brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
|
|
17
|
+
- buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
|
|
18
|
+
- bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
|
|
19
|
+
- call-bind-apply-helpers@1.0.2 (https://github.com/ljharb/call-bind-apply-helpers)
|
|
20
|
+
- call-bound@1.0.4 (https://github.com/ljharb/call-bound)
|
|
21
|
+
- codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
|
|
22
|
+
- colors@1.4.0 (https://github.com/Marak/colors.js)
|
|
23
|
+
- commander@13.1.0 (https://github.com/tj/commander.js)
|
|
24
|
+
- concat-map@0.0.1 (https://github.com/substack/node-concat-map)
|
|
25
|
+
- content-disposition@1.0.0 (https://github.com/jshttp/content-disposition)
|
|
26
|
+
- content-type@1.0.5 (https://github.com/jshttp/content-type)
|
|
27
|
+
- cookie-signature@1.2.2 (https://github.com/visionmedia/node-cookie-signature)
|
|
28
|
+
- cookie@0.7.2 (https://github.com/jshttp/cookie)
|
|
29
|
+
- cors@2.8.5 (https://github.com/expressjs/cors)
|
|
30
|
+
- cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
|
|
31
|
+
- debug@4.3.4 (https://github.com/debug-js/debug)
|
|
32
|
+
- debug@4.4.0 (https://github.com/debug-js/debug)
|
|
33
|
+
- debug@4.4.3 (https://github.com/debug-js/debug)
|
|
34
|
+
- define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
|
|
35
|
+
- depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
|
|
36
|
+
- diff@7.0.0 (https://github.com/kpdecker/jsdiff)
|
|
37
|
+
- dotenv@16.4.5 (https://github.com/motdotla/dotenv)
|
|
38
|
+
- dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
|
|
39
|
+
- ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
|
|
40
|
+
- encodeurl@2.0.0 (https://github.com/pillarjs/encodeurl)
|
|
41
|
+
- end-of-stream@1.4.4 (https://github.com/mafintosh/end-of-stream)
|
|
42
|
+
- es-define-property@1.0.1 (https://github.com/ljharb/es-define-property)
|
|
43
|
+
- es-errors@1.3.0 (https://github.com/ljharb/es-errors)
|
|
44
|
+
- es-object-atoms@1.1.1 (https://github.com/ljharb/es-object-atoms)
|
|
45
|
+
- escape-html@1.0.3 (https://github.com/component/escape-html)
|
|
46
|
+
- etag@1.8.1 (https://github.com/jshttp/etag)
|
|
47
|
+
- eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
|
|
48
|
+
- eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
|
|
49
|
+
- express-rate-limit@7.5.1 (https://github.com/express-rate-limit/express-rate-limit)
|
|
50
|
+
- express@5.1.0 (https://github.com/expressjs/express)
|
|
51
|
+
- fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
|
|
52
|
+
- fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
|
|
53
|
+
- finalhandler@2.1.0 (https://github.com/pillarjs/finalhandler)
|
|
54
|
+
- forwarded@0.2.0 (https://github.com/jshttp/forwarded)
|
|
55
|
+
- fresh@2.0.0 (https://github.com/jshttp/fresh)
|
|
56
|
+
- function-bind@1.1.2 (https://github.com/Raynos/function-bind)
|
|
57
|
+
- get-intrinsic@1.3.0 (https://github.com/ljharb/get-intrinsic)
|
|
58
|
+
- get-proto@1.0.1 (https://github.com/ljharb/get-proto)
|
|
59
|
+
- get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
|
|
60
|
+
- gopd@1.2.0 (https://github.com/ljharb/gopd)
|
|
61
|
+
- graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
|
|
62
|
+
- has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
|
|
63
|
+
- hasown@2.0.2 (https://github.com/inspect-js/hasOwn)
|
|
64
|
+
- hono@4.11.3 (https://github.com/honojs/hono)
|
|
65
|
+
- http-errors@2.0.1 (https://github.com/jshttp/http-errors)
|
|
66
|
+
- https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
|
|
67
|
+
- iconv-lite@0.7.0 (https://github.com/pillarjs/iconv-lite)
|
|
68
|
+
- inherits@2.0.4 (https://github.com/isaacs/inherits)
|
|
69
|
+
- ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
|
|
70
|
+
- ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
|
|
71
|
+
- is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
|
|
72
|
+
- is-promise@4.0.0 (https://github.com/then/is-promise)
|
|
73
|
+
- is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
|
|
74
|
+
- isexe@2.0.0 (https://github.com/isaacs/isexe)
|
|
75
|
+
- jose@6.1.3 (https://github.com/panva/jose)
|
|
76
|
+
- jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
|
|
77
|
+
- jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
|
|
78
|
+
- json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
|
|
79
|
+
- json-schema-typed@8.0.2 (https://github.com/RemyRylan/json-schema-typed)
|
|
80
|
+
- math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
|
|
81
|
+
- media-typer@1.1.0 (https://github.com/jshttp/media-typer)
|
|
82
|
+
- merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
|
|
83
|
+
- mime-db@1.54.0 (https://github.com/jshttp/mime-db)
|
|
84
|
+
- mime-types@3.0.1 (https://github.com/jshttp/mime-types)
|
|
85
|
+
- mime@3.0.0 (https://github.com/broofa/mime)
|
|
86
|
+
- minimatch@3.1.2 (https://github.com/isaacs/minimatch)
|
|
87
|
+
- ms@2.1.2 (https://github.com/zeit/ms)
|
|
88
|
+
- ms@2.1.3 (https://github.com/vercel/ms)
|
|
89
|
+
- negotiator@1.0.0 (https://github.com/jshttp/negotiator)
|
|
90
|
+
- object-assign@4.1.1 (https://github.com/sindresorhus/object-assign)
|
|
91
|
+
- object-inspect@1.13.4 (https://github.com/inspect-js/object-inspect)
|
|
92
|
+
- on-finished@2.4.1 (https://github.com/jshttp/on-finished)
|
|
93
|
+
- once@1.4.0 (https://github.com/isaacs/once)
|
|
94
|
+
- open@8.4.0 (https://github.com/sindresorhus/open)
|
|
95
|
+
- parseurl@1.3.3 (https://github.com/pillarjs/parseurl)
|
|
96
|
+
- path-key@3.1.1 (https://github.com/sindresorhus/path-key)
|
|
97
|
+
- path-to-regexp@8.2.0 (https://github.com/pillarjs/path-to-regexp)
|
|
98
|
+
- pend@1.2.0 (https://github.com/andrewrk/node-pend)
|
|
99
|
+
- pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
|
|
100
|
+
- pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
|
|
101
|
+
- progress@2.0.3 (https://github.com/visionmedia/node-progress)
|
|
102
|
+
- proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
|
|
103
|
+
- proxy-from-env@1.1.0 (https://github.com/Rob--W/proxy-from-env)
|
|
104
|
+
- pump@3.0.2 (https://github.com/mafintosh/pump)
|
|
105
|
+
- qs@6.14.1 (https://github.com/ljharb/qs)
|
|
106
|
+
- range-parser@1.2.1 (https://github.com/jshttp/range-parser)
|
|
107
|
+
- raw-body@3.0.2 (https://github.com/stream-utils/raw-body)
|
|
108
|
+
- require-from-string@2.0.2 (https://github.com/floatdrop/require-from-string)
|
|
109
|
+
- retry@0.12.0 (https://github.com/tim-kos/node-retry)
|
|
110
|
+
- router@2.2.0 (https://github.com/pillarjs/router)
|
|
111
|
+
- safe-buffer@5.2.1 (https://github.com/feross/safe-buffer)
|
|
112
|
+
- safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
|
|
113
|
+
- send@1.2.0 (https://github.com/pillarjs/send)
|
|
114
|
+
- serve-static@2.2.0 (https://github.com/expressjs/serve-static)
|
|
115
|
+
- setprototypeof@1.2.0 (https://github.com/wesleytodd/setprototypeof)
|
|
116
|
+
- shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
|
|
117
|
+
- shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
|
|
118
|
+
- side-channel-list@1.0.0 (https://github.com/ljharb/side-channel-list)
|
|
119
|
+
- side-channel-map@1.0.1 (https://github.com/ljharb/side-channel-map)
|
|
120
|
+
- side-channel-weakmap@1.0.2 (https://github.com/ljharb/side-channel-weakmap)
|
|
121
|
+
- side-channel@1.1.0 (https://github.com/ljharb/side-channel)
|
|
122
|
+
- signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
|
|
123
|
+
- smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
|
|
124
|
+
- socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
|
|
125
|
+
- socks@2.8.3 (https://github.com/JoshGlazebrook/socks)
|
|
126
|
+
- sprintf-js@1.1.3 (https://github.com/alexei/sprintf.js)
|
|
127
|
+
- statuses@2.0.2 (https://github.com/jshttp/statuses)
|
|
128
|
+
- toidentifier@1.0.1 (https://github.com/component/toidentifier)
|
|
129
|
+
- type-is@2.0.1 (https://github.com/jshttp/type-is)
|
|
130
|
+
- unpipe@1.0.0 (https://github.com/stream-utils/unpipe)
|
|
131
|
+
- vary@1.1.2 (https://github.com/jshttp/vary)
|
|
132
|
+
- which@2.0.2 (https://github.com/isaacs/node-which)
|
|
133
|
+
- wrappy@1.0.2 (https://github.com/npm/wrappy)
|
|
134
|
+
- ws@8.17.1 (https://github.com/websockets/ws)
|
|
135
|
+
- yaml@2.6.0 (https://github.com/eemeli/yaml)
|
|
136
|
+
- yauzl@3.2.0 (https://github.com/thejoshwolfe/yauzl)
|
|
137
|
+
- yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
|
|
138
|
+
- zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
|
|
139
|
+
- zod@4.3.5 (https://github.com/colinhacks/zod)
|
|
140
|
+
|
|
141
|
+
%% @hono/node-server@1.19.8 NOTICES AND INFORMATION BEGIN HERE
|
|
142
|
+
=========================================
|
|
143
|
+
# Node.js Adapter for Hono
|
|
144
|
+
|
|
145
|
+
This adapter `@hono/node-server` allows you to run your Hono application on Node.js.
|
|
146
|
+
Initially, Hono wasn't designed for Node.js, but with this adapter, you can now use Hono on Node.js.
|
|
147
|
+
It utilizes web standard APIs implemented in Node.js version 18 or higher.
|
|
148
|
+
|
|
149
|
+
## Benchmarks
|
|
150
|
+
|
|
151
|
+
Hono is 3.5 times faster than Express.
|
|
152
|
+
|
|
153
|
+
Express:
|
|
154
|
+
|
|
155
|
+
```txt
|
|
156
|
+
$ bombardier -d 10s --fasthttp http://localhost:3000/
|
|
157
|
+
|
|
158
|
+
Statistics Avg Stdev Max
|
|
159
|
+
Reqs/sec 16438.94 1603.39 19155.47
|
|
160
|
+
Latency 7.60ms 7.51ms 559.89ms
|
|
161
|
+
HTTP codes:
|
|
162
|
+
1xx - 0, 2xx - 164494, 3xx - 0, 4xx - 0, 5xx - 0
|
|
163
|
+
others - 0
|
|
164
|
+
Throughput: 4.55MB/s
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
Hono + `@hono/node-server`:
|
|
168
|
+
|
|
169
|
+
```txt
|
|
170
|
+
$ bombardier -d 10s --fasthttp http://localhost:3000/
|
|
171
|
+
|
|
172
|
+
Statistics Avg Stdev Max
|
|
173
|
+
Reqs/sec 58296.56 5512.74 74403.56
|
|
174
|
+
Latency 2.14ms 1.46ms 190.92ms
|
|
175
|
+
HTTP codes:
|
|
176
|
+
1xx - 0, 2xx - 583059, 3xx - 0, 4xx - 0, 5xx - 0
|
|
177
|
+
others - 0
|
|
178
|
+
Throughput: 12.56MB/s
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
## Requirements
|
|
182
|
+
|
|
183
|
+
It works on Node.js versions greater than 18.x. The specific required Node.js versions are as follows:
|
|
184
|
+
|
|
185
|
+
- 18.x => 18.14.1+
|
|
186
|
+
- 19.x => 19.7.0+
|
|
187
|
+
- 20.x => 20.0.0+
|
|
188
|
+
|
|
189
|
+
Essentially, you can simply use the latest version of each major release.
|
|
190
|
+
|
|
191
|
+
## Installation
|
|
192
|
+
|
|
193
|
+
You can install it from the npm registry with `npm` command:
|
|
194
|
+
|
|
195
|
+
```sh
|
|
196
|
+
npm install @hono/node-server
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Or use `yarn`:
|
|
200
|
+
|
|
201
|
+
```sh
|
|
202
|
+
yarn add @hono/node-server
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
## Usage
|
|
206
|
+
|
|
207
|
+
Just import `@hono/node-server` at the top and write the code as usual.
|
|
208
|
+
The same code that runs on Cloudflare Workers, Deno, and Bun will work.
|
|
209
|
+
|
|
210
|
+
```ts
|
|
211
|
+
import { serve } from '@hono/node-server'
|
|
212
|
+
import { Hono } from 'hono'
|
|
213
|
+
|
|
214
|
+
const app = new Hono()
|
|
215
|
+
app.get('/', (c) => c.text('Hono meets Node.js'))
|
|
216
|
+
|
|
217
|
+
serve(app, (info) => {
|
|
218
|
+
console.log(`Listening on http://localhost:${info.port}`) // Listening on http://localhost:3000
|
|
219
|
+
})
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
For example, run it using `ts-node`. Then an HTTP server will be launched. The default port is `3000`.
|
|
223
|
+
|
|
224
|
+
```sh
|
|
225
|
+
ts-node ./index.ts
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
Open `http://localhost:3000` with your browser.
|
|
229
|
+
|
|
230
|
+
## Options
|
|
231
|
+
|
|
232
|
+
### `port`
|
|
233
|
+
|
|
234
|
+
```ts
|
|
235
|
+
serve({
|
|
236
|
+
fetch: app.fetch,
|
|
237
|
+
port: 8787, // Port number, default is 3000
|
|
238
|
+
})
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
### `createServer`
|
|
242
|
+
|
|
243
|
+
```ts
|
|
244
|
+
import { createServer } from 'node:https'
|
|
245
|
+
import fs from 'node:fs'
|
|
246
|
+
|
|
247
|
+
//...
|
|
248
|
+
|
|
249
|
+
serve({
|
|
250
|
+
fetch: app.fetch,
|
|
251
|
+
createServer: createServer,
|
|
252
|
+
serverOptions: {
|
|
253
|
+
key: fs.readFileSync('test/fixtures/keys/agent1-key.pem'),
|
|
254
|
+
cert: fs.readFileSync('test/fixtures/keys/agent1-cert.pem'),
|
|
255
|
+
},
|
|
256
|
+
})
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### `overrideGlobalObjects`
|
|
260
|
+
|
|
261
|
+
The default value is `true`. The Node.js Adapter rewrites the global Request/Response and uses a lightweight Request/Response to improve performance. If you don't want to do that, set `false`.
|
|
262
|
+
|
|
263
|
+
```ts
|
|
264
|
+
serve({
|
|
265
|
+
fetch: app.fetch,
|
|
266
|
+
overrideGlobalObjects: false,
|
|
267
|
+
})
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### `autoCleanupIncoming`
|
|
271
|
+
|
|
272
|
+
The default value is `true`. The Node.js Adapter automatically cleans up (explicitly call `destroy()` method) if application is not finished to consume the incoming request. If you don't want to do that, set `false`.
|
|
273
|
+
|
|
274
|
+
If the application accepts connections from arbitrary clients, this cleanup must be done otherwise incomplete requests from clients may cause the application to stop responding. If your application only accepts connections from trusted clients, such as in a reverse proxy environment and there is no process that returns a response without reading the body of the POST request all the way through, you can improve performance by setting it to `false`.
|
|
275
|
+
|
|
276
|
+
```ts
|
|
277
|
+
serve({
|
|
278
|
+
fetch: app.fetch,
|
|
279
|
+
autoCleanupIncoming: false,
|
|
280
|
+
})
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
## Middleware
|
|
284
|
+
|
|
285
|
+
Most built-in middleware also works with Node.js.
|
|
286
|
+
Read [the documentation](https://hono.dev/middleware/builtin/basic-auth) and use the Middleware of your liking.
|
|
287
|
+
|
|
288
|
+
```ts
|
|
289
|
+
import { serve } from '@hono/node-server'
|
|
290
|
+
import { Hono } from 'hono'
|
|
291
|
+
import { prettyJSON } from 'hono/pretty-json'
|
|
292
|
+
|
|
293
|
+
const app = new Hono()
|
|
294
|
+
|
|
295
|
+
app.get('*', prettyJSON())
|
|
296
|
+
app.get('/', (c) => c.json({ 'Hono meets': 'Node.js' }))
|
|
297
|
+
|
|
298
|
+
serve(app)
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
## Serve Static Middleware
|
|
302
|
+
|
|
303
|
+
Use Serve Static Middleware that has been created for Node.js.
|
|
304
|
+
|
|
305
|
+
```ts
|
|
306
|
+
import { serveStatic } from '@hono/node-server/serve-static'
|
|
307
|
+
|
|
308
|
+
//...
|
|
309
|
+
|
|
310
|
+
app.use('/static/*', serveStatic({ root: './' }))
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
If using a relative path, `root` will be relative to the current working directory from which the app was started.
|
|
314
|
+
|
|
315
|
+
This can cause confusion when running your application locally.
|
|
316
|
+
|
|
317
|
+
Imagine your project structure is:
|
|
318
|
+
|
|
319
|
+
```
|
|
320
|
+
my-hono-project/
|
|
321
|
+
src/
|
|
322
|
+
index.ts
|
|
323
|
+
static/
|
|
324
|
+
index.html
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
Typically, you would run your app from the project's root directory (`my-hono-project`),
|
|
328
|
+
so you would need the following code to serve the `static` folder:
|
|
329
|
+
|
|
330
|
+
```ts
|
|
331
|
+
app.use('/static/*', serveStatic({ root: './static' }))
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
Notice that `root` here is not relative to `src/index.ts`, rather to `my-hono-project`.
|
|
335
|
+
|
|
336
|
+
### Options
|
|
337
|
+
|
|
338
|
+
#### `rewriteRequestPath`
|
|
339
|
+
|
|
340
|
+
If you want to serve files in `./.foojs` with the request path `/__foo/*`, you can write like the following.
|
|
341
|
+
|
|
342
|
+
```ts
|
|
343
|
+
app.use(
|
|
344
|
+
'/__foo/*',
|
|
345
|
+
serveStatic({
|
|
346
|
+
root: './.foojs/',
|
|
347
|
+
rewriteRequestPath: (path: string) => path.replace(/^\/__foo/, ''),
|
|
348
|
+
})
|
|
349
|
+
)
|
|
350
|
+
```
|
|
351
|
+
|
|
352
|
+
#### `onFound`
|
|
353
|
+
|
|
354
|
+
You can specify handling when the requested file is found with `onFound`.
|
|
355
|
+
|
|
356
|
+
```ts
|
|
357
|
+
app.use(
|
|
358
|
+
'/static/*',
|
|
359
|
+
serveStatic({
|
|
360
|
+
// ...
|
|
361
|
+
onFound: (_path, c) => {
|
|
362
|
+
c.header('Cache-Control', `public, immutable, max-age=31536000`)
|
|
363
|
+
},
|
|
364
|
+
})
|
|
365
|
+
)
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
#### `onNotFound`
|
|
369
|
+
|
|
370
|
+
The `onNotFound` is useful for debugging. You can write a handle for when a file is not found.
|
|
371
|
+
|
|
372
|
+
```ts
|
|
373
|
+
app.use(
|
|
374
|
+
'/static/*',
|
|
375
|
+
serveStatic({
|
|
376
|
+
root: './non-existent-dir',
|
|
377
|
+
onNotFound: (path, c) => {
|
|
378
|
+
console.log(`${path} is not found, request to ${c.req.path}`)
|
|
379
|
+
},
|
|
380
|
+
})
|
|
381
|
+
)
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
#### `precompressed`
|
|
385
|
+
|
|
386
|
+
The `precompressed` option checks if files with extensions like `.br` or `.gz` are available and serves them based on the `Accept-Encoding` header. It prioritizes Brotli, then Zstd, and Gzip. If none are available, it serves the original file.
|
|
387
|
+
|
|
388
|
+
```ts
|
|
389
|
+
app.use(
|
|
390
|
+
'/static/*',
|
|
391
|
+
serveStatic({
|
|
392
|
+
precompressed: true,
|
|
393
|
+
})
|
|
394
|
+
)
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
## ConnInfo Helper
|
|
398
|
+
|
|
399
|
+
You can use the [ConnInfo Helper](https://hono.dev/docs/helpers/conninfo) by importing `getConnInfo` from `@hono/node-server/conninfo`.
|
|
400
|
+
|
|
401
|
+
```ts
|
|
402
|
+
import { getConnInfo } from '@hono/node-server/conninfo'
|
|
403
|
+
|
|
404
|
+
app.get('/', (c) => {
|
|
405
|
+
const info = getConnInfo(c) // info is `ConnInfo`
|
|
406
|
+
return c.text(`Your remote address is ${info.remote.address}`)
|
|
407
|
+
})
|
|
408
|
+
```
|
|
409
|
+
|
|
410
|
+
## Accessing Node.js API
|
|
411
|
+
|
|
412
|
+
You can access the Node.js API from `c.env` in Node.js. For example, if you want to specify a type, you can write the following.
|
|
413
|
+
|
|
414
|
+
```ts
|
|
415
|
+
import { serve } from '@hono/node-server'
|
|
416
|
+
import type { HttpBindings } from '@hono/node-server'
|
|
417
|
+
import { Hono } from 'hono'
|
|
418
|
+
|
|
419
|
+
const app = new Hono<{ Bindings: HttpBindings }>()
|
|
420
|
+
|
|
421
|
+
app.get('/', (c) => {
|
|
422
|
+
return c.json({
|
|
423
|
+
remoteAddress: c.env.incoming.socket.remoteAddress,
|
|
424
|
+
})
|
|
425
|
+
})
|
|
426
|
+
|
|
427
|
+
serve(app)
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
The APIs that you can get from `c.env` are as follows.
|
|
431
|
+
|
|
432
|
+
```ts
|
|
433
|
+
type HttpBindings = {
|
|
434
|
+
incoming: IncomingMessage
|
|
435
|
+
outgoing: ServerResponse
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
type Http2Bindings = {
|
|
439
|
+
incoming: Http2ServerRequest
|
|
440
|
+
outgoing: Http2ServerResponse
|
|
441
|
+
}
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
## Direct response from Node.js API
|
|
445
|
+
|
|
446
|
+
You can directly respond to the client from the Node.js API.
|
|
447
|
+
In that case, the response from Hono should be ignored, so return `RESPONSE_ALREADY_SENT`.
|
|
448
|
+
|
|
449
|
+
> [!NOTE]
|
|
450
|
+
> This feature can be used when migrating existing Node.js applications to Hono, but we recommend using Hono's API for new applications.
|
|
451
|
+
|
|
452
|
+
```ts
|
|
453
|
+
import { serve } from '@hono/node-server'
|
|
454
|
+
import type { HttpBindings } from '@hono/node-server'
|
|
455
|
+
import { RESPONSE_ALREADY_SENT } from '@hono/node-server/utils/response'
|
|
456
|
+
import { Hono } from 'hono'
|
|
457
|
+
|
|
458
|
+
const app = new Hono<{ Bindings: HttpBindings }>()
|
|
459
|
+
|
|
460
|
+
app.get('/', (c) => {
|
|
461
|
+
const { outgoing } = c.env
|
|
462
|
+
outgoing.writeHead(200, { 'Content-Type': 'text/plain' })
|
|
463
|
+
outgoing.end('Hello World\n')
|
|
464
|
+
|
|
465
|
+
return RESPONSE_ALREADY_SENT
|
|
466
|
+
})
|
|
467
|
+
|
|
468
|
+
serve(app)
|
|
469
|
+
```
|
|
470
|
+
|
|
471
|
+
## Listen to a UNIX domain socket
|
|
472
|
+
|
|
473
|
+
You can configure the HTTP server to listen to a UNIX domain socket instead of a TCP port.
|
|
474
|
+
|
|
475
|
+
```ts
|
|
476
|
+
import { createAdaptorServer } from '@hono/node-server'
|
|
477
|
+
|
|
478
|
+
// ...
|
|
479
|
+
|
|
480
|
+
const socketPath ='/tmp/example.sock'
|
|
481
|
+
|
|
482
|
+
const server = createAdaptorServer(app)
|
|
483
|
+
server.listen(socketPath, () => {
|
|
484
|
+
console.log(`Listening on ${socketPath}`)
|
|
485
|
+
})
|
|
486
|
+
```
|
|
487
|
+
|
|
488
|
+
## Related projects
|
|
489
|
+
|
|
490
|
+
- Hono - <https://hono.dev>
|
|
491
|
+
- Hono GitHub repository - <https://github.com/honojs/hono>
|
|
492
|
+
|
|
493
|
+
## Author
|
|
494
|
+
|
|
495
|
+
Yusuke Wada <https://github.com/yusukebe>
|
|
496
|
+
|
|
497
|
+
## License
|
|
498
|
+
|
|
499
|
+
MIT
|
|
500
|
+
=========================================
|
|
501
|
+
END OF @hono/node-server@1.19.8 AND INFORMATION
|
|
502
|
+
|
|
503
|
+
%% @lowire/loop@0.0.25 NOTICES AND INFORMATION BEGIN HERE
|
|
504
|
+
=========================================
|
|
505
|
+
Apache License
|
|
506
|
+
Version 2.0, January 2004
|
|
507
|
+
http://www.apache.org/licenses/
|
|
508
|
+
|
|
509
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
510
|
+
|
|
511
|
+
1. Definitions.
|
|
512
|
+
|
|
513
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
514
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
515
|
+
|
|
516
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
517
|
+
the copyright owner that is granting the License.
|
|
518
|
+
|
|
519
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
520
|
+
other entities that control, are controlled by, or are under common
|
|
521
|
+
control with that entity. For the purposes of this definition,
|
|
522
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
523
|
+
direction or management of such entity, whether by contract or
|
|
524
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
525
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
526
|
+
|
|
527
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
528
|
+
exercising permissions granted by this License.
|
|
529
|
+
|
|
530
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
531
|
+
including but not limited to software source code, documentation
|
|
532
|
+
source, and configuration files.
|
|
533
|
+
|
|
534
|
+
"Object" form shall mean any form resulting from mechanical
|
|
535
|
+
transformation or translation of a Source form, including but
|
|
536
|
+
not limited to compiled object code, generated documentation,
|
|
537
|
+
and conversions to other media types.
|
|
538
|
+
|
|
539
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
540
|
+
Object form, made available under the License, as indicated by a
|
|
541
|
+
copyright notice that is included in or attached to the work
|
|
542
|
+
(an example is provided in the Appendix below).
|
|
543
|
+
|
|
544
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
545
|
+
form, that is based on (or derived from) the Work and for which the
|
|
546
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
547
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
548
|
+
of this License, Derivative Works shall not include works that remain
|
|
549
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
550
|
+
the Work and Derivative Works thereof.
|
|
551
|
+
|
|
552
|
+
"Contribution" shall mean any work of authorship, including
|
|
553
|
+
the original version of the Work and any modifications or additions
|
|
554
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
555
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
556
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
557
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
558
|
+
means any form of electronic, verbal, or written communication sent
|
|
559
|
+
to the Licensor or its representatives, including but not limited to
|
|
560
|
+
communication on electronic mailing lists, source code control systems,
|
|
561
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
562
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
563
|
+
excluding communication that is conspicuously marked or otherwise
|
|
564
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
565
|
+
|
|
566
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
567
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
568
|
+
subsequently incorporated within the Work.
|
|
569
|
+
|
|
570
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
571
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
572
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
573
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
574
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
575
|
+
Work and such Derivative Works in Source or Object form.
|
|
576
|
+
|
|
577
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
578
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
579
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
580
|
+
(except as stated in this section) patent license to make, have made,
|
|
581
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
582
|
+
where such license applies only to those patent claims licensable
|
|
583
|
+
by such Contributor that are necessarily infringed by their
|
|
584
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
585
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
586
|
+
institute patent litigation against any entity (including a
|
|
587
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
588
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
589
|
+
or contributory patent infringement, then any patent licenses
|
|
590
|
+
granted to You under this License for that Work shall terminate
|
|
591
|
+
as of the date such litigation is filed.
|
|
592
|
+
|
|
593
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
594
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
595
|
+
modifications, and in Source or Object form, provided that You
|
|
596
|
+
meet the following conditions:
|
|
597
|
+
|
|
598
|
+
(a) You must give any other recipients of the Work or
|
|
599
|
+
Derivative Works a copy of this License; and
|
|
600
|
+
|
|
601
|
+
(b) You must cause any modified files to carry prominent notices
|
|
602
|
+
stating that You changed the files; and
|
|
603
|
+
|
|
604
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
605
|
+
that You distribute, all copyright, patent, trademark, and
|
|
606
|
+
attribution notices from the Source form of the Work,
|
|
607
|
+
excluding those notices that do not pertain to any part of
|
|
608
|
+
the Derivative Works; and
|
|
609
|
+
|
|
610
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
611
|
+
distribution, then any Derivative Works that You distribute must
|
|
612
|
+
include a readable copy of the attribution notices contained
|
|
613
|
+
within such NOTICE file, excluding those notices that do not
|
|
614
|
+
pertain to any part of the Derivative Works, in at least one
|
|
615
|
+
of the following places: within a NOTICE text file distributed
|
|
616
|
+
as part of the Derivative Works; within the Source form or
|
|
617
|
+
documentation, if provided along with the Derivative Works; or,
|
|
618
|
+
within a display generated by the Derivative Works, if and
|
|
619
|
+
wherever such third-party notices normally appear. The contents
|
|
620
|
+
of the NOTICE file are for informational purposes only and
|
|
621
|
+
do not modify the License. You may add Your own attribution
|
|
622
|
+
notices within Derivative Works that You distribute, alongside
|
|
623
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
624
|
+
that such additional attribution notices cannot be construed
|
|
625
|
+
as modifying the License.
|
|
626
|
+
|
|
627
|
+
You may add Your own copyright statement to Your modifications and
|
|
628
|
+
may provide additional or different license terms and conditions
|
|
629
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
630
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
631
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
632
|
+
the conditions stated in this License.
|
|
633
|
+
|
|
634
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
635
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
636
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
637
|
+
this License, without any additional terms or conditions.
|
|
638
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
639
|
+
the terms of any separate license agreement you may have executed
|
|
640
|
+
with Licensor regarding such Contributions.
|
|
641
|
+
|
|
642
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
643
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
644
|
+
except as required for reasonable and customary use in describing the
|
|
645
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
646
|
+
|
|
647
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
648
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
649
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
650
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
651
|
+
implied, including, without limitation, any warranties or conditions
|
|
652
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
653
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
654
|
+
appropriateness of using or redistributing the Work and assume any
|
|
655
|
+
risks associated with Your exercise of permissions under this License.
|
|
656
|
+
|
|
657
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
658
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
659
|
+
unless required by applicable law (such as deliberate and grossly
|
|
660
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
661
|
+
liable to You for damages, including any direct, indirect, special,
|
|
662
|
+
incidental, or consequential damages of any character arising as a
|
|
663
|
+
result of this License or out of the use or inability to use the
|
|
664
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
665
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
666
|
+
other commercial damages or losses), even if such Contributor
|
|
667
|
+
has been advised of the possibility of such damages.
|
|
668
|
+
|
|
669
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
670
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
671
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
672
|
+
or other liability obligations and/or rights consistent with this
|
|
673
|
+
License. However, in accepting such obligations, You may act only
|
|
674
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
675
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
676
|
+
defend, and hold each Contributor harmless for any liability
|
|
677
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
678
|
+
of your accepting any such warranty or additional liability.
|
|
679
|
+
|
|
680
|
+
END OF TERMS AND CONDITIONS
|
|
681
|
+
|
|
682
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
683
|
+
|
|
684
|
+
To apply the Apache License to your work, attach the following
|
|
685
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
686
|
+
replaced with your own identifying information. (Don't include
|
|
687
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
688
|
+
comment syntax for the file format. We also recommend that a
|
|
689
|
+
file or class name and description of purpose be included on the
|
|
690
|
+
same "printed page" as the copyright notice for easier
|
|
691
|
+
identification within third-party archives.
|
|
692
|
+
|
|
693
|
+
Copyright (c) Microsoft Corporation.
|
|
694
|
+
|
|
695
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
696
|
+
you may not use this file except in compliance with the License.
|
|
697
|
+
You may obtain a copy of the License at
|
|
698
|
+
|
|
699
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
700
|
+
|
|
701
|
+
Unless required by applicable law or agreed to in writing, software
|
|
702
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
703
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
704
|
+
See the License for the specific language governing permissions and
|
|
705
|
+
limitations under the License.
|
|
706
|
+
=========================================
|
|
707
|
+
END OF @lowire/loop@0.0.25 AND INFORMATION
|
|
708
|
+
|
|
709
|
+
%% @modelcontextprotocol/sdk@1.25.2 NOTICES AND INFORMATION BEGIN HERE
|
|
710
|
+
=========================================
|
|
711
|
+
MIT License
|
|
712
|
+
|
|
713
|
+
Copyright (c) 2024 Anthropic, PBC
|
|
714
|
+
|
|
715
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
716
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
717
|
+
in the Software without restriction, including without limitation the rights
|
|
718
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
719
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
720
|
+
furnished to do so, subject to the following conditions:
|
|
721
|
+
|
|
722
|
+
The above copyright notice and this permission notice shall be included in all
|
|
723
|
+
copies or substantial portions of the Software.
|
|
724
|
+
|
|
725
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
726
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
727
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
728
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
729
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
730
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
731
|
+
SOFTWARE.
|
|
732
|
+
=========================================
|
|
733
|
+
END OF @modelcontextprotocol/sdk@1.25.2 AND INFORMATION
|
|
734
|
+
|
|
735
|
+
%% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
736
|
+
=========================================
|
|
737
|
+
(The MIT License)
|
|
738
|
+
|
|
739
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
740
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
741
|
+
|
|
742
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
743
|
+
a copy of this software and associated documentation files (the
|
|
744
|
+
'Software'), to deal in the Software without restriction, including
|
|
745
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
746
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
747
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
748
|
+
the following conditions:
|
|
749
|
+
|
|
750
|
+
The above copyright notice and this permission notice shall be
|
|
751
|
+
included in all copies or substantial portions of the Software.
|
|
752
|
+
|
|
753
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
754
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
755
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
756
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
757
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
758
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
759
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
760
|
+
=========================================
|
|
761
|
+
END OF accepts@2.0.0 AND INFORMATION
|
|
762
|
+
|
|
763
|
+
%% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
|
|
764
|
+
=========================================
|
|
765
|
+
(The MIT License)
|
|
766
|
+
|
|
767
|
+
Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
|
|
768
|
+
|
|
769
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
770
|
+
a copy of this software and associated documentation files (the
|
|
771
|
+
'Software'), to deal in the Software without restriction, including
|
|
772
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
773
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
774
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
775
|
+
the following conditions:
|
|
776
|
+
|
|
777
|
+
The above copyright notice and this permission notice shall be
|
|
778
|
+
included in all copies or substantial portions of the Software.
|
|
779
|
+
|
|
780
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
781
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
782
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
783
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
784
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
785
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
786
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
787
|
+
=========================================
|
|
788
|
+
END OF agent-base@7.1.4 AND INFORMATION
|
|
789
|
+
|
|
790
|
+
%% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
791
|
+
=========================================
|
|
792
|
+
MIT License
|
|
793
|
+
|
|
794
|
+
Copyright (c) 2020 Evgeny Poberezkin
|
|
795
|
+
|
|
796
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
797
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
798
|
+
in the Software without restriction, including without limitation the rights
|
|
799
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
800
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
801
|
+
furnished to do so, subject to the following conditions:
|
|
802
|
+
|
|
803
|
+
The above copyright notice and this permission notice shall be included in all
|
|
804
|
+
copies or substantial portions of the Software.
|
|
805
|
+
|
|
806
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
807
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
808
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
809
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
810
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
811
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
812
|
+
SOFTWARE.
|
|
813
|
+
=========================================
|
|
814
|
+
END OF ajv-formats@3.0.1 AND INFORMATION
|
|
815
|
+
|
|
816
|
+
%% ajv@8.17.1 NOTICES AND INFORMATION BEGIN HERE
|
|
817
|
+
=========================================
|
|
818
|
+
The MIT License (MIT)
|
|
819
|
+
|
|
820
|
+
Copyright (c) 2015-2021 Evgeny Poberezkin
|
|
821
|
+
|
|
822
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
823
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
824
|
+
in the Software without restriction, including without limitation the rights
|
|
825
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
826
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
827
|
+
furnished to do so, subject to the following conditions:
|
|
828
|
+
|
|
829
|
+
The above copyright notice and this permission notice shall be included in all
|
|
830
|
+
copies or substantial portions of the Software.
|
|
831
|
+
|
|
832
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
833
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
834
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
835
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
836
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
837
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
838
|
+
SOFTWARE.
|
|
839
|
+
=========================================
|
|
840
|
+
END OF ajv@8.17.1 AND INFORMATION
|
|
841
|
+
|
|
842
|
+
%% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
843
|
+
=========================================
|
|
844
|
+
(MIT)
|
|
845
|
+
|
|
846
|
+
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
|
|
847
|
+
|
|
848
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
849
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
850
|
+
the Software without restriction, including without limitation the rights to
|
|
851
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
852
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
853
|
+
so, subject to the following conditions:
|
|
854
|
+
|
|
855
|
+
The above copyright notice and this permission notice shall be included in all
|
|
856
|
+
copies or substantial portions of the Software.
|
|
857
|
+
|
|
858
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
859
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
860
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
861
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
862
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
863
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
864
|
+
SOFTWARE.
|
|
865
|
+
=========================================
|
|
866
|
+
END OF balanced-match@1.0.2 AND INFORMATION
|
|
867
|
+
|
|
868
|
+
%% body-parser@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
869
|
+
=========================================
|
|
870
|
+
(The MIT License)
|
|
871
|
+
|
|
872
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
873
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
874
|
+
|
|
875
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
876
|
+
a copy of this software and associated documentation files (the
|
|
877
|
+
'Software'), to deal in the Software without restriction, including
|
|
878
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
879
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
880
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
881
|
+
the following conditions:
|
|
882
|
+
|
|
883
|
+
The above copyright notice and this permission notice shall be
|
|
884
|
+
included in all copies or substantial portions of the Software.
|
|
885
|
+
|
|
886
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
887
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
888
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
889
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
890
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
891
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
892
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
893
|
+
=========================================
|
|
894
|
+
END OF body-parser@2.2.1 AND INFORMATION
|
|
895
|
+
|
|
896
|
+
%% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
|
|
897
|
+
=========================================
|
|
898
|
+
MIT License
|
|
899
|
+
|
|
900
|
+
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
|
|
901
|
+
|
|
902
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
903
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
904
|
+
in the Software without restriction, including without limitation the rights
|
|
905
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
906
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
907
|
+
furnished to do so, subject to the following conditions:
|
|
908
|
+
|
|
909
|
+
The above copyright notice and this permission notice shall be included in all
|
|
910
|
+
copies or substantial portions of the Software.
|
|
911
|
+
|
|
912
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
913
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
914
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
915
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
916
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
917
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
918
|
+
SOFTWARE.
|
|
919
|
+
=========================================
|
|
920
|
+
END OF brace-expansion@1.1.12 AND INFORMATION
|
|
921
|
+
|
|
922
|
+
%% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
|
|
923
|
+
=========================================
|
|
924
|
+
The MIT License
|
|
925
|
+
|
|
926
|
+
Copyright (c) 2013 Brian J. Brennan
|
|
927
|
+
|
|
928
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
929
|
+
of this software and associated documentation files (the "Software"), to deal in
|
|
930
|
+
the Software without restriction, including without limitation the rights to use,
|
|
931
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
|
932
|
+
Software, and to permit persons to whom the Software is furnished to do so,
|
|
933
|
+
subject to the following conditions:
|
|
934
|
+
|
|
935
|
+
The above copyright notice and this permission notice shall be included in all
|
|
936
|
+
copies or substantial portions of the Software.
|
|
937
|
+
|
|
938
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
939
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
940
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
941
|
+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
942
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
943
|
+
=========================================
|
|
944
|
+
END OF buffer-crc32@0.2.13 AND INFORMATION
|
|
945
|
+
|
|
946
|
+
%% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
947
|
+
=========================================
|
|
948
|
+
(The MIT License)
|
|
949
|
+
|
|
950
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
951
|
+
Copyright (c) 2015 Jed Watson <jed.watson@me.com>
|
|
952
|
+
|
|
953
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
954
|
+
a copy of this software and associated documentation files (the
|
|
955
|
+
'Software'), to deal in the Software without restriction, including
|
|
956
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
957
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
958
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
959
|
+
the following conditions:
|
|
960
|
+
|
|
961
|
+
The above copyright notice and this permission notice shall be
|
|
962
|
+
included in all copies or substantial portions of the Software.
|
|
963
|
+
|
|
964
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
965
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
966
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
967
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
968
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
969
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
970
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
971
|
+
=========================================
|
|
972
|
+
END OF bytes@3.1.2 AND INFORMATION
|
|
973
|
+
|
|
974
|
+
%% call-bind-apply-helpers@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
975
|
+
=========================================
|
|
976
|
+
MIT License
|
|
977
|
+
|
|
978
|
+
Copyright (c) 2024 Jordan Harband
|
|
979
|
+
|
|
980
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
981
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
982
|
+
in the Software without restriction, including without limitation the rights
|
|
983
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
984
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
985
|
+
furnished to do so, subject to the following conditions:
|
|
986
|
+
|
|
987
|
+
The above copyright notice and this permission notice shall be included in all
|
|
988
|
+
copies or substantial portions of the Software.
|
|
989
|
+
|
|
990
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
991
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
992
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
993
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
994
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
995
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
996
|
+
SOFTWARE.
|
|
997
|
+
=========================================
|
|
998
|
+
END OF call-bind-apply-helpers@1.0.2 AND INFORMATION
|
|
999
|
+
|
|
1000
|
+
%% call-bound@1.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1001
|
+
=========================================
|
|
1002
|
+
MIT License
|
|
1003
|
+
|
|
1004
|
+
Copyright (c) 2024 Jordan Harband
|
|
1005
|
+
|
|
1006
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1007
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1008
|
+
in the Software without restriction, including without limitation the rights
|
|
1009
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1010
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1011
|
+
furnished to do so, subject to the following conditions:
|
|
1012
|
+
|
|
1013
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1014
|
+
copies or substantial portions of the Software.
|
|
1015
|
+
|
|
1016
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1017
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1018
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1019
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1020
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1021
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1022
|
+
SOFTWARE.
|
|
1023
|
+
=========================================
|
|
1024
|
+
END OF call-bound@1.0.4 AND INFORMATION
|
|
1025
|
+
|
|
1026
|
+
%% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
|
|
1027
|
+
=========================================
|
|
1028
|
+
MIT License
|
|
1029
|
+
|
|
1030
|
+
Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1031
|
+
|
|
1032
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1033
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1034
|
+
in the Software without restriction, including without limitation the rights
|
|
1035
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1036
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1037
|
+
furnished to do so, subject to the following conditions:
|
|
1038
|
+
|
|
1039
|
+
The above copyright notice and this permission notice shall be included in
|
|
1040
|
+
all copies or substantial portions of the Software.
|
|
1041
|
+
|
|
1042
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1043
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1044
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1045
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1046
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1047
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1048
|
+
THE SOFTWARE.
|
|
1049
|
+
=========================================
|
|
1050
|
+
END OF codemirror@5.65.18 AND INFORMATION
|
|
1051
|
+
|
|
1052
|
+
%% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1053
|
+
=========================================
|
|
1054
|
+
MIT License
|
|
1055
|
+
|
|
1056
|
+
Original Library
|
|
1057
|
+
- Copyright (c) Marak Squires
|
|
1058
|
+
|
|
1059
|
+
Additional Functionality
|
|
1060
|
+
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1061
|
+
|
|
1062
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1063
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1064
|
+
in the Software without restriction, including without limitation the rights
|
|
1065
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1066
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1067
|
+
furnished to do so, subject to the following conditions:
|
|
1068
|
+
|
|
1069
|
+
The above copyright notice and this permission notice shall be included in
|
|
1070
|
+
all copies or substantial portions of the Software.
|
|
1071
|
+
|
|
1072
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1073
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1074
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1075
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1076
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1077
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1078
|
+
THE SOFTWARE.
|
|
1079
|
+
=========================================
|
|
1080
|
+
END OF colors@1.4.0 AND INFORMATION
|
|
1081
|
+
|
|
1082
|
+
%% commander@13.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1083
|
+
=========================================
|
|
1084
|
+
(The MIT License)
|
|
1085
|
+
|
|
1086
|
+
Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
|
|
1087
|
+
|
|
1088
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1089
|
+
a copy of this software and associated documentation files (the
|
|
1090
|
+
'Software'), to deal in the Software without restriction, including
|
|
1091
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1092
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1093
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1094
|
+
the following conditions:
|
|
1095
|
+
|
|
1096
|
+
The above copyright notice and this permission notice shall be
|
|
1097
|
+
included in all copies or substantial portions of the Software.
|
|
1098
|
+
|
|
1099
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1100
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1101
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1102
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1103
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1104
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1105
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1106
|
+
=========================================
|
|
1107
|
+
END OF commander@13.1.0 AND INFORMATION
|
|
1108
|
+
|
|
1109
|
+
%% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1110
|
+
=========================================
|
|
1111
|
+
This software is released under the MIT license:
|
|
1112
|
+
|
|
1113
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1114
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1115
|
+
the Software without restriction, including without limitation the rights to
|
|
1116
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1117
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1118
|
+
subject to the following conditions:
|
|
1119
|
+
|
|
1120
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1121
|
+
copies or substantial portions of the Software.
|
|
1122
|
+
|
|
1123
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1124
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1125
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1126
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1127
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1128
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1129
|
+
=========================================
|
|
1130
|
+
END OF concat-map@0.0.1 AND INFORMATION
|
|
1131
|
+
|
|
1132
|
+
%% content-disposition@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1133
|
+
=========================================
|
|
1134
|
+
(The MIT License)
|
|
1135
|
+
|
|
1136
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
1137
|
+
|
|
1138
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1139
|
+
a copy of this software and associated documentation files (the
|
|
1140
|
+
'Software'), to deal in the Software without restriction, including
|
|
1141
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1142
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1143
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1144
|
+
the following conditions:
|
|
1145
|
+
|
|
1146
|
+
The above copyright notice and this permission notice shall be
|
|
1147
|
+
included in all copies or substantial portions of the Software.
|
|
1148
|
+
|
|
1149
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1150
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1151
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1152
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1153
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1154
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1155
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1156
|
+
=========================================
|
|
1157
|
+
END OF content-disposition@1.0.0 AND INFORMATION
|
|
1158
|
+
|
|
1159
|
+
%% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
1160
|
+
=========================================
|
|
1161
|
+
(The MIT License)
|
|
1162
|
+
|
|
1163
|
+
Copyright (c) 2015 Douglas Christopher Wilson
|
|
1164
|
+
|
|
1165
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1166
|
+
a copy of this software and associated documentation files (the
|
|
1167
|
+
'Software'), to deal in the Software without restriction, including
|
|
1168
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1169
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1170
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1171
|
+
the following conditions:
|
|
1172
|
+
|
|
1173
|
+
The above copyright notice and this permission notice shall be
|
|
1174
|
+
included in all copies or substantial portions of the Software.
|
|
1175
|
+
|
|
1176
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1177
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1178
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1179
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1180
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1181
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1182
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1183
|
+
=========================================
|
|
1184
|
+
END OF content-type@1.0.5 AND INFORMATION
|
|
1185
|
+
|
|
1186
|
+
%% cookie-signature@1.2.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1187
|
+
=========================================
|
|
1188
|
+
(The MIT License)
|
|
1189
|
+
|
|
1190
|
+
Copyright (c) 2012–2024 LearnBoost <tj@learnboost.com> and other contributors;
|
|
1191
|
+
|
|
1192
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1193
|
+
a copy of this software and associated documentation files (the
|
|
1194
|
+
'Software'), to deal in the Software without restriction, including
|
|
1195
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1196
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1197
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1198
|
+
the following conditions:
|
|
1199
|
+
|
|
1200
|
+
The above copyright notice and this permission notice shall be
|
|
1201
|
+
included in all copies or substantial portions of the Software.
|
|
1202
|
+
|
|
1203
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1204
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1205
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1206
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1207
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1208
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1209
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1210
|
+
=========================================
|
|
1211
|
+
END OF cookie-signature@1.2.2 AND INFORMATION
|
|
1212
|
+
|
|
1213
|
+
%% cookie@0.7.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1214
|
+
=========================================
|
|
1215
|
+
(The MIT License)
|
|
1216
|
+
|
|
1217
|
+
Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
|
|
1218
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1219
|
+
|
|
1220
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1221
|
+
a copy of this software and associated documentation files (the
|
|
1222
|
+
'Software'), to deal in the Software without restriction, including
|
|
1223
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1224
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1225
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1226
|
+
the following conditions:
|
|
1227
|
+
|
|
1228
|
+
The above copyright notice and this permission notice shall be
|
|
1229
|
+
included in all copies or substantial portions of the Software.
|
|
1230
|
+
|
|
1231
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1232
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1233
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1234
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1235
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1236
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1237
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1238
|
+
=========================================
|
|
1239
|
+
END OF cookie@0.7.2 AND INFORMATION
|
|
1240
|
+
|
|
1241
|
+
%% cors@2.8.5 NOTICES AND INFORMATION BEGIN HERE
|
|
1242
|
+
=========================================
|
|
1243
|
+
(The MIT License)
|
|
1244
|
+
|
|
1245
|
+
Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
|
|
1246
|
+
|
|
1247
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1248
|
+
a copy of this software and associated documentation files (the
|
|
1249
|
+
'Software'), to deal in the Software without restriction, including
|
|
1250
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1251
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1252
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1253
|
+
the following conditions:
|
|
1254
|
+
|
|
1255
|
+
The above copyright notice and this permission notice shall be
|
|
1256
|
+
included in all copies or substantial portions of the Software.
|
|
1257
|
+
|
|
1258
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1259
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1260
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1261
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1262
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1263
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1264
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1265
|
+
=========================================
|
|
1266
|
+
END OF cors@2.8.5 AND INFORMATION
|
|
1267
|
+
|
|
1268
|
+
%% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
1269
|
+
=========================================
|
|
1270
|
+
The MIT License (MIT)
|
|
1271
|
+
|
|
1272
|
+
Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
|
|
1273
|
+
|
|
1274
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1275
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1276
|
+
in the Software without restriction, including without limitation the rights
|
|
1277
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1278
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1279
|
+
furnished to do so, subject to the following conditions:
|
|
1280
|
+
|
|
1281
|
+
The above copyright notice and this permission notice shall be included in
|
|
1282
|
+
all copies or substantial portions of the Software.
|
|
1283
|
+
|
|
1284
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1285
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1286
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1287
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1288
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1289
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1290
|
+
THE SOFTWARE.
|
|
1291
|
+
=========================================
|
|
1292
|
+
END OF cross-spawn@7.0.6 AND INFORMATION
|
|
1293
|
+
|
|
1294
|
+
%% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1295
|
+
=========================================
|
|
1296
|
+
(The MIT License)
|
|
1297
|
+
|
|
1298
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
1299
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
1300
|
+
|
|
1301
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
1302
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
1303
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
1304
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1305
|
+
subject to the following conditions:
|
|
1306
|
+
|
|
1307
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
1308
|
+
portions of the Software.
|
|
1309
|
+
|
|
1310
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
1311
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1312
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1313
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1314
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1315
|
+
=========================================
|
|
1316
|
+
END OF debug@4.3.4 AND INFORMATION
|
|
1317
|
+
|
|
1318
|
+
%% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1319
|
+
=========================================
|
|
1320
|
+
(The MIT License)
|
|
1321
|
+
|
|
1322
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
1323
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
1324
|
+
|
|
1325
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
1326
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
1327
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
1328
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1329
|
+
subject to the following conditions:
|
|
1330
|
+
|
|
1331
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
1332
|
+
portions of the Software.
|
|
1333
|
+
|
|
1334
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
1335
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1336
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1337
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1338
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1339
|
+
=========================================
|
|
1340
|
+
END OF debug@4.4.0 AND INFORMATION
|
|
1341
|
+
|
|
1342
|
+
%% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1343
|
+
=========================================
|
|
1344
|
+
(The MIT License)
|
|
1345
|
+
|
|
1346
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
1347
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
1348
|
+
|
|
1349
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
1350
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
1351
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
1352
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1353
|
+
subject to the following conditions:
|
|
1354
|
+
|
|
1355
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
1356
|
+
portions of the Software.
|
|
1357
|
+
|
|
1358
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
1359
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1360
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1361
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1362
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1363
|
+
=========================================
|
|
1364
|
+
END OF debug@4.4.3 AND INFORMATION
|
|
1365
|
+
|
|
1366
|
+
%% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1367
|
+
=========================================
|
|
1368
|
+
MIT License
|
|
1369
|
+
|
|
1370
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1371
|
+
|
|
1372
|
+
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:
|
|
1373
|
+
|
|
1374
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1375
|
+
|
|
1376
|
+
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.
|
|
1377
|
+
=========================================
|
|
1378
|
+
END OF define-lazy-prop@2.0.0 AND INFORMATION
|
|
1379
|
+
|
|
1380
|
+
%% depd@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1381
|
+
=========================================
|
|
1382
|
+
(The MIT License)
|
|
1383
|
+
|
|
1384
|
+
Copyright (c) 2014-2018 Douglas Christopher Wilson
|
|
1385
|
+
|
|
1386
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1387
|
+
a copy of this software and associated documentation files (the
|
|
1388
|
+
'Software'), to deal in the Software without restriction, including
|
|
1389
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1390
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1391
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1392
|
+
the following conditions:
|
|
1393
|
+
|
|
1394
|
+
The above copyright notice and this permission notice shall be
|
|
1395
|
+
included in all copies or substantial portions of the Software.
|
|
1396
|
+
|
|
1397
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1398
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1399
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1400
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1401
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1402
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1403
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1404
|
+
=========================================
|
|
1405
|
+
END OF depd@2.0.0 AND INFORMATION
|
|
1406
|
+
|
|
1407
|
+
%% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1408
|
+
=========================================
|
|
1409
|
+
BSD 3-Clause License
|
|
1410
|
+
|
|
1411
|
+
Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
|
|
1412
|
+
All rights reserved.
|
|
1413
|
+
|
|
1414
|
+
Redistribution and use in source and binary forms, with or without
|
|
1415
|
+
modification, are permitted provided that the following conditions are met:
|
|
1416
|
+
|
|
1417
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
1418
|
+
list of conditions and the following disclaimer.
|
|
1419
|
+
|
|
1420
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
1421
|
+
this list of conditions and the following disclaimer in the documentation
|
|
1422
|
+
and/or other materials provided with the distribution.
|
|
1423
|
+
|
|
1424
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
1425
|
+
contributors may be used to endorse or promote products derived from
|
|
1426
|
+
this software without specific prior written permission.
|
|
1427
|
+
|
|
1428
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
1429
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1430
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1431
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
1432
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1433
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
1434
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
1435
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
1436
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1437
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1438
|
+
=========================================
|
|
1439
|
+
END OF diff@7.0.0 AND INFORMATION
|
|
1440
|
+
|
|
1441
|
+
%% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
|
|
1442
|
+
=========================================
|
|
1443
|
+
Copyright (c) 2015, Scott Motte
|
|
1444
|
+
All rights reserved.
|
|
1445
|
+
|
|
1446
|
+
Redistribution and use in source and binary forms, with or without
|
|
1447
|
+
modification, are permitted provided that the following conditions are met:
|
|
1448
|
+
|
|
1449
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
1450
|
+
list of conditions and the following disclaimer.
|
|
1451
|
+
|
|
1452
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
1453
|
+
this list of conditions and the following disclaimer in the documentation
|
|
1454
|
+
and/or other materials provided with the distribution.
|
|
1455
|
+
|
|
1456
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
1457
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1458
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1459
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
1460
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1461
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
1462
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
1463
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
1464
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1465
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1466
|
+
=========================================
|
|
1467
|
+
END OF dotenv@16.4.5 AND INFORMATION
|
|
1468
|
+
|
|
1469
|
+
%% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1470
|
+
=========================================
|
|
1471
|
+
MIT License
|
|
1472
|
+
|
|
1473
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
1474
|
+
|
|
1475
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1476
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1477
|
+
in the Software without restriction, including without limitation the rights
|
|
1478
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1479
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1480
|
+
furnished to do so, subject to the following conditions:
|
|
1481
|
+
|
|
1482
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1483
|
+
copies or substantial portions of the Software.
|
|
1484
|
+
|
|
1485
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1486
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1487
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1488
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1489
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1490
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1491
|
+
SOFTWARE.
|
|
1492
|
+
=========================================
|
|
1493
|
+
END OF dunder-proto@1.0.1 AND INFORMATION
|
|
1494
|
+
|
|
1495
|
+
%% ee-first@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1496
|
+
=========================================
|
|
1497
|
+
The MIT License (MIT)
|
|
1498
|
+
|
|
1499
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
1500
|
+
|
|
1501
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1502
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1503
|
+
in the Software without restriction, including without limitation the rights
|
|
1504
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1505
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1506
|
+
furnished to do so, subject to the following conditions:
|
|
1507
|
+
|
|
1508
|
+
The above copyright notice and this permission notice shall be included in
|
|
1509
|
+
all copies or substantial portions of the Software.
|
|
1510
|
+
|
|
1511
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1512
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1513
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1514
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1515
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1516
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1517
|
+
THE SOFTWARE.
|
|
1518
|
+
=========================================
|
|
1519
|
+
END OF ee-first@1.1.1 AND INFORMATION
|
|
1520
|
+
|
|
1521
|
+
%% encodeurl@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1522
|
+
=========================================
|
|
1523
|
+
(The MIT License)
|
|
1524
|
+
|
|
1525
|
+
Copyright (c) 2016 Douglas Christopher Wilson
|
|
1526
|
+
|
|
1527
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1528
|
+
a copy of this software and associated documentation files (the
|
|
1529
|
+
'Software'), to deal in the Software without restriction, including
|
|
1530
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1531
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1532
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1533
|
+
the following conditions:
|
|
1534
|
+
|
|
1535
|
+
The above copyright notice and this permission notice shall be
|
|
1536
|
+
included in all copies or substantial portions of the Software.
|
|
1537
|
+
|
|
1538
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1539
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1540
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1541
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1542
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1543
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1544
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1545
|
+
=========================================
|
|
1546
|
+
END OF encodeurl@2.0.0 AND INFORMATION
|
|
1547
|
+
|
|
1548
|
+
%% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1549
|
+
=========================================
|
|
1550
|
+
The MIT License (MIT)
|
|
1551
|
+
|
|
1552
|
+
Copyright (c) 2014 Mathias Buus
|
|
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 end-of-stream@1.4.4 AND INFORMATION
|
|
1573
|
+
|
|
1574
|
+
%% es-define-property@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1575
|
+
=========================================
|
|
1576
|
+
MIT License
|
|
1577
|
+
|
|
1578
|
+
Copyright (c) 2024 Jordan Harband
|
|
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 es-define-property@1.0.1 AND INFORMATION
|
|
1599
|
+
|
|
1600
|
+
%% es-errors@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1601
|
+
=========================================
|
|
1602
|
+
MIT License
|
|
1603
|
+
|
|
1604
|
+
Copyright (c) 2024 Jordan Harband
|
|
1605
|
+
|
|
1606
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1607
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1608
|
+
in the Software without restriction, including without limitation the rights
|
|
1609
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1610
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1611
|
+
furnished to do so, subject to the following conditions:
|
|
1612
|
+
|
|
1613
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1614
|
+
copies or substantial portions of the Software.
|
|
1615
|
+
|
|
1616
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1617
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1618
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1619
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1620
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1621
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1622
|
+
SOFTWARE.
|
|
1623
|
+
=========================================
|
|
1624
|
+
END OF es-errors@1.3.0 AND INFORMATION
|
|
1625
|
+
|
|
1626
|
+
%% es-object-atoms@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1627
|
+
=========================================
|
|
1628
|
+
MIT License
|
|
1629
|
+
|
|
1630
|
+
Copyright (c) 2024 Jordan Harband
|
|
1631
|
+
|
|
1632
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1633
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1634
|
+
in the Software without restriction, including without limitation the rights
|
|
1635
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1636
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1637
|
+
furnished to do so, subject to the following conditions:
|
|
1638
|
+
|
|
1639
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1640
|
+
copies or substantial portions of the Software.
|
|
1641
|
+
|
|
1642
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1643
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1644
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1645
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1646
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1647
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1648
|
+
SOFTWARE.
|
|
1649
|
+
=========================================
|
|
1650
|
+
END OF es-object-atoms@1.1.1 AND INFORMATION
|
|
1651
|
+
|
|
1652
|
+
%% escape-html@1.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1653
|
+
=========================================
|
|
1654
|
+
(The MIT License)
|
|
1655
|
+
|
|
1656
|
+
Copyright (c) 2012-2013 TJ Holowaychuk
|
|
1657
|
+
Copyright (c) 2015 Andreas Lubbe
|
|
1658
|
+
Copyright (c) 2015 Tiancheng "Timothy" Gu
|
|
1659
|
+
|
|
1660
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1661
|
+
a copy of this software and associated documentation files (the
|
|
1662
|
+
'Software'), to deal in the Software without restriction, including
|
|
1663
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1664
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1665
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1666
|
+
the following conditions:
|
|
1667
|
+
|
|
1668
|
+
The above copyright notice and this permission notice shall be
|
|
1669
|
+
included in all copies or substantial portions of the Software.
|
|
1670
|
+
|
|
1671
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1672
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1673
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1674
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1675
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1676
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1677
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1678
|
+
=========================================
|
|
1679
|
+
END OF escape-html@1.0.3 AND INFORMATION
|
|
1680
|
+
|
|
1681
|
+
%% etag@1.8.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1682
|
+
=========================================
|
|
1683
|
+
(The MIT License)
|
|
1684
|
+
|
|
1685
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
1686
|
+
|
|
1687
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1688
|
+
a copy of this software and associated documentation files (the
|
|
1689
|
+
'Software'), to deal in the Software without restriction, including
|
|
1690
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1691
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1692
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1693
|
+
the following conditions:
|
|
1694
|
+
|
|
1695
|
+
The above copyright notice and this permission notice shall be
|
|
1696
|
+
included in all copies or substantial portions of the Software.
|
|
1697
|
+
|
|
1698
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1699
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1700
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1701
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1702
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1703
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1704
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1705
|
+
=========================================
|
|
1706
|
+
END OF etag@1.8.1 AND INFORMATION
|
|
1707
|
+
|
|
1708
|
+
%% eventsource-parser@3.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1709
|
+
=========================================
|
|
1710
|
+
MIT License
|
|
1711
|
+
|
|
1712
|
+
Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
|
|
1713
|
+
|
|
1714
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1715
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1716
|
+
in the Software without restriction, including without limitation the rights
|
|
1717
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1718
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1719
|
+
furnished to do so, subject to the following conditions:
|
|
1720
|
+
|
|
1721
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1722
|
+
copies or substantial portions of the Software.
|
|
1723
|
+
|
|
1724
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1725
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1726
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1727
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1728
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1729
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1730
|
+
SOFTWARE.
|
|
1731
|
+
=========================================
|
|
1732
|
+
END OF eventsource-parser@3.0.3 AND INFORMATION
|
|
1733
|
+
|
|
1734
|
+
%% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
1735
|
+
=========================================
|
|
1736
|
+
The MIT License
|
|
1737
|
+
|
|
1738
|
+
Copyright (c) EventSource GitHub organisation
|
|
1739
|
+
|
|
1740
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1741
|
+
a copy of this software and associated documentation files (the
|
|
1742
|
+
"Software"), to deal in the Software without restriction, including
|
|
1743
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1744
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1745
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1746
|
+
the following conditions:
|
|
1747
|
+
|
|
1748
|
+
The above copyright notice and this permission notice shall be
|
|
1749
|
+
included in all copies or substantial portions of the Software.
|
|
1750
|
+
|
|
1751
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1752
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1753
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1754
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1755
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1756
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1757
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1758
|
+
=========================================
|
|
1759
|
+
END OF eventsource@3.0.7 AND INFORMATION
|
|
1760
|
+
|
|
1761
|
+
%% express-rate-limit@7.5.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1762
|
+
=========================================
|
|
1763
|
+
# MIT License
|
|
1764
|
+
|
|
1765
|
+
Copyright 2023 Nathan Friedly, Vedant K
|
|
1766
|
+
|
|
1767
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1768
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1769
|
+
the Software without restriction, including without limitation the rights to
|
|
1770
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1771
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1772
|
+
subject to the following conditions:
|
|
1773
|
+
|
|
1774
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1775
|
+
copies or substantial portions of the Software.
|
|
1776
|
+
|
|
1777
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1778
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1779
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1780
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1781
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1782
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1783
|
+
=========================================
|
|
1784
|
+
END OF express-rate-limit@7.5.1 AND INFORMATION
|
|
1785
|
+
|
|
1786
|
+
%% express@5.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1787
|
+
=========================================
|
|
1788
|
+
(The MIT License)
|
|
1789
|
+
|
|
1790
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
1791
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
1792
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1793
|
+
|
|
1794
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1795
|
+
a copy of this software and associated documentation files (the
|
|
1796
|
+
'Software'), to deal in the Software without restriction, including
|
|
1797
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1798
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1799
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1800
|
+
the following conditions:
|
|
1801
|
+
|
|
1802
|
+
The above copyright notice and this permission notice shall be
|
|
1803
|
+
included in all copies or substantial portions of the Software.
|
|
1804
|
+
|
|
1805
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1806
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1807
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1808
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1809
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1810
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1811
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1812
|
+
=========================================
|
|
1813
|
+
END OF express@5.1.0 AND INFORMATION
|
|
1814
|
+
|
|
1815
|
+
%% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1816
|
+
=========================================
|
|
1817
|
+
MIT License
|
|
1818
|
+
|
|
1819
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
1820
|
+
|
|
1821
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1822
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1823
|
+
in the Software without restriction, including without limitation the rights
|
|
1824
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1825
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1826
|
+
furnished to do so, subject to the following conditions:
|
|
1827
|
+
|
|
1828
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1829
|
+
copies or substantial portions of the Software.
|
|
1830
|
+
|
|
1831
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1832
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1833
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1834
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1835
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1836
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1837
|
+
SOFTWARE.
|
|
1838
|
+
=========================================
|
|
1839
|
+
END OF fast-deep-equal@3.1.3 AND INFORMATION
|
|
1840
|
+
|
|
1841
|
+
%% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1842
|
+
=========================================
|
|
1843
|
+
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
|
|
1844
|
+
Copyright (c) 2021-present The Fastify team
|
|
1845
|
+
All rights reserved.
|
|
1846
|
+
|
|
1847
|
+
The Fastify team members are listed at https://github.com/fastify/fastify#team.
|
|
1848
|
+
|
|
1849
|
+
Redistribution and use in source and binary forms, with or without
|
|
1850
|
+
modification, are permitted provided that the following conditions are met:
|
|
1851
|
+
* Redistributions of source code must retain the above copyright
|
|
1852
|
+
notice, this list of conditions and the following disclaimer.
|
|
1853
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1854
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1855
|
+
documentation and/or other materials provided with the distribution.
|
|
1856
|
+
* The names of any contributors may not be used to endorse or promote
|
|
1857
|
+
products derived from this software without specific prior written
|
|
1858
|
+
permission.
|
|
1859
|
+
|
|
1860
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
1861
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
1862
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1863
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
|
|
1864
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
1865
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
1866
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
1867
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1868
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1869
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1870
|
+
|
|
1871
|
+
* * *
|
|
1872
|
+
|
|
1873
|
+
The complete list of contributors can be found at:
|
|
1874
|
+
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
1875
|
+
=========================================
|
|
1876
|
+
END OF fast-uri@3.1.0 AND INFORMATION
|
|
1877
|
+
|
|
1878
|
+
%% finalhandler@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1879
|
+
=========================================
|
|
1880
|
+
(The MIT License)
|
|
1881
|
+
|
|
1882
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1883
|
+
|
|
1884
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1885
|
+
a copy of this software and associated documentation files (the
|
|
1886
|
+
'Software'), to deal in the Software without restriction, including
|
|
1887
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1888
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1889
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1890
|
+
the following conditions:
|
|
1891
|
+
|
|
1892
|
+
The above copyright notice and this permission notice shall be
|
|
1893
|
+
included in all copies or substantial portions of the Software.
|
|
1894
|
+
|
|
1895
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1896
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1897
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1898
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1899
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1900
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1901
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1902
|
+
=========================================
|
|
1903
|
+
END OF finalhandler@2.1.0 AND INFORMATION
|
|
1904
|
+
|
|
1905
|
+
%% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1906
|
+
=========================================
|
|
1907
|
+
(The MIT License)
|
|
1908
|
+
|
|
1909
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
1910
|
+
|
|
1911
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1912
|
+
a copy of this software and associated documentation files (the
|
|
1913
|
+
'Software'), to deal in the Software without restriction, including
|
|
1914
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1915
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1916
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1917
|
+
the following conditions:
|
|
1918
|
+
|
|
1919
|
+
The above copyright notice and this permission notice shall be
|
|
1920
|
+
included in all copies or substantial portions of the Software.
|
|
1921
|
+
|
|
1922
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1923
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1924
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1925
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1926
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1927
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1928
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1929
|
+
=========================================
|
|
1930
|
+
END OF forwarded@0.2.0 AND INFORMATION
|
|
1931
|
+
|
|
1932
|
+
%% fresh@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1933
|
+
=========================================
|
|
1934
|
+
(The MIT License)
|
|
1935
|
+
|
|
1936
|
+
Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
|
|
1937
|
+
Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1938
|
+
|
|
1939
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1940
|
+
a copy of this software and associated documentation files (the
|
|
1941
|
+
'Software'), to deal in the Software without restriction, including
|
|
1942
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1943
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1944
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1945
|
+
the following conditions:
|
|
1946
|
+
|
|
1947
|
+
The above copyright notice and this permission notice shall be
|
|
1948
|
+
included in all copies or substantial portions of the Software.
|
|
1949
|
+
|
|
1950
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1951
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1952
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1953
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1954
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1955
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1956
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1957
|
+
=========================================
|
|
1958
|
+
END OF fresh@2.0.0 AND INFORMATION
|
|
1959
|
+
|
|
1960
|
+
%% function-bind@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1961
|
+
=========================================
|
|
1962
|
+
Copyright (c) 2013 Raynos.
|
|
1963
|
+
|
|
1964
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1965
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1966
|
+
in the Software without restriction, including without limitation the rights
|
|
1967
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1968
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1969
|
+
furnished to do so, subject to the following conditions:
|
|
1970
|
+
|
|
1971
|
+
The above copyright notice and this permission notice shall be included in
|
|
1972
|
+
all copies or substantial portions of the Software.
|
|
1973
|
+
|
|
1974
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1975
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1976
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1977
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1978
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1979
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1980
|
+
THE SOFTWARE.
|
|
1981
|
+
=========================================
|
|
1982
|
+
END OF function-bind@1.1.2 AND INFORMATION
|
|
1983
|
+
|
|
1984
|
+
%% get-intrinsic@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1985
|
+
=========================================
|
|
1986
|
+
MIT License
|
|
1987
|
+
|
|
1988
|
+
Copyright (c) 2020 Jordan Harband
|
|
1989
|
+
|
|
1990
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1991
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1992
|
+
in the Software without restriction, including without limitation the rights
|
|
1993
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1994
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1995
|
+
furnished to do so, subject to the following conditions:
|
|
1996
|
+
|
|
1997
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1998
|
+
copies or substantial portions of the Software.
|
|
1999
|
+
|
|
2000
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2001
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2002
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2003
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2004
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2005
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2006
|
+
SOFTWARE.
|
|
2007
|
+
=========================================
|
|
2008
|
+
END OF get-intrinsic@1.3.0 AND INFORMATION
|
|
2009
|
+
|
|
2010
|
+
%% get-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2011
|
+
=========================================
|
|
2012
|
+
MIT License
|
|
2013
|
+
|
|
2014
|
+
Copyright (c) 2025 Jordan Harband
|
|
2015
|
+
|
|
2016
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2017
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2018
|
+
in the Software without restriction, including without limitation the rights
|
|
2019
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2020
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2021
|
+
furnished to do so, subject to the following conditions:
|
|
2022
|
+
|
|
2023
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2024
|
+
copies or substantial portions of the Software.
|
|
2025
|
+
|
|
2026
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2027
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2028
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2029
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2030
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2031
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2032
|
+
SOFTWARE.
|
|
2033
|
+
=========================================
|
|
2034
|
+
END OF get-proto@1.0.1 AND INFORMATION
|
|
2035
|
+
|
|
2036
|
+
%% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2037
|
+
=========================================
|
|
2038
|
+
MIT License
|
|
2039
|
+
|
|
2040
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2041
|
+
|
|
2042
|
+
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:
|
|
2043
|
+
|
|
2044
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2045
|
+
|
|
2046
|
+
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.
|
|
2047
|
+
=========================================
|
|
2048
|
+
END OF get-stream@5.2.0 AND INFORMATION
|
|
2049
|
+
|
|
2050
|
+
%% gopd@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2051
|
+
=========================================
|
|
2052
|
+
MIT License
|
|
2053
|
+
|
|
2054
|
+
Copyright (c) 2022 Jordan Harband
|
|
2055
|
+
|
|
2056
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2057
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2058
|
+
in the Software without restriction, including without limitation the rights
|
|
2059
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2060
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2061
|
+
furnished to do so, subject to the following conditions:
|
|
2062
|
+
|
|
2063
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2064
|
+
copies or substantial portions of the Software.
|
|
2065
|
+
|
|
2066
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2067
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2068
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2069
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2070
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2071
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2072
|
+
SOFTWARE.
|
|
2073
|
+
=========================================
|
|
2074
|
+
END OF gopd@1.2.0 AND INFORMATION
|
|
2075
|
+
|
|
2076
|
+
%% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
|
|
2077
|
+
=========================================
|
|
2078
|
+
The ISC License
|
|
2079
|
+
|
|
2080
|
+
Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
|
|
2081
|
+
|
|
2082
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2083
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2084
|
+
copyright notice and this permission notice appear in all copies.
|
|
2085
|
+
|
|
2086
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2087
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2088
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2089
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2090
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2091
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2092
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2093
|
+
=========================================
|
|
2094
|
+
END OF graceful-fs@4.2.10 AND INFORMATION
|
|
2095
|
+
|
|
2096
|
+
%% has-symbols@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2097
|
+
=========================================
|
|
2098
|
+
MIT License
|
|
2099
|
+
|
|
2100
|
+
Copyright (c) 2016 Jordan Harband
|
|
2101
|
+
|
|
2102
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2103
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2104
|
+
in the Software without restriction, including without limitation the rights
|
|
2105
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2106
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2107
|
+
furnished to do so, subject to the following conditions:
|
|
2108
|
+
|
|
2109
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2110
|
+
copies or substantial portions of the Software.
|
|
2111
|
+
|
|
2112
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2113
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2114
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2115
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2116
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2117
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2118
|
+
SOFTWARE.
|
|
2119
|
+
=========================================
|
|
2120
|
+
END OF has-symbols@1.1.0 AND INFORMATION
|
|
2121
|
+
|
|
2122
|
+
%% hasown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2123
|
+
=========================================
|
|
2124
|
+
MIT License
|
|
2125
|
+
|
|
2126
|
+
Copyright (c) Jordan Harband and contributors
|
|
2127
|
+
|
|
2128
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2129
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2130
|
+
in the Software without restriction, including without limitation the rights
|
|
2131
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2132
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2133
|
+
furnished to do so, subject to the following conditions:
|
|
2134
|
+
|
|
2135
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2136
|
+
copies or substantial portions of the Software.
|
|
2137
|
+
|
|
2138
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2139
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2140
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2141
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2142
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2143
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2144
|
+
SOFTWARE.
|
|
2145
|
+
=========================================
|
|
2146
|
+
END OF hasown@2.0.2 AND INFORMATION
|
|
2147
|
+
|
|
2148
|
+
%% hono@4.11.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2149
|
+
=========================================
|
|
2150
|
+
MIT License
|
|
2151
|
+
|
|
2152
|
+
Copyright (c) 2021 - present, Yusuke Wada and Hono contributors
|
|
2153
|
+
|
|
2154
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2155
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2156
|
+
in the Software without restriction, including without limitation the rights
|
|
2157
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2158
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2159
|
+
furnished to do so, subject to the following conditions:
|
|
2160
|
+
|
|
2161
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2162
|
+
copies or substantial portions of the Software.
|
|
2163
|
+
|
|
2164
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2165
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2166
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2167
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2168
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2169
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2170
|
+
SOFTWARE.
|
|
2171
|
+
=========================================
|
|
2172
|
+
END OF hono@4.11.3 AND INFORMATION
|
|
2173
|
+
|
|
2174
|
+
%% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2175
|
+
=========================================
|
|
2176
|
+
The MIT License (MIT)
|
|
2177
|
+
|
|
2178
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
2179
|
+
Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
|
|
2180
|
+
|
|
2181
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2182
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2183
|
+
in the Software without restriction, including without limitation the rights
|
|
2184
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2185
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2186
|
+
furnished to do so, subject to the following conditions:
|
|
2187
|
+
|
|
2188
|
+
The above copyright notice and this permission notice shall be included in
|
|
2189
|
+
all copies or substantial portions of the Software.
|
|
2190
|
+
|
|
2191
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2192
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2193
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2194
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2195
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2196
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2197
|
+
THE SOFTWARE.
|
|
2198
|
+
=========================================
|
|
2199
|
+
END OF http-errors@2.0.1 AND INFORMATION
|
|
2200
|
+
|
|
2201
|
+
%% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
2202
|
+
=========================================
|
|
2203
|
+
(The MIT License)
|
|
2204
|
+
|
|
2205
|
+
Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
|
|
2206
|
+
|
|
2207
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2208
|
+
a copy of this software and associated documentation files (the
|
|
2209
|
+
'Software'), to deal in the Software without restriction, including
|
|
2210
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2211
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2212
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2213
|
+
the following conditions:
|
|
2214
|
+
|
|
2215
|
+
The above copyright notice and this permission notice shall be
|
|
2216
|
+
included in all copies or substantial portions of the Software.
|
|
2217
|
+
|
|
2218
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2219
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2220
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2221
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2222
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2223
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2224
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2225
|
+
=========================================
|
|
2226
|
+
END OF https-proxy-agent@7.0.6 AND INFORMATION
|
|
2227
|
+
|
|
2228
|
+
%% iconv-lite@0.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2229
|
+
=========================================
|
|
2230
|
+
Copyright (c) 2011 Alexander Shtuchkin
|
|
2231
|
+
|
|
2232
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2233
|
+
a copy of this software and associated documentation files (the
|
|
2234
|
+
"Software"), to deal in the Software without restriction, including
|
|
2235
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2236
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2237
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2238
|
+
the following conditions:
|
|
2239
|
+
|
|
2240
|
+
The above copyright notice and this permission notice shall be
|
|
2241
|
+
included in all copies or substantial portions of the Software.
|
|
2242
|
+
|
|
2243
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2244
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2245
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2246
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2247
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2248
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2249
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2250
|
+
=========================================
|
|
2251
|
+
END OF iconv-lite@0.7.0 AND INFORMATION
|
|
2252
|
+
|
|
2253
|
+
%% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2254
|
+
=========================================
|
|
2255
|
+
The ISC License
|
|
2256
|
+
|
|
2257
|
+
Copyright (c) Isaac Z. Schlueter
|
|
2258
|
+
|
|
2259
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2260
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2261
|
+
copyright notice and this permission notice appear in all copies.
|
|
2262
|
+
|
|
2263
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2264
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2265
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2266
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
2267
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
2268
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
2269
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
2270
|
+
=========================================
|
|
2271
|
+
END OF inherits@2.0.4 AND INFORMATION
|
|
2272
|
+
|
|
2273
|
+
%% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
2274
|
+
=========================================
|
|
2275
|
+
Copyright (C) 2011 by Beau Gunderson
|
|
2276
|
+
|
|
2277
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2278
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2279
|
+
in the Software without restriction, including without limitation the rights
|
|
2280
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2281
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2282
|
+
furnished to do so, subject to the following conditions:
|
|
2283
|
+
|
|
2284
|
+
The above copyright notice and this permission notice shall be included in
|
|
2285
|
+
all copies or substantial portions of the Software.
|
|
2286
|
+
|
|
2287
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2288
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2289
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2290
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2291
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2292
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2293
|
+
THE SOFTWARE.
|
|
2294
|
+
=========================================
|
|
2295
|
+
END OF ip-address@9.0.5 AND INFORMATION
|
|
2296
|
+
|
|
2297
|
+
%% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2298
|
+
=========================================
|
|
2299
|
+
Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
|
|
2300
|
+
|
|
2301
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2302
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2303
|
+
in the Software without restriction, including without limitation the rights
|
|
2304
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2305
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2306
|
+
furnished to do so, subject to the following conditions:
|
|
2307
|
+
|
|
2308
|
+
The above copyright notice and this permission notice shall be included in
|
|
2309
|
+
all copies or substantial portions of the Software.
|
|
2310
|
+
|
|
2311
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2312
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2313
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2314
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2315
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2316
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2317
|
+
THE SOFTWARE.
|
|
2318
|
+
=========================================
|
|
2319
|
+
END OF ipaddr.js@1.9.1 AND INFORMATION
|
|
2320
|
+
|
|
2321
|
+
%% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2322
|
+
=========================================
|
|
2323
|
+
MIT License
|
|
2324
|
+
|
|
2325
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2326
|
+
|
|
2327
|
+
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:
|
|
2328
|
+
|
|
2329
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2330
|
+
|
|
2331
|
+
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.
|
|
2332
|
+
=========================================
|
|
2333
|
+
END OF is-docker@2.2.1 AND INFORMATION
|
|
2334
|
+
|
|
2335
|
+
%% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2336
|
+
=========================================
|
|
2337
|
+
Copyright (c) 2014 Forbes Lindesay
|
|
2338
|
+
|
|
2339
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2340
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2341
|
+
in the Software without restriction, including without limitation the rights
|
|
2342
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2343
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2344
|
+
furnished to do so, subject to the following conditions:
|
|
2345
|
+
|
|
2346
|
+
The above copyright notice and this permission notice shall be included in
|
|
2347
|
+
all copies or substantial portions of the Software.
|
|
2348
|
+
|
|
2349
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2350
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2351
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2352
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2353
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2354
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2355
|
+
THE SOFTWARE.
|
|
2356
|
+
=========================================
|
|
2357
|
+
END OF is-promise@4.0.0 AND INFORMATION
|
|
2358
|
+
|
|
2359
|
+
%% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2360
|
+
=========================================
|
|
2361
|
+
MIT License
|
|
2362
|
+
|
|
2363
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2364
|
+
|
|
2365
|
+
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:
|
|
2366
|
+
|
|
2367
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2368
|
+
|
|
2369
|
+
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.
|
|
2370
|
+
=========================================
|
|
2371
|
+
END OF is-wsl@2.2.0 AND INFORMATION
|
|
2372
|
+
|
|
2373
|
+
%% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2374
|
+
=========================================
|
|
2375
|
+
The ISC License
|
|
2376
|
+
|
|
2377
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2378
|
+
|
|
2379
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2380
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2381
|
+
copyright notice and this permission notice appear in all copies.
|
|
2382
|
+
|
|
2383
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2384
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2385
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2386
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2387
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2388
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2389
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2390
|
+
=========================================
|
|
2391
|
+
END OF isexe@2.0.0 AND INFORMATION
|
|
2392
|
+
|
|
2393
|
+
%% jose@6.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2394
|
+
=========================================
|
|
2395
|
+
The MIT License (MIT)
|
|
2396
|
+
|
|
2397
|
+
Copyright (c) 2018 Filip Skokan
|
|
2398
|
+
|
|
2399
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2400
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2401
|
+
in the Software without restriction, including without limitation the rights
|
|
2402
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2403
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2404
|
+
furnished to do so, subject to the following conditions:
|
|
2405
|
+
|
|
2406
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2407
|
+
copies or substantial portions of the Software.
|
|
2408
|
+
|
|
2409
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2410
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2411
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2412
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2413
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2414
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2415
|
+
SOFTWARE.
|
|
2416
|
+
=========================================
|
|
2417
|
+
END OF jose@6.1.3 AND INFORMATION
|
|
2418
|
+
|
|
2419
|
+
%% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2420
|
+
=========================================
|
|
2421
|
+
Copyright (c) 2014, Eugene Ware
|
|
2422
|
+
All rights reserved.
|
|
2423
|
+
|
|
2424
|
+
Redistribution and use in source and binary forms, with or without
|
|
2425
|
+
modification, are permitted provided that the following conditions are met:
|
|
2426
|
+
|
|
2427
|
+
1. Redistributions of source code must retain the above copyright
|
|
2428
|
+
notice, this list of conditions and the following disclaimer.
|
|
2429
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
2430
|
+
notice, this list of conditions and the following disclaimer in the
|
|
2431
|
+
documentation and/or other materials provided with the distribution.
|
|
2432
|
+
3. Neither the name of Eugene Ware nor the names of its contributors
|
|
2433
|
+
may be used to endorse or promote products derived from this software
|
|
2434
|
+
without specific prior written permission.
|
|
2435
|
+
|
|
2436
|
+
THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
|
|
2437
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2438
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2439
|
+
DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
|
|
2440
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2441
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2442
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
2443
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2444
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2445
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2446
|
+
=========================================
|
|
2447
|
+
END OF jpeg-js@0.4.4 AND INFORMATION
|
|
2448
|
+
|
|
2449
|
+
%% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2450
|
+
=========================================
|
|
2451
|
+
Licensing
|
|
2452
|
+
---------
|
|
2453
|
+
|
|
2454
|
+
This software is covered under the following copyright:
|
|
2455
|
+
|
|
2456
|
+
/*
|
|
2457
|
+
* Copyright (c) 2003-2005 Tom Wu
|
|
2458
|
+
* All Rights Reserved.
|
|
2459
|
+
*
|
|
2460
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
2461
|
+
* a copy of this software and associated documentation files (the
|
|
2462
|
+
* "Software"), to deal in the Software without restriction, including
|
|
2463
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
|
2464
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
2465
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
|
2466
|
+
* the following conditions:
|
|
2467
|
+
*
|
|
2468
|
+
* The above copyright notice and this permission notice shall be
|
|
2469
|
+
* included in all copies or substantial portions of the Software.
|
|
2470
|
+
*
|
|
2471
|
+
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
2472
|
+
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
2473
|
+
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
2474
|
+
*
|
|
2475
|
+
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
2476
|
+
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
2477
|
+
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
2478
|
+
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
2479
|
+
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2480
|
+
*
|
|
2481
|
+
* In addition, the following condition applies:
|
|
2482
|
+
*
|
|
2483
|
+
* All redistributions must retain an intact copy of this copyright notice
|
|
2484
|
+
* and disclaimer.
|
|
2485
|
+
*/
|
|
2486
|
+
|
|
2487
|
+
Address all questions regarding this license to:
|
|
2488
|
+
|
|
2489
|
+
Tom Wu
|
|
2490
|
+
tjw@cs.Stanford.EDU
|
|
2491
|
+
=========================================
|
|
2492
|
+
END OF jsbn@1.1.0 AND INFORMATION
|
|
2493
|
+
|
|
2494
|
+
%% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2495
|
+
=========================================
|
|
2496
|
+
MIT License
|
|
2497
|
+
|
|
2498
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
2499
|
+
|
|
2500
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2501
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2502
|
+
in the Software without restriction, including without limitation the rights
|
|
2503
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2504
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2505
|
+
furnished to do so, subject to the following conditions:
|
|
2506
|
+
|
|
2507
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2508
|
+
copies or substantial portions of the Software.
|
|
2509
|
+
|
|
2510
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2511
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2512
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2513
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2514
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2515
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2516
|
+
SOFTWARE.
|
|
2517
|
+
=========================================
|
|
2518
|
+
END OF json-schema-traverse@1.0.0 AND INFORMATION
|
|
2519
|
+
|
|
2520
|
+
%% json-schema-typed@8.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2521
|
+
=========================================
|
|
2522
|
+
BSD 2-Clause License
|
|
2523
|
+
|
|
2524
|
+
Original source code is copyright (c) 2019-2025 Remy Rylan
|
|
2525
|
+
<https://github.com/RemyRylan>
|
|
2526
|
+
|
|
2527
|
+
All JSON Schema documentation and descriptions are copyright (c):
|
|
2528
|
+
|
|
2529
|
+
2009 [draft-0] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2530
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2531
|
+
|
|
2532
|
+
2009 [draft-1] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2533
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2534
|
+
|
|
2535
|
+
2010 [draft-2] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2536
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2537
|
+
|
|
2538
|
+
2010 [draft-3] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2539
|
+
Gary Court <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
|
|
2540
|
+
|
|
2541
|
+
2013 [draft-4] IETF Trust <https://www.ietf.org/>), Francis Galiegue
|
|
2542
|
+
<fgaliegue@gmail.com>, Kris Zyp <kris@sitepen.com>, Gary Court
|
|
2543
|
+
<gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
|
|
2544
|
+
|
|
2545
|
+
2018 [draft-7] IETF Trust <https://www.ietf.org/>, Austin Wright <aaa@bzfx.net>,
|
|
2546
|
+
Henry Andrews <henry@cloudflare.com>, Geraint Luff <luffgd@gmail.com>, and
|
|
2547
|
+
Cloudflare, Inc. <https://www.cloudflare.com/>.
|
|
2548
|
+
|
|
2549
|
+
2019 [draft-2019-09] IETF Trust <https://www.ietf.org/>, Austin Wright
|
|
2550
|
+
<aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
|
|
2551
|
+
<bh7@sanger.ac.uk>, and Greg Dennis <gregsdennis@yahoo.com>.
|
|
2552
|
+
|
|
2553
|
+
2020 [draft-2020-12] IETF Trust <https://www.ietf.org/>, Austin Wright
|
|
2554
|
+
<aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
|
|
2555
|
+
<ben@jsonschema.dev>, and Greg Dennis <gregsdennis@yahoo.com>.
|
|
2556
|
+
|
|
2557
|
+
All rights reserved.
|
|
2558
|
+
|
|
2559
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
2560
|
+
are permitted provided that the following conditions are met:
|
|
2561
|
+
|
|
2562
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2563
|
+
list of conditions and the following disclaimer.
|
|
2564
|
+
|
|
2565
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2566
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2567
|
+
and/or other materials provided with the distribution.
|
|
2568
|
+
|
|
2569
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
2570
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2571
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2572
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
2573
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2574
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2575
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
2576
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2577
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2578
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2579
|
+
=========================================
|
|
2580
|
+
END OF json-schema-typed@8.0.2 AND INFORMATION
|
|
2581
|
+
|
|
2582
|
+
%% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2583
|
+
=========================================
|
|
2584
|
+
MIT License
|
|
2585
|
+
|
|
2586
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
2587
|
+
|
|
2588
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2589
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2590
|
+
in the Software without restriction, including without limitation the rights
|
|
2591
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2592
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2593
|
+
furnished to do so, subject to the following conditions:
|
|
2594
|
+
|
|
2595
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2596
|
+
copies or substantial portions of the Software.
|
|
2597
|
+
|
|
2598
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2599
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2600
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2601
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2602
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2603
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2604
|
+
SOFTWARE.
|
|
2605
|
+
=========================================
|
|
2606
|
+
END OF math-intrinsics@1.1.0 AND INFORMATION
|
|
2607
|
+
|
|
2608
|
+
%% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2609
|
+
=========================================
|
|
2610
|
+
(The MIT License)
|
|
2611
|
+
|
|
2612
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
2613
|
+
|
|
2614
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2615
|
+
a copy of this software and associated documentation files (the
|
|
2616
|
+
'Software'), to deal in the Software without restriction, including
|
|
2617
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2618
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2619
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2620
|
+
the following conditions:
|
|
2621
|
+
|
|
2622
|
+
The above copyright notice and this permission notice shall be
|
|
2623
|
+
included in all copies or substantial portions of the Software.
|
|
2624
|
+
|
|
2625
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2626
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2627
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2628
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2629
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2630
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2631
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2632
|
+
=========================================
|
|
2633
|
+
END OF media-typer@1.1.0 AND INFORMATION
|
|
2634
|
+
|
|
2635
|
+
%% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2636
|
+
=========================================
|
|
2637
|
+
MIT License
|
|
2638
|
+
|
|
2639
|
+
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
2640
|
+
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2641
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2642
|
+
|
|
2643
|
+
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:
|
|
2644
|
+
|
|
2645
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2646
|
+
|
|
2647
|
+
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.
|
|
2648
|
+
=========================================
|
|
2649
|
+
END OF merge-descriptors@2.0.0 AND INFORMATION
|
|
2650
|
+
|
|
2651
|
+
%% mime-db@1.54.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2652
|
+
=========================================
|
|
2653
|
+
(The MIT License)
|
|
2654
|
+
|
|
2655
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2656
|
+
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2657
|
+
|
|
2658
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2659
|
+
a copy of this software and associated documentation files (the
|
|
2660
|
+
'Software'), to deal in the Software without restriction, including
|
|
2661
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2662
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2663
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2664
|
+
the following conditions:
|
|
2665
|
+
|
|
2666
|
+
The above copyright notice and this permission notice shall be
|
|
2667
|
+
included in all copies or substantial portions of the Software.
|
|
2668
|
+
|
|
2669
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2670
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2671
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2672
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2673
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2674
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2675
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2676
|
+
=========================================
|
|
2677
|
+
END OF mime-db@1.54.0 AND INFORMATION
|
|
2678
|
+
|
|
2679
|
+
%% mime-types@3.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2680
|
+
=========================================
|
|
2681
|
+
(The MIT License)
|
|
2682
|
+
|
|
2683
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2684
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2685
|
+
|
|
2686
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2687
|
+
a copy of this software and associated documentation files (the
|
|
2688
|
+
'Software'), to deal in the Software without restriction, including
|
|
2689
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2690
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2691
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2692
|
+
the following conditions:
|
|
2693
|
+
|
|
2694
|
+
The above copyright notice and this permission notice shall be
|
|
2695
|
+
included in all copies or substantial portions of the Software.
|
|
2696
|
+
|
|
2697
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2698
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2699
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2700
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2701
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2702
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2703
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2704
|
+
=========================================
|
|
2705
|
+
END OF mime-types@3.0.1 AND INFORMATION
|
|
2706
|
+
|
|
2707
|
+
%% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2708
|
+
=========================================
|
|
2709
|
+
The MIT License (MIT)
|
|
2710
|
+
|
|
2711
|
+
Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
|
|
2712
|
+
|
|
2713
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2714
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2715
|
+
in the Software without restriction, including without limitation the rights
|
|
2716
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2717
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2718
|
+
furnished to do so, subject to the following conditions:
|
|
2719
|
+
|
|
2720
|
+
The above copyright notice and this permission notice shall be included in
|
|
2721
|
+
all copies or substantial portions of the Software.
|
|
2722
|
+
|
|
2723
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2724
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2725
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2726
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2727
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2728
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2729
|
+
THE SOFTWARE.
|
|
2730
|
+
=========================================
|
|
2731
|
+
END OF mime@3.0.0 AND INFORMATION
|
|
2732
|
+
|
|
2733
|
+
%% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2734
|
+
=========================================
|
|
2735
|
+
The ISC License
|
|
2736
|
+
|
|
2737
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2738
|
+
|
|
2739
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2740
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2741
|
+
copyright notice and this permission notice appear in all copies.
|
|
2742
|
+
|
|
2743
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2744
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2745
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2746
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2747
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2748
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2749
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2750
|
+
=========================================
|
|
2751
|
+
END OF minimatch@3.1.2 AND INFORMATION
|
|
2752
|
+
|
|
2753
|
+
%% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2754
|
+
=========================================
|
|
2755
|
+
The MIT License (MIT)
|
|
2756
|
+
|
|
2757
|
+
Copyright (c) 2016 Zeit, Inc.
|
|
2758
|
+
|
|
2759
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2760
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2761
|
+
in the Software without restriction, including without limitation the rights
|
|
2762
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2763
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2764
|
+
furnished to do so, subject to the following conditions:
|
|
2765
|
+
|
|
2766
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2767
|
+
copies or substantial portions of the Software.
|
|
2768
|
+
|
|
2769
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2770
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2771
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2772
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2773
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2774
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2775
|
+
SOFTWARE.
|
|
2776
|
+
=========================================
|
|
2777
|
+
END OF ms@2.1.2 AND INFORMATION
|
|
2778
|
+
|
|
2779
|
+
%% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2780
|
+
=========================================
|
|
2781
|
+
The MIT License (MIT)
|
|
2782
|
+
|
|
2783
|
+
Copyright (c) 2020 Vercel, Inc.
|
|
2784
|
+
|
|
2785
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2786
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2787
|
+
in the Software without restriction, including without limitation the rights
|
|
2788
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2789
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2790
|
+
furnished to do so, subject to the following conditions:
|
|
2791
|
+
|
|
2792
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2793
|
+
copies or substantial portions of the Software.
|
|
2794
|
+
|
|
2795
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2796
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2797
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2798
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2799
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2800
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2801
|
+
SOFTWARE.
|
|
2802
|
+
=========================================
|
|
2803
|
+
END OF ms@2.1.3 AND INFORMATION
|
|
2804
|
+
|
|
2805
|
+
%% negotiator@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2806
|
+
=========================================
|
|
2807
|
+
(The MIT License)
|
|
2808
|
+
|
|
2809
|
+
Copyright (c) 2012-2014 Federico Romero
|
|
2810
|
+
Copyright (c) 2012-2014 Isaac Z. Schlueter
|
|
2811
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson
|
|
2812
|
+
|
|
2813
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2814
|
+
a copy of this software and associated documentation files (the
|
|
2815
|
+
'Software'), to deal in the Software without restriction, including
|
|
2816
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2817
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2818
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2819
|
+
the following conditions:
|
|
2820
|
+
|
|
2821
|
+
The above copyright notice and this permission notice shall be
|
|
2822
|
+
included in all copies or substantial portions of the Software.
|
|
2823
|
+
|
|
2824
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2825
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2826
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2827
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2828
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2829
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2830
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2831
|
+
=========================================
|
|
2832
|
+
END OF negotiator@1.0.0 AND INFORMATION
|
|
2833
|
+
|
|
2834
|
+
%% object-assign@4.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2835
|
+
=========================================
|
|
2836
|
+
The MIT License (MIT)
|
|
2837
|
+
|
|
2838
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2839
|
+
|
|
2840
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2841
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2842
|
+
in the Software without restriction, including without limitation the rights
|
|
2843
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2844
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2845
|
+
furnished to do so, subject to the following conditions:
|
|
2846
|
+
|
|
2847
|
+
The above copyright notice and this permission notice shall be included in
|
|
2848
|
+
all copies or substantial portions of the Software.
|
|
2849
|
+
|
|
2850
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2851
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2852
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2853
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2854
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2855
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2856
|
+
THE SOFTWARE.
|
|
2857
|
+
=========================================
|
|
2858
|
+
END OF object-assign@4.1.1 AND INFORMATION
|
|
2859
|
+
|
|
2860
|
+
%% object-inspect@1.13.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2861
|
+
=========================================
|
|
2862
|
+
MIT License
|
|
2863
|
+
|
|
2864
|
+
Copyright (c) 2013 James Halliday
|
|
2865
|
+
|
|
2866
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2867
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2868
|
+
in the Software without restriction, including without limitation the rights
|
|
2869
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2870
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2871
|
+
furnished to do so, subject to the following conditions:
|
|
2872
|
+
|
|
2873
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2874
|
+
copies or substantial portions of the Software.
|
|
2875
|
+
|
|
2876
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2877
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2878
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2879
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2880
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2881
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2882
|
+
SOFTWARE.
|
|
2883
|
+
=========================================
|
|
2884
|
+
END OF object-inspect@1.13.4 AND INFORMATION
|
|
2885
|
+
|
|
2886
|
+
%% on-finished@2.4.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2887
|
+
=========================================
|
|
2888
|
+
(The MIT License)
|
|
2889
|
+
|
|
2890
|
+
Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
|
|
2891
|
+
Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2892
|
+
|
|
2893
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2894
|
+
a copy of this software and associated documentation files (the
|
|
2895
|
+
'Software'), to deal in the Software without restriction, including
|
|
2896
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2897
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2898
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2899
|
+
the following conditions:
|
|
2900
|
+
|
|
2901
|
+
The above copyright notice and this permission notice shall be
|
|
2902
|
+
included in all copies or substantial portions of the Software.
|
|
2903
|
+
|
|
2904
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2905
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2906
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2907
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2908
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2909
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2910
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2911
|
+
=========================================
|
|
2912
|
+
END OF on-finished@2.4.1 AND INFORMATION
|
|
2913
|
+
|
|
2914
|
+
%% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2915
|
+
=========================================
|
|
2916
|
+
The ISC License
|
|
2917
|
+
|
|
2918
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2919
|
+
|
|
2920
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2921
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2922
|
+
copyright notice and this permission notice appear in all copies.
|
|
2923
|
+
|
|
2924
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2925
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2926
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2927
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2928
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2929
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2930
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2931
|
+
=========================================
|
|
2932
|
+
END OF once@1.4.0 AND INFORMATION
|
|
2933
|
+
|
|
2934
|
+
%% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2935
|
+
=========================================
|
|
2936
|
+
MIT License
|
|
2937
|
+
|
|
2938
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2939
|
+
|
|
2940
|
+
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:
|
|
2941
|
+
|
|
2942
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2943
|
+
|
|
2944
|
+
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.
|
|
2945
|
+
=========================================
|
|
2946
|
+
END OF open@8.4.0 AND INFORMATION
|
|
2947
|
+
|
|
2948
|
+
%% parseurl@1.3.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2949
|
+
=========================================
|
|
2950
|
+
(The MIT License)
|
|
2951
|
+
|
|
2952
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2953
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2954
|
+
|
|
2955
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2956
|
+
a copy of this software and associated documentation files (the
|
|
2957
|
+
'Software'), to deal in the Software without restriction, including
|
|
2958
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2959
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2960
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2961
|
+
the following conditions:
|
|
2962
|
+
|
|
2963
|
+
The above copyright notice and this permission notice shall be
|
|
2964
|
+
included in all copies or substantial portions of the Software.
|
|
2965
|
+
|
|
2966
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2967
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2968
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2969
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2970
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2971
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2972
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2973
|
+
=========================================
|
|
2974
|
+
END OF parseurl@1.3.3 AND INFORMATION
|
|
2975
|
+
|
|
2976
|
+
%% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2977
|
+
=========================================
|
|
2978
|
+
MIT License
|
|
2979
|
+
|
|
2980
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2981
|
+
|
|
2982
|
+
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:
|
|
2983
|
+
|
|
2984
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2985
|
+
|
|
2986
|
+
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.
|
|
2987
|
+
=========================================
|
|
2988
|
+
END OF path-key@3.1.1 AND INFORMATION
|
|
2989
|
+
|
|
2990
|
+
%% path-to-regexp@8.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2991
|
+
=========================================
|
|
2992
|
+
The MIT License (MIT)
|
|
2993
|
+
|
|
2994
|
+
Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
|
|
2995
|
+
|
|
2996
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2997
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2998
|
+
in the Software without restriction, including without limitation the rights
|
|
2999
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3000
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3001
|
+
furnished to do so, subject to the following conditions:
|
|
3002
|
+
|
|
3003
|
+
The above copyright notice and this permission notice shall be included in
|
|
3004
|
+
all copies or substantial portions of the Software.
|
|
3005
|
+
|
|
3006
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3007
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3008
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3009
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3010
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3011
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3012
|
+
THE SOFTWARE.
|
|
3013
|
+
=========================================
|
|
3014
|
+
END OF path-to-regexp@8.2.0 AND INFORMATION
|
|
3015
|
+
|
|
3016
|
+
%% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3017
|
+
=========================================
|
|
3018
|
+
The MIT License (Expat)
|
|
3019
|
+
|
|
3020
|
+
Copyright (c) 2014 Andrew Kelley
|
|
3021
|
+
|
|
3022
|
+
Permission is hereby granted, free of charge, to any person
|
|
3023
|
+
obtaining a copy of this software and associated documentation files
|
|
3024
|
+
(the "Software"), to deal in the Software without restriction,
|
|
3025
|
+
including without limitation the rights to use, copy, modify, merge,
|
|
3026
|
+
publish, distribute, sublicense, and/or sell copies of the Software,
|
|
3027
|
+
and to permit persons to whom the Software is furnished to do so,
|
|
3028
|
+
subject to the following conditions:
|
|
3029
|
+
|
|
3030
|
+
The above copyright notice and this permission notice shall be
|
|
3031
|
+
included in all copies or substantial portions of the Software.
|
|
3032
|
+
|
|
3033
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3034
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3035
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3036
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
3037
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
3038
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3039
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3040
|
+
SOFTWARE.
|
|
3041
|
+
=========================================
|
|
3042
|
+
END OF pend@1.2.0 AND INFORMATION
|
|
3043
|
+
|
|
3044
|
+
%% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3045
|
+
=========================================
|
|
3046
|
+
MIT License
|
|
3047
|
+
|
|
3048
|
+
Copyright (c) 2019
|
|
3049
|
+
|
|
3050
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3051
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3052
|
+
in the Software without restriction, including without limitation the rights
|
|
3053
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3054
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3055
|
+
furnished to do so, subject to the following conditions:
|
|
3056
|
+
|
|
3057
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3058
|
+
copies or substantial portions of the Software.
|
|
3059
|
+
|
|
3060
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3061
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3062
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3063
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3064
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3065
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3066
|
+
SOFTWARE.
|
|
3067
|
+
=========================================
|
|
3068
|
+
END OF pkce-challenge@5.0.0 AND INFORMATION
|
|
3069
|
+
|
|
3070
|
+
%% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3071
|
+
=========================================
|
|
3072
|
+
pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
|
|
3073
|
+
pngjs derived work Copyright (c) 2012 Kuba Niegowski
|
|
3074
|
+
|
|
3075
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3076
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3077
|
+
in the Software without restriction, including without limitation the rights
|
|
3078
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3079
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3080
|
+
furnished to do so, subject to the following conditions:
|
|
3081
|
+
|
|
3082
|
+
The above copyright notice and this permission notice shall be included in
|
|
3083
|
+
all copies or substantial portions of the Software.
|
|
3084
|
+
|
|
3085
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3086
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3087
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3088
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3089
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3090
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3091
|
+
THE SOFTWARE.
|
|
3092
|
+
=========================================
|
|
3093
|
+
END OF pngjs@6.0.0 AND INFORMATION
|
|
3094
|
+
|
|
3095
|
+
%% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3096
|
+
=========================================
|
|
3097
|
+
(The MIT License)
|
|
3098
|
+
|
|
3099
|
+
Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
3100
|
+
|
|
3101
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3102
|
+
a copy of this software and associated documentation files (the
|
|
3103
|
+
'Software'), to deal in the Software without restriction, including
|
|
3104
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3105
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3106
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3107
|
+
the following conditions:
|
|
3108
|
+
|
|
3109
|
+
The above copyright notice and this permission notice shall be
|
|
3110
|
+
included in all copies or substantial portions of the Software.
|
|
3111
|
+
|
|
3112
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3113
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3114
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3115
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3116
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3117
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3118
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3119
|
+
=========================================
|
|
3120
|
+
END OF progress@2.0.3 AND INFORMATION
|
|
3121
|
+
|
|
3122
|
+
%% proxy-addr@2.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
3123
|
+
=========================================
|
|
3124
|
+
(The MIT License)
|
|
3125
|
+
|
|
3126
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
3127
|
+
|
|
3128
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3129
|
+
a copy of this software and associated documentation files (the
|
|
3130
|
+
'Software'), to deal in the Software without restriction, including
|
|
3131
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3132
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3133
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3134
|
+
the following conditions:
|
|
3135
|
+
|
|
3136
|
+
The above copyright notice and this permission notice shall be
|
|
3137
|
+
included in all copies or substantial portions of the Software.
|
|
3138
|
+
|
|
3139
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3140
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3141
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3142
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3143
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3144
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3145
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3146
|
+
=========================================
|
|
3147
|
+
END OF proxy-addr@2.0.7 AND INFORMATION
|
|
3148
|
+
|
|
3149
|
+
%% proxy-from-env@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3150
|
+
=========================================
|
|
3151
|
+
The MIT License
|
|
3152
|
+
|
|
3153
|
+
Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
|
|
3154
|
+
|
|
3155
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3156
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3157
|
+
the Software without restriction, including without limitation the rights to
|
|
3158
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
3159
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
3160
|
+
so, subject to the following conditions:
|
|
3161
|
+
|
|
3162
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3163
|
+
copies or substantial portions of the Software.
|
|
3164
|
+
|
|
3165
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3166
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3167
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3168
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3169
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3170
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3171
|
+
=========================================
|
|
3172
|
+
END OF proxy-from-env@1.1.0 AND INFORMATION
|
|
3173
|
+
|
|
3174
|
+
%% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3175
|
+
=========================================
|
|
3176
|
+
The MIT License (MIT)
|
|
3177
|
+
|
|
3178
|
+
Copyright (c) 2014 Mathias Buus
|
|
3179
|
+
|
|
3180
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3181
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3182
|
+
in the Software without restriction, including without limitation the rights
|
|
3183
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3184
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3185
|
+
furnished to do so, subject to the following conditions:
|
|
3186
|
+
|
|
3187
|
+
The above copyright notice and this permission notice shall be included in
|
|
3188
|
+
all copies or substantial portions of the Software.
|
|
3189
|
+
|
|
3190
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3191
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3192
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3193
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3194
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3195
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3196
|
+
THE SOFTWARE.
|
|
3197
|
+
=========================================
|
|
3198
|
+
END OF pump@3.0.2 AND INFORMATION
|
|
3199
|
+
|
|
3200
|
+
%% qs@6.14.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3201
|
+
=========================================
|
|
3202
|
+
BSD 3-Clause License
|
|
3203
|
+
|
|
3204
|
+
Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
|
|
3205
|
+
All rights reserved.
|
|
3206
|
+
|
|
3207
|
+
Redistribution and use in source and binary forms, with or without
|
|
3208
|
+
modification, are permitted provided that the following conditions are met:
|
|
3209
|
+
|
|
3210
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3211
|
+
list of conditions and the following disclaimer.
|
|
3212
|
+
|
|
3213
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3214
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3215
|
+
and/or other materials provided with the distribution.
|
|
3216
|
+
|
|
3217
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
3218
|
+
contributors may be used to endorse or promote products derived from
|
|
3219
|
+
this software without specific prior written permission.
|
|
3220
|
+
|
|
3221
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3222
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3223
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3224
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
3225
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3226
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3227
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3228
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3229
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3230
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3231
|
+
=========================================
|
|
3232
|
+
END OF qs@6.14.1 AND INFORMATION
|
|
3233
|
+
|
|
3234
|
+
%% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3235
|
+
=========================================
|
|
3236
|
+
(The MIT License)
|
|
3237
|
+
|
|
3238
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
3239
|
+
Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
|
|
3240
|
+
|
|
3241
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3242
|
+
a copy of this software and associated documentation files (the
|
|
3243
|
+
'Software'), to deal in the Software without restriction, including
|
|
3244
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3245
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3246
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3247
|
+
the following conditions:
|
|
3248
|
+
|
|
3249
|
+
The above copyright notice and this permission notice shall be
|
|
3250
|
+
included in all copies or substantial portions of the Software.
|
|
3251
|
+
|
|
3252
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3253
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3254
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3255
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3256
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3257
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3258
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3259
|
+
=========================================
|
|
3260
|
+
END OF range-parser@1.2.1 AND INFORMATION
|
|
3261
|
+
|
|
3262
|
+
%% raw-body@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3263
|
+
=========================================
|
|
3264
|
+
The MIT License (MIT)
|
|
3265
|
+
|
|
3266
|
+
Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
|
|
3267
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3268
|
+
|
|
3269
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3270
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3271
|
+
in the Software without restriction, including without limitation the rights
|
|
3272
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3273
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3274
|
+
furnished to do so, subject to the following conditions:
|
|
3275
|
+
|
|
3276
|
+
The above copyright notice and this permission notice shall be included in
|
|
3277
|
+
all copies or substantial portions of the Software.
|
|
3278
|
+
|
|
3279
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3280
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3281
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3282
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3283
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3284
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3285
|
+
THE SOFTWARE.
|
|
3286
|
+
=========================================
|
|
3287
|
+
END OF raw-body@3.0.2 AND INFORMATION
|
|
3288
|
+
|
|
3289
|
+
%% require-from-string@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3290
|
+
=========================================
|
|
3291
|
+
The MIT License (MIT)
|
|
3292
|
+
|
|
3293
|
+
Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
|
|
3294
|
+
|
|
3295
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3296
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3297
|
+
in the Software without restriction, including without limitation the rights
|
|
3298
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3299
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3300
|
+
furnished to do so, subject to the following conditions:
|
|
3301
|
+
|
|
3302
|
+
The above copyright notice and this permission notice shall be included in
|
|
3303
|
+
all copies or substantial portions of the Software.
|
|
3304
|
+
|
|
3305
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3306
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3307
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3308
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3309
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3310
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3311
|
+
THE SOFTWARE.
|
|
3312
|
+
=========================================
|
|
3313
|
+
END OF require-from-string@2.0.2 AND INFORMATION
|
|
3314
|
+
|
|
3315
|
+
%% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3316
|
+
=========================================
|
|
3317
|
+
Copyright (c) 2011:
|
|
3318
|
+
Tim Koschützki (tim@debuggable.com)
|
|
3319
|
+
Felix Geisendörfer (felix@debuggable.com)
|
|
3320
|
+
|
|
3321
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3322
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3323
|
+
in the Software without restriction, including without limitation the rights
|
|
3324
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3325
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3326
|
+
furnished to do so, subject to the following conditions:
|
|
3327
|
+
|
|
3328
|
+
The above copyright notice and this permission notice shall be included in
|
|
3329
|
+
all copies or substantial portions of the Software.
|
|
3330
|
+
|
|
3331
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3332
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3333
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3334
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3335
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3336
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3337
|
+
THE SOFTWARE.
|
|
3338
|
+
=========================================
|
|
3339
|
+
END OF retry@0.12.0 AND INFORMATION
|
|
3340
|
+
|
|
3341
|
+
%% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3342
|
+
=========================================
|
|
3343
|
+
(The MIT License)
|
|
3344
|
+
|
|
3345
|
+
Copyright (c) 2013 Roman Shtylman
|
|
3346
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
3347
|
+
|
|
3348
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3349
|
+
a copy of this software and associated documentation files (the
|
|
3350
|
+
'Software'), to deal in the Software without restriction, including
|
|
3351
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3352
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3353
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3354
|
+
the following conditions:
|
|
3355
|
+
|
|
3356
|
+
The above copyright notice and this permission notice shall be
|
|
3357
|
+
included in all copies or substantial portions of the Software.
|
|
3358
|
+
|
|
3359
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3360
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3361
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3362
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3363
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3364
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3365
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3366
|
+
=========================================
|
|
3367
|
+
END OF router@2.2.0 AND INFORMATION
|
|
3368
|
+
|
|
3369
|
+
%% safe-buffer@5.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3370
|
+
=========================================
|
|
3371
|
+
The MIT License (MIT)
|
|
3372
|
+
|
|
3373
|
+
Copyright (c) Feross Aboukhadijeh
|
|
3374
|
+
|
|
3375
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3376
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3377
|
+
in the Software without restriction, including without limitation the rights
|
|
3378
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3379
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3380
|
+
furnished to do so, subject to the following conditions:
|
|
3381
|
+
|
|
3382
|
+
The above copyright notice and this permission notice shall be included in
|
|
3383
|
+
all copies or substantial portions of the Software.
|
|
3384
|
+
|
|
3385
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3386
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3387
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3388
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3389
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3390
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3391
|
+
THE SOFTWARE.
|
|
3392
|
+
=========================================
|
|
3393
|
+
END OF safe-buffer@5.2.1 AND INFORMATION
|
|
3394
|
+
|
|
3395
|
+
%% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3396
|
+
=========================================
|
|
3397
|
+
MIT License
|
|
3398
|
+
|
|
3399
|
+
Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
|
|
3400
|
+
|
|
3401
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3402
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3403
|
+
in the Software without restriction, including without limitation the rights
|
|
3404
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3405
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3406
|
+
furnished to do so, subject to the following conditions:
|
|
3407
|
+
|
|
3408
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3409
|
+
copies or substantial portions of the Software.
|
|
3410
|
+
|
|
3411
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3412
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3413
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3414
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3415
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3416
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3417
|
+
SOFTWARE.
|
|
3418
|
+
=========================================
|
|
3419
|
+
END OF safer-buffer@2.1.2 AND INFORMATION
|
|
3420
|
+
|
|
3421
|
+
%% send@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3422
|
+
=========================================
|
|
3423
|
+
(The MIT License)
|
|
3424
|
+
|
|
3425
|
+
Copyright (c) 2012 TJ Holowaychuk
|
|
3426
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
3427
|
+
|
|
3428
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3429
|
+
a copy of this software and associated documentation files (the
|
|
3430
|
+
'Software'), to deal in the Software without restriction, including
|
|
3431
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3432
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3433
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3434
|
+
the following conditions:
|
|
3435
|
+
|
|
3436
|
+
The above copyright notice and this permission notice shall be
|
|
3437
|
+
included in all copies or substantial portions of the Software.
|
|
3438
|
+
|
|
3439
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3440
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3441
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3442
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3443
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3444
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3445
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3446
|
+
=========================================
|
|
3447
|
+
END OF send@1.2.0 AND INFORMATION
|
|
3448
|
+
|
|
3449
|
+
%% serve-static@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3450
|
+
=========================================
|
|
3451
|
+
(The MIT License)
|
|
3452
|
+
|
|
3453
|
+
Copyright (c) 2010 Sencha Inc.
|
|
3454
|
+
Copyright (c) 2011 LearnBoost
|
|
3455
|
+
Copyright (c) 2011 TJ Holowaychuk
|
|
3456
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
3457
|
+
|
|
3458
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3459
|
+
a copy of this software and associated documentation files (the
|
|
3460
|
+
'Software'), to deal in the Software without restriction, including
|
|
3461
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3462
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3463
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3464
|
+
the following conditions:
|
|
3465
|
+
|
|
3466
|
+
The above copyright notice and this permission notice shall be
|
|
3467
|
+
included in all copies or substantial portions of the Software.
|
|
3468
|
+
|
|
3469
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3470
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3471
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3472
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3473
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3474
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3475
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3476
|
+
=========================================
|
|
3477
|
+
END OF serve-static@2.2.0 AND INFORMATION
|
|
3478
|
+
|
|
3479
|
+
%% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3480
|
+
=========================================
|
|
3481
|
+
Copyright (c) 2015, Wes Todd
|
|
3482
|
+
|
|
3483
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
3484
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
3485
|
+
copyright notice and this permission notice appear in all copies.
|
|
3486
|
+
|
|
3487
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3488
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3489
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
3490
|
+
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3491
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
3492
|
+
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
3493
|
+
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3494
|
+
=========================================
|
|
3495
|
+
END OF setprototypeof@1.2.0 AND INFORMATION
|
|
3496
|
+
|
|
3497
|
+
%% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3498
|
+
=========================================
|
|
3499
|
+
MIT License
|
|
3500
|
+
|
|
3501
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
3502
|
+
|
|
3503
|
+
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:
|
|
3504
|
+
|
|
3505
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3506
|
+
|
|
3507
|
+
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.
|
|
3508
|
+
=========================================
|
|
3509
|
+
END OF shebang-command@2.0.0 AND INFORMATION
|
|
3510
|
+
|
|
3511
|
+
%% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3512
|
+
=========================================
|
|
3513
|
+
MIT License
|
|
3514
|
+
|
|
3515
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
3516
|
+
|
|
3517
|
+
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:
|
|
3518
|
+
|
|
3519
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3520
|
+
|
|
3521
|
+
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.
|
|
3522
|
+
=========================================
|
|
3523
|
+
END OF shebang-regex@3.0.0 AND INFORMATION
|
|
3524
|
+
|
|
3525
|
+
%% side-channel-list@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3526
|
+
=========================================
|
|
3527
|
+
MIT License
|
|
3528
|
+
|
|
3529
|
+
Copyright (c) 2024 Jordan Harband
|
|
3530
|
+
|
|
3531
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3532
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3533
|
+
in the Software without restriction, including without limitation the rights
|
|
3534
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3535
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3536
|
+
furnished to do so, subject to the following conditions:
|
|
3537
|
+
|
|
3538
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3539
|
+
copies or substantial portions of the Software.
|
|
3540
|
+
|
|
3541
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3542
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3543
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3544
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3545
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3546
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3547
|
+
SOFTWARE.
|
|
3548
|
+
=========================================
|
|
3549
|
+
END OF side-channel-list@1.0.0 AND INFORMATION
|
|
3550
|
+
|
|
3551
|
+
%% side-channel-map@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3552
|
+
=========================================
|
|
3553
|
+
MIT License
|
|
3554
|
+
|
|
3555
|
+
Copyright (c) 2024 Jordan Harband
|
|
3556
|
+
|
|
3557
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3558
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3559
|
+
in the Software without restriction, including without limitation the rights
|
|
3560
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3561
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3562
|
+
furnished to do so, subject to the following conditions:
|
|
3563
|
+
|
|
3564
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3565
|
+
copies or substantial portions of the Software.
|
|
3566
|
+
|
|
3567
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3568
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3569
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3570
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3571
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3572
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3573
|
+
SOFTWARE.
|
|
3574
|
+
=========================================
|
|
3575
|
+
END OF side-channel-map@1.0.1 AND INFORMATION
|
|
3576
|
+
|
|
3577
|
+
%% side-channel-weakmap@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3578
|
+
=========================================
|
|
3579
|
+
MIT License
|
|
3580
|
+
|
|
3581
|
+
Copyright (c) 2019 Jordan Harband
|
|
3582
|
+
|
|
3583
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3584
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3585
|
+
in the Software without restriction, including without limitation the rights
|
|
3586
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3587
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3588
|
+
furnished to do so, subject to the following conditions:
|
|
3589
|
+
|
|
3590
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3591
|
+
copies or substantial portions of the Software.
|
|
3592
|
+
|
|
3593
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3594
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3595
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3596
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3597
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3598
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3599
|
+
SOFTWARE.
|
|
3600
|
+
=========================================
|
|
3601
|
+
END OF side-channel-weakmap@1.0.2 AND INFORMATION
|
|
3602
|
+
|
|
3603
|
+
%% side-channel@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3604
|
+
=========================================
|
|
3605
|
+
MIT License
|
|
3606
|
+
|
|
3607
|
+
Copyright (c) 2019 Jordan Harband
|
|
3608
|
+
|
|
3609
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3610
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3611
|
+
in the Software without restriction, including without limitation the rights
|
|
3612
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3613
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3614
|
+
furnished to do so, subject to the following conditions:
|
|
3615
|
+
|
|
3616
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3617
|
+
copies or substantial portions of the Software.
|
|
3618
|
+
|
|
3619
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3620
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3621
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3622
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3623
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3624
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3625
|
+
SOFTWARE.
|
|
3626
|
+
=========================================
|
|
3627
|
+
END OF side-channel@1.1.0 AND INFORMATION
|
|
3628
|
+
|
|
3629
|
+
%% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
3630
|
+
=========================================
|
|
3631
|
+
The ISC License
|
|
3632
|
+
|
|
3633
|
+
Copyright (c) 2015, Contributors
|
|
3634
|
+
|
|
3635
|
+
Permission to use, copy, modify, and/or distribute this software
|
|
3636
|
+
for any purpose with or without fee is hereby granted, provided
|
|
3637
|
+
that the above copyright notice and this permission notice
|
|
3638
|
+
appear in all copies.
|
|
3639
|
+
|
|
3640
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3641
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
3642
|
+
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
|
|
3643
|
+
LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
|
3644
|
+
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
3645
|
+
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
3646
|
+
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3647
|
+
=========================================
|
|
3648
|
+
END OF signal-exit@3.0.7 AND INFORMATION
|
|
3649
|
+
|
|
3650
|
+
%% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3651
|
+
=========================================
|
|
3652
|
+
The MIT License (MIT)
|
|
3653
|
+
|
|
3654
|
+
Copyright (c) 2013-2017 Josh Glazebrook
|
|
3655
|
+
|
|
3656
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3657
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3658
|
+
the Software without restriction, including without limitation the rights to
|
|
3659
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
3660
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3661
|
+
subject to the following conditions:
|
|
3662
|
+
|
|
3663
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3664
|
+
copies or substantial portions of the Software.
|
|
3665
|
+
|
|
3666
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3667
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3668
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3669
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3670
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3671
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3672
|
+
=========================================
|
|
3673
|
+
END OF smart-buffer@4.2.0 AND INFORMATION
|
|
3674
|
+
|
|
3675
|
+
%% socks-proxy-agent@8.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
3676
|
+
=========================================
|
|
3677
|
+
(The MIT License)
|
|
3678
|
+
|
|
3679
|
+
Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
|
|
3680
|
+
|
|
3681
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3682
|
+
a copy of this software and associated documentation files (the
|
|
3683
|
+
'Software'), to deal in the Software without restriction, including
|
|
3684
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3685
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3686
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3687
|
+
the following conditions:
|
|
3688
|
+
|
|
3689
|
+
The above copyright notice and this permission notice shall be
|
|
3690
|
+
included in all copies or substantial portions of the Software.
|
|
3691
|
+
|
|
3692
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3693
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3694
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3695
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3696
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3697
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3698
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3699
|
+
=========================================
|
|
3700
|
+
END OF socks-proxy-agent@8.0.5 AND INFORMATION
|
|
3701
|
+
|
|
3702
|
+
%% socks@2.8.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3703
|
+
=========================================
|
|
3704
|
+
The MIT License (MIT)
|
|
3705
|
+
|
|
3706
|
+
Copyright (c) 2013 Josh Glazebrook
|
|
3707
|
+
|
|
3708
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3709
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3710
|
+
the Software without restriction, including without limitation the rights to
|
|
3711
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
3712
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3713
|
+
subject to the following conditions:
|
|
3714
|
+
|
|
3715
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3716
|
+
copies or substantial portions of the Software.
|
|
3717
|
+
|
|
3718
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3719
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3720
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3721
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3722
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3723
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3724
|
+
=========================================
|
|
3725
|
+
END OF socks@2.8.3 AND INFORMATION
|
|
3726
|
+
|
|
3727
|
+
%% sprintf-js@1.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3728
|
+
=========================================
|
|
3729
|
+
Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>
|
|
3730
|
+
All rights reserved.
|
|
3731
|
+
|
|
3732
|
+
Redistribution and use in source and binary forms, with or without
|
|
3733
|
+
modification, are permitted provided that the following conditions are met:
|
|
3734
|
+
* Redistributions of source code must retain the above copyright
|
|
3735
|
+
notice, this list of conditions and the following disclaimer.
|
|
3736
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
3737
|
+
notice, this list of conditions and the following disclaimer in the
|
|
3738
|
+
documentation and/or other materials provided with the distribution.
|
|
3739
|
+
* Neither the name of this software nor the names of its contributors may be
|
|
3740
|
+
used to endorse or promote products derived from this software without
|
|
3741
|
+
specific prior written permission.
|
|
3742
|
+
|
|
3743
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
3744
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
3745
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3746
|
+
DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
3747
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
3748
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
3749
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
3750
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
3751
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
3752
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3753
|
+
=========================================
|
|
3754
|
+
END OF sprintf-js@1.1.3 AND INFORMATION
|
|
3755
|
+
|
|
3756
|
+
%% statuses@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3757
|
+
=========================================
|
|
3758
|
+
The MIT License (MIT)
|
|
3759
|
+
|
|
3760
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
3761
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3762
|
+
|
|
3763
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3764
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3765
|
+
in the Software without restriction, including without limitation the rights
|
|
3766
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3767
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3768
|
+
furnished to do so, subject to the following conditions:
|
|
3769
|
+
|
|
3770
|
+
The above copyright notice and this permission notice shall be included in
|
|
3771
|
+
all copies or substantial portions of the Software.
|
|
3772
|
+
|
|
3773
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3774
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3775
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3776
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3777
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3778
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3779
|
+
THE SOFTWARE.
|
|
3780
|
+
=========================================
|
|
3781
|
+
END OF statuses@2.0.2 AND INFORMATION
|
|
3782
|
+
|
|
3783
|
+
%% toidentifier@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3784
|
+
=========================================
|
|
3785
|
+
MIT License
|
|
3786
|
+
|
|
3787
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3788
|
+
|
|
3789
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3790
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3791
|
+
in the Software without restriction, including without limitation the rights
|
|
3792
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3793
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3794
|
+
furnished to do so, subject to the following conditions:
|
|
3795
|
+
|
|
3796
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3797
|
+
copies or substantial portions of the Software.
|
|
3798
|
+
|
|
3799
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3800
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3801
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3802
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3803
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3804
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3805
|
+
SOFTWARE.
|
|
3806
|
+
=========================================
|
|
3807
|
+
END OF toidentifier@1.0.1 AND INFORMATION
|
|
3808
|
+
|
|
3809
|
+
%% type-is@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3810
|
+
=========================================
|
|
3811
|
+
(The MIT License)
|
|
3812
|
+
|
|
3813
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
3814
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3815
|
+
|
|
3816
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3817
|
+
a copy of this software and associated documentation files (the
|
|
3818
|
+
'Software'), to deal in the Software without restriction, including
|
|
3819
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3820
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3821
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3822
|
+
the following conditions:
|
|
3823
|
+
|
|
3824
|
+
The above copyright notice and this permission notice shall be
|
|
3825
|
+
included in all copies or substantial portions of the Software.
|
|
3826
|
+
|
|
3827
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3828
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3829
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3830
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3831
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3832
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3833
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3834
|
+
=========================================
|
|
3835
|
+
END OF type-is@2.0.1 AND INFORMATION
|
|
3836
|
+
|
|
3837
|
+
%% unpipe@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3838
|
+
=========================================
|
|
3839
|
+
(The MIT License)
|
|
3840
|
+
|
|
3841
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3842
|
+
|
|
3843
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3844
|
+
a copy of this software and associated documentation files (the
|
|
3845
|
+
'Software'), to deal in the Software without restriction, including
|
|
3846
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3847
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3848
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3849
|
+
the following conditions:
|
|
3850
|
+
|
|
3851
|
+
The above copyright notice and this permission notice shall be
|
|
3852
|
+
included in all copies or substantial portions of the Software.
|
|
3853
|
+
|
|
3854
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3855
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3856
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3857
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3858
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3859
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3860
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3861
|
+
=========================================
|
|
3862
|
+
END OF unpipe@1.0.0 AND INFORMATION
|
|
3863
|
+
|
|
3864
|
+
%% vary@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3865
|
+
=========================================
|
|
3866
|
+
(The MIT License)
|
|
3867
|
+
|
|
3868
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
3869
|
+
|
|
3870
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3871
|
+
a copy of this software and associated documentation files (the
|
|
3872
|
+
'Software'), to deal in the Software without restriction, including
|
|
3873
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3874
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3875
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3876
|
+
the following conditions:
|
|
3877
|
+
|
|
3878
|
+
The above copyright notice and this permission notice shall be
|
|
3879
|
+
included in all copies or substantial portions of the Software.
|
|
3880
|
+
|
|
3881
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3882
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3883
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3884
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3885
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3886
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3887
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3888
|
+
=========================================
|
|
3889
|
+
END OF vary@1.1.2 AND INFORMATION
|
|
3890
|
+
|
|
3891
|
+
%% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3892
|
+
=========================================
|
|
3893
|
+
The ISC License
|
|
3894
|
+
|
|
3895
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
3896
|
+
|
|
3897
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
3898
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
3899
|
+
copyright notice and this permission notice appear in all copies.
|
|
3900
|
+
|
|
3901
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3902
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3903
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3904
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3905
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3906
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
3907
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3908
|
+
=========================================
|
|
3909
|
+
END OF which@2.0.2 AND INFORMATION
|
|
3910
|
+
|
|
3911
|
+
%% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3912
|
+
=========================================
|
|
3913
|
+
The ISC License
|
|
3914
|
+
|
|
3915
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
3916
|
+
|
|
3917
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
3918
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
3919
|
+
copyright notice and this permission notice appear in all copies.
|
|
3920
|
+
|
|
3921
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3922
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3923
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3924
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3925
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3926
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
3927
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3928
|
+
=========================================
|
|
3929
|
+
END OF wrappy@1.0.2 AND INFORMATION
|
|
3930
|
+
|
|
3931
|
+
%% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3932
|
+
=========================================
|
|
3933
|
+
Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
|
3934
|
+
Copyright (c) 2013 Arnout Kazemier and contributors
|
|
3935
|
+
Copyright (c) 2016 Luigi Pinca and contributors
|
|
3936
|
+
|
|
3937
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3938
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3939
|
+
the Software without restriction, including without limitation the rights to
|
|
3940
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
3941
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3942
|
+
subject to the following conditions:
|
|
3943
|
+
|
|
3944
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3945
|
+
copies or substantial portions of the Software.
|
|
3946
|
+
|
|
3947
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3948
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3949
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3950
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3951
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3952
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3953
|
+
=========================================
|
|
3954
|
+
END OF ws@8.17.1 AND INFORMATION
|
|
3955
|
+
|
|
3956
|
+
%% yaml@2.6.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3957
|
+
=========================================
|
|
3958
|
+
Copyright Eemeli Aro <eemeli@gmail.com>
|
|
3959
|
+
|
|
3960
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3961
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3962
|
+
and this permission notice appear in all copies.
|
|
3963
|
+
|
|
3964
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3965
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3966
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3967
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3968
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3969
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3970
|
+
THIS SOFTWARE.
|
|
3971
|
+
=========================================
|
|
3972
|
+
END OF yaml@2.6.0 AND INFORMATION
|
|
3973
|
+
|
|
3974
|
+
%% yauzl@3.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3975
|
+
=========================================
|
|
3976
|
+
The MIT License (MIT)
|
|
3977
|
+
|
|
3978
|
+
Copyright (c) 2014 Josh Wolfe
|
|
3979
|
+
|
|
3980
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3981
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3982
|
+
in the Software without restriction, including without limitation the rights
|
|
3983
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3984
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3985
|
+
furnished to do so, subject to the following conditions:
|
|
3986
|
+
|
|
3987
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3988
|
+
copies or substantial portions of the Software.
|
|
3989
|
+
|
|
3990
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3991
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3992
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3993
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3994
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3995
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3996
|
+
SOFTWARE.
|
|
3997
|
+
=========================================
|
|
3998
|
+
END OF yauzl@3.2.0 AND INFORMATION
|
|
3999
|
+
|
|
4000
|
+
%% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4001
|
+
=========================================
|
|
4002
|
+
The MIT License (MIT)
|
|
4003
|
+
|
|
4004
|
+
Copyright (c) 2014 Josh Wolfe
|
|
4005
|
+
|
|
4006
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4007
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4008
|
+
in the Software without restriction, including without limitation the rights
|
|
4009
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4010
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4011
|
+
furnished to do so, subject to the following conditions:
|
|
4012
|
+
|
|
4013
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4014
|
+
copies or substantial portions of the Software.
|
|
4015
|
+
|
|
4016
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4017
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4018
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4019
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4020
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4021
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4022
|
+
SOFTWARE.
|
|
4023
|
+
=========================================
|
|
4024
|
+
END OF yazl@2.5.1 AND INFORMATION
|
|
4025
|
+
|
|
4026
|
+
%% zod-to-json-schema@3.25.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4027
|
+
=========================================
|
|
4028
|
+
ISC License
|
|
4029
|
+
|
|
4030
|
+
Copyright (c) 2020, Stefan Terdell
|
|
4031
|
+
|
|
4032
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4033
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4034
|
+
copyright notice and this permission notice appear in all copies.
|
|
4035
|
+
|
|
4036
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
4037
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
4038
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
4039
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4040
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
4041
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
4042
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
4043
|
+
=========================================
|
|
4044
|
+
END OF zod-to-json-schema@3.25.1 AND INFORMATION
|
|
4045
|
+
|
|
4046
|
+
%% zod@4.3.5 NOTICES AND INFORMATION BEGIN HERE
|
|
4047
|
+
=========================================
|
|
4048
|
+
MIT License
|
|
4049
|
+
|
|
4050
|
+
Copyright (c) 2025 Colin McDonnell
|
|
4051
|
+
|
|
4052
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4053
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4054
|
+
in the Software without restriction, including without limitation the rights
|
|
4055
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4056
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4057
|
+
furnished to do so, subject to the following conditions:
|
|
4058
|
+
|
|
4059
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4060
|
+
copies or substantial portions of the Software.
|
|
4061
|
+
|
|
4062
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4063
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4064
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4065
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4066
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4067
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4068
|
+
SOFTWARE.
|
|
4069
|
+
=========================================
|
|
4070
|
+
END OF zod@4.3.5 AND INFORMATION
|
|
4071
|
+
|
|
4072
|
+
SUMMARY BEGIN HERE
|
|
4073
|
+
=========================================
|
|
4074
|
+
Total Packages: 133
|
|
4075
|
+
=========================================
|
|
4076
|
+
END OF SUMMARY
|