patchright-core 1.57.0 → 1.59.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ThirdPartyNotices.txt +2688 -297
- package/browsers.json +23 -22
- package/lib/bootstrap.js +77 -0
- package/lib/cli/browserActions.js +308 -0
- package/lib/cli/driver.js +3 -2
- package/lib/cli/installActions.js +171 -0
- package/lib/cli/program.js +48 -413
- package/lib/client/android.js +4 -4
- package/lib/client/api.js +3 -0
- package/lib/client/browser.js +11 -5
- package/lib/client/browserContext.js +20 -23
- package/lib/client/browserType.js +23 -54
- package/lib/client/cdpSession.js +6 -2
- package/lib/client/channelOwner.js +1 -1
- package/lib/client/clientHelper.js +2 -1
- package/lib/client/clock.js +0 -1
- package/lib/client/{webSocket.js → connect.js} +57 -7
- package/lib/client/connection.js +8 -0
- package/lib/client/consoleMessage.js +3 -0
- package/lib/client/debugger.js +57 -0
- package/lib/client/dialog.js +8 -1
- package/lib/client/disposable.js +76 -0
- package/lib/client/electron.js +1 -0
- package/lib/client/elementHandle.js +1 -1
- package/lib/client/events.js +3 -0
- package/lib/client/fetch.js +2 -4
- package/lib/client/frame.js +9 -13
- package/lib/client/harRouter.js +13 -1
- package/lib/client/jsHandle.js +4 -8
- package/lib/client/locator.js +13 -36
- package/lib/client/network.js +14 -11
- package/lib/client/page.js +44 -50
- package/lib/client/screencast.js +88 -0
- package/lib/client/selectors.js +3 -1
- package/lib/client/tracing.js +11 -5
- package/lib/client/video.js +13 -20
- package/lib/client/worker.js +6 -6
- package/lib/generated/bindingsControllerSource.js +1 -1
- package/lib/generated/clockSource.js +1 -1
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/pollingRecorderSource.js +1 -1
- package/lib/generated/storageScriptSource.js +1 -1
- package/lib/generated/utilityScriptSource.js +1 -1
- package/lib/mcpBundle.js +78 -0
- package/lib/mcpBundleImpl.js +91 -0
- package/lib/protocol/serializers.js +5 -0
- package/lib/protocol/validator.js +228 -58
- package/lib/protocol/validatorPrimitives.js +1 -1
- package/lib/remote/playwrightConnection.js +10 -8
- package/lib/remote/playwrightPipeServer.js +100 -0
- package/lib/remote/playwrightServer.js +14 -10
- package/lib/remote/playwrightWebSocketServer.js +73 -0
- package/lib/remote/serverTransport.js +96 -0
- package/lib/server/android/android.js +2 -2
- package/lib/server/artifact.js +1 -1
- package/lib/server/bidi/bidiBrowser.js +80 -14
- package/lib/server/bidi/bidiChromium.js +23 -14
- package/lib/server/bidi/bidiConnection.js +1 -0
- package/lib/server/bidi/bidiDeserializer.js +116 -0
- package/lib/server/bidi/bidiExecutionContext.js +75 -29
- package/lib/server/bidi/bidiFirefox.js +6 -8
- package/lib/server/bidi/bidiNetworkManager.js +40 -12
- package/lib/server/bidi/bidiPage.js +67 -40
- package/lib/server/bidi/third_party/bidiProtocolCore.js +1 -0
- package/lib/server/bidi/third_party/firefoxPrefs.js +3 -1
- package/lib/server/browser.js +84 -21
- package/lib/server/browserContext.js +137 -77
- package/lib/server/browserType.js +26 -16
- package/lib/server/chromium/chromium.js +28 -31
- package/lib/server/chromium/chromiumSwitches.js +16 -4
- package/lib/server/chromium/crBrowser.js +40 -27
- package/lib/server/chromium/crConnection.js +0 -5
- package/lib/server/chromium/crDevTools.js +1 -2
- package/lib/server/chromium/crNetworkManager.js +54 -229
- package/lib/server/chromium/crPage.js +74 -260
- package/lib/server/chromium/crServiceWorker.js +7 -14
- package/lib/server/clock.js +33 -41
- package/lib/server/codegen/javascript.js +6 -29
- package/lib/server/console.js +5 -1
- package/lib/server/debugController.js +12 -6
- package/lib/server/debugger.js +40 -47
- package/lib/server/deviceDescriptorsSource.json +137 -137
- package/lib/server/dispatchers/browserContextDispatcher.js +30 -30
- package/lib/server/dispatchers/browserDispatcher.js +11 -5
- package/lib/server/dispatchers/browserTypeDispatcher.js +7 -0
- package/lib/server/dispatchers/cdpSessionDispatcher.js +4 -1
- package/lib/server/dispatchers/debuggerDispatcher.js +84 -0
- package/lib/server/dispatchers/dispatcher.js +7 -14
- package/lib/server/dispatchers/disposableDispatcher.js +39 -0
- package/lib/server/dispatchers/electronDispatcher.js +2 -1
- package/lib/server/dispatchers/frameDispatcher.js +7 -7
- package/lib/server/dispatchers/localUtilsDispatcher.js +37 -1
- package/lib/server/dispatchers/networkDispatchers.js +6 -5
- package/lib/server/dispatchers/pageDispatcher.js +101 -34
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +4 -5
- package/lib/server/disposable.js +41 -0
- package/lib/server/dom.js +56 -29
- package/lib/server/download.js +3 -2
- package/lib/server/electron/electron.js +17 -9
- package/lib/server/firefox/ffBrowser.js +9 -29
- package/lib/server/firefox/ffConnection.js +0 -5
- package/lib/server/firefox/ffInput.js +21 -5
- package/lib/server/firefox/ffNetworkManager.js +4 -4
- package/lib/server/firefox/ffPage.js +27 -33
- package/lib/server/firefox/firefox.js +6 -8
- package/lib/server/frameSelectors.js +14 -169
- package/lib/server/frames.js +263 -551
- package/lib/server/har/harRecorder.js +2 -2
- package/lib/server/har/harTracer.js +5 -4
- package/lib/server/input.js +49 -4
- package/lib/server/instrumentation.js +8 -0
- package/lib/server/javascript.js +6 -22
- package/lib/server/launchApp.js +0 -1
- package/lib/server/localUtils.js +6 -6
- package/lib/server/network.js +59 -20
- package/lib/server/overlay.js +138 -0
- package/lib/server/page.js +179 -157
- package/lib/server/progress.js +32 -6
- package/lib/server/recorder/recorderApp.js +84 -104
- package/lib/server/recorder.js +76 -40
- package/lib/server/registry/browserFetcher.js +6 -4
- package/lib/server/registry/index.js +222 -226
- package/lib/server/registry/nativeDeps.js +1 -0
- package/lib/server/registry/oopDownloadBrowserMain.js +3 -0
- package/lib/server/screencast.js +137 -0
- package/lib/server/trace/recorder/snapshotter.js +2 -2
- package/lib/server/trace/recorder/snapshotterInjected.js +21 -1
- package/lib/server/trace/recorder/tracing.js +98 -47
- package/lib/server/trace/viewer/traceViewer.js +24 -21
- package/lib/server/usKeyboardLayout.js +7 -0
- package/lib/server/utils/comparators.js +1 -1
- package/lib/server/utils/disposable.js +32 -0
- package/lib/server/utils/eventsHelper.js +3 -1
- package/lib/server/utils/expectUtils.js +87 -2
- package/lib/server/utils/fileUtils.js +16 -2
- package/lib/server/utils/happyEyeballs.js +15 -12
- package/lib/server/utils/httpServer.js +10 -23
- package/lib/server/utils/network.js +39 -29
- package/lib/server/utils/processLauncher.js +8 -6
- package/lib/server/utils/zipFile.js +2 -2
- package/lib/server/videoRecorder.js +194 -0
- package/lib/server/webkit/webkit.js +4 -6
- package/lib/server/webkit/wkBrowser.js +1 -10
- package/lib/server/webkit/wkConnection.js +1 -6
- package/lib/server/webkit/wkInterceptableRequest.js +29 -1
- package/lib/server/webkit/wkPage.js +88 -57
- package/lib/server/webkit/wkWorkers.js +2 -1
- package/lib/serverRegistry.js +156 -0
- package/lib/tools/backend/browserBackend.js +79 -0
- package/lib/tools/backend/common.js +63 -0
- package/lib/tools/backend/config.js +41 -0
- package/lib/tools/backend/console.js +66 -0
- package/lib/tools/backend/context.js +296 -0
- package/lib/tools/backend/cookies.js +152 -0
- package/lib/tools/backend/devtools.js +69 -0
- package/lib/tools/backend/dialogs.js +59 -0
- package/lib/tools/backend/evaluate.js +64 -0
- package/lib/tools/backend/files.js +60 -0
- package/lib/tools/backend/form.js +64 -0
- package/lib/tools/backend/keyboard.js +155 -0
- package/lib/tools/backend/logFile.js +95 -0
- package/lib/tools/backend/mouse.js +168 -0
- package/lib/tools/backend/navigate.js +106 -0
- package/lib/tools/backend/network.js +135 -0
- package/lib/tools/backend/pdf.js +48 -0
- package/lib/tools/backend/response.js +305 -0
- package/lib/tools/backend/route.js +140 -0
- package/lib/tools/backend/runCode.js +77 -0
- package/lib/tools/backend/screenshot.js +88 -0
- package/lib/tools/backend/sessionLog.js +74 -0
- package/lib/tools/backend/snapshot.js +208 -0
- package/lib/tools/backend/storage.js +68 -0
- package/lib/tools/backend/tab.js +445 -0
- package/lib/tools/backend/tabs.js +67 -0
- package/lib/tools/backend/tool.js +47 -0
- package/lib/tools/backend/tools.js +102 -0
- package/lib/tools/backend/tracing.js +78 -0
- package/lib/tools/backend/utils.js +83 -0
- package/lib/tools/backend/verify.js +151 -0
- package/lib/tools/backend/video.js +98 -0
- package/lib/tools/backend/wait.js +63 -0
- package/lib/tools/backend/webstorage.js +223 -0
- package/lib/tools/cli-client/cli.js +6 -0
- package/lib/tools/cli-client/help.json +399 -0
- package/lib/tools/cli-client/minimist.js +128 -0
- package/lib/tools/cli-client/program.js +350 -0
- package/lib/tools/cli-client/registry.js +176 -0
- package/lib/tools/cli-client/session.js +289 -0
- package/lib/tools/cli-client/skill/SKILL.md +328 -0
- package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
- package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
- package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
- package/lib/tools/cli-client/skill/references/running-code.md +231 -0
- package/lib/tools/cli-client/skill/references/session-management.md +169 -0
- package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
- package/lib/tools/cli-client/skill/references/test-generation.md +88 -0
- package/lib/tools/cli-client/skill/references/tracing.md +139 -0
- package/lib/tools/cli-client/skill/references/video-recording.md +143 -0
- package/lib/tools/cli-daemon/command.js +73 -0
- package/lib/tools/cli-daemon/commands.js +956 -0
- package/lib/tools/cli-daemon/daemon.js +157 -0
- package/lib/tools/cli-daemon/helpGenerator.js +177 -0
- package/lib/tools/cli-daemon/program.js +129 -0
- package/lib/tools/dashboard/appIcon.png +0 -0
- package/lib/tools/dashboard/dashboardApp.js +284 -0
- package/lib/tools/dashboard/dashboardController.js +296 -0
- package/lib/tools/exports.js +60 -0
- package/lib/tools/mcp/browserFactory.js +233 -0
- package/lib/tools/mcp/cdpRelay.js +352 -0
- package/lib/tools/mcp/cli-stub.js +7 -0
- package/lib/tools/mcp/config.d.js +16 -0
- package/lib/tools/mcp/config.js +446 -0
- package/lib/tools/mcp/configIni.js +189 -0
- package/lib/tools/mcp/extensionContextFactory.js +55 -0
- package/lib/tools/mcp/index.js +62 -0
- package/lib/tools/mcp/log.js +35 -0
- package/lib/tools/mcp/program.js +107 -0
- package/lib/tools/mcp/protocol.js +28 -0
- package/lib/tools/mcp/watchdog.js +44 -0
- package/lib/tools/trace/SKILL.md +171 -0
- package/lib/tools/trace/installSkill.js +48 -0
- package/lib/tools/trace/traceActions.js +142 -0
- package/lib/tools/trace/traceAttachments.js +69 -0
- package/lib/tools/trace/traceCli.js +87 -0
- package/lib/tools/trace/traceConsole.js +97 -0
- package/lib/tools/trace/traceErrors.js +55 -0
- package/lib/tools/trace/traceOpen.js +69 -0
- package/lib/tools/trace/traceParser.js +96 -0
- package/lib/tools/trace/traceRequests.js +182 -0
- package/lib/tools/trace/traceScreenshot.js +68 -0
- package/lib/tools/trace/traceSnapshot.js +149 -0
- package/lib/tools/trace/traceUtils.js +153 -0
- package/lib/tools/utils/connect.js +32 -0
- package/lib/tools/utils/mcp/http.js +152 -0
- package/lib/tools/utils/mcp/server.js +230 -0
- package/lib/tools/utils/mcp/tool.js +47 -0
- package/lib/tools/utils/socketConnection.js +108 -0
- package/lib/utils/isomorphic/ariaSnapshot.js +60 -2
- package/lib/utils/isomorphic/formatUtils.js +64 -0
- package/lib/utils/isomorphic/jsonSchema.js +89 -0
- package/lib/utils/isomorphic/lruCache.js +51 -0
- package/lib/utils/isomorphic/mimeType.js +7 -2
- package/lib/utils/isomorphic/protocolFormatter.js +2 -2
- package/lib/utils/isomorphic/protocolMetainfo.js +127 -98
- package/lib/utils/isomorphic/stringUtils.js +49 -0
- package/lib/utils/isomorphic/timeoutRunner.js +3 -3
- package/lib/utils/isomorphic/trace/entries.js +16 -0
- package/lib/utils/isomorphic/trace/snapshotRenderer.js +492 -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 +132 -0
- package/lib/utils/isomorphic/trace/traceModel.js +366 -0
- package/lib/utils/isomorphic/trace/traceModernizer.js +401 -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/urlMatch.js +54 -1
- package/lib/utils/isomorphic/utilityScriptSerializers.js +11 -0
- package/lib/utils/isomorphic/yaml.js +84 -0
- package/lib/utils.js +8 -2
- package/lib/utilsBundle.js +5 -26
- package/lib/utilsBundleImpl/index.js +172 -173
- package/lib/vite/dashboard/assets/index-BAOybkp8.js +50 -0
- package/lib/vite/dashboard/assets/index-CZAYOG76.css +1 -0
- package/lib/vite/dashboard/index.html +28 -0
- package/lib/vite/htmlReport/index.html +2 -70
- package/lib/vite/htmlReport/report.css +1 -0
- package/lib/vite/htmlReport/report.js +72 -0
- package/lib/vite/recorder/assets/codeMirrorModule-C8KMvO9L.js +32 -0
- package/lib/vite/recorder/assets/{codeMirrorModule-C3UTv-Ge.css → codeMirrorModule-DYBRYzYX.css} +1 -1
- package/lib/vite/recorder/assets/{index-Ri0uHF7I.css → index-BSjZa4pk.css} +1 -1
- package/lib/vite/recorder/assets/index-CqAYX1I3.js +193 -0
- package/lib/vite/recorder/index.html +2 -2
- package/lib/vite/traceViewer/assets/codeMirrorModule-DS0FLvoc.js +32 -0
- package/lib/vite/traceViewer/assets/defaultSettingsView-GTWI-W_B.js +262 -0
- package/lib/vite/traceViewer/{codeMirrorModule.C3UTv-Ge.css → codeMirrorModule.DYBRYzYX.css} +1 -1
- package/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
- package/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
- package/lib/vite/traceViewer/index.Dtstcb7U.js +2 -0
- package/lib/vite/traceViewer/index.html +4 -4
- package/lib/vite/traceViewer/sw.bundle.js +5 -3
- package/lib/vite/traceViewer/uiMode.Vipi55dB.js +6 -0
- package/lib/vite/traceViewer/uiMode.html +3 -3
- package/lib/zipBundleImpl.js +2 -2
- package/lib/zodBundle.js +39 -0
- package/lib/zodBundleImpl.js +40 -0
- package/package.json +7 -1
- package/types/protocol.d.ts +1696 -221
- package/types/types.d.ts +879 -112
- package/lib/server/bidi/third_party/bidiDeserializer.js +0 -98
- package/lib/server/chromium/videoRecorder.js +0 -115
- package/lib/server/pageBinding.js +0 -87
- package/lib/server/trace/test/inMemorySnapshotter.js +0 -87
- package/lib/utils/isomorphic/oldUtilityScriptSerializers.js +0 -248
- package/lib/vite/recorder/assets/codeMirrorModule-CBbSe-ZI.js +0 -25
- package/lib/vite/recorder/assets/index-CpZVd2nA.js +0 -193
- package/lib/vite/traceViewer/assets/codeMirrorModule-DHz0wP2C.js +0 -25
- package/lib/vite/traceViewer/assets/defaultSettingsView-WsZP88O6.js +0 -266
- package/lib/vite/traceViewer/defaultSettingsView.ConWv5KN.css +0 -1
- package/lib/vite/traceViewer/index.C4Y3Aw8n.css +0 -1
- package/lib/vite/traceViewer/index.C8xAeo93.js +0 -2
- package/lib/vite/traceViewer/uiMode.BltraIJB.js +0 -5
- /package/lib/{server/utils → utils/isomorphic}/imageUtils.js +0 -0
- /package/lib/utils/isomorphic/{traceUtils.js → trace/traceUtils.js} +0 -0
package/ThirdPartyNotices.txt
CHANGED
|
@@ -4,51 +4,219 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
|
|
|
4
4
|
|
|
5
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
6
|
|
|
7
|
+
- @hono/node-server@1.19.11 (https://github.com/honojs/node-server)
|
|
8
|
+
- @modelcontextprotocol/sdk@1.28.0 (https://github.com/modelcontextprotocol/typescript-sdk)
|
|
9
|
+
- accepts@2.0.0 (https://github.com/jshttp/accepts)
|
|
7
10
|
- agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
|
|
11
|
+
- ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
|
|
12
|
+
- ajv@8.18.0 (https://github.com/ajv-validator/ajv)
|
|
8
13
|
- balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
|
|
14
|
+
- body-parser@2.2.2 (https://github.com/expressjs/body-parser)
|
|
9
15
|
- brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
|
|
10
16
|
- buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
|
|
17
|
+
- bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
|
|
18
|
+
- call-bind-apply-helpers@1.0.2 (https://github.com/ljharb/call-bind-apply-helpers)
|
|
19
|
+
- call-bound@1.0.4 (https://github.com/ljharb/call-bound)
|
|
11
20
|
- codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
|
|
12
21
|
- colors@1.4.0 (https://github.com/Marak/colors.js)
|
|
13
22
|
- commander@13.1.0 (https://github.com/tj/commander.js)
|
|
14
23
|
- concat-map@0.0.1 (https://github.com/substack/node-concat-map)
|
|
24
|
+
- content-disposition@1.0.1 (https://github.com/jshttp/content-disposition)
|
|
25
|
+
- content-type@1.0.5 (https://github.com/jshttp/content-type)
|
|
26
|
+
- cookie-signature@1.2.2 (https://github.com/visionmedia/node-cookie-signature)
|
|
27
|
+
- cookie@0.7.2 (https://github.com/jshttp/cookie)
|
|
28
|
+
- cors@2.8.5 (https://github.com/expressjs/cors)
|
|
29
|
+
- cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
|
|
15
30
|
- debug@4.3.4 (https://github.com/debug-js/debug)
|
|
16
31
|
- debug@4.4.0 (https://github.com/debug-js/debug)
|
|
32
|
+
- debug@4.4.3 (https://github.com/debug-js/debug)
|
|
17
33
|
- define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
|
|
18
|
-
-
|
|
34
|
+
- depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
|
|
35
|
+
- diff@8.0.4 (https://github.com/kpdecker/jsdiff)
|
|
19
36
|
- dotenv@16.4.5 (https://github.com/motdotla/dotenv)
|
|
37
|
+
- dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
|
|
38
|
+
- ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
|
|
39
|
+
- encodeurl@2.0.0 (https://github.com/pillarjs/encodeurl)
|
|
20
40
|
- end-of-stream@1.4.4 (https://github.com/mafintosh/end-of-stream)
|
|
41
|
+
- es-define-property@1.0.1 (https://github.com/ljharb/es-define-property)
|
|
42
|
+
- es-errors@1.3.0 (https://github.com/ljharb/es-errors)
|
|
43
|
+
- es-object-atoms@1.1.1 (https://github.com/ljharb/es-object-atoms)
|
|
44
|
+
- escape-html@1.0.3 (https://github.com/component/escape-html)
|
|
45
|
+
- etag@1.8.1 (https://github.com/jshttp/etag)
|
|
46
|
+
- eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
|
|
47
|
+
- eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
|
|
48
|
+
- express-rate-limit@8.3.1 (https://github.com/express-rate-limit/express-rate-limit)
|
|
49
|
+
- express@5.2.1 (https://github.com/expressjs/express)
|
|
50
|
+
- fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
|
|
51
|
+
- fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
|
|
52
|
+
- finalhandler@2.1.1 (https://github.com/pillarjs/finalhandler)
|
|
53
|
+
- forwarded@0.2.0 (https://github.com/jshttp/forwarded)
|
|
54
|
+
- fresh@2.0.0 (https://github.com/jshttp/fresh)
|
|
55
|
+
- function-bind@1.1.2 (https://github.com/Raynos/function-bind)
|
|
56
|
+
- get-intrinsic@1.3.0 (https://github.com/ljharb/get-intrinsic)
|
|
57
|
+
- get-proto@1.0.1 (https://github.com/ljharb/get-proto)
|
|
21
58
|
- get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
|
|
59
|
+
- gopd@1.2.0 (https://github.com/ljharb/gopd)
|
|
22
60
|
- graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
|
|
61
|
+
- has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
|
|
62
|
+
- hasown@2.0.2 (https://github.com/inspect-js/hasOwn)
|
|
63
|
+
- hono@4.12.7 (https://github.com/honojs/hono)
|
|
64
|
+
- http-errors@2.0.1 (https://github.com/jshttp/http-errors)
|
|
23
65
|
- https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
|
|
66
|
+
- iconv-lite@0.7.2 (https://github.com/pillarjs/iconv-lite)
|
|
67
|
+
- inherits@2.0.4 (https://github.com/isaacs/inherits)
|
|
68
|
+
- ini@6.0.0 (https://github.com/npm/ini)
|
|
69
|
+
- ip-address@10.1.0 (https://github.com/beaugunderson/ip-address)
|
|
24
70
|
- ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
|
|
71
|
+
- ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
|
|
25
72
|
- is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
|
|
73
|
+
- is-promise@4.0.0 (https://github.com/then/is-promise)
|
|
26
74
|
- is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
|
|
75
|
+
- isexe@2.0.0 (https://github.com/isaacs/isexe)
|
|
76
|
+
- jose@6.1.3 (https://github.com/panva/jose)
|
|
27
77
|
- jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
|
|
28
78
|
- jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
|
|
79
|
+
- json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
|
|
80
|
+
- json-schema-typed@8.0.2 (https://github.com/RemyRylan/json-schema-typed)
|
|
81
|
+
- math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
|
|
82
|
+
- media-typer@1.1.0 (https://github.com/jshttp/media-typer)
|
|
83
|
+
- merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
|
|
84
|
+
- mime-db@1.54.0 (https://github.com/jshttp/mime-db)
|
|
85
|
+
- mime-types@3.0.2 (https://github.com/jshttp/mime-types)
|
|
29
86
|
- mime@3.0.0 (https://github.com/broofa/mime)
|
|
30
|
-
- minimatch@3.1.
|
|
87
|
+
- minimatch@3.1.4 (https://github.com/isaacs/minimatch)
|
|
31
88
|
- ms@2.1.2 (https://github.com/zeit/ms)
|
|
32
89
|
- ms@2.1.3 (https://github.com/vercel/ms)
|
|
90
|
+
- negotiator@1.0.0 (https://github.com/jshttp/negotiator)
|
|
91
|
+
- object-assign@4.1.1 (https://github.com/sindresorhus/object-assign)
|
|
92
|
+
- object-inspect@1.13.4 (https://github.com/inspect-js/object-inspect)
|
|
93
|
+
- on-finished@2.4.1 (https://github.com/jshttp/on-finished)
|
|
33
94
|
- once@1.4.0 (https://github.com/isaacs/once)
|
|
34
95
|
- open@8.4.0 (https://github.com/sindresorhus/open)
|
|
96
|
+
- parseurl@1.3.3 (https://github.com/pillarjs/parseurl)
|
|
97
|
+
- path-key@3.1.1 (https://github.com/sindresorhus/path-key)
|
|
98
|
+
- path-to-regexp@8.3.0 (https://github.com/pillarjs/path-to-regexp)
|
|
35
99
|
- pend@1.2.0 (https://github.com/andrewrk/node-pend)
|
|
100
|
+
- pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
|
|
36
101
|
- pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
|
|
37
102
|
- progress@2.0.3 (https://github.com/visionmedia/node-progress)
|
|
38
|
-
- proxy-
|
|
103
|
+
- proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
|
|
104
|
+
- proxy-from-env@2.0.0 (https://github.com/Rob--W/proxy-from-env)
|
|
39
105
|
- pump@3.0.2 (https://github.com/mafintosh/pump)
|
|
106
|
+
- qs@6.15.0 (https://github.com/ljharb/qs)
|
|
107
|
+
- range-parser@1.2.1 (https://github.com/jshttp/range-parser)
|
|
108
|
+
- raw-body@3.0.2 (https://github.com/stream-utils/raw-body)
|
|
109
|
+
- require-from-string@2.0.2 (https://github.com/floatdrop/require-from-string)
|
|
40
110
|
- retry@0.12.0 (https://github.com/tim-kos/node-retry)
|
|
111
|
+
- router@2.2.0 (https://github.com/pillarjs/router)
|
|
112
|
+
- safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
|
|
113
|
+
- send@1.2.1 (https://github.com/pillarjs/send)
|
|
114
|
+
- serve-static@2.2.1 (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)
|
|
41
122
|
- signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
|
|
42
123
|
- smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
|
|
43
124
|
- socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
|
|
44
125
|
- socks@2.8.3 (https://github.com/JoshGlazebrook/socks)
|
|
45
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)
|
|
46
133
|
- wrappy@1.0.2 (https://github.com/npm/wrappy)
|
|
47
134
|
- ws@8.17.1 (https://github.com/websockets/ws)
|
|
48
|
-
- yaml@2.
|
|
49
|
-
- yauzl@3.2.
|
|
135
|
+
- yaml@2.8.3 (https://github.com/eemeli/yaml)
|
|
136
|
+
- yauzl@3.2.1 (https://github.com/thejoshwolfe/yauzl)
|
|
50
137
|
- yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
|
|
51
|
-
- zod@3.25.
|
|
138
|
+
- zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
|
|
139
|
+
- zod@4.3.6 (https://github.com/colinhacks/zod)
|
|
140
|
+
|
|
141
|
+
%% @hono/node-server@1.19.11 NOTICES AND INFORMATION BEGIN HERE
|
|
142
|
+
=========================================
|
|
143
|
+
MIT License
|
|
144
|
+
|
|
145
|
+
Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
|
|
146
|
+
|
|
147
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
148
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
149
|
+
in the Software without restriction, including without limitation the rights
|
|
150
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
151
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
152
|
+
furnished to do so, subject to the following conditions:
|
|
153
|
+
|
|
154
|
+
The above copyright notice and this permission notice shall be included in all
|
|
155
|
+
copies or substantial portions of the Software.
|
|
156
|
+
|
|
157
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
158
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
159
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
160
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
161
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
162
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
163
|
+
SOFTWARE.
|
|
164
|
+
=========================================
|
|
165
|
+
END OF @hono/node-server@1.19.11 AND INFORMATION
|
|
166
|
+
|
|
167
|
+
%% @modelcontextprotocol/sdk@1.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
168
|
+
=========================================
|
|
169
|
+
MIT License
|
|
170
|
+
|
|
171
|
+
Copyright (c) 2024 Anthropic, PBC
|
|
172
|
+
|
|
173
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
174
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
175
|
+
in the Software without restriction, including without limitation the rights
|
|
176
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
177
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
178
|
+
furnished to do so, subject to the following conditions:
|
|
179
|
+
|
|
180
|
+
The above copyright notice and this permission notice shall be included in all
|
|
181
|
+
copies or substantial portions of the Software.
|
|
182
|
+
|
|
183
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
184
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
185
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
186
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
187
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
188
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
189
|
+
SOFTWARE.
|
|
190
|
+
=========================================
|
|
191
|
+
END OF @modelcontextprotocol/sdk@1.28.0 AND INFORMATION
|
|
192
|
+
|
|
193
|
+
%% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
194
|
+
=========================================
|
|
195
|
+
(The MIT License)
|
|
196
|
+
|
|
197
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
198
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
199
|
+
|
|
200
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
201
|
+
a copy of this software and associated documentation files (the
|
|
202
|
+
'Software'), to deal in the Software without restriction, including
|
|
203
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
204
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
205
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
206
|
+
the following conditions:
|
|
207
|
+
|
|
208
|
+
The above copyright notice and this permission notice shall be
|
|
209
|
+
included in all copies or substantial portions of the Software.
|
|
210
|
+
|
|
211
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
212
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
213
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
214
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
215
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
216
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
217
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
218
|
+
=========================================
|
|
219
|
+
END OF accepts@2.0.0 AND INFORMATION
|
|
52
220
|
|
|
53
221
|
%% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
|
|
54
222
|
=========================================
|
|
@@ -77,6 +245,58 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
77
245
|
=========================================
|
|
78
246
|
END OF agent-base@7.1.4 AND INFORMATION
|
|
79
247
|
|
|
248
|
+
%% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
249
|
+
=========================================
|
|
250
|
+
MIT License
|
|
251
|
+
|
|
252
|
+
Copyright (c) 2020 Evgeny Poberezkin
|
|
253
|
+
|
|
254
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
255
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
256
|
+
in the Software without restriction, including without limitation the rights
|
|
257
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
258
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
259
|
+
furnished to do so, subject to the following conditions:
|
|
260
|
+
|
|
261
|
+
The above copyright notice and this permission notice shall be included in all
|
|
262
|
+
copies or substantial portions of the Software.
|
|
263
|
+
|
|
264
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
265
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
266
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
267
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
268
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
269
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
270
|
+
SOFTWARE.
|
|
271
|
+
=========================================
|
|
272
|
+
END OF ajv-formats@3.0.1 AND INFORMATION
|
|
273
|
+
|
|
274
|
+
%% ajv@8.18.0 NOTICES AND INFORMATION BEGIN HERE
|
|
275
|
+
=========================================
|
|
276
|
+
The MIT License (MIT)
|
|
277
|
+
|
|
278
|
+
Copyright (c) 2015-2021 Evgeny Poberezkin
|
|
279
|
+
|
|
280
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
281
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
282
|
+
in the Software without restriction, including without limitation the rights
|
|
283
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
284
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
285
|
+
furnished to do so, subject to the following conditions:
|
|
286
|
+
|
|
287
|
+
The above copyright notice and this permission notice shall be included in all
|
|
288
|
+
copies or substantial portions of the Software.
|
|
289
|
+
|
|
290
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
291
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
292
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
293
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
294
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
295
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
296
|
+
SOFTWARE.
|
|
297
|
+
=========================================
|
|
298
|
+
END OF ajv@8.18.0 AND INFORMATION
|
|
299
|
+
|
|
80
300
|
%% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
81
301
|
=========================================
|
|
82
302
|
(MIT)
|
|
@@ -103,6 +323,34 @@ SOFTWARE.
|
|
|
103
323
|
=========================================
|
|
104
324
|
END OF balanced-match@1.0.2 AND INFORMATION
|
|
105
325
|
|
|
326
|
+
%% body-parser@2.2.2 NOTICES AND INFORMATION BEGIN HERE
|
|
327
|
+
=========================================
|
|
328
|
+
(The MIT License)
|
|
329
|
+
|
|
330
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
331
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
332
|
+
|
|
333
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
334
|
+
a copy of this software and associated documentation files (the
|
|
335
|
+
'Software'), to deal in the Software without restriction, including
|
|
336
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
337
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
338
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
339
|
+
the following conditions:
|
|
340
|
+
|
|
341
|
+
The above copyright notice and this permission notice shall be
|
|
342
|
+
included in all copies or substantial portions of the Software.
|
|
343
|
+
|
|
344
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
345
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
346
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
347
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
348
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
349
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
350
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
351
|
+
=========================================
|
|
352
|
+
END OF body-parser@2.2.2 AND INFORMATION
|
|
353
|
+
|
|
106
354
|
%% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
|
|
107
355
|
=========================================
|
|
108
356
|
MIT License
|
|
@@ -153,6 +401,86 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEAL
|
|
|
153
401
|
=========================================
|
|
154
402
|
END OF buffer-crc32@0.2.13 AND INFORMATION
|
|
155
403
|
|
|
404
|
+
%% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
405
|
+
=========================================
|
|
406
|
+
(The MIT License)
|
|
407
|
+
|
|
408
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
409
|
+
Copyright (c) 2015 Jed Watson <jed.watson@me.com>
|
|
410
|
+
|
|
411
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
412
|
+
a copy of this software and associated documentation files (the
|
|
413
|
+
'Software'), to deal in the Software without restriction, including
|
|
414
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
415
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
416
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
417
|
+
the following conditions:
|
|
418
|
+
|
|
419
|
+
The above copyright notice and this permission notice shall be
|
|
420
|
+
included in all copies or substantial portions of the Software.
|
|
421
|
+
|
|
422
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
423
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
424
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
425
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
426
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
427
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
428
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
429
|
+
=========================================
|
|
430
|
+
END OF bytes@3.1.2 AND INFORMATION
|
|
431
|
+
|
|
432
|
+
%% call-bind-apply-helpers@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
433
|
+
=========================================
|
|
434
|
+
MIT License
|
|
435
|
+
|
|
436
|
+
Copyright (c) 2024 Jordan Harband
|
|
437
|
+
|
|
438
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
439
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
440
|
+
in the Software without restriction, including without limitation the rights
|
|
441
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
442
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
443
|
+
furnished to do so, subject to the following conditions:
|
|
444
|
+
|
|
445
|
+
The above copyright notice and this permission notice shall be included in all
|
|
446
|
+
copies or substantial portions of the Software.
|
|
447
|
+
|
|
448
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
449
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
450
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
451
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
452
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
453
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
454
|
+
SOFTWARE.
|
|
455
|
+
=========================================
|
|
456
|
+
END OF call-bind-apply-helpers@1.0.2 AND INFORMATION
|
|
457
|
+
|
|
458
|
+
%% call-bound@1.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
459
|
+
=========================================
|
|
460
|
+
MIT License
|
|
461
|
+
|
|
462
|
+
Copyright (c) 2024 Jordan Harband
|
|
463
|
+
|
|
464
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
465
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
466
|
+
in the Software without restriction, including without limitation the rights
|
|
467
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
468
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
469
|
+
furnished to do so, subject to the following conditions:
|
|
470
|
+
|
|
471
|
+
The above copyright notice and this permission notice shall be included in all
|
|
472
|
+
copies or substantial portions of the Software.
|
|
473
|
+
|
|
474
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
475
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
476
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
477
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
478
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
479
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
480
|
+
SOFTWARE.
|
|
481
|
+
=========================================
|
|
482
|
+
END OF call-bound@1.0.4 AND INFORMATION
|
|
483
|
+
|
|
156
484
|
%% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
|
|
157
485
|
=========================================
|
|
158
486
|
MIT License
|
|
@@ -259,44 +587,206 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
259
587
|
=========================================
|
|
260
588
|
END OF concat-map@0.0.1 AND INFORMATION
|
|
261
589
|
|
|
262
|
-
%%
|
|
590
|
+
%% content-disposition@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
263
591
|
=========================================
|
|
264
592
|
(The MIT License)
|
|
265
593
|
|
|
266
|
-
Copyright (c) 2014-2017
|
|
267
|
-
Copyright (c) 2018-2021 Josh Junon
|
|
594
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
268
595
|
|
|
269
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
270
|
-
and associated documentation files (the
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
596
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
597
|
+
a copy of this software and associated documentation files (the
|
|
598
|
+
'Software'), to deal in the Software without restriction, including
|
|
599
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
600
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
601
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
602
|
+
the following conditions:
|
|
274
603
|
|
|
275
|
-
The above copyright notice and this permission notice shall be
|
|
276
|
-
portions of the Software.
|
|
604
|
+
The above copyright notice and this permission notice shall be
|
|
605
|
+
included in all copies or substantial portions of the Software.
|
|
277
606
|
|
|
278
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
607
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
608
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
609
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
610
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
611
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
612
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
282
613
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
283
614
|
=========================================
|
|
284
|
-
END OF
|
|
615
|
+
END OF content-disposition@1.0.1 AND INFORMATION
|
|
285
616
|
|
|
286
|
-
%%
|
|
617
|
+
%% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
287
618
|
=========================================
|
|
288
619
|
(The MIT License)
|
|
289
620
|
|
|
290
|
-
Copyright (c)
|
|
291
|
-
Copyright (c) 2018-2021 Josh Junon
|
|
621
|
+
Copyright (c) 2015 Douglas Christopher Wilson
|
|
292
622
|
|
|
293
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
294
|
-
and associated documentation files (the
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
623
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
624
|
+
a copy of this software and associated documentation files (the
|
|
625
|
+
'Software'), to deal in the Software without restriction, including
|
|
626
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
627
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
628
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
629
|
+
the following conditions:
|
|
298
630
|
|
|
299
|
-
The above copyright notice and this permission notice shall be
|
|
631
|
+
The above copyright notice and this permission notice shall be
|
|
632
|
+
included in all copies or substantial portions of the Software.
|
|
633
|
+
|
|
634
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
635
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
636
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
637
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
638
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
639
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
640
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
641
|
+
=========================================
|
|
642
|
+
END OF content-type@1.0.5 AND INFORMATION
|
|
643
|
+
|
|
644
|
+
%% cookie-signature@1.2.2 NOTICES AND INFORMATION BEGIN HERE
|
|
645
|
+
=========================================
|
|
646
|
+
(The MIT License)
|
|
647
|
+
|
|
648
|
+
Copyright (c) 2012–2024 LearnBoost <tj@learnboost.com> and other contributors;
|
|
649
|
+
|
|
650
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
651
|
+
a copy of this software and associated documentation files (the
|
|
652
|
+
'Software'), to deal in the Software without restriction, including
|
|
653
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
654
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
655
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
656
|
+
the following conditions:
|
|
657
|
+
|
|
658
|
+
The above copyright notice and this permission notice shall be
|
|
659
|
+
included in all copies or substantial portions of the Software.
|
|
660
|
+
|
|
661
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
662
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
663
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
664
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
665
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
666
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
667
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
668
|
+
=========================================
|
|
669
|
+
END OF cookie-signature@1.2.2 AND INFORMATION
|
|
670
|
+
|
|
671
|
+
%% cookie@0.7.2 NOTICES AND INFORMATION BEGIN HERE
|
|
672
|
+
=========================================
|
|
673
|
+
(The MIT License)
|
|
674
|
+
|
|
675
|
+
Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
|
|
676
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
677
|
+
|
|
678
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
679
|
+
a copy of this software and associated documentation files (the
|
|
680
|
+
'Software'), to deal in the Software without restriction, including
|
|
681
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
682
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
683
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
684
|
+
the following conditions:
|
|
685
|
+
|
|
686
|
+
The above copyright notice and this permission notice shall be
|
|
687
|
+
included in all copies or substantial portions of the Software.
|
|
688
|
+
|
|
689
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
690
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
691
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
692
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
693
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
694
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
695
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
696
|
+
=========================================
|
|
697
|
+
END OF cookie@0.7.2 AND INFORMATION
|
|
698
|
+
|
|
699
|
+
%% cors@2.8.5 NOTICES AND INFORMATION BEGIN HERE
|
|
700
|
+
=========================================
|
|
701
|
+
(The MIT License)
|
|
702
|
+
|
|
703
|
+
Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
|
|
704
|
+
|
|
705
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
706
|
+
a copy of this software and associated documentation files (the
|
|
707
|
+
'Software'), to deal in the Software without restriction, including
|
|
708
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
709
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
710
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
711
|
+
the following conditions:
|
|
712
|
+
|
|
713
|
+
The above copyright notice and this permission notice shall be
|
|
714
|
+
included in all copies or substantial portions of the Software.
|
|
715
|
+
|
|
716
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
717
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
718
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
719
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
720
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
721
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
722
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
723
|
+
=========================================
|
|
724
|
+
END OF cors@2.8.5 AND INFORMATION
|
|
725
|
+
|
|
726
|
+
%% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
727
|
+
=========================================
|
|
728
|
+
The MIT License (MIT)
|
|
729
|
+
|
|
730
|
+
Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
|
|
731
|
+
|
|
732
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
733
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
734
|
+
in the Software without restriction, including without limitation the rights
|
|
735
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
736
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
737
|
+
furnished to do so, subject to the following conditions:
|
|
738
|
+
|
|
739
|
+
The above copyright notice and this permission notice shall be included in
|
|
740
|
+
all copies or substantial portions of the Software.
|
|
741
|
+
|
|
742
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
743
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
744
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
745
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
746
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
747
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
748
|
+
THE SOFTWARE.
|
|
749
|
+
=========================================
|
|
750
|
+
END OF cross-spawn@7.0.6 AND INFORMATION
|
|
751
|
+
|
|
752
|
+
%% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
|
|
753
|
+
=========================================
|
|
754
|
+
(The MIT License)
|
|
755
|
+
|
|
756
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
757
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
758
|
+
|
|
759
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
760
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
761
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
762
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
763
|
+
subject to the following conditions:
|
|
764
|
+
|
|
765
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
766
|
+
portions of the Software.
|
|
767
|
+
|
|
768
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
769
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
770
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
771
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
772
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
773
|
+
=========================================
|
|
774
|
+
END OF debug@4.3.4 AND INFORMATION
|
|
775
|
+
|
|
776
|
+
%% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
777
|
+
=========================================
|
|
778
|
+
(The MIT License)
|
|
779
|
+
|
|
780
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
781
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
782
|
+
|
|
783
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
784
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
785
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
786
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
787
|
+
subject to the following conditions:
|
|
788
|
+
|
|
789
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
300
790
|
portions of the Software.
|
|
301
791
|
|
|
302
792
|
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
@@ -307,6 +797,30 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
307
797
|
=========================================
|
|
308
798
|
END OF debug@4.4.0 AND INFORMATION
|
|
309
799
|
|
|
800
|
+
%% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
|
|
801
|
+
=========================================
|
|
802
|
+
(The MIT License)
|
|
803
|
+
|
|
804
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
805
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
806
|
+
|
|
807
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
808
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
809
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
810
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
811
|
+
subject to the following conditions:
|
|
812
|
+
|
|
813
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
814
|
+
portions of the Software.
|
|
815
|
+
|
|
816
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
817
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
818
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
819
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
820
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
821
|
+
=========================================
|
|
822
|
+
END OF debug@4.4.3 AND INFORMATION
|
|
823
|
+
|
|
310
824
|
%% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
311
825
|
=========================================
|
|
312
826
|
MIT License
|
|
@@ -321,7 +835,34 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
321
835
|
=========================================
|
|
322
836
|
END OF define-lazy-prop@2.0.0 AND INFORMATION
|
|
323
837
|
|
|
324
|
-
%%
|
|
838
|
+
%% depd@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
839
|
+
=========================================
|
|
840
|
+
(The MIT License)
|
|
841
|
+
|
|
842
|
+
Copyright (c) 2014-2018 Douglas Christopher Wilson
|
|
843
|
+
|
|
844
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
845
|
+
a copy of this software and associated documentation files (the
|
|
846
|
+
'Software'), to deal in the Software without restriction, including
|
|
847
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
848
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
849
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
850
|
+
the following conditions:
|
|
851
|
+
|
|
852
|
+
The above copyright notice and this permission notice shall be
|
|
853
|
+
included in all copies or substantial portions of the Software.
|
|
854
|
+
|
|
855
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
856
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
857
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
858
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
859
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
860
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
861
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
862
|
+
=========================================
|
|
863
|
+
END OF depd@2.0.0 AND INFORMATION
|
|
864
|
+
|
|
865
|
+
%% diff@8.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
325
866
|
=========================================
|
|
326
867
|
BSD 3-Clause License
|
|
327
868
|
|
|
@@ -353,7 +894,7 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
353
894
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
354
895
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
355
896
|
=========================================
|
|
356
|
-
END OF diff@
|
|
897
|
+
END OF diff@8.0.4 AND INFORMATION
|
|
357
898
|
|
|
358
899
|
%% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
|
|
359
900
|
=========================================
|
|
@@ -383,11 +924,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
383
924
|
=========================================
|
|
384
925
|
END OF dotenv@16.4.5 AND INFORMATION
|
|
385
926
|
|
|
386
|
-
%%
|
|
927
|
+
%% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
387
928
|
=========================================
|
|
388
|
-
|
|
929
|
+
MIT License
|
|
389
930
|
|
|
390
|
-
Copyright (c)
|
|
931
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
391
932
|
|
|
392
933
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
393
934
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -396,58 +937,50 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
396
937
|
copies of the Software, and to permit persons to whom the Software is
|
|
397
938
|
furnished to do so, subject to the following conditions:
|
|
398
939
|
|
|
399
|
-
The above copyright notice and this permission notice shall be included in
|
|
400
|
-
|
|
940
|
+
The above copyright notice and this permission notice shall be included in all
|
|
941
|
+
copies or substantial portions of the Software.
|
|
401
942
|
|
|
402
943
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
403
944
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
404
945
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
405
946
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
406
947
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
407
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
408
|
-
|
|
409
|
-
=========================================
|
|
410
|
-
END OF end-of-stream@1.4.4 AND INFORMATION
|
|
411
|
-
|
|
412
|
-
%% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
948
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
949
|
+
SOFTWARE.
|
|
413
950
|
=========================================
|
|
414
|
-
|
|
951
|
+
END OF dunder-proto@1.0.1 AND INFORMATION
|
|
415
952
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
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:
|
|
419
|
-
|
|
420
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
421
|
-
|
|
422
|
-
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.
|
|
953
|
+
%% ee-first@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
423
954
|
=========================================
|
|
424
|
-
|
|
955
|
+
The MIT License (MIT)
|
|
425
956
|
|
|
426
|
-
|
|
427
|
-
=========================================
|
|
428
|
-
The ISC License
|
|
957
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
429
958
|
|
|
430
|
-
|
|
959
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
960
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
961
|
+
in the Software without restriction, including without limitation the rights
|
|
962
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
963
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
964
|
+
furnished to do so, subject to the following conditions:
|
|
431
965
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
copyright notice and this permission notice appear in all copies.
|
|
966
|
+
The above copyright notice and this permission notice shall be included in
|
|
967
|
+
all copies or substantial portions of the Software.
|
|
435
968
|
|
|
436
|
-
THE SOFTWARE IS PROVIDED "AS IS"
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
969
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
970
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
971
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
972
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
973
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
974
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
975
|
+
THE SOFTWARE.
|
|
443
976
|
=========================================
|
|
444
|
-
END OF
|
|
977
|
+
END OF ee-first@1.1.1 AND INFORMATION
|
|
445
978
|
|
|
446
|
-
%%
|
|
979
|
+
%% encodeurl@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
447
980
|
=========================================
|
|
448
981
|
(The MIT License)
|
|
449
982
|
|
|
450
|
-
Copyright (c)
|
|
983
|
+
Copyright (c) 2016 Douglas Christopher Wilson
|
|
451
984
|
|
|
452
985
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
453
986
|
a copy of this software and associated documentation files (the
|
|
@@ -468,11 +1001,13 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
468
1001
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
469
1002
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
470
1003
|
=========================================
|
|
471
|
-
END OF
|
|
1004
|
+
END OF encodeurl@2.0.0 AND INFORMATION
|
|
472
1005
|
|
|
473
|
-
%%
|
|
1006
|
+
%% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
474
1007
|
=========================================
|
|
475
|
-
|
|
1008
|
+
The MIT License (MIT)
|
|
1009
|
+
|
|
1010
|
+
Copyright (c) 2014 Mathias Buus
|
|
476
1011
|
|
|
477
1012
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
478
1013
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -492,116 +1027,1746 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
492
1027
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
493
1028
|
THE SOFTWARE.
|
|
494
1029
|
=========================================
|
|
495
|
-
END OF
|
|
1030
|
+
END OF end-of-stream@1.4.4 AND INFORMATION
|
|
496
1031
|
|
|
497
|
-
%%
|
|
1032
|
+
%% es-define-property@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
498
1033
|
=========================================
|
|
499
1034
|
MIT License
|
|
500
1035
|
|
|
501
|
-
Copyright (c)
|
|
1036
|
+
Copyright (c) 2024 Jordan Harband
|
|
502
1037
|
|
|
503
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1038
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1039
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1040
|
+
in the Software without restriction, including without limitation the rights
|
|
1041
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1042
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1043
|
+
furnished to do so, subject to the following conditions:
|
|
504
1044
|
|
|
505
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1045
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1046
|
+
copies or substantial portions of the Software.
|
|
506
1047
|
|
|
507
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1048
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1049
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1050
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1051
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1052
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1053
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1054
|
+
SOFTWARE.
|
|
508
1055
|
=========================================
|
|
509
|
-
END OF
|
|
1056
|
+
END OF es-define-property@1.0.1 AND INFORMATION
|
|
510
1057
|
|
|
511
|
-
%%
|
|
1058
|
+
%% es-errors@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
512
1059
|
=========================================
|
|
513
1060
|
MIT License
|
|
514
1061
|
|
|
515
|
-
Copyright (c)
|
|
1062
|
+
Copyright (c) 2024 Jordan Harband
|
|
516
1063
|
|
|
517
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1064
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1065
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1066
|
+
in the Software without restriction, including without limitation the rights
|
|
1067
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1068
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1069
|
+
furnished to do so, subject to the following conditions:
|
|
518
1070
|
|
|
519
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1071
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1072
|
+
copies or substantial portions of the Software.
|
|
520
1073
|
|
|
521
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1074
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1075
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1076
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1077
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1078
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1079
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1080
|
+
SOFTWARE.
|
|
522
1081
|
=========================================
|
|
523
|
-
END OF
|
|
1082
|
+
END OF es-errors@1.3.0 AND INFORMATION
|
|
524
1083
|
|
|
525
|
-
%%
|
|
1084
|
+
%% es-object-atoms@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
526
1085
|
=========================================
|
|
527
|
-
|
|
1086
|
+
MIT License
|
|
1087
|
+
|
|
1088
|
+
Copyright (c) 2024 Jordan Harband
|
|
1089
|
+
|
|
1090
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1091
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1092
|
+
in the Software without restriction, including without limitation the rights
|
|
1093
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1094
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1095
|
+
furnished to do so, subject to the following conditions:
|
|
1096
|
+
|
|
1097
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1098
|
+
copies or substantial portions of the Software.
|
|
1099
|
+
|
|
1100
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1101
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1102
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1103
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1104
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1105
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1106
|
+
SOFTWARE.
|
|
1107
|
+
=========================================
|
|
1108
|
+
END OF es-object-atoms@1.1.1 AND INFORMATION
|
|
1109
|
+
|
|
1110
|
+
%% escape-html@1.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1111
|
+
=========================================
|
|
1112
|
+
(The MIT License)
|
|
1113
|
+
|
|
1114
|
+
Copyright (c) 2012-2013 TJ Holowaychuk
|
|
1115
|
+
Copyright (c) 2015 Andreas Lubbe
|
|
1116
|
+
Copyright (c) 2015 Tiancheng "Timothy" Gu
|
|
1117
|
+
|
|
1118
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1119
|
+
a copy of this software and associated documentation files (the
|
|
1120
|
+
'Software'), to deal in the Software without restriction, including
|
|
1121
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1122
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1123
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1124
|
+
the following conditions:
|
|
1125
|
+
|
|
1126
|
+
The above copyright notice and this permission notice shall be
|
|
1127
|
+
included in all copies or substantial portions of the Software.
|
|
1128
|
+
|
|
1129
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1130
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1131
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1132
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1133
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1134
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1135
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1136
|
+
=========================================
|
|
1137
|
+
END OF escape-html@1.0.3 AND INFORMATION
|
|
1138
|
+
|
|
1139
|
+
%% etag@1.8.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1140
|
+
=========================================
|
|
1141
|
+
(The MIT License)
|
|
1142
|
+
|
|
1143
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
1144
|
+
|
|
1145
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1146
|
+
a copy of this software and associated documentation files (the
|
|
1147
|
+
'Software'), to deal in the Software without restriction, including
|
|
1148
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1149
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1150
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1151
|
+
the following conditions:
|
|
1152
|
+
|
|
1153
|
+
The above copyright notice and this permission notice shall be
|
|
1154
|
+
included in all copies or substantial portions of the Software.
|
|
1155
|
+
|
|
1156
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1157
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1158
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1159
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1160
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1161
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1162
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1163
|
+
=========================================
|
|
1164
|
+
END OF etag@1.8.1 AND INFORMATION
|
|
1165
|
+
|
|
1166
|
+
%% eventsource-parser@3.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1167
|
+
=========================================
|
|
1168
|
+
MIT License
|
|
1169
|
+
|
|
1170
|
+
Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
|
|
1171
|
+
|
|
1172
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1173
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1174
|
+
in the Software without restriction, including without limitation the rights
|
|
1175
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1176
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1177
|
+
furnished to do so, subject to the following conditions:
|
|
1178
|
+
|
|
1179
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1180
|
+
copies or substantial portions of the Software.
|
|
1181
|
+
|
|
1182
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1183
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1184
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1185
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1186
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1187
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1188
|
+
SOFTWARE.
|
|
1189
|
+
=========================================
|
|
1190
|
+
END OF eventsource-parser@3.0.3 AND INFORMATION
|
|
1191
|
+
|
|
1192
|
+
%% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
1193
|
+
=========================================
|
|
1194
|
+
The MIT License
|
|
1195
|
+
|
|
1196
|
+
Copyright (c) EventSource GitHub organisation
|
|
1197
|
+
|
|
1198
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1199
|
+
a copy of this software and associated documentation files (the
|
|
1200
|
+
"Software"), to deal in the Software without restriction, including
|
|
1201
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1202
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1203
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1204
|
+
the following conditions:
|
|
1205
|
+
|
|
1206
|
+
The above copyright notice and this permission notice shall be
|
|
1207
|
+
included in all copies or substantial portions of the Software.
|
|
1208
|
+
|
|
1209
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1210
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1211
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1212
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1213
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1214
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1215
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1216
|
+
=========================================
|
|
1217
|
+
END OF eventsource@3.0.7 AND INFORMATION
|
|
1218
|
+
|
|
1219
|
+
%% express-rate-limit@8.3.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1220
|
+
=========================================
|
|
1221
|
+
# MIT License
|
|
1222
|
+
|
|
1223
|
+
Copyright 2023 Nathan Friedly, Vedant K
|
|
1224
|
+
|
|
1225
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1226
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1227
|
+
the Software without restriction, including without limitation the rights to
|
|
1228
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1229
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1230
|
+
subject to the following conditions:
|
|
1231
|
+
|
|
1232
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1233
|
+
copies or substantial portions of the Software.
|
|
1234
|
+
|
|
1235
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1236
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1237
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1238
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1239
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1240
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1241
|
+
=========================================
|
|
1242
|
+
END OF express-rate-limit@8.3.1 AND INFORMATION
|
|
1243
|
+
|
|
1244
|
+
%% express@5.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1245
|
+
=========================================
|
|
1246
|
+
(The MIT License)
|
|
1247
|
+
|
|
1248
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
1249
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
1250
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1251
|
+
|
|
1252
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1253
|
+
a copy of this software and associated documentation files (the
|
|
1254
|
+
'Software'), to deal in the Software without restriction, including
|
|
1255
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1256
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1257
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1258
|
+
the following conditions:
|
|
1259
|
+
|
|
1260
|
+
The above copyright notice and this permission notice shall be
|
|
1261
|
+
included in all copies or substantial portions of the Software.
|
|
1262
|
+
|
|
1263
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1264
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1265
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1266
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1267
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1268
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1269
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1270
|
+
=========================================
|
|
1271
|
+
END OF express@5.2.1 AND INFORMATION
|
|
1272
|
+
|
|
1273
|
+
%% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1274
|
+
=========================================
|
|
1275
|
+
MIT License
|
|
1276
|
+
|
|
1277
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
1278
|
+
|
|
1279
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1280
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1281
|
+
in the Software without restriction, including without limitation the rights
|
|
1282
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1283
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1284
|
+
furnished to do so, subject to the following conditions:
|
|
1285
|
+
|
|
1286
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1287
|
+
copies or substantial portions of the Software.
|
|
1288
|
+
|
|
1289
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1290
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1291
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1292
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1293
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1294
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1295
|
+
SOFTWARE.
|
|
1296
|
+
=========================================
|
|
1297
|
+
END OF fast-deep-equal@3.1.3 AND INFORMATION
|
|
1298
|
+
|
|
1299
|
+
%% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1300
|
+
=========================================
|
|
1301
|
+
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
|
|
1302
|
+
Copyright (c) 2021-present The Fastify team
|
|
528
1303
|
All rights reserved.
|
|
529
|
-
|
|
1304
|
+
|
|
1305
|
+
The Fastify team members are listed at https://github.com/fastify/fastify#team.
|
|
1306
|
+
|
|
530
1307
|
Redistribution and use in source and binary forms, with or without
|
|
531
|
-
modification, are permitted provided that the following conditions are met:
|
|
1308
|
+
modification, are permitted provided that the following conditions are met:
|
|
1309
|
+
* Redistributions of source code must retain the above copyright
|
|
1310
|
+
notice, this list of conditions and the following disclaimer.
|
|
1311
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1312
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1313
|
+
documentation and/or other materials provided with the distribution.
|
|
1314
|
+
* The names of any contributors may not be used to endorse or promote
|
|
1315
|
+
products derived from this software without specific prior written
|
|
1316
|
+
permission.
|
|
532
1317
|
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
536
|
-
notice, this list of conditions and the following disclaimer in the
|
|
537
|
-
documentation and/or other materials provided with the distribution.
|
|
538
|
-
3. Neither the name of Eugene Ware nor the names of its contributors
|
|
539
|
-
may be used to endorse or promote products derived from this software
|
|
540
|
-
without specific prior written permission.
|
|
541
|
-
|
|
542
|
-
THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
|
|
543
|
-
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
1318
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
1319
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
544
1320
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
545
|
-
DISCLAIMED. IN NO EVENT SHALL
|
|
1321
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
|
|
546
1322
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
547
1323
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
548
1324
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
549
1325
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
550
1326
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
551
1327
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1328
|
+
|
|
1329
|
+
* * *
|
|
1330
|
+
|
|
1331
|
+
The complete list of contributors can be found at:
|
|
1332
|
+
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
1333
|
+
=========================================
|
|
1334
|
+
END OF fast-uri@3.1.0 AND INFORMATION
|
|
1335
|
+
|
|
1336
|
+
%% finalhandler@2.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1337
|
+
=========================================
|
|
1338
|
+
(The MIT License)
|
|
1339
|
+
|
|
1340
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1341
|
+
|
|
1342
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1343
|
+
a copy of this software and associated documentation files (the
|
|
1344
|
+
'Software'), to deal in the Software without restriction, including
|
|
1345
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1346
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1347
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1348
|
+
the following conditions:
|
|
1349
|
+
|
|
1350
|
+
The above copyright notice and this permission notice shall be
|
|
1351
|
+
included in all copies or substantial portions of the Software.
|
|
1352
|
+
|
|
1353
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1354
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1355
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1356
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1357
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1358
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1359
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1360
|
+
=========================================
|
|
1361
|
+
END OF finalhandler@2.1.1 AND INFORMATION
|
|
1362
|
+
|
|
1363
|
+
%% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1364
|
+
=========================================
|
|
1365
|
+
(The MIT License)
|
|
1366
|
+
|
|
1367
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
1368
|
+
|
|
1369
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1370
|
+
a copy of this software and associated documentation files (the
|
|
1371
|
+
'Software'), to deal in the Software without restriction, including
|
|
1372
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1373
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1374
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1375
|
+
the following conditions:
|
|
1376
|
+
|
|
1377
|
+
The above copyright notice and this permission notice shall be
|
|
1378
|
+
included in all copies or substantial portions of the Software.
|
|
1379
|
+
|
|
1380
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1381
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1382
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1383
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1384
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1385
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1386
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1387
|
+
=========================================
|
|
1388
|
+
END OF forwarded@0.2.0 AND INFORMATION
|
|
1389
|
+
|
|
1390
|
+
%% fresh@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1391
|
+
=========================================
|
|
1392
|
+
(The MIT License)
|
|
1393
|
+
|
|
1394
|
+
Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
|
|
1395
|
+
Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1396
|
+
|
|
1397
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1398
|
+
a copy of this software and associated documentation files (the
|
|
1399
|
+
'Software'), to deal in the Software without restriction, including
|
|
1400
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1401
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1402
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1403
|
+
the following conditions:
|
|
1404
|
+
|
|
1405
|
+
The above copyright notice and this permission notice shall be
|
|
1406
|
+
included in all copies or substantial portions of the Software.
|
|
1407
|
+
|
|
1408
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1409
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1410
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1411
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1412
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1413
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1414
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1415
|
+
=========================================
|
|
1416
|
+
END OF fresh@2.0.0 AND INFORMATION
|
|
1417
|
+
|
|
1418
|
+
%% function-bind@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1419
|
+
=========================================
|
|
1420
|
+
Copyright (c) 2013 Raynos.
|
|
1421
|
+
|
|
1422
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1423
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1424
|
+
in the Software without restriction, including without limitation the rights
|
|
1425
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1426
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1427
|
+
furnished to do so, subject to the following conditions:
|
|
1428
|
+
|
|
1429
|
+
The above copyright notice and this permission notice shall be included in
|
|
1430
|
+
all copies or substantial portions of the Software.
|
|
1431
|
+
|
|
1432
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1433
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1434
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1435
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1436
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1437
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1438
|
+
THE SOFTWARE.
|
|
1439
|
+
=========================================
|
|
1440
|
+
END OF function-bind@1.1.2 AND INFORMATION
|
|
1441
|
+
|
|
1442
|
+
%% get-intrinsic@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1443
|
+
=========================================
|
|
1444
|
+
MIT License
|
|
1445
|
+
|
|
1446
|
+
Copyright (c) 2020 Jordan Harband
|
|
1447
|
+
|
|
1448
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1449
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1450
|
+
in the Software without restriction, including without limitation the rights
|
|
1451
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1452
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1453
|
+
furnished to do so, subject to the following conditions:
|
|
1454
|
+
|
|
1455
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1456
|
+
copies or substantial portions of the Software.
|
|
1457
|
+
|
|
1458
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1459
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1460
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1461
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1462
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1463
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1464
|
+
SOFTWARE.
|
|
1465
|
+
=========================================
|
|
1466
|
+
END OF get-intrinsic@1.3.0 AND INFORMATION
|
|
1467
|
+
|
|
1468
|
+
%% get-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1469
|
+
=========================================
|
|
1470
|
+
MIT License
|
|
1471
|
+
|
|
1472
|
+
Copyright (c) 2025 Jordan Harband
|
|
1473
|
+
|
|
1474
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1475
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1476
|
+
in the Software without restriction, including without limitation the rights
|
|
1477
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1478
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1479
|
+
furnished to do so, subject to the following conditions:
|
|
1480
|
+
|
|
1481
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1482
|
+
copies or substantial portions of the Software.
|
|
1483
|
+
|
|
1484
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1485
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1486
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1487
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1488
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1489
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1490
|
+
SOFTWARE.
|
|
1491
|
+
=========================================
|
|
1492
|
+
END OF get-proto@1.0.1 AND INFORMATION
|
|
1493
|
+
|
|
1494
|
+
%% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1495
|
+
=========================================
|
|
1496
|
+
MIT License
|
|
1497
|
+
|
|
1498
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1499
|
+
|
|
1500
|
+
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:
|
|
1501
|
+
|
|
1502
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1503
|
+
|
|
1504
|
+
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.
|
|
1505
|
+
=========================================
|
|
1506
|
+
END OF get-stream@5.2.0 AND INFORMATION
|
|
1507
|
+
|
|
1508
|
+
%% gopd@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1509
|
+
=========================================
|
|
1510
|
+
MIT License
|
|
1511
|
+
|
|
1512
|
+
Copyright (c) 2022 Jordan Harband
|
|
1513
|
+
|
|
1514
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1515
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1516
|
+
in the Software without restriction, including without limitation the rights
|
|
1517
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1518
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1519
|
+
furnished to do so, subject to the following conditions:
|
|
1520
|
+
|
|
1521
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1522
|
+
copies or substantial portions of the Software.
|
|
1523
|
+
|
|
1524
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1525
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1526
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1527
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1528
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1529
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1530
|
+
SOFTWARE.
|
|
1531
|
+
=========================================
|
|
1532
|
+
END OF gopd@1.2.0 AND INFORMATION
|
|
1533
|
+
|
|
1534
|
+
%% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
|
|
1535
|
+
=========================================
|
|
1536
|
+
The ISC License
|
|
1537
|
+
|
|
1538
|
+
Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
|
|
1539
|
+
|
|
1540
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
1541
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
1542
|
+
copyright notice and this permission notice appear in all copies.
|
|
1543
|
+
|
|
1544
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
1545
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
1546
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
1547
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
1548
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
1549
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
1550
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1551
|
+
=========================================
|
|
1552
|
+
END OF graceful-fs@4.2.10 AND INFORMATION
|
|
1553
|
+
|
|
1554
|
+
%% has-symbols@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1555
|
+
=========================================
|
|
1556
|
+
MIT License
|
|
1557
|
+
|
|
1558
|
+
Copyright (c) 2016 Jordan Harband
|
|
1559
|
+
|
|
1560
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1561
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1562
|
+
in the Software without restriction, including without limitation the rights
|
|
1563
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1564
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1565
|
+
furnished to do so, subject to the following conditions:
|
|
1566
|
+
|
|
1567
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1568
|
+
copies or substantial portions of the Software.
|
|
1569
|
+
|
|
1570
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1571
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1572
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1573
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1574
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1575
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1576
|
+
SOFTWARE.
|
|
1577
|
+
=========================================
|
|
1578
|
+
END OF has-symbols@1.1.0 AND INFORMATION
|
|
1579
|
+
|
|
1580
|
+
%% hasown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1581
|
+
=========================================
|
|
1582
|
+
MIT License
|
|
1583
|
+
|
|
1584
|
+
Copyright (c) Jordan Harband and contributors
|
|
1585
|
+
|
|
1586
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1587
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1588
|
+
in the Software without restriction, including without limitation the rights
|
|
1589
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1590
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1591
|
+
furnished to do so, subject to the following conditions:
|
|
1592
|
+
|
|
1593
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1594
|
+
copies or substantial portions of the Software.
|
|
1595
|
+
|
|
1596
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1597
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1598
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1599
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1600
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1601
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1602
|
+
SOFTWARE.
|
|
1603
|
+
=========================================
|
|
1604
|
+
END OF hasown@2.0.2 AND INFORMATION
|
|
1605
|
+
|
|
1606
|
+
%% hono@4.12.7 NOTICES AND INFORMATION BEGIN HERE
|
|
1607
|
+
=========================================
|
|
1608
|
+
MIT License
|
|
1609
|
+
|
|
1610
|
+
Copyright (c) 2021 - present, Yusuke Wada and Hono contributors
|
|
1611
|
+
|
|
1612
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1613
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1614
|
+
in the Software without restriction, including without limitation the rights
|
|
1615
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1616
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1617
|
+
furnished to do so, subject to the following conditions:
|
|
1618
|
+
|
|
1619
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1620
|
+
copies or substantial portions of the Software.
|
|
1621
|
+
|
|
1622
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1623
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1624
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1625
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1626
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1627
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1628
|
+
SOFTWARE.
|
|
1629
|
+
=========================================
|
|
1630
|
+
END OF hono@4.12.7 AND INFORMATION
|
|
1631
|
+
|
|
1632
|
+
%% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1633
|
+
=========================================
|
|
1634
|
+
The MIT License (MIT)
|
|
1635
|
+
|
|
1636
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
1637
|
+
Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
|
|
1638
|
+
|
|
1639
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1640
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1641
|
+
in the Software without restriction, including without limitation the rights
|
|
1642
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1643
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1644
|
+
furnished to do so, subject to the following conditions:
|
|
1645
|
+
|
|
1646
|
+
The above copyright notice and this permission notice shall be included in
|
|
1647
|
+
all copies or substantial portions of the Software.
|
|
1648
|
+
|
|
1649
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1650
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1651
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1652
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1653
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1654
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1655
|
+
THE SOFTWARE.
|
|
1656
|
+
=========================================
|
|
1657
|
+
END OF http-errors@2.0.1 AND INFORMATION
|
|
1658
|
+
|
|
1659
|
+
%% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
1660
|
+
=========================================
|
|
1661
|
+
(The MIT License)
|
|
1662
|
+
|
|
1663
|
+
Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
|
|
1664
|
+
|
|
1665
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1666
|
+
a copy of this software and associated documentation files (the
|
|
1667
|
+
'Software'), to deal in the Software without restriction, including
|
|
1668
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1669
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1670
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1671
|
+
the following conditions:
|
|
1672
|
+
|
|
1673
|
+
The above copyright notice and this permission notice shall be
|
|
1674
|
+
included in all copies or substantial portions of the Software.
|
|
1675
|
+
|
|
1676
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1677
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1678
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1679
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1680
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1681
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1682
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1683
|
+
=========================================
|
|
1684
|
+
END OF https-proxy-agent@7.0.6 AND INFORMATION
|
|
1685
|
+
|
|
1686
|
+
%% iconv-lite@0.7.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1687
|
+
=========================================
|
|
1688
|
+
Copyright (c) 2011 Alexander Shtuchkin
|
|
1689
|
+
|
|
1690
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1691
|
+
a copy of this software and associated documentation files (the
|
|
1692
|
+
"Software"), to deal in the Software without restriction, including
|
|
1693
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1694
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1695
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1696
|
+
the following conditions:
|
|
1697
|
+
|
|
1698
|
+
The above copyright notice and this permission notice shall be
|
|
1699
|
+
included in all copies or substantial portions of the Software.
|
|
1700
|
+
|
|
1701
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1702
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1703
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1704
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1705
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1706
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1707
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1708
|
+
=========================================
|
|
1709
|
+
END OF iconv-lite@0.7.2 AND INFORMATION
|
|
1710
|
+
|
|
1711
|
+
%% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1712
|
+
=========================================
|
|
1713
|
+
The ISC License
|
|
1714
|
+
|
|
1715
|
+
Copyright (c) Isaac Z. Schlueter
|
|
1716
|
+
|
|
1717
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
1718
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
1719
|
+
copyright notice and this permission notice appear in all copies.
|
|
1720
|
+
|
|
1721
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
1722
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
1723
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
1724
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
1725
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
1726
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
1727
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
1728
|
+
=========================================
|
|
1729
|
+
END OF inherits@2.0.4 AND INFORMATION
|
|
1730
|
+
|
|
1731
|
+
%% ini@6.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1732
|
+
=========================================
|
|
1733
|
+
The ISC License
|
|
1734
|
+
|
|
1735
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
1736
|
+
|
|
1737
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
1738
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
1739
|
+
copyright notice and this permission notice appear in all copies.
|
|
1740
|
+
|
|
1741
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
1742
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
1743
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
1744
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
1745
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
1746
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
1747
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1748
|
+
=========================================
|
|
1749
|
+
END OF ini@6.0.0 AND INFORMATION
|
|
1750
|
+
|
|
1751
|
+
%% ip-address@10.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1752
|
+
=========================================
|
|
1753
|
+
Copyright (C) 2011 by Beau Gunderson
|
|
1754
|
+
|
|
1755
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1756
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1757
|
+
in the Software without restriction, including without limitation the rights
|
|
1758
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1759
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1760
|
+
furnished to do so, subject to the following conditions:
|
|
1761
|
+
|
|
1762
|
+
The above copyright notice and this permission notice shall be included in
|
|
1763
|
+
all copies or substantial portions of the Software.
|
|
1764
|
+
|
|
1765
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1766
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1767
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1768
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1769
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1770
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1771
|
+
THE SOFTWARE.
|
|
1772
|
+
=========================================
|
|
1773
|
+
END OF ip-address@10.1.0 AND INFORMATION
|
|
1774
|
+
|
|
1775
|
+
%% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
1776
|
+
=========================================
|
|
1777
|
+
Copyright (C) 2011 by Beau Gunderson
|
|
1778
|
+
|
|
1779
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1780
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1781
|
+
in the Software without restriction, including without limitation the rights
|
|
1782
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1783
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1784
|
+
furnished to do so, subject to the following conditions:
|
|
1785
|
+
|
|
1786
|
+
The above copyright notice and this permission notice shall be included in
|
|
1787
|
+
all copies or substantial portions of the Software.
|
|
1788
|
+
|
|
1789
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1790
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1791
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1792
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1793
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1794
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1795
|
+
THE SOFTWARE.
|
|
1796
|
+
=========================================
|
|
1797
|
+
END OF ip-address@9.0.5 AND INFORMATION
|
|
1798
|
+
|
|
1799
|
+
%% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1800
|
+
=========================================
|
|
1801
|
+
Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
|
|
1802
|
+
|
|
1803
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1804
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1805
|
+
in the Software without restriction, including without limitation the rights
|
|
1806
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1807
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1808
|
+
furnished to do so, subject to the following conditions:
|
|
1809
|
+
|
|
1810
|
+
The above copyright notice and this permission notice shall be included in
|
|
1811
|
+
all copies or substantial portions of the Software.
|
|
1812
|
+
|
|
1813
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1814
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1815
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1816
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1817
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1818
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1819
|
+
THE SOFTWARE.
|
|
1820
|
+
=========================================
|
|
1821
|
+
END OF ipaddr.js@1.9.1 AND INFORMATION
|
|
1822
|
+
|
|
1823
|
+
%% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1824
|
+
=========================================
|
|
1825
|
+
MIT License
|
|
1826
|
+
|
|
1827
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1828
|
+
|
|
1829
|
+
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:
|
|
1830
|
+
|
|
1831
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1832
|
+
|
|
1833
|
+
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.
|
|
1834
|
+
=========================================
|
|
1835
|
+
END OF is-docker@2.2.1 AND INFORMATION
|
|
1836
|
+
|
|
1837
|
+
%% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1838
|
+
=========================================
|
|
1839
|
+
Copyright (c) 2014 Forbes Lindesay
|
|
1840
|
+
|
|
1841
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1842
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1843
|
+
in the Software without restriction, including without limitation the rights
|
|
1844
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1845
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1846
|
+
furnished to do so, subject to the following conditions:
|
|
1847
|
+
|
|
1848
|
+
The above copyright notice and this permission notice shall be included in
|
|
1849
|
+
all copies or substantial portions of the Software.
|
|
1850
|
+
|
|
1851
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1852
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1853
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1854
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1855
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1856
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1857
|
+
THE SOFTWARE.
|
|
1858
|
+
=========================================
|
|
1859
|
+
END OF is-promise@4.0.0 AND INFORMATION
|
|
1860
|
+
|
|
1861
|
+
%% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1862
|
+
=========================================
|
|
1863
|
+
MIT License
|
|
1864
|
+
|
|
1865
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1866
|
+
|
|
1867
|
+
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:
|
|
1868
|
+
|
|
1869
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1870
|
+
|
|
1871
|
+
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.
|
|
1872
|
+
=========================================
|
|
1873
|
+
END OF is-wsl@2.2.0 AND INFORMATION
|
|
1874
|
+
|
|
1875
|
+
%% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1876
|
+
=========================================
|
|
1877
|
+
The ISC License
|
|
1878
|
+
|
|
1879
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
1880
|
+
|
|
1881
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
1882
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
1883
|
+
copyright notice and this permission notice appear in all copies.
|
|
1884
|
+
|
|
1885
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
1886
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
1887
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
1888
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
1889
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
1890
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
1891
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1892
|
+
=========================================
|
|
1893
|
+
END OF isexe@2.0.0 AND INFORMATION
|
|
1894
|
+
|
|
1895
|
+
%% jose@6.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1896
|
+
=========================================
|
|
1897
|
+
The MIT License (MIT)
|
|
1898
|
+
|
|
1899
|
+
Copyright (c) 2018 Filip Skokan
|
|
1900
|
+
|
|
1901
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1902
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1903
|
+
in the Software without restriction, including without limitation the rights
|
|
1904
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1905
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1906
|
+
furnished to do so, subject to the following conditions:
|
|
1907
|
+
|
|
1908
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1909
|
+
copies or substantial portions of the Software.
|
|
1910
|
+
|
|
1911
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1912
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1913
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1914
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1915
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1916
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1917
|
+
SOFTWARE.
|
|
1918
|
+
=========================================
|
|
1919
|
+
END OF jose@6.1.3 AND INFORMATION
|
|
1920
|
+
|
|
1921
|
+
%% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1922
|
+
=========================================
|
|
1923
|
+
Copyright (c) 2014, Eugene Ware
|
|
1924
|
+
All rights reserved.
|
|
1925
|
+
|
|
1926
|
+
Redistribution and use in source and binary forms, with or without
|
|
1927
|
+
modification, are permitted provided that the following conditions are met:
|
|
1928
|
+
|
|
1929
|
+
1. Redistributions of source code must retain the above copyright
|
|
1930
|
+
notice, this list of conditions and the following disclaimer.
|
|
1931
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1932
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1933
|
+
documentation and/or other materials provided with the distribution.
|
|
1934
|
+
3. Neither the name of Eugene Ware nor the names of its contributors
|
|
1935
|
+
may be used to endorse or promote products derived from this software
|
|
1936
|
+
without specific prior written permission.
|
|
1937
|
+
|
|
1938
|
+
THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
|
|
1939
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
1940
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1941
|
+
DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
|
|
1942
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
1943
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
1944
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
1945
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1946
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1947
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1948
|
+
=========================================
|
|
1949
|
+
END OF jpeg-js@0.4.4 AND INFORMATION
|
|
1950
|
+
|
|
1951
|
+
%% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1952
|
+
=========================================
|
|
1953
|
+
Licensing
|
|
1954
|
+
---------
|
|
1955
|
+
|
|
1956
|
+
This software is covered under the following copyright:
|
|
1957
|
+
|
|
1958
|
+
/*
|
|
1959
|
+
* Copyright (c) 2003-2005 Tom Wu
|
|
1960
|
+
* All Rights Reserved.
|
|
1961
|
+
*
|
|
1962
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
1963
|
+
* a copy of this software and associated documentation files (the
|
|
1964
|
+
* "Software"), to deal in the Software without restriction, including
|
|
1965
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
|
1966
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
1967
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
|
1968
|
+
* the following conditions:
|
|
1969
|
+
*
|
|
1970
|
+
* The above copyright notice and this permission notice shall be
|
|
1971
|
+
* included in all copies or substantial portions of the Software.
|
|
1972
|
+
*
|
|
1973
|
+
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
1974
|
+
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
1975
|
+
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
1976
|
+
*
|
|
1977
|
+
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
1978
|
+
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
1979
|
+
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
1980
|
+
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
1981
|
+
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1982
|
+
*
|
|
1983
|
+
* In addition, the following condition applies:
|
|
1984
|
+
*
|
|
1985
|
+
* All redistributions must retain an intact copy of this copyright notice
|
|
1986
|
+
* and disclaimer.
|
|
1987
|
+
*/
|
|
1988
|
+
|
|
1989
|
+
Address all questions regarding this license to:
|
|
1990
|
+
|
|
1991
|
+
Tom Wu
|
|
1992
|
+
tjw@cs.Stanford.EDU
|
|
1993
|
+
=========================================
|
|
1994
|
+
END OF jsbn@1.1.0 AND INFORMATION
|
|
1995
|
+
|
|
1996
|
+
%% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1997
|
+
=========================================
|
|
1998
|
+
MIT License
|
|
1999
|
+
|
|
2000
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
2001
|
+
|
|
2002
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2003
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2004
|
+
in the Software without restriction, including without limitation the rights
|
|
2005
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2006
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2007
|
+
furnished to do so, subject to the following conditions:
|
|
2008
|
+
|
|
2009
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2010
|
+
copies or substantial portions of the Software.
|
|
2011
|
+
|
|
2012
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2013
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2014
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2015
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2016
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2017
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2018
|
+
SOFTWARE.
|
|
2019
|
+
=========================================
|
|
2020
|
+
END OF json-schema-traverse@1.0.0 AND INFORMATION
|
|
2021
|
+
|
|
2022
|
+
%% json-schema-typed@8.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2023
|
+
=========================================
|
|
2024
|
+
BSD 2-Clause License
|
|
2025
|
+
|
|
2026
|
+
Original source code is copyright (c) 2019-2025 Remy Rylan
|
|
2027
|
+
<https://github.com/RemyRylan>
|
|
2028
|
+
|
|
2029
|
+
All JSON Schema documentation and descriptions are copyright (c):
|
|
2030
|
+
|
|
2031
|
+
2009 [draft-0] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2032
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2033
|
+
|
|
2034
|
+
2009 [draft-1] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2035
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2036
|
+
|
|
2037
|
+
2010 [draft-2] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2038
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2039
|
+
|
|
2040
|
+
2010 [draft-3] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2041
|
+
Gary Court <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
|
|
2042
|
+
|
|
2043
|
+
2013 [draft-4] IETF Trust <https://www.ietf.org/>), Francis Galiegue
|
|
2044
|
+
<fgaliegue@gmail.com>, Kris Zyp <kris@sitepen.com>, Gary Court
|
|
2045
|
+
<gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
|
|
2046
|
+
|
|
2047
|
+
2018 [draft-7] IETF Trust <https://www.ietf.org/>, Austin Wright <aaa@bzfx.net>,
|
|
2048
|
+
Henry Andrews <henry@cloudflare.com>, Geraint Luff <luffgd@gmail.com>, and
|
|
2049
|
+
Cloudflare, Inc. <https://www.cloudflare.com/>.
|
|
2050
|
+
|
|
2051
|
+
2019 [draft-2019-09] IETF Trust <https://www.ietf.org/>, Austin Wright
|
|
2052
|
+
<aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
|
|
2053
|
+
<bh7@sanger.ac.uk>, and Greg Dennis <gregsdennis@yahoo.com>.
|
|
2054
|
+
|
|
2055
|
+
2020 [draft-2020-12] IETF Trust <https://www.ietf.org/>, Austin Wright
|
|
2056
|
+
<aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
|
|
2057
|
+
<ben@jsonschema.dev>, and Greg Dennis <gregsdennis@yahoo.com>.
|
|
2058
|
+
|
|
2059
|
+
All rights reserved.
|
|
2060
|
+
|
|
2061
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
2062
|
+
are permitted provided that the following conditions are met:
|
|
2063
|
+
|
|
2064
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2065
|
+
list of conditions and the following disclaimer.
|
|
2066
|
+
|
|
2067
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2068
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2069
|
+
and/or other materials provided with the distribution.
|
|
2070
|
+
|
|
2071
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
2072
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2073
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2074
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
2075
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2076
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2077
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
2078
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2079
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2080
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2081
|
+
=========================================
|
|
2082
|
+
END OF json-schema-typed@8.0.2 AND INFORMATION
|
|
2083
|
+
|
|
2084
|
+
%% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2085
|
+
=========================================
|
|
2086
|
+
MIT License
|
|
2087
|
+
|
|
2088
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
2089
|
+
|
|
2090
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2091
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2092
|
+
in the Software without restriction, including without limitation the rights
|
|
2093
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2094
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2095
|
+
furnished to do so, subject to the following conditions:
|
|
2096
|
+
|
|
2097
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2098
|
+
copies or substantial portions of the Software.
|
|
2099
|
+
|
|
2100
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2101
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2102
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2103
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2104
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2105
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2106
|
+
SOFTWARE.
|
|
2107
|
+
=========================================
|
|
2108
|
+
END OF math-intrinsics@1.1.0 AND INFORMATION
|
|
2109
|
+
|
|
2110
|
+
%% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2111
|
+
=========================================
|
|
2112
|
+
(The MIT License)
|
|
2113
|
+
|
|
2114
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
2115
|
+
|
|
2116
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2117
|
+
a copy of this software and associated documentation files (the
|
|
2118
|
+
'Software'), to deal in the Software without restriction, including
|
|
2119
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2120
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2121
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2122
|
+
the following conditions:
|
|
2123
|
+
|
|
2124
|
+
The above copyright notice and this permission notice shall be
|
|
2125
|
+
included in all copies or substantial portions of the Software.
|
|
2126
|
+
|
|
2127
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2128
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2129
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2130
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2131
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2132
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2133
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2134
|
+
=========================================
|
|
2135
|
+
END OF media-typer@1.1.0 AND INFORMATION
|
|
2136
|
+
|
|
2137
|
+
%% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2138
|
+
=========================================
|
|
2139
|
+
MIT License
|
|
2140
|
+
|
|
2141
|
+
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
2142
|
+
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2143
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2144
|
+
|
|
2145
|
+
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:
|
|
2146
|
+
|
|
2147
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2148
|
+
|
|
2149
|
+
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.
|
|
2150
|
+
=========================================
|
|
2151
|
+
END OF merge-descriptors@2.0.0 AND INFORMATION
|
|
2152
|
+
|
|
2153
|
+
%% mime-db@1.54.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2154
|
+
=========================================
|
|
2155
|
+
(The MIT License)
|
|
2156
|
+
|
|
2157
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2158
|
+
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2159
|
+
|
|
2160
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2161
|
+
a copy of this software and associated documentation files (the
|
|
2162
|
+
'Software'), to deal in the Software without restriction, including
|
|
2163
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2164
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2165
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2166
|
+
the following conditions:
|
|
2167
|
+
|
|
2168
|
+
The above copyright notice and this permission notice shall be
|
|
2169
|
+
included in all copies or substantial portions of the Software.
|
|
2170
|
+
|
|
2171
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2172
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2173
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2174
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2175
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2176
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2177
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2178
|
+
=========================================
|
|
2179
|
+
END OF mime-db@1.54.0 AND INFORMATION
|
|
2180
|
+
|
|
2181
|
+
%% mime-types@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2182
|
+
=========================================
|
|
2183
|
+
(The MIT License)
|
|
2184
|
+
|
|
2185
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2186
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2187
|
+
|
|
2188
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2189
|
+
a copy of this software and associated documentation files (the
|
|
2190
|
+
'Software'), to deal in the Software without restriction, including
|
|
2191
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2192
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2193
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2194
|
+
the following conditions:
|
|
2195
|
+
|
|
2196
|
+
The above copyright notice and this permission notice shall be
|
|
2197
|
+
included in all copies or substantial portions of the Software.
|
|
2198
|
+
|
|
2199
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2200
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2201
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2202
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2203
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2204
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2205
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2206
|
+
=========================================
|
|
2207
|
+
END OF mime-types@3.0.2 AND INFORMATION
|
|
2208
|
+
|
|
2209
|
+
%% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2210
|
+
=========================================
|
|
2211
|
+
The MIT License (MIT)
|
|
2212
|
+
|
|
2213
|
+
Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
|
|
2214
|
+
|
|
2215
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2216
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2217
|
+
in the Software without restriction, including without limitation the rights
|
|
2218
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2219
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2220
|
+
furnished to do so, subject to the following conditions:
|
|
2221
|
+
|
|
2222
|
+
The above copyright notice and this permission notice shall be included in
|
|
2223
|
+
all copies or substantial portions of the Software.
|
|
2224
|
+
|
|
2225
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2226
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2227
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2228
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2229
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2230
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2231
|
+
THE SOFTWARE.
|
|
2232
|
+
=========================================
|
|
2233
|
+
END OF mime@3.0.0 AND INFORMATION
|
|
2234
|
+
|
|
2235
|
+
%% minimatch@3.1.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2236
|
+
=========================================
|
|
2237
|
+
The ISC License
|
|
2238
|
+
|
|
2239
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2240
|
+
|
|
2241
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2242
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2243
|
+
copyright notice and this permission notice appear in all copies.
|
|
2244
|
+
|
|
2245
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2246
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2247
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2248
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2249
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2250
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2251
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2252
|
+
=========================================
|
|
2253
|
+
END OF minimatch@3.1.4 AND INFORMATION
|
|
2254
|
+
|
|
2255
|
+
%% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2256
|
+
=========================================
|
|
2257
|
+
The MIT License (MIT)
|
|
2258
|
+
|
|
2259
|
+
Copyright (c) 2016 Zeit, Inc.
|
|
2260
|
+
|
|
2261
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2262
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2263
|
+
in the Software without restriction, including without limitation the rights
|
|
2264
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2265
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2266
|
+
furnished to do so, subject to the following conditions:
|
|
2267
|
+
|
|
2268
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2269
|
+
copies or substantial portions of the Software.
|
|
2270
|
+
|
|
2271
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2272
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2273
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2274
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2275
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2276
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2277
|
+
SOFTWARE.
|
|
2278
|
+
=========================================
|
|
2279
|
+
END OF ms@2.1.2 AND INFORMATION
|
|
2280
|
+
|
|
2281
|
+
%% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2282
|
+
=========================================
|
|
2283
|
+
The MIT License (MIT)
|
|
2284
|
+
|
|
2285
|
+
Copyright (c) 2020 Vercel, Inc.
|
|
2286
|
+
|
|
2287
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2288
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2289
|
+
in the Software without restriction, including without limitation the rights
|
|
2290
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2291
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2292
|
+
furnished to do so, subject to the following conditions:
|
|
2293
|
+
|
|
2294
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2295
|
+
copies or substantial portions of the Software.
|
|
2296
|
+
|
|
2297
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2298
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2299
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2300
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2301
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2302
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2303
|
+
SOFTWARE.
|
|
2304
|
+
=========================================
|
|
2305
|
+
END OF ms@2.1.3 AND INFORMATION
|
|
2306
|
+
|
|
2307
|
+
%% negotiator@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2308
|
+
=========================================
|
|
2309
|
+
(The MIT License)
|
|
2310
|
+
|
|
2311
|
+
Copyright (c) 2012-2014 Federico Romero
|
|
2312
|
+
Copyright (c) 2012-2014 Isaac Z. Schlueter
|
|
2313
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson
|
|
2314
|
+
|
|
2315
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2316
|
+
a copy of this software and associated documentation files (the
|
|
2317
|
+
'Software'), to deal in the Software without restriction, including
|
|
2318
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2319
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2320
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2321
|
+
the following conditions:
|
|
2322
|
+
|
|
2323
|
+
The above copyright notice and this permission notice shall be
|
|
2324
|
+
included in all copies or substantial portions of the Software.
|
|
2325
|
+
|
|
2326
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2327
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2328
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2329
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2330
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2331
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2332
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2333
|
+
=========================================
|
|
2334
|
+
END OF negotiator@1.0.0 AND INFORMATION
|
|
2335
|
+
|
|
2336
|
+
%% object-assign@4.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2337
|
+
=========================================
|
|
2338
|
+
The MIT License (MIT)
|
|
2339
|
+
|
|
2340
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2341
|
+
|
|
2342
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2343
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2344
|
+
in the Software without restriction, including without limitation the rights
|
|
2345
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2346
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2347
|
+
furnished to do so, subject to the following conditions:
|
|
2348
|
+
|
|
2349
|
+
The above copyright notice and this permission notice shall be included in
|
|
2350
|
+
all copies or substantial portions of the Software.
|
|
2351
|
+
|
|
2352
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2353
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2354
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2355
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2356
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2357
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2358
|
+
THE SOFTWARE.
|
|
2359
|
+
=========================================
|
|
2360
|
+
END OF object-assign@4.1.1 AND INFORMATION
|
|
2361
|
+
|
|
2362
|
+
%% object-inspect@1.13.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2363
|
+
=========================================
|
|
2364
|
+
MIT License
|
|
2365
|
+
|
|
2366
|
+
Copyright (c) 2013 James Halliday
|
|
2367
|
+
|
|
2368
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2369
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2370
|
+
in the Software without restriction, including without limitation the rights
|
|
2371
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2372
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2373
|
+
furnished to do so, subject to the following conditions:
|
|
2374
|
+
|
|
2375
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2376
|
+
copies or substantial portions of the Software.
|
|
2377
|
+
|
|
2378
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2379
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2380
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2381
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2382
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2383
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2384
|
+
SOFTWARE.
|
|
2385
|
+
=========================================
|
|
2386
|
+
END OF object-inspect@1.13.4 AND INFORMATION
|
|
2387
|
+
|
|
2388
|
+
%% on-finished@2.4.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2389
|
+
=========================================
|
|
2390
|
+
(The MIT License)
|
|
2391
|
+
|
|
2392
|
+
Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
|
|
2393
|
+
Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2394
|
+
|
|
2395
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2396
|
+
a copy of this software and associated documentation files (the
|
|
2397
|
+
'Software'), to deal in the Software without restriction, including
|
|
2398
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2399
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2400
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2401
|
+
the following conditions:
|
|
2402
|
+
|
|
2403
|
+
The above copyright notice and this permission notice shall be
|
|
2404
|
+
included in all copies or substantial portions of the Software.
|
|
2405
|
+
|
|
2406
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2407
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2408
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2409
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2410
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2411
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2412
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2413
|
+
=========================================
|
|
2414
|
+
END OF on-finished@2.4.1 AND INFORMATION
|
|
2415
|
+
|
|
2416
|
+
%% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2417
|
+
=========================================
|
|
2418
|
+
The ISC License
|
|
2419
|
+
|
|
2420
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2421
|
+
|
|
2422
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2423
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2424
|
+
copyright notice and this permission notice appear in all copies.
|
|
2425
|
+
|
|
2426
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2427
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2428
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2429
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2430
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2431
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2432
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2433
|
+
=========================================
|
|
2434
|
+
END OF once@1.4.0 AND INFORMATION
|
|
2435
|
+
|
|
2436
|
+
%% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2437
|
+
=========================================
|
|
2438
|
+
MIT License
|
|
2439
|
+
|
|
2440
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2441
|
+
|
|
2442
|
+
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:
|
|
2443
|
+
|
|
2444
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2445
|
+
|
|
2446
|
+
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.
|
|
2447
|
+
=========================================
|
|
2448
|
+
END OF open@8.4.0 AND INFORMATION
|
|
2449
|
+
|
|
2450
|
+
%% parseurl@1.3.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2451
|
+
=========================================
|
|
2452
|
+
(The MIT License)
|
|
2453
|
+
|
|
2454
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2455
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2456
|
+
|
|
2457
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2458
|
+
a copy of this software and associated documentation files (the
|
|
2459
|
+
'Software'), to deal in the Software without restriction, including
|
|
2460
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2461
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2462
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2463
|
+
the following conditions:
|
|
2464
|
+
|
|
2465
|
+
The above copyright notice and this permission notice shall be
|
|
2466
|
+
included in all copies or substantial portions of the Software.
|
|
2467
|
+
|
|
2468
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2469
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2470
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2471
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2472
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2473
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2474
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2475
|
+
=========================================
|
|
2476
|
+
END OF parseurl@1.3.3 AND INFORMATION
|
|
2477
|
+
|
|
2478
|
+
%% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2479
|
+
=========================================
|
|
2480
|
+
MIT License
|
|
2481
|
+
|
|
2482
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2483
|
+
|
|
2484
|
+
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:
|
|
2485
|
+
|
|
2486
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2487
|
+
|
|
2488
|
+
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.
|
|
2489
|
+
=========================================
|
|
2490
|
+
END OF path-key@3.1.1 AND INFORMATION
|
|
2491
|
+
|
|
2492
|
+
%% path-to-regexp@8.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2493
|
+
=========================================
|
|
2494
|
+
The MIT License (MIT)
|
|
2495
|
+
|
|
2496
|
+
Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
|
|
2497
|
+
|
|
2498
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2499
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2500
|
+
in the Software without restriction, including without limitation the rights
|
|
2501
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2502
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2503
|
+
furnished to do so, subject to the following conditions:
|
|
2504
|
+
|
|
2505
|
+
The above copyright notice and this permission notice shall be included in
|
|
2506
|
+
all copies or substantial portions of the Software.
|
|
2507
|
+
|
|
2508
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2509
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2510
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2511
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2512
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2513
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2514
|
+
THE SOFTWARE.
|
|
2515
|
+
=========================================
|
|
2516
|
+
END OF path-to-regexp@8.3.0 AND INFORMATION
|
|
2517
|
+
|
|
2518
|
+
%% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2519
|
+
=========================================
|
|
2520
|
+
The MIT License (Expat)
|
|
2521
|
+
|
|
2522
|
+
Copyright (c) 2014 Andrew Kelley
|
|
2523
|
+
|
|
2524
|
+
Permission is hereby granted, free of charge, to any person
|
|
2525
|
+
obtaining a copy of this software and associated documentation files
|
|
2526
|
+
(the "Software"), to deal in the Software without restriction,
|
|
2527
|
+
including without limitation the rights to use, copy, modify, merge,
|
|
2528
|
+
publish, distribute, sublicense, and/or sell copies of the Software,
|
|
2529
|
+
and to permit persons to whom the Software is furnished to do so,
|
|
2530
|
+
subject to the following conditions:
|
|
2531
|
+
|
|
2532
|
+
The above copyright notice and this permission notice shall be
|
|
2533
|
+
included in all copies or substantial portions of the Software.
|
|
2534
|
+
|
|
2535
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2536
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2537
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2538
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
2539
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
2540
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
2541
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2542
|
+
SOFTWARE.
|
|
2543
|
+
=========================================
|
|
2544
|
+
END OF pend@1.2.0 AND INFORMATION
|
|
2545
|
+
|
|
2546
|
+
%% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2547
|
+
=========================================
|
|
2548
|
+
MIT License
|
|
2549
|
+
|
|
2550
|
+
Copyright (c) 2019
|
|
2551
|
+
|
|
2552
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2553
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2554
|
+
in the Software without restriction, including without limitation the rights
|
|
2555
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2556
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2557
|
+
furnished to do so, subject to the following conditions:
|
|
2558
|
+
|
|
2559
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2560
|
+
copies or substantial portions of the Software.
|
|
2561
|
+
|
|
2562
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2563
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2564
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2565
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2566
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2567
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2568
|
+
SOFTWARE.
|
|
2569
|
+
=========================================
|
|
2570
|
+
END OF pkce-challenge@5.0.0 AND INFORMATION
|
|
2571
|
+
|
|
2572
|
+
%% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2573
|
+
=========================================
|
|
2574
|
+
pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
|
|
2575
|
+
pngjs derived work Copyright (c) 2012 Kuba Niegowski
|
|
2576
|
+
|
|
2577
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2578
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2579
|
+
in the Software without restriction, including without limitation the rights
|
|
2580
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2581
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2582
|
+
furnished to do so, subject to the following conditions:
|
|
2583
|
+
|
|
2584
|
+
The above copyright notice and this permission notice shall be included in
|
|
2585
|
+
all copies or substantial portions of the Software.
|
|
2586
|
+
|
|
2587
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2588
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2589
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2590
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2591
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2592
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2593
|
+
THE SOFTWARE.
|
|
2594
|
+
=========================================
|
|
2595
|
+
END OF pngjs@6.0.0 AND INFORMATION
|
|
2596
|
+
|
|
2597
|
+
%% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2598
|
+
=========================================
|
|
2599
|
+
(The MIT License)
|
|
2600
|
+
|
|
2601
|
+
Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
2602
|
+
|
|
2603
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2604
|
+
a copy of this software and associated documentation files (the
|
|
2605
|
+
'Software'), to deal in the Software without restriction, including
|
|
2606
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2607
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2608
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2609
|
+
the following conditions:
|
|
2610
|
+
|
|
2611
|
+
The above copyright notice and this permission notice shall be
|
|
2612
|
+
included in all copies or substantial portions of the Software.
|
|
2613
|
+
|
|
2614
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2615
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2616
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2617
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2618
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2619
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2620
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2621
|
+
=========================================
|
|
2622
|
+
END OF progress@2.0.3 AND INFORMATION
|
|
2623
|
+
|
|
2624
|
+
%% proxy-addr@2.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
2625
|
+
=========================================
|
|
2626
|
+
(The MIT License)
|
|
2627
|
+
|
|
2628
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
2629
|
+
|
|
2630
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2631
|
+
a copy of this software and associated documentation files (the
|
|
2632
|
+
'Software'), to deal in the Software without restriction, including
|
|
2633
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2634
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2635
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2636
|
+
the following conditions:
|
|
2637
|
+
|
|
2638
|
+
The above copyright notice and this permission notice shall be
|
|
2639
|
+
included in all copies or substantial portions of the Software.
|
|
2640
|
+
|
|
2641
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2642
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2643
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2644
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2645
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2646
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2647
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2648
|
+
=========================================
|
|
2649
|
+
END OF proxy-addr@2.0.7 AND INFORMATION
|
|
2650
|
+
|
|
2651
|
+
%% proxy-from-env@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2652
|
+
=========================================
|
|
2653
|
+
The MIT License
|
|
2654
|
+
|
|
2655
|
+
Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
|
|
2656
|
+
|
|
2657
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
2658
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
2659
|
+
the Software without restriction, including without limitation the rights to
|
|
2660
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
2661
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
2662
|
+
so, subject to the following conditions:
|
|
2663
|
+
|
|
2664
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2665
|
+
copies or substantial portions of the Software.
|
|
2666
|
+
|
|
2667
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2668
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
2669
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
2670
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
2671
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
2672
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2673
|
+
=========================================
|
|
2674
|
+
END OF proxy-from-env@2.0.0 AND INFORMATION
|
|
2675
|
+
|
|
2676
|
+
%% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2677
|
+
=========================================
|
|
2678
|
+
The MIT License (MIT)
|
|
2679
|
+
|
|
2680
|
+
Copyright (c) 2014 Mathias Buus
|
|
2681
|
+
|
|
2682
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2683
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2684
|
+
in the Software without restriction, including without limitation the rights
|
|
2685
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2686
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2687
|
+
furnished to do so, subject to the following conditions:
|
|
2688
|
+
|
|
2689
|
+
The above copyright notice and this permission notice shall be included in
|
|
2690
|
+
all copies or substantial portions of the Software.
|
|
2691
|
+
|
|
2692
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2693
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2694
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2695
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2696
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2697
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2698
|
+
THE SOFTWARE.
|
|
2699
|
+
=========================================
|
|
2700
|
+
END OF pump@3.0.2 AND INFORMATION
|
|
2701
|
+
|
|
2702
|
+
%% qs@6.15.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2703
|
+
=========================================
|
|
2704
|
+
BSD 3-Clause License
|
|
2705
|
+
|
|
2706
|
+
Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
|
|
2707
|
+
All rights reserved.
|
|
2708
|
+
|
|
2709
|
+
Redistribution and use in source and binary forms, with or without
|
|
2710
|
+
modification, are permitted provided that the following conditions are met:
|
|
2711
|
+
|
|
2712
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2713
|
+
list of conditions and the following disclaimer.
|
|
2714
|
+
|
|
2715
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2716
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2717
|
+
and/or other materials provided with the distribution.
|
|
2718
|
+
|
|
2719
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
2720
|
+
contributors may be used to endorse or promote products derived from
|
|
2721
|
+
this software without specific prior written permission.
|
|
2722
|
+
|
|
2723
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2724
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2725
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2726
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
2727
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2728
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2729
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2730
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2731
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2732
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
552
2733
|
=========================================
|
|
553
|
-
END OF
|
|
2734
|
+
END OF qs@6.15.0 AND INFORMATION
|
|
554
2735
|
|
|
555
|
-
%%
|
|
2736
|
+
%% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
556
2737
|
=========================================
|
|
557
|
-
|
|
558
|
-
---------
|
|
2738
|
+
(The MIT License)
|
|
559
2739
|
|
|
560
|
-
|
|
2740
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
2741
|
+
Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
|
|
561
2742
|
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
* without limitation the rights to use, copy, modify, merge, publish,
|
|
570
|
-
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
571
|
-
* permit persons to whom the Software is furnished to do so, subject to
|
|
572
|
-
* the following conditions:
|
|
573
|
-
*
|
|
574
|
-
* The above copyright notice and this permission notice shall be
|
|
575
|
-
* included in all copies or substantial portions of the Software.
|
|
576
|
-
*
|
|
577
|
-
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
578
|
-
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
579
|
-
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
580
|
-
*
|
|
581
|
-
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
582
|
-
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
583
|
-
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
584
|
-
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
585
|
-
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
586
|
-
*
|
|
587
|
-
* In addition, the following condition applies:
|
|
588
|
-
*
|
|
589
|
-
* All redistributions must retain an intact copy of this copyright notice
|
|
590
|
-
* and disclaimer.
|
|
591
|
-
*/
|
|
2743
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2744
|
+
a copy of this software and associated documentation files (the
|
|
2745
|
+
'Software'), to deal in the Software without restriction, including
|
|
2746
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2747
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2748
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2749
|
+
the following conditions:
|
|
592
2750
|
|
|
593
|
-
|
|
2751
|
+
The above copyright notice and this permission notice shall be
|
|
2752
|
+
included in all copies or substantial portions of the Software.
|
|
594
2753
|
|
|
595
|
-
|
|
596
|
-
|
|
2754
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2755
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2756
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2757
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2758
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2759
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2760
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
597
2761
|
=========================================
|
|
598
|
-
END OF
|
|
2762
|
+
END OF range-parser@1.2.1 AND INFORMATION
|
|
599
2763
|
|
|
600
|
-
%%
|
|
2764
|
+
%% raw-body@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
601
2765
|
=========================================
|
|
602
2766
|
The MIT License (MIT)
|
|
603
2767
|
|
|
604
|
-
Copyright (c)
|
|
2768
|
+
Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
|
|
2769
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
605
2770
|
|
|
606
2771
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
607
2772
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -621,33 +2786,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
621
2786
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
622
2787
|
THE SOFTWARE.
|
|
623
2788
|
=========================================
|
|
624
|
-
END OF
|
|
625
|
-
|
|
626
|
-
%% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
627
|
-
=========================================
|
|
628
|
-
The ISC License
|
|
629
|
-
|
|
630
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
631
|
-
|
|
632
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
633
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
634
|
-
copyright notice and this permission notice appear in all copies.
|
|
635
|
-
|
|
636
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
637
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
638
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
639
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
640
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
641
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
642
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
643
|
-
=========================================
|
|
644
|
-
END OF minimatch@3.1.2 AND INFORMATION
|
|
2789
|
+
END OF raw-body@3.0.2 AND INFORMATION
|
|
645
2790
|
|
|
646
|
-
%%
|
|
2791
|
+
%% require-from-string@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
647
2792
|
=========================================
|
|
648
2793
|
The MIT License (MIT)
|
|
649
2794
|
|
|
650
|
-
Copyright (c)
|
|
2795
|
+
Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
|
|
651
2796
|
|
|
652
2797
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
653
2798
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -656,24 +2801,78 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
656
2801
|
copies of the Software, and to permit persons to whom the Software is
|
|
657
2802
|
furnished to do so, subject to the following conditions:
|
|
658
2803
|
|
|
659
|
-
The above copyright notice and this permission notice shall be included in
|
|
660
|
-
copies or substantial portions of the Software.
|
|
2804
|
+
The above copyright notice and this permission notice shall be included in
|
|
2805
|
+
all copies or substantial portions of the Software.
|
|
661
2806
|
|
|
662
2807
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
663
2808
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
664
2809
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
665
2810
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
666
2811
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
667
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
668
|
-
SOFTWARE.
|
|
2812
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2813
|
+
THE SOFTWARE.
|
|
669
2814
|
=========================================
|
|
670
|
-
END OF
|
|
2815
|
+
END OF require-from-string@2.0.2 AND INFORMATION
|
|
671
2816
|
|
|
672
|
-
%%
|
|
2817
|
+
%% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
|
|
673
2818
|
=========================================
|
|
674
|
-
|
|
2819
|
+
Copyright (c) 2011:
|
|
2820
|
+
Tim Koschützki (tim@debuggable.com)
|
|
2821
|
+
Felix Geisendörfer (felix@debuggable.com)
|
|
675
2822
|
|
|
676
|
-
|
|
2823
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2824
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2825
|
+
in the Software without restriction, including without limitation the rights
|
|
2826
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2827
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2828
|
+
furnished to do so, subject to the following conditions:
|
|
2829
|
+
|
|
2830
|
+
The above copyright notice and this permission notice shall be included in
|
|
2831
|
+
all copies or substantial portions of the Software.
|
|
2832
|
+
|
|
2833
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2834
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2835
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2836
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2837
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2838
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2839
|
+
THE SOFTWARE.
|
|
2840
|
+
=========================================
|
|
2841
|
+
END OF retry@0.12.0 AND INFORMATION
|
|
2842
|
+
|
|
2843
|
+
%% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2844
|
+
=========================================
|
|
2845
|
+
(The MIT License)
|
|
2846
|
+
|
|
2847
|
+
Copyright (c) 2013 Roman Shtylman
|
|
2848
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
2849
|
+
|
|
2850
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2851
|
+
a copy of this software and associated documentation files (the
|
|
2852
|
+
'Software'), to deal in the Software without restriction, including
|
|
2853
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2854
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2855
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2856
|
+
the following conditions:
|
|
2857
|
+
|
|
2858
|
+
The above copyright notice and this permission notice shall be
|
|
2859
|
+
included in all copies or substantial portions of the Software.
|
|
2860
|
+
|
|
2861
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2862
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2863
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2864
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2865
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2866
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2867
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2868
|
+
=========================================
|
|
2869
|
+
END OF router@2.2.0 AND INFORMATION
|
|
2870
|
+
|
|
2871
|
+
%% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2872
|
+
=========================================
|
|
2873
|
+
MIT License
|
|
2874
|
+
|
|
2875
|
+
Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
|
|
677
2876
|
|
|
678
2877
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
679
2878
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -693,13 +2892,69 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
693
2892
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
694
2893
|
SOFTWARE.
|
|
695
2894
|
=========================================
|
|
696
|
-
END OF
|
|
2895
|
+
END OF safer-buffer@2.1.2 AND INFORMATION
|
|
697
2896
|
|
|
698
|
-
%%
|
|
2897
|
+
%% send@1.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
699
2898
|
=========================================
|
|
700
|
-
The
|
|
2899
|
+
(The MIT License)
|
|
701
2900
|
|
|
702
|
-
Copyright (c)
|
|
2901
|
+
Copyright (c) 2012 TJ Holowaychuk
|
|
2902
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
2903
|
+
|
|
2904
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2905
|
+
a copy of this software and associated documentation files (the
|
|
2906
|
+
'Software'), to deal in the Software without restriction, including
|
|
2907
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2908
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2909
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2910
|
+
the following conditions:
|
|
2911
|
+
|
|
2912
|
+
The above copyright notice and this permission notice shall be
|
|
2913
|
+
included in all copies or substantial portions of the Software.
|
|
2914
|
+
|
|
2915
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2916
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2917
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2918
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2919
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2920
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2921
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2922
|
+
=========================================
|
|
2923
|
+
END OF send@1.2.1 AND INFORMATION
|
|
2924
|
+
|
|
2925
|
+
%% serve-static@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2926
|
+
=========================================
|
|
2927
|
+
(The MIT License)
|
|
2928
|
+
|
|
2929
|
+
Copyright (c) 2010 Sencha Inc.
|
|
2930
|
+
Copyright (c) 2011 LearnBoost
|
|
2931
|
+
Copyright (c) 2011 TJ Holowaychuk
|
|
2932
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
2933
|
+
|
|
2934
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2935
|
+
a copy of this software and associated documentation files (the
|
|
2936
|
+
'Software'), to deal in the Software without restriction, including
|
|
2937
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2938
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2939
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2940
|
+
the following conditions:
|
|
2941
|
+
|
|
2942
|
+
The above copyright notice and this permission notice shall be
|
|
2943
|
+
included in all copies or substantial portions of the Software.
|
|
2944
|
+
|
|
2945
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2946
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2947
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2948
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2949
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2950
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2951
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2952
|
+
=========================================
|
|
2953
|
+
END OF serve-static@2.2.1 AND INFORMATION
|
|
2954
|
+
|
|
2955
|
+
%% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2956
|
+
=========================================
|
|
2957
|
+
Copyright (c) 2015, Wes Todd
|
|
703
2958
|
|
|
704
2959
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
705
2960
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -707,19 +2962,19 @@ copyright notice and this permission notice appear in all copies.
|
|
|
707
2962
|
|
|
708
2963
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
709
2964
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
710
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
711
|
-
|
|
712
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
713
|
-
|
|
714
|
-
|
|
2965
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
2966
|
+
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2967
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
2968
|
+
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
2969
|
+
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
715
2970
|
=========================================
|
|
716
|
-
END OF
|
|
2971
|
+
END OF setprototypeof@1.2.0 AND INFORMATION
|
|
717
2972
|
|
|
718
|
-
%%
|
|
2973
|
+
%% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
719
2974
|
=========================================
|
|
720
2975
|
MIT License
|
|
721
2976
|
|
|
722
|
-
Copyright (c)
|
|
2977
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
723
2978
|
|
|
724
2979
|
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:
|
|
725
2980
|
|
|
@@ -727,40 +2982,53 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
727
2982
|
|
|
728
2983
|
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.
|
|
729
2984
|
=========================================
|
|
730
|
-
END OF
|
|
2985
|
+
END OF shebang-command@2.0.0 AND INFORMATION
|
|
731
2986
|
|
|
732
|
-
%%
|
|
2987
|
+
%% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
733
2988
|
=========================================
|
|
734
|
-
|
|
2989
|
+
MIT License
|
|
735
2990
|
|
|
736
|
-
Copyright (c)
|
|
2991
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
737
2992
|
|
|
738
|
-
Permission is hereby granted, free of charge, to any person
|
|
739
|
-
obtaining a copy of this software and associated documentation files
|
|
740
|
-
(the "Software"), to deal in the Software without restriction,
|
|
741
|
-
including without limitation the rights to use, copy, modify, merge,
|
|
742
|
-
publish, distribute, sublicense, and/or sell copies of the Software,
|
|
743
|
-
and to permit persons to whom the Software is furnished to do so,
|
|
744
|
-
subject to the following conditions:
|
|
2993
|
+
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:
|
|
745
2994
|
|
|
746
|
-
The above copyright notice and this permission notice shall be
|
|
747
|
-
included in all copies or substantial portions of the Software.
|
|
2995
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
748
2996
|
|
|
749
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
2997
|
+
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.
|
|
2998
|
+
=========================================
|
|
2999
|
+
END OF shebang-regex@3.0.0 AND INFORMATION
|
|
3000
|
+
|
|
3001
|
+
%% side-channel-list@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3002
|
+
=========================================
|
|
3003
|
+
MIT License
|
|
3004
|
+
|
|
3005
|
+
Copyright (c) 2024 Jordan Harband
|
|
3006
|
+
|
|
3007
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3008
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3009
|
+
in the Software without restriction, including without limitation the rights
|
|
3010
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3011
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3012
|
+
furnished to do so, subject to the following conditions:
|
|
3013
|
+
|
|
3014
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3015
|
+
copies or substantial portions of the Software.
|
|
3016
|
+
|
|
3017
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3018
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3019
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3020
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3021
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3022
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
756
3023
|
SOFTWARE.
|
|
757
3024
|
=========================================
|
|
758
|
-
END OF
|
|
3025
|
+
END OF side-channel-list@1.0.0 AND INFORMATION
|
|
759
3026
|
|
|
760
|
-
%%
|
|
3027
|
+
%% side-channel-map@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
761
3028
|
=========================================
|
|
762
|
-
|
|
763
|
-
|
|
3029
|
+
MIT License
|
|
3030
|
+
|
|
3031
|
+
Copyright (c) 2024 Jordan Harband
|
|
764
3032
|
|
|
765
3033
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
766
3034
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -769,76 +3037,50 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
769
3037
|
copies of the Software, and to permit persons to whom the Software is
|
|
770
3038
|
furnished to do so, subject to the following conditions:
|
|
771
3039
|
|
|
772
|
-
The above copyright notice and this permission notice shall be included in
|
|
773
|
-
|
|
3040
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3041
|
+
copies or substantial portions of the Software.
|
|
774
3042
|
|
|
775
3043
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
776
3044
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
777
3045
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
778
3046
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
779
3047
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
780
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
781
|
-
|
|
782
|
-
=========================================
|
|
783
|
-
END OF pngjs@6.0.0 AND INFORMATION
|
|
784
|
-
|
|
785
|
-
%% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
786
|
-
=========================================
|
|
787
|
-
(The MIT License)
|
|
788
|
-
|
|
789
|
-
Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
790
|
-
|
|
791
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
792
|
-
a copy of this software and associated documentation files (the
|
|
793
|
-
'Software'), to deal in the Software without restriction, including
|
|
794
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
795
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
796
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
797
|
-
the following conditions:
|
|
798
|
-
|
|
799
|
-
The above copyright notice and this permission notice shall be
|
|
800
|
-
included in all copies or substantial portions of the Software.
|
|
801
|
-
|
|
802
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
803
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
804
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
805
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
806
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
807
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
808
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3048
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3049
|
+
SOFTWARE.
|
|
809
3050
|
=========================================
|
|
810
|
-
END OF
|
|
3051
|
+
END OF side-channel-map@1.0.1 AND INFORMATION
|
|
811
3052
|
|
|
812
|
-
%%
|
|
3053
|
+
%% side-channel-weakmap@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
813
3054
|
=========================================
|
|
814
|
-
|
|
3055
|
+
MIT License
|
|
815
3056
|
|
|
816
|
-
Copyright (
|
|
3057
|
+
Copyright (c) 2019 Jordan Harband
|
|
817
3058
|
|
|
818
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
819
|
-
this software and associated documentation files (the "Software"), to deal
|
|
820
|
-
the Software without restriction, including without limitation the rights
|
|
821
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
822
|
-
of the Software, and to permit persons to whom the Software is
|
|
823
|
-
so, subject to the following conditions:
|
|
3059
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3060
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3061
|
+
in the Software without restriction, including without limitation the rights
|
|
3062
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3063
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3064
|
+
furnished to do so, subject to the following conditions:
|
|
824
3065
|
|
|
825
3066
|
The above copyright notice and this permission notice shall be included in all
|
|
826
3067
|
copies or substantial portions of the Software.
|
|
827
3068
|
|
|
828
3069
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
829
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
830
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
831
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
832
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
833
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3070
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3071
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3072
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3073
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3074
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3075
|
+
SOFTWARE.
|
|
834
3076
|
=========================================
|
|
835
|
-
END OF
|
|
3077
|
+
END OF side-channel-weakmap@1.0.2 AND INFORMATION
|
|
836
3078
|
|
|
837
|
-
%%
|
|
3079
|
+
%% side-channel@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
838
3080
|
=========================================
|
|
839
|
-
|
|
3081
|
+
MIT License
|
|
840
3082
|
|
|
841
|
-
Copyright (c)
|
|
3083
|
+
Copyright (c) 2019 Jordan Harband
|
|
842
3084
|
|
|
843
3085
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
844
3086
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -847,44 +3089,18 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
847
3089
|
copies of the Software, and to permit persons to whom the Software is
|
|
848
3090
|
furnished to do so, subject to the following conditions:
|
|
849
3091
|
|
|
850
|
-
The above copyright notice and this permission notice shall be included in
|
|
851
|
-
|
|
3092
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3093
|
+
copies or substantial portions of the Software.
|
|
852
3094
|
|
|
853
3095
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
854
3096
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
855
3097
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
856
3098
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
857
3099
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
858
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
859
|
-
|
|
860
|
-
=========================================
|
|
861
|
-
END OF pump@3.0.2 AND INFORMATION
|
|
862
|
-
|
|
863
|
-
%% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
|
|
864
|
-
=========================================
|
|
865
|
-
Copyright (c) 2011:
|
|
866
|
-
Tim Koschützki (tim@debuggable.com)
|
|
867
|
-
Felix Geisendörfer (felix@debuggable.com)
|
|
868
|
-
|
|
869
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
870
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
871
|
-
in the Software without restriction, including without limitation the rights
|
|
872
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
873
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
874
|
-
furnished to do so, subject to the following conditions:
|
|
875
|
-
|
|
876
|
-
The above copyright notice and this permission notice shall be included in
|
|
877
|
-
all copies or substantial portions of the Software.
|
|
878
|
-
|
|
879
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
880
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
881
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
882
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
883
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
884
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
885
|
-
THE SOFTWARE.
|
|
3100
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3101
|
+
SOFTWARE.
|
|
886
3102
|
=========================================
|
|
887
|
-
END OF
|
|
3103
|
+
END OF side-channel@1.1.0 AND INFORMATION
|
|
888
3104
|
|
|
889
3105
|
%% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
890
3106
|
=========================================
|
|
@@ -1013,6 +3229,161 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
1013
3229
|
=========================================
|
|
1014
3230
|
END OF sprintf-js@1.1.3 AND INFORMATION
|
|
1015
3231
|
|
|
3232
|
+
%% statuses@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3233
|
+
=========================================
|
|
3234
|
+
The MIT License (MIT)
|
|
3235
|
+
|
|
3236
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
3237
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3238
|
+
|
|
3239
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3240
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3241
|
+
in the Software without restriction, including without limitation the rights
|
|
3242
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3243
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3244
|
+
furnished to do so, subject to the following conditions:
|
|
3245
|
+
|
|
3246
|
+
The above copyright notice and this permission notice shall be included in
|
|
3247
|
+
all copies or substantial portions of the Software.
|
|
3248
|
+
|
|
3249
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3250
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3251
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3252
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3253
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3254
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3255
|
+
THE SOFTWARE.
|
|
3256
|
+
=========================================
|
|
3257
|
+
END OF statuses@2.0.2 AND INFORMATION
|
|
3258
|
+
|
|
3259
|
+
%% toidentifier@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3260
|
+
=========================================
|
|
3261
|
+
MIT License
|
|
3262
|
+
|
|
3263
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3264
|
+
|
|
3265
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3266
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3267
|
+
in the Software without restriction, including without limitation the rights
|
|
3268
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3269
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3270
|
+
furnished to do so, subject to the following conditions:
|
|
3271
|
+
|
|
3272
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3273
|
+
copies or substantial portions of the Software.
|
|
3274
|
+
|
|
3275
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3276
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3277
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3278
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3279
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3280
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3281
|
+
SOFTWARE.
|
|
3282
|
+
=========================================
|
|
3283
|
+
END OF toidentifier@1.0.1 AND INFORMATION
|
|
3284
|
+
|
|
3285
|
+
%% type-is@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3286
|
+
=========================================
|
|
3287
|
+
(The MIT License)
|
|
3288
|
+
|
|
3289
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
3290
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3291
|
+
|
|
3292
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3293
|
+
a copy of this software and associated documentation files (the
|
|
3294
|
+
'Software'), to deal in the Software without restriction, including
|
|
3295
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3296
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3297
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3298
|
+
the following conditions:
|
|
3299
|
+
|
|
3300
|
+
The above copyright notice and this permission notice shall be
|
|
3301
|
+
included in all copies or substantial portions of the Software.
|
|
3302
|
+
|
|
3303
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3304
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3305
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3306
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3307
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3308
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3309
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3310
|
+
=========================================
|
|
3311
|
+
END OF type-is@2.0.1 AND INFORMATION
|
|
3312
|
+
|
|
3313
|
+
%% unpipe@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3314
|
+
=========================================
|
|
3315
|
+
(The MIT License)
|
|
3316
|
+
|
|
3317
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3318
|
+
|
|
3319
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3320
|
+
a copy of this software and associated documentation files (the
|
|
3321
|
+
'Software'), to deal in the Software without restriction, including
|
|
3322
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3323
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3324
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3325
|
+
the following conditions:
|
|
3326
|
+
|
|
3327
|
+
The above copyright notice and this permission notice shall be
|
|
3328
|
+
included in all copies or substantial portions of the Software.
|
|
3329
|
+
|
|
3330
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3331
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3332
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3333
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3334
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3335
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3336
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3337
|
+
=========================================
|
|
3338
|
+
END OF unpipe@1.0.0 AND INFORMATION
|
|
3339
|
+
|
|
3340
|
+
%% vary@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3341
|
+
=========================================
|
|
3342
|
+
(The MIT License)
|
|
3343
|
+
|
|
3344
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
3345
|
+
|
|
3346
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3347
|
+
a copy of this software and associated documentation files (the
|
|
3348
|
+
'Software'), to deal in the Software without restriction, including
|
|
3349
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3350
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3351
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3352
|
+
the following conditions:
|
|
3353
|
+
|
|
3354
|
+
The above copyright notice and this permission notice shall be
|
|
3355
|
+
included in all copies or substantial portions of the Software.
|
|
3356
|
+
|
|
3357
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3358
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3359
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3360
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3361
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3362
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3363
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3364
|
+
=========================================
|
|
3365
|
+
END OF vary@1.1.2 AND INFORMATION
|
|
3366
|
+
|
|
3367
|
+
%% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3368
|
+
=========================================
|
|
3369
|
+
The ISC License
|
|
3370
|
+
|
|
3371
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
3372
|
+
|
|
3373
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
3374
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
3375
|
+
copyright notice and this permission notice appear in all copies.
|
|
3376
|
+
|
|
3377
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3378
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3379
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3380
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3381
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3382
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
3383
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3384
|
+
=========================================
|
|
3385
|
+
END OF which@2.0.2 AND INFORMATION
|
|
3386
|
+
|
|
1016
3387
|
%% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1017
3388
|
=========================================
|
|
1018
3389
|
The ISC License
|
|
@@ -1058,7 +3429,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
1058
3429
|
=========================================
|
|
1059
3430
|
END OF ws@8.17.1 AND INFORMATION
|
|
1060
3431
|
|
|
1061
|
-
%% yaml@2.
|
|
3432
|
+
%% yaml@2.8.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1062
3433
|
=========================================
|
|
1063
3434
|
Copyright Eemeli Aro <eemeli@gmail.com>
|
|
1064
3435
|
|
|
@@ -1074,9 +3445,9 @@ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
1074
3445
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
1075
3446
|
THIS SOFTWARE.
|
|
1076
3447
|
=========================================
|
|
1077
|
-
END OF yaml@2.
|
|
3448
|
+
END OF yaml@2.8.3 AND INFORMATION
|
|
1078
3449
|
|
|
1079
|
-
%% yauzl@3.2.
|
|
3450
|
+
%% yauzl@3.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1080
3451
|
=========================================
|
|
1081
3452
|
The MIT License (MIT)
|
|
1082
3453
|
|
|
@@ -1100,7 +3471,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1100
3471
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1101
3472
|
SOFTWARE.
|
|
1102
3473
|
=========================================
|
|
1103
|
-
END OF yauzl@3.2.
|
|
3474
|
+
END OF yauzl@3.2.1 AND INFORMATION
|
|
1104
3475
|
|
|
1105
3476
|
%% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1106
3477
|
=========================================
|
|
@@ -1128,7 +3499,27 @@ SOFTWARE.
|
|
|
1128
3499
|
=========================================
|
|
1129
3500
|
END OF yazl@2.5.1 AND INFORMATION
|
|
1130
3501
|
|
|
1131
|
-
%% zod@3.25.
|
|
3502
|
+
%% zod-to-json-schema@3.25.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3503
|
+
=========================================
|
|
3504
|
+
ISC License
|
|
3505
|
+
|
|
3506
|
+
Copyright (c) 2020, Stefan Terdell
|
|
3507
|
+
|
|
3508
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
3509
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
3510
|
+
copyright notice and this permission notice appear in all copies.
|
|
3511
|
+
|
|
3512
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3513
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3514
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3515
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3516
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3517
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
3518
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3519
|
+
=========================================
|
|
3520
|
+
END OF zod-to-json-schema@3.25.1 AND INFORMATION
|
|
3521
|
+
|
|
3522
|
+
%% zod@4.3.6 NOTICES AND INFORMATION BEGIN HERE
|
|
1132
3523
|
=========================================
|
|
1133
3524
|
MIT License
|
|
1134
3525
|
|
|
@@ -1152,10 +3543,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1152
3543
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1153
3544
|
SOFTWARE.
|
|
1154
3545
|
=========================================
|
|
1155
|
-
END OF zod@3.
|
|
3546
|
+
END OF zod@4.3.6 AND INFORMATION
|
|
1156
3547
|
|
|
1157
3548
|
SUMMARY BEGIN HERE
|
|
1158
3549
|
=========================================
|
|
1159
|
-
Total Packages:
|
|
3550
|
+
Total Packages: 133
|
|
1160
3551
|
=========================================
|
|
1161
3552
|
END OF SUMMARY
|