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