patchright-core 1.57.0 → 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 +3223 -308
- package/browsers.json +21 -22
- package/lib/cli/program.js +4 -5
- package/lib/client/api.js +3 -0
- package/lib/client/browser.js +3 -5
- package/lib/client/browserContext.js +40 -4
- package/lib/client/browserType.js +4 -3
- package/lib/client/connection.js +4 -0
- package/lib/client/elementHandle.js +3 -0
- package/lib/client/events.js +3 -0
- package/lib/client/fetch.js +3 -4
- package/lib/client/frame.js +10 -1
- package/lib/client/locator.js +8 -0
- package/lib/client/network.js +5 -1
- package/lib/client/page.js +29 -1
- package/lib/client/pageAgent.js +64 -0
- package/lib/client/platform.js +3 -0
- package/lib/client/tracing.js +1 -1
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/pollingRecorderSource.js +1 -1
- 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 +88 -4
- 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/artifact.js +1 -1
- package/lib/server/bidi/bidiBrowser.js +56 -12
- package/lib/server/bidi/bidiChromium.js +8 -12
- package/lib/server/bidi/bidiConnection.js +1 -0
- package/lib/server/bidi/bidiDeserializer.js +116 -0
- package/lib/server/bidi/bidiExecutionContext.js +75 -29
- package/lib/server/bidi/bidiFirefox.js +6 -8
- package/lib/server/bidi/bidiNetworkManager.js +1 -1
- package/lib/server/bidi/bidiPage.js +39 -28
- package/lib/server/bidi/third_party/bidiProtocolCore.js +1 -0
- package/lib/server/browserContext.js +34 -26
- package/lib/server/browserType.js +12 -4
- package/lib/server/chromium/chromium.js +14 -20
- package/lib/server/chromium/chromiumSwitches.js +2 -2
- package/lib/server/chromium/crBrowser.js +22 -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 +92 -12
- package/lib/server/chromium/crPage.js +62 -116
- package/lib/server/codegen/javascript.js +6 -29
- package/lib/server/deviceDescriptorsSource.json +56 -56
- package/lib/server/dispatchers/browserContextDispatcher.js +3 -2
- 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 +4 -0
- package/lib/server/dom.js +12 -3
- package/lib/server/electron/electron.js +5 -2
- 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 +15 -18
- package/lib/server/firefox/firefox.js +6 -8
- package/lib/server/frameSelectors.js +16 -4
- package/lib/server/frames.js +251 -86
- package/lib/server/instrumentation.js +3 -0
- package/lib/server/javascript.js +8 -4
- package/lib/server/launchApp.js +2 -1
- package/lib/server/network.js +50 -12
- package/lib/server/page.js +61 -91
- package/lib/server/progress.js +26 -6
- package/lib/server/recorder/recorderApp.js +79 -100
- package/lib/server/registry/browserFetcher.js +6 -4
- package/lib/server/registry/index.js +172 -149
- package/lib/server/registry/oopDownloadBrowserMain.js +3 -0
- package/lib/server/screencast.js +190 -0
- package/lib/server/screenshotter.js +6 -0
- 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 +29 -21
- package/lib/server/trace/viewer/traceParser.js +72 -0
- package/lib/server/trace/viewer/traceViewer.js +21 -17
- package/lib/server/utils/expectUtils.js +87 -2
- package/lib/server/utils/hostPlatform.js +15 -0
- package/lib/server/utils/httpServer.js +5 -20
- package/lib/server/utils/network.js +37 -28
- package/lib/server/utils/nodePlatform.js +6 -0
- package/lib/server/{chromium/videoRecorder.js → videoRecorder.js} +22 -13
- package/lib/server/webkit/webkit.js +4 -6
- 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 +75 -46
- package/lib/utils/isomorphic/ariaSnapshot.js +60 -2
- package/lib/utils/isomorphic/lruCache.js +51 -0
- package/lib/utils/isomorphic/protocolMetainfo.js +9 -1
- 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/yaml.js +84 -0
- package/lib/utils.js +2 -0
- package/lib/utilsBundle.js +2 -5
- package/lib/utilsBundleImpl/index.js +165 -165
- package/lib/vite/htmlReport/index.html +21 -21
- package/lib/vite/recorder/assets/codeMirrorModule-CFUTFUO7.js +32 -0
- package/lib/vite/{traceViewer/codeMirrorModule.C3UTv-Ge.css → recorder/assets/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/{recorder/assets/codeMirrorModule-C3UTv-Ge.css → traceViewer/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 +4 -4
- 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 +738 -159
- package/types/types.d.ts +25 -38
- package/lib/server/bidi/third_party/bidiDeserializer.js +0 -98
- package/lib/server/trace/test/inMemorySnapshotter.js +0 -87
- package/lib/vite/recorder/assets/codeMirrorModule-CBbSe-ZI.js +0 -25
- package/lib/vite/recorder/assets/index-CpZVd2nA.js +0 -193
- package/lib/vite/traceViewer/assets/codeMirrorModule-DHz0wP2C.js +0 -25
- package/lib/vite/traceViewer/assets/defaultSettingsView-WsZP88O6.js +0 -266
- package/lib/vite/traceViewer/defaultSettingsView.ConWv5KN.css +0 -1
- package/lib/vite/traceViewer/index.C4Y3Aw8n.css +0 -1
- package/lib/vite/traceViewer/index.C8xAeo93.js +0 -2
- package/lib/vite/traceViewer/uiMode.BltraIJB.js +0 -5
package/ThirdPartyNotices.txt
CHANGED
|
@@ -4,51 +4,761 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
|
|
|
4
4
|
|
|
5
5
|
This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
|
|
6
6
|
|
|
7
|
+
- @hono/node-server@1.19.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)
|
|
7
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)
|
|
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)
|
|
23
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
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)
|
|
51
|
-
- zod@3.25.
|
|
138
|
+
- zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
|
|
139
|
+
- zod@4.3.5 (https://github.com/colinhacks/zod)
|
|
140
|
+
|
|
141
|
+
%% @hono/node-server@1.19.8 NOTICES AND INFORMATION BEGIN HERE
|
|
142
|
+
=========================================
|
|
143
|
+
# Node.js Adapter for Hono
|
|
144
|
+
|
|
145
|
+
This adapter `@hono/node-server` allows you to run your Hono application on Node.js.
|
|
146
|
+
Initially, Hono wasn't designed for Node.js, but with this adapter, you can now use Hono on Node.js.
|
|
147
|
+
It utilizes web standard APIs implemented in Node.js version 18 or higher.
|
|
148
|
+
|
|
149
|
+
## Benchmarks
|
|
150
|
+
|
|
151
|
+
Hono is 3.5 times faster than Express.
|
|
152
|
+
|
|
153
|
+
Express:
|
|
154
|
+
|
|
155
|
+
```txt
|
|
156
|
+
$ bombardier -d 10s --fasthttp http://localhost:3000/
|
|
157
|
+
|
|
158
|
+
Statistics Avg Stdev Max
|
|
159
|
+
Reqs/sec 16438.94 1603.39 19155.47
|
|
160
|
+
Latency 7.60ms 7.51ms 559.89ms
|
|
161
|
+
HTTP codes:
|
|
162
|
+
1xx - 0, 2xx - 164494, 3xx - 0, 4xx - 0, 5xx - 0
|
|
163
|
+
others - 0
|
|
164
|
+
Throughput: 4.55MB/s
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
Hono + `@hono/node-server`:
|
|
168
|
+
|
|
169
|
+
```txt
|
|
170
|
+
$ bombardier -d 10s --fasthttp http://localhost:3000/
|
|
171
|
+
|
|
172
|
+
Statistics Avg Stdev Max
|
|
173
|
+
Reqs/sec 58296.56 5512.74 74403.56
|
|
174
|
+
Latency 2.14ms 1.46ms 190.92ms
|
|
175
|
+
HTTP codes:
|
|
176
|
+
1xx - 0, 2xx - 583059, 3xx - 0, 4xx - 0, 5xx - 0
|
|
177
|
+
others - 0
|
|
178
|
+
Throughput: 12.56MB/s
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
## Requirements
|
|
182
|
+
|
|
183
|
+
It works on Node.js versions greater than 18.x. The specific required Node.js versions are as follows:
|
|
184
|
+
|
|
185
|
+
- 18.x => 18.14.1+
|
|
186
|
+
- 19.x => 19.7.0+
|
|
187
|
+
- 20.x => 20.0.0+
|
|
188
|
+
|
|
189
|
+
Essentially, you can simply use the latest version of each major release.
|
|
190
|
+
|
|
191
|
+
## Installation
|
|
192
|
+
|
|
193
|
+
You can install it from the npm registry with `npm` command:
|
|
194
|
+
|
|
195
|
+
```sh
|
|
196
|
+
npm install @hono/node-server
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Or use `yarn`:
|
|
200
|
+
|
|
201
|
+
```sh
|
|
202
|
+
yarn add @hono/node-server
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
## Usage
|
|
206
|
+
|
|
207
|
+
Just import `@hono/node-server` at the top and write the code as usual.
|
|
208
|
+
The same code that runs on Cloudflare Workers, Deno, and Bun will work.
|
|
209
|
+
|
|
210
|
+
```ts
|
|
211
|
+
import { serve } from '@hono/node-server'
|
|
212
|
+
import { Hono } from 'hono'
|
|
213
|
+
|
|
214
|
+
const app = new Hono()
|
|
215
|
+
app.get('/', (c) => c.text('Hono meets Node.js'))
|
|
216
|
+
|
|
217
|
+
serve(app, (info) => {
|
|
218
|
+
console.log(`Listening on http://localhost:${info.port}`) // Listening on http://localhost:3000
|
|
219
|
+
})
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
For example, run it using `ts-node`. Then an HTTP server will be launched. The default port is `3000`.
|
|
223
|
+
|
|
224
|
+
```sh
|
|
225
|
+
ts-node ./index.ts
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
Open `http://localhost:3000` with your browser.
|
|
229
|
+
|
|
230
|
+
## Options
|
|
231
|
+
|
|
232
|
+
### `port`
|
|
233
|
+
|
|
234
|
+
```ts
|
|
235
|
+
serve({
|
|
236
|
+
fetch: app.fetch,
|
|
237
|
+
port: 8787, // Port number, default is 3000
|
|
238
|
+
})
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
### `createServer`
|
|
242
|
+
|
|
243
|
+
```ts
|
|
244
|
+
import { createServer } from 'node:https'
|
|
245
|
+
import fs from 'node:fs'
|
|
246
|
+
|
|
247
|
+
//...
|
|
248
|
+
|
|
249
|
+
serve({
|
|
250
|
+
fetch: app.fetch,
|
|
251
|
+
createServer: createServer,
|
|
252
|
+
serverOptions: {
|
|
253
|
+
key: fs.readFileSync('test/fixtures/keys/agent1-key.pem'),
|
|
254
|
+
cert: fs.readFileSync('test/fixtures/keys/agent1-cert.pem'),
|
|
255
|
+
},
|
|
256
|
+
})
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### `overrideGlobalObjects`
|
|
260
|
+
|
|
261
|
+
The default value is `true`. The Node.js Adapter rewrites the global Request/Response and uses a lightweight Request/Response to improve performance. If you don't want to do that, set `false`.
|
|
262
|
+
|
|
263
|
+
```ts
|
|
264
|
+
serve({
|
|
265
|
+
fetch: app.fetch,
|
|
266
|
+
overrideGlobalObjects: false,
|
|
267
|
+
})
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### `autoCleanupIncoming`
|
|
271
|
+
|
|
272
|
+
The default value is `true`. The Node.js Adapter automatically cleans up (explicitly call `destroy()` method) if application is not finished to consume the incoming request. If you don't want to do that, set `false`.
|
|
273
|
+
|
|
274
|
+
If the application accepts connections from arbitrary clients, this cleanup must be done otherwise incomplete requests from clients may cause the application to stop responding. If your application only accepts connections from trusted clients, such as in a reverse proxy environment and there is no process that returns a response without reading the body of the POST request all the way through, you can improve performance by setting it to `false`.
|
|
275
|
+
|
|
276
|
+
```ts
|
|
277
|
+
serve({
|
|
278
|
+
fetch: app.fetch,
|
|
279
|
+
autoCleanupIncoming: false,
|
|
280
|
+
})
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
## Middleware
|
|
284
|
+
|
|
285
|
+
Most built-in middleware also works with Node.js.
|
|
286
|
+
Read [the documentation](https://hono.dev/middleware/builtin/basic-auth) and use the Middleware of your liking.
|
|
287
|
+
|
|
288
|
+
```ts
|
|
289
|
+
import { serve } from '@hono/node-server'
|
|
290
|
+
import { Hono } from 'hono'
|
|
291
|
+
import { prettyJSON } from 'hono/pretty-json'
|
|
292
|
+
|
|
293
|
+
const app = new Hono()
|
|
294
|
+
|
|
295
|
+
app.get('*', prettyJSON())
|
|
296
|
+
app.get('/', (c) => c.json({ 'Hono meets': 'Node.js' }))
|
|
297
|
+
|
|
298
|
+
serve(app)
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
## Serve Static Middleware
|
|
302
|
+
|
|
303
|
+
Use Serve Static Middleware that has been created for Node.js.
|
|
304
|
+
|
|
305
|
+
```ts
|
|
306
|
+
import { serveStatic } from '@hono/node-server/serve-static'
|
|
307
|
+
|
|
308
|
+
//...
|
|
309
|
+
|
|
310
|
+
app.use('/static/*', serveStatic({ root: './' }))
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
If using a relative path, `root` will be relative to the current working directory from which the app was started.
|
|
314
|
+
|
|
315
|
+
This can cause confusion when running your application locally.
|
|
316
|
+
|
|
317
|
+
Imagine your project structure is:
|
|
318
|
+
|
|
319
|
+
```
|
|
320
|
+
my-hono-project/
|
|
321
|
+
src/
|
|
322
|
+
index.ts
|
|
323
|
+
static/
|
|
324
|
+
index.html
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
Typically, you would run your app from the project's root directory (`my-hono-project`),
|
|
328
|
+
so you would need the following code to serve the `static` folder:
|
|
329
|
+
|
|
330
|
+
```ts
|
|
331
|
+
app.use('/static/*', serveStatic({ root: './static' }))
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
Notice that `root` here is not relative to `src/index.ts`, rather to `my-hono-project`.
|
|
335
|
+
|
|
336
|
+
### Options
|
|
337
|
+
|
|
338
|
+
#### `rewriteRequestPath`
|
|
339
|
+
|
|
340
|
+
If you want to serve files in `./.foojs` with the request path `/__foo/*`, you can write like the following.
|
|
341
|
+
|
|
342
|
+
```ts
|
|
343
|
+
app.use(
|
|
344
|
+
'/__foo/*',
|
|
345
|
+
serveStatic({
|
|
346
|
+
root: './.foojs/',
|
|
347
|
+
rewriteRequestPath: (path: string) => path.replace(/^\/__foo/, ''),
|
|
348
|
+
})
|
|
349
|
+
)
|
|
350
|
+
```
|
|
351
|
+
|
|
352
|
+
#### `onFound`
|
|
353
|
+
|
|
354
|
+
You can specify handling when the requested file is found with `onFound`.
|
|
355
|
+
|
|
356
|
+
```ts
|
|
357
|
+
app.use(
|
|
358
|
+
'/static/*',
|
|
359
|
+
serveStatic({
|
|
360
|
+
// ...
|
|
361
|
+
onFound: (_path, c) => {
|
|
362
|
+
c.header('Cache-Control', `public, immutable, max-age=31536000`)
|
|
363
|
+
},
|
|
364
|
+
})
|
|
365
|
+
)
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
#### `onNotFound`
|
|
369
|
+
|
|
370
|
+
The `onNotFound` is useful for debugging. You can write a handle for when a file is not found.
|
|
371
|
+
|
|
372
|
+
```ts
|
|
373
|
+
app.use(
|
|
374
|
+
'/static/*',
|
|
375
|
+
serveStatic({
|
|
376
|
+
root: './non-existent-dir',
|
|
377
|
+
onNotFound: (path, c) => {
|
|
378
|
+
console.log(`${path} is not found, request to ${c.req.path}`)
|
|
379
|
+
},
|
|
380
|
+
})
|
|
381
|
+
)
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
#### `precompressed`
|
|
385
|
+
|
|
386
|
+
The `precompressed` option checks if files with extensions like `.br` or `.gz` are available and serves them based on the `Accept-Encoding` header. It prioritizes Brotli, then Zstd, and Gzip. If none are available, it serves the original file.
|
|
387
|
+
|
|
388
|
+
```ts
|
|
389
|
+
app.use(
|
|
390
|
+
'/static/*',
|
|
391
|
+
serveStatic({
|
|
392
|
+
precompressed: true,
|
|
393
|
+
})
|
|
394
|
+
)
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
## ConnInfo Helper
|
|
398
|
+
|
|
399
|
+
You can use the [ConnInfo Helper](https://hono.dev/docs/helpers/conninfo) by importing `getConnInfo` from `@hono/node-server/conninfo`.
|
|
400
|
+
|
|
401
|
+
```ts
|
|
402
|
+
import { getConnInfo } from '@hono/node-server/conninfo'
|
|
403
|
+
|
|
404
|
+
app.get('/', (c) => {
|
|
405
|
+
const info = getConnInfo(c) // info is `ConnInfo`
|
|
406
|
+
return c.text(`Your remote address is ${info.remote.address}`)
|
|
407
|
+
})
|
|
408
|
+
```
|
|
409
|
+
|
|
410
|
+
## Accessing Node.js API
|
|
411
|
+
|
|
412
|
+
You can access the Node.js API from `c.env` in Node.js. For example, if you want to specify a type, you can write the following.
|
|
413
|
+
|
|
414
|
+
```ts
|
|
415
|
+
import { serve } from '@hono/node-server'
|
|
416
|
+
import type { HttpBindings } from '@hono/node-server'
|
|
417
|
+
import { Hono } from 'hono'
|
|
418
|
+
|
|
419
|
+
const app = new Hono<{ Bindings: HttpBindings }>()
|
|
420
|
+
|
|
421
|
+
app.get('/', (c) => {
|
|
422
|
+
return c.json({
|
|
423
|
+
remoteAddress: c.env.incoming.socket.remoteAddress,
|
|
424
|
+
})
|
|
425
|
+
})
|
|
426
|
+
|
|
427
|
+
serve(app)
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
The APIs that you can get from `c.env` are as follows.
|
|
431
|
+
|
|
432
|
+
```ts
|
|
433
|
+
type HttpBindings = {
|
|
434
|
+
incoming: IncomingMessage
|
|
435
|
+
outgoing: ServerResponse
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
type Http2Bindings = {
|
|
439
|
+
incoming: Http2ServerRequest
|
|
440
|
+
outgoing: Http2ServerResponse
|
|
441
|
+
}
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
## Direct response from Node.js API
|
|
445
|
+
|
|
446
|
+
You can directly respond to the client from the Node.js API.
|
|
447
|
+
In that case, the response from Hono should be ignored, so return `RESPONSE_ALREADY_SENT`.
|
|
448
|
+
|
|
449
|
+
> [!NOTE]
|
|
450
|
+
> This feature can be used when migrating existing Node.js applications to Hono, but we recommend using Hono's API for new applications.
|
|
451
|
+
|
|
452
|
+
```ts
|
|
453
|
+
import { serve } from '@hono/node-server'
|
|
454
|
+
import type { HttpBindings } from '@hono/node-server'
|
|
455
|
+
import { RESPONSE_ALREADY_SENT } from '@hono/node-server/utils/response'
|
|
456
|
+
import { Hono } from 'hono'
|
|
457
|
+
|
|
458
|
+
const app = new Hono<{ Bindings: HttpBindings }>()
|
|
459
|
+
|
|
460
|
+
app.get('/', (c) => {
|
|
461
|
+
const { outgoing } = c.env
|
|
462
|
+
outgoing.writeHead(200, { 'Content-Type': 'text/plain' })
|
|
463
|
+
outgoing.end('Hello World\n')
|
|
464
|
+
|
|
465
|
+
return RESPONSE_ALREADY_SENT
|
|
466
|
+
})
|
|
467
|
+
|
|
468
|
+
serve(app)
|
|
469
|
+
```
|
|
470
|
+
|
|
471
|
+
## Listen to a UNIX domain socket
|
|
472
|
+
|
|
473
|
+
You can configure the HTTP server to listen to a UNIX domain socket instead of a TCP port.
|
|
474
|
+
|
|
475
|
+
```ts
|
|
476
|
+
import { createAdaptorServer } from '@hono/node-server'
|
|
477
|
+
|
|
478
|
+
// ...
|
|
479
|
+
|
|
480
|
+
const socketPath ='/tmp/example.sock'
|
|
481
|
+
|
|
482
|
+
const server = createAdaptorServer(app)
|
|
483
|
+
server.listen(socketPath, () => {
|
|
484
|
+
console.log(`Listening on ${socketPath}`)
|
|
485
|
+
})
|
|
486
|
+
```
|
|
487
|
+
|
|
488
|
+
## Related projects
|
|
489
|
+
|
|
490
|
+
- Hono - <https://hono.dev>
|
|
491
|
+
- Hono GitHub repository - <https://github.com/honojs/hono>
|
|
492
|
+
|
|
493
|
+
## Author
|
|
494
|
+
|
|
495
|
+
Yusuke Wada <https://github.com/yusukebe>
|
|
496
|
+
|
|
497
|
+
## License
|
|
498
|
+
|
|
499
|
+
MIT
|
|
500
|
+
=========================================
|
|
501
|
+
END OF @hono/node-server@1.19.8 AND INFORMATION
|
|
502
|
+
|
|
503
|
+
%% @lowire/loop@0.0.25 NOTICES AND INFORMATION BEGIN HERE
|
|
504
|
+
=========================================
|
|
505
|
+
Apache License
|
|
506
|
+
Version 2.0, January 2004
|
|
507
|
+
http://www.apache.org/licenses/
|
|
508
|
+
|
|
509
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
510
|
+
|
|
511
|
+
1. Definitions.
|
|
512
|
+
|
|
513
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
514
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
515
|
+
|
|
516
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
517
|
+
the copyright owner that is granting the License.
|
|
518
|
+
|
|
519
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
520
|
+
other entities that control, are controlled by, or are under common
|
|
521
|
+
control with that entity. For the purposes of this definition,
|
|
522
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
523
|
+
direction or management of such entity, whether by contract or
|
|
524
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
525
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
526
|
+
|
|
527
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
528
|
+
exercising permissions granted by this License.
|
|
529
|
+
|
|
530
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
531
|
+
including but not limited to software source code, documentation
|
|
532
|
+
source, and configuration files.
|
|
533
|
+
|
|
534
|
+
"Object" form shall mean any form resulting from mechanical
|
|
535
|
+
transformation or translation of a Source form, including but
|
|
536
|
+
not limited to compiled object code, generated documentation,
|
|
537
|
+
and conversions to other media types.
|
|
538
|
+
|
|
539
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
540
|
+
Object form, made available under the License, as indicated by a
|
|
541
|
+
copyright notice that is included in or attached to the work
|
|
542
|
+
(an example is provided in the Appendix below).
|
|
543
|
+
|
|
544
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
545
|
+
form, that is based on (or derived from) the Work and for which the
|
|
546
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
547
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
548
|
+
of this License, Derivative Works shall not include works that remain
|
|
549
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
550
|
+
the Work and Derivative Works thereof.
|
|
551
|
+
|
|
552
|
+
"Contribution" shall mean any work of authorship, including
|
|
553
|
+
the original version of the Work and any modifications or additions
|
|
554
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
555
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
556
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
557
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
558
|
+
means any form of electronic, verbal, or written communication sent
|
|
559
|
+
to the Licensor or its representatives, including but not limited to
|
|
560
|
+
communication on electronic mailing lists, source code control systems,
|
|
561
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
562
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
563
|
+
excluding communication that is conspicuously marked or otherwise
|
|
564
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
565
|
+
|
|
566
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
567
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
568
|
+
subsequently incorporated within the Work.
|
|
569
|
+
|
|
570
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
571
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
572
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
573
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
574
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
575
|
+
Work and such Derivative Works in Source or Object form.
|
|
576
|
+
|
|
577
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
578
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
579
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
580
|
+
(except as stated in this section) patent license to make, have made,
|
|
581
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
582
|
+
where such license applies only to those patent claims licensable
|
|
583
|
+
by such Contributor that are necessarily infringed by their
|
|
584
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
585
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
586
|
+
institute patent litigation against any entity (including a
|
|
587
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
588
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
589
|
+
or contributory patent infringement, then any patent licenses
|
|
590
|
+
granted to You under this License for that Work shall terminate
|
|
591
|
+
as of the date such litigation is filed.
|
|
592
|
+
|
|
593
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
594
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
595
|
+
modifications, and in Source or Object form, provided that You
|
|
596
|
+
meet the following conditions:
|
|
597
|
+
|
|
598
|
+
(a) You must give any other recipients of the Work or
|
|
599
|
+
Derivative Works a copy of this License; and
|
|
600
|
+
|
|
601
|
+
(b) You must cause any modified files to carry prominent notices
|
|
602
|
+
stating that You changed the files; and
|
|
603
|
+
|
|
604
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
605
|
+
that You distribute, all copyright, patent, trademark, and
|
|
606
|
+
attribution notices from the Source form of the Work,
|
|
607
|
+
excluding those notices that do not pertain to any part of
|
|
608
|
+
the Derivative Works; and
|
|
609
|
+
|
|
610
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
611
|
+
distribution, then any Derivative Works that You distribute must
|
|
612
|
+
include a readable copy of the attribution notices contained
|
|
613
|
+
within such NOTICE file, excluding those notices that do not
|
|
614
|
+
pertain to any part of the Derivative Works, in at least one
|
|
615
|
+
of the following places: within a NOTICE text file distributed
|
|
616
|
+
as part of the Derivative Works; within the Source form or
|
|
617
|
+
documentation, if provided along with the Derivative Works; or,
|
|
618
|
+
within a display generated by the Derivative Works, if and
|
|
619
|
+
wherever such third-party notices normally appear. The contents
|
|
620
|
+
of the NOTICE file are for informational purposes only and
|
|
621
|
+
do not modify the License. You may add Your own attribution
|
|
622
|
+
notices within Derivative Works that You distribute, alongside
|
|
623
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
624
|
+
that such additional attribution notices cannot be construed
|
|
625
|
+
as modifying the License.
|
|
626
|
+
|
|
627
|
+
You may add Your own copyright statement to Your modifications and
|
|
628
|
+
may provide additional or different license terms and conditions
|
|
629
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
630
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
631
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
632
|
+
the conditions stated in this License.
|
|
633
|
+
|
|
634
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
635
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
636
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
637
|
+
this License, without any additional terms or conditions.
|
|
638
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
639
|
+
the terms of any separate license agreement you may have executed
|
|
640
|
+
with Licensor regarding such Contributions.
|
|
641
|
+
|
|
642
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
643
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
644
|
+
except as required for reasonable and customary use in describing the
|
|
645
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
646
|
+
|
|
647
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
648
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
649
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
650
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
651
|
+
implied, including, without limitation, any warranties or conditions
|
|
652
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
653
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
654
|
+
appropriateness of using or redistributing the Work and assume any
|
|
655
|
+
risks associated with Your exercise of permissions under this License.
|
|
656
|
+
|
|
657
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
658
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
659
|
+
unless required by applicable law (such as deliberate and grossly
|
|
660
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
661
|
+
liable to You for damages, including any direct, indirect, special,
|
|
662
|
+
incidental, or consequential damages of any character arising as a
|
|
663
|
+
result of this License or out of the use or inability to use the
|
|
664
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
665
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
666
|
+
other commercial damages or losses), even if such Contributor
|
|
667
|
+
has been advised of the possibility of such damages.
|
|
668
|
+
|
|
669
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
670
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
671
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
672
|
+
or other liability obligations and/or rights consistent with this
|
|
673
|
+
License. However, in accepting such obligations, You may act only
|
|
674
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
675
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
676
|
+
defend, and hold each Contributor harmless for any liability
|
|
677
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
678
|
+
of your accepting any such warranty or additional liability.
|
|
679
|
+
|
|
680
|
+
END OF TERMS AND CONDITIONS
|
|
681
|
+
|
|
682
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
683
|
+
|
|
684
|
+
To apply the Apache License to your work, attach the following
|
|
685
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
686
|
+
replaced with your own identifying information. (Don't include
|
|
687
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
688
|
+
comment syntax for the file format. We also recommend that a
|
|
689
|
+
file or class name and description of purpose be included on the
|
|
690
|
+
same "printed page" as the copyright notice for easier
|
|
691
|
+
identification within third-party archives.
|
|
692
|
+
|
|
693
|
+
Copyright (c) Microsoft Corporation.
|
|
694
|
+
|
|
695
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
696
|
+
you may not use this file except in compliance with the License.
|
|
697
|
+
You may obtain a copy of the License at
|
|
698
|
+
|
|
699
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
700
|
+
|
|
701
|
+
Unless required by applicable law or agreed to in writing, software
|
|
702
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
703
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
704
|
+
See the License for the specific language governing permissions and
|
|
705
|
+
limitations under the License.
|
|
706
|
+
=========================================
|
|
707
|
+
END OF @lowire/loop@0.0.25 AND INFORMATION
|
|
708
|
+
|
|
709
|
+
%% @modelcontextprotocol/sdk@1.25.2 NOTICES AND INFORMATION BEGIN HERE
|
|
710
|
+
=========================================
|
|
711
|
+
MIT License
|
|
712
|
+
|
|
713
|
+
Copyright (c) 2024 Anthropic, PBC
|
|
714
|
+
|
|
715
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
716
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
717
|
+
in the Software without restriction, including without limitation the rights
|
|
718
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
719
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
720
|
+
furnished to do so, subject to the following conditions:
|
|
721
|
+
|
|
722
|
+
The above copyright notice and this permission notice shall be included in all
|
|
723
|
+
copies or substantial portions of the Software.
|
|
724
|
+
|
|
725
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
726
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
727
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
728
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
729
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
730
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
731
|
+
SOFTWARE.
|
|
732
|
+
=========================================
|
|
733
|
+
END OF @modelcontextprotocol/sdk@1.25.2 AND INFORMATION
|
|
734
|
+
|
|
735
|
+
%% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
736
|
+
=========================================
|
|
737
|
+
(The MIT License)
|
|
738
|
+
|
|
739
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
740
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
741
|
+
|
|
742
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
743
|
+
a copy of this software and associated documentation files (the
|
|
744
|
+
'Software'), to deal in the Software without restriction, including
|
|
745
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
746
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
747
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
748
|
+
the following conditions:
|
|
749
|
+
|
|
750
|
+
The above copyright notice and this permission notice shall be
|
|
751
|
+
included in all copies or substantial portions of the Software.
|
|
752
|
+
|
|
753
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
754
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
755
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
756
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
757
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
758
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
759
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
760
|
+
=========================================
|
|
761
|
+
END OF accepts@2.0.0 AND INFORMATION
|
|
52
762
|
|
|
53
763
|
%% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
|
|
54
764
|
=========================================
|
|
@@ -77,6 +787,58 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
77
787
|
=========================================
|
|
78
788
|
END OF agent-base@7.1.4 AND INFORMATION
|
|
79
789
|
|
|
790
|
+
%% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
791
|
+
=========================================
|
|
792
|
+
MIT License
|
|
793
|
+
|
|
794
|
+
Copyright (c) 2020 Evgeny Poberezkin
|
|
795
|
+
|
|
796
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
797
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
798
|
+
in the Software without restriction, including without limitation the rights
|
|
799
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
800
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
801
|
+
furnished to do so, subject to the following conditions:
|
|
802
|
+
|
|
803
|
+
The above copyright notice and this permission notice shall be included in all
|
|
804
|
+
copies or substantial portions of the Software.
|
|
805
|
+
|
|
806
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
807
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
808
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
809
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
810
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
811
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
812
|
+
SOFTWARE.
|
|
813
|
+
=========================================
|
|
814
|
+
END OF ajv-formats@3.0.1 AND INFORMATION
|
|
815
|
+
|
|
816
|
+
%% ajv@8.17.1 NOTICES AND INFORMATION BEGIN HERE
|
|
817
|
+
=========================================
|
|
818
|
+
The MIT License (MIT)
|
|
819
|
+
|
|
820
|
+
Copyright (c) 2015-2021 Evgeny Poberezkin
|
|
821
|
+
|
|
822
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
823
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
824
|
+
in the Software without restriction, including without limitation the rights
|
|
825
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
826
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
827
|
+
furnished to do so, subject to the following conditions:
|
|
828
|
+
|
|
829
|
+
The above copyright notice and this permission notice shall be included in all
|
|
830
|
+
copies or substantial portions of the Software.
|
|
831
|
+
|
|
832
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
833
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
834
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
835
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
836
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
837
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
838
|
+
SOFTWARE.
|
|
839
|
+
=========================================
|
|
840
|
+
END OF ajv@8.17.1 AND INFORMATION
|
|
841
|
+
|
|
80
842
|
%% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
81
843
|
=========================================
|
|
82
844
|
(MIT)
|
|
@@ -103,6 +865,34 @@ SOFTWARE.
|
|
|
103
865
|
=========================================
|
|
104
866
|
END OF balanced-match@1.0.2 AND INFORMATION
|
|
105
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
|
+
|
|
106
896
|
%% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
|
|
107
897
|
=========================================
|
|
108
898
|
MIT License
|
|
@@ -153,11 +943,39 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEAL
|
|
|
153
943
|
=========================================
|
|
154
944
|
END OF buffer-crc32@0.2.13 AND INFORMATION
|
|
155
945
|
|
|
156
|
-
%%
|
|
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
|
|
157
975
|
=========================================
|
|
158
976
|
MIT License
|
|
159
977
|
|
|
160
|
-
Copyright (
|
|
978
|
+
Copyright (c) 2024 Jordan Harband
|
|
161
979
|
|
|
162
980
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
163
981
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -166,9 +984,61 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
166
984
|
copies of the Software, and to permit persons to whom the Software is
|
|
167
985
|
furnished to do so, subject to the following conditions:
|
|
168
986
|
|
|
169
|
-
The above copyright notice and this permission notice shall be included in
|
|
170
|
-
|
|
171
|
-
|
|
987
|
+
The above copyright notice and this permission notice shall be included in all
|
|
988
|
+
copies or substantial portions of the Software.
|
|
989
|
+
|
|
990
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
991
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
992
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
993
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
994
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
995
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
996
|
+
SOFTWARE.
|
|
997
|
+
=========================================
|
|
998
|
+
END OF call-bind-apply-helpers@1.0.2 AND INFORMATION
|
|
999
|
+
|
|
1000
|
+
%% call-bound@1.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1001
|
+
=========================================
|
|
1002
|
+
MIT License
|
|
1003
|
+
|
|
1004
|
+
Copyright (c) 2024 Jordan Harband
|
|
1005
|
+
|
|
1006
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1007
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1008
|
+
in the Software without restriction, including without limitation the rights
|
|
1009
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1010
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1011
|
+
furnished to do so, subject to the following conditions:
|
|
1012
|
+
|
|
1013
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1014
|
+
copies or substantial portions of the Software.
|
|
1015
|
+
|
|
1016
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1017
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1018
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1019
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1020
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1021
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1022
|
+
SOFTWARE.
|
|
1023
|
+
=========================================
|
|
1024
|
+
END OF call-bound@1.0.4 AND INFORMATION
|
|
1025
|
+
|
|
1026
|
+
%% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
|
|
1027
|
+
=========================================
|
|
1028
|
+
MIT License
|
|
1029
|
+
|
|
1030
|
+
Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1031
|
+
|
|
1032
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1033
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1034
|
+
in the Software without restriction, including without limitation the rights
|
|
1035
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1036
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1037
|
+
furnished to do so, subject to the following conditions:
|
|
1038
|
+
|
|
1039
|
+
The above copyright notice and this permission notice shall be included in
|
|
1040
|
+
all copies or substantial portions of the Software.
|
|
1041
|
+
|
|
172
1042
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
173
1043
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
174
1044
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
@@ -259,6 +1129,168 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
259
1129
|
=========================================
|
|
260
1130
|
END OF concat-map@0.0.1 AND INFORMATION
|
|
261
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
|
+
|
|
262
1294
|
%% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
|
|
263
1295
|
=========================================
|
|
264
1296
|
(The MIT License)
|
|
@@ -307,6 +1339,30 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
307
1339
|
=========================================
|
|
308
1340
|
END OF debug@4.4.0 AND INFORMATION
|
|
309
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
|
+
|
|
310
1366
|
%% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
311
1367
|
=========================================
|
|
312
1368
|
MIT License
|
|
@@ -321,6 +1377,33 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
321
1377
|
=========================================
|
|
322
1378
|
END OF define-lazy-prop@2.0.0 AND INFORMATION
|
|
323
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
|
+
|
|
324
1407
|
%% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
325
1408
|
=========================================
|
|
326
1409
|
BSD 3-Clause License
|
|
@@ -383,11 +1466,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
383
1466
|
=========================================
|
|
384
1467
|
END OF dotenv@16.4.5 AND INFORMATION
|
|
385
1468
|
|
|
386
|
-
%%
|
|
1469
|
+
%% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
387
1470
|
=========================================
|
|
388
|
-
|
|
1471
|
+
MIT License
|
|
389
1472
|
|
|
390
|
-
Copyright (c)
|
|
1473
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
391
1474
|
|
|
392
1475
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
393
1476
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -396,58 +1479,50 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
396
1479
|
copies of the Software, and to permit persons to whom the Software is
|
|
397
1480
|
furnished to do so, subject to the following conditions:
|
|
398
1481
|
|
|
399
|
-
The above copyright notice and this permission notice shall be included in
|
|
400
|
-
|
|
1482
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1483
|
+
copies or substantial portions of the Software.
|
|
401
1484
|
|
|
402
1485
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
403
1486
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
404
1487
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
405
1488
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
406
1489
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
407
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
408
|
-
|
|
1490
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1491
|
+
SOFTWARE.
|
|
409
1492
|
=========================================
|
|
410
|
-
END OF
|
|
1493
|
+
END OF dunder-proto@1.0.1 AND INFORMATION
|
|
411
1494
|
|
|
412
|
-
%%
|
|
1495
|
+
%% ee-first@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
413
1496
|
=========================================
|
|
414
|
-
MIT License
|
|
1497
|
+
The MIT License (MIT)
|
|
415
1498
|
|
|
416
|
-
Copyright (c)
|
|
417
|
-
|
|
418
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
419
|
-
|
|
420
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
421
|
-
|
|
422
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
423
|
-
=========================================
|
|
424
|
-
END OF get-stream@5.2.0 AND INFORMATION
|
|
425
|
-
|
|
426
|
-
%% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
|
|
427
|
-
=========================================
|
|
428
|
-
The ISC License
|
|
1499
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
429
1500
|
|
|
430
|
-
|
|
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:
|
|
431
1507
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
copyright notice and this permission notice appear in all copies.
|
|
1508
|
+
The above copyright notice and this permission notice shall be included in
|
|
1509
|
+
all copies or substantial portions of the Software.
|
|
435
1510
|
|
|
436
|
-
THE SOFTWARE IS PROVIDED "AS IS"
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
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.
|
|
443
1518
|
=========================================
|
|
444
|
-
END OF
|
|
1519
|
+
END OF ee-first@1.1.1 AND INFORMATION
|
|
445
1520
|
|
|
446
|
-
%%
|
|
1521
|
+
%% encodeurl@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
447
1522
|
=========================================
|
|
448
1523
|
(The MIT License)
|
|
449
1524
|
|
|
450
|
-
Copyright (c)
|
|
1525
|
+
Copyright (c) 2016 Douglas Christopher Wilson
|
|
451
1526
|
|
|
452
1527
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
453
1528
|
a copy of this software and associated documentation files (the
|
|
@@ -468,11 +1543,13 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
468
1543
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
469
1544
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
470
1545
|
=========================================
|
|
471
|
-
END OF
|
|
1546
|
+
END OF encodeurl@2.0.0 AND INFORMATION
|
|
472
1547
|
|
|
473
|
-
%%
|
|
1548
|
+
%% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
474
1549
|
=========================================
|
|
475
|
-
|
|
1550
|
+
The MIT License (MIT)
|
|
1551
|
+
|
|
1552
|
+
Copyright (c) 2014 Mathias Buus
|
|
476
1553
|
|
|
477
1554
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
478
1555
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -492,116 +1569,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
492
1569
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
493
1570
|
THE SOFTWARE.
|
|
494
1571
|
=========================================
|
|
495
|
-
END OF
|
|
496
|
-
|
|
497
|
-
%% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
498
|
-
=========================================
|
|
499
|
-
MIT License
|
|
500
|
-
|
|
501
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
502
|
-
|
|
503
|
-
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:
|
|
504
|
-
|
|
505
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
506
|
-
|
|
507
|
-
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.
|
|
508
|
-
=========================================
|
|
509
|
-
END OF is-docker@2.2.1 AND INFORMATION
|
|
1572
|
+
END OF end-of-stream@1.4.4 AND INFORMATION
|
|
510
1573
|
|
|
511
|
-
%%
|
|
1574
|
+
%% es-define-property@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
512
1575
|
=========================================
|
|
513
1576
|
MIT License
|
|
514
1577
|
|
|
515
|
-
Copyright (c)
|
|
516
|
-
|
|
517
|
-
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:
|
|
518
|
-
|
|
519
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
520
|
-
|
|
521
|
-
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.
|
|
522
|
-
=========================================
|
|
523
|
-
END OF is-wsl@2.2.0 AND INFORMATION
|
|
524
|
-
|
|
525
|
-
%% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
526
|
-
=========================================
|
|
527
|
-
Copyright (c) 2014, Eugene Ware
|
|
528
|
-
All rights reserved.
|
|
529
|
-
|
|
530
|
-
Redistribution and use in source and binary forms, with or without
|
|
531
|
-
modification, are permitted provided that the following conditions are met:
|
|
532
|
-
|
|
533
|
-
1. Redistributions of source code must retain the above copyright
|
|
534
|
-
notice, this list of conditions and the following disclaimer.
|
|
535
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
536
|
-
notice, this list of conditions and the following disclaimer in the
|
|
537
|
-
documentation and/or other materials provided with the distribution.
|
|
538
|
-
3. Neither the name of Eugene Ware nor the names of its contributors
|
|
539
|
-
may be used to endorse or promote products derived from this software
|
|
540
|
-
without specific prior written permission.
|
|
541
|
-
|
|
542
|
-
THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
|
|
543
|
-
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
544
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
545
|
-
DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
|
|
546
|
-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
547
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
548
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
549
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
550
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
551
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
552
|
-
=========================================
|
|
553
|
-
END OF jpeg-js@0.4.4 AND INFORMATION
|
|
554
|
-
|
|
555
|
-
%% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
556
|
-
=========================================
|
|
557
|
-
Licensing
|
|
558
|
-
---------
|
|
559
|
-
|
|
560
|
-
This software is covered under the following copyright:
|
|
561
|
-
|
|
562
|
-
/*
|
|
563
|
-
* Copyright (c) 2003-2005 Tom Wu
|
|
564
|
-
* All Rights Reserved.
|
|
565
|
-
*
|
|
566
|
-
* Permission is hereby granted, free of charge, to any person obtaining
|
|
567
|
-
* a copy of this software and associated documentation files (the
|
|
568
|
-
* "Software"), to deal in the Software without restriction, including
|
|
569
|
-
* without limitation the rights to use, copy, modify, merge, publish,
|
|
570
|
-
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
571
|
-
* permit persons to whom the Software is furnished to do so, subject to
|
|
572
|
-
* the following conditions:
|
|
573
|
-
*
|
|
574
|
-
* The above copyright notice and this permission notice shall be
|
|
575
|
-
* included in all copies or substantial portions of the Software.
|
|
576
|
-
*
|
|
577
|
-
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
578
|
-
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
579
|
-
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
580
|
-
*
|
|
581
|
-
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
582
|
-
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
583
|
-
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
584
|
-
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
585
|
-
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
586
|
-
*
|
|
587
|
-
* In addition, the following condition applies:
|
|
588
|
-
*
|
|
589
|
-
* All redistributions must retain an intact copy of this copyright notice
|
|
590
|
-
* and disclaimer.
|
|
591
|
-
*/
|
|
592
|
-
|
|
593
|
-
Address all questions regarding this license to:
|
|
594
|
-
|
|
595
|
-
Tom Wu
|
|
596
|
-
tjw@cs.Stanford.EDU
|
|
597
|
-
=========================================
|
|
598
|
-
END OF jsbn@1.1.0 AND INFORMATION
|
|
599
|
-
|
|
600
|
-
%% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
601
|
-
=========================================
|
|
602
|
-
The MIT License (MIT)
|
|
603
|
-
|
|
604
|
-
Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
|
|
1578
|
+
Copyright (c) 2024 Jordan Harband
|
|
605
1579
|
|
|
606
1580
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
607
1581
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -610,44 +1584,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
610
1584
|
copies of the Software, and to permit persons to whom the Software is
|
|
611
1585
|
furnished to do so, subject to the following conditions:
|
|
612
1586
|
|
|
613
|
-
The above copyright notice and this permission notice shall be included in
|
|
614
|
-
|
|
1587
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1588
|
+
copies or substantial portions of the Software.
|
|
615
1589
|
|
|
616
1590
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
617
1591
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
618
1592
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
619
1593
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
620
1594
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
621
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
622
|
-
|
|
623
|
-
=========================================
|
|
624
|
-
END OF mime@3.0.0 AND INFORMATION
|
|
625
|
-
|
|
626
|
-
%% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
627
|
-
=========================================
|
|
628
|
-
The ISC License
|
|
629
|
-
|
|
630
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
631
|
-
|
|
632
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
633
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
634
|
-
copyright notice and this permission notice appear in all copies.
|
|
635
|
-
|
|
636
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
637
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
638
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
639
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
640
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
641
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
642
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1595
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1596
|
+
SOFTWARE.
|
|
643
1597
|
=========================================
|
|
644
|
-
END OF
|
|
1598
|
+
END OF es-define-property@1.0.1 AND INFORMATION
|
|
645
1599
|
|
|
646
|
-
%%
|
|
1600
|
+
%% es-errors@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
647
1601
|
=========================================
|
|
648
|
-
|
|
1602
|
+
MIT License
|
|
649
1603
|
|
|
650
|
-
Copyright (c)
|
|
1604
|
+
Copyright (c) 2024 Jordan Harband
|
|
651
1605
|
|
|
652
1606
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
653
1607
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -667,13 +1621,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
667
1621
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
668
1622
|
SOFTWARE.
|
|
669
1623
|
=========================================
|
|
670
|
-
END OF
|
|
1624
|
+
END OF es-errors@1.3.0 AND INFORMATION
|
|
671
1625
|
|
|
672
|
-
%%
|
|
1626
|
+
%% es-object-atoms@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
673
1627
|
=========================================
|
|
674
|
-
|
|
1628
|
+
MIT License
|
|
675
1629
|
|
|
676
|
-
Copyright (c)
|
|
1630
|
+
Copyright (c) 2024 Jordan Harband
|
|
677
1631
|
|
|
678
1632
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
679
1633
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -693,55 +1647,103 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
693
1647
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
694
1648
|
SOFTWARE.
|
|
695
1649
|
=========================================
|
|
696
|
-
END OF
|
|
1650
|
+
END OF es-object-atoms@1.1.1 AND INFORMATION
|
|
697
1651
|
|
|
698
|
-
%%
|
|
1652
|
+
%% escape-html@1.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
699
1653
|
=========================================
|
|
700
|
-
The
|
|
1654
|
+
(The MIT License)
|
|
701
1655
|
|
|
702
|
-
Copyright (c)
|
|
1656
|
+
Copyright (c) 2012-2013 TJ Holowaychuk
|
|
1657
|
+
Copyright (c) 2015 Andreas Lubbe
|
|
1658
|
+
Copyright (c) 2015 Tiancheng "Timothy" Gu
|
|
703
1659
|
|
|
704
|
-
Permission
|
|
705
|
-
|
|
706
|
-
|
|
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:
|
|
707
1667
|
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
IN
|
|
1668
|
+
The above copyright notice and this permission notice shall be
|
|
1669
|
+
included in all copies or substantial portions of the Software.
|
|
1670
|
+
|
|
1671
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1672
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1673
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1674
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1675
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1676
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1677
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
715
1678
|
=========================================
|
|
716
|
-
END OF
|
|
1679
|
+
END OF escape-html@1.0.3 AND INFORMATION
|
|
717
1680
|
|
|
718
|
-
%%
|
|
1681
|
+
%% etag@1.8.1 NOTICES AND INFORMATION BEGIN HERE
|
|
719
1682
|
=========================================
|
|
720
|
-
MIT License
|
|
1683
|
+
(The MIT License)
|
|
721
1684
|
|
|
722
|
-
Copyright (c)
|
|
1685
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
723
1686
|
|
|
724
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
1687
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1688
|
+
a copy of this software and associated documentation files (the
|
|
1689
|
+
'Software'), to deal in the Software without restriction, including
|
|
1690
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1691
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1692
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1693
|
+
the following conditions:
|
|
725
1694
|
|
|
726
|
-
The above copyright notice and this permission notice shall be
|
|
1695
|
+
The above copyright notice and this permission notice shall be
|
|
1696
|
+
included in all copies or substantial portions of the Software.
|
|
727
1697
|
|
|
728
|
-
THE SOFTWARE IS PROVIDED
|
|
1698
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1699
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1700
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1701
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1702
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1703
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1704
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
729
1705
|
=========================================
|
|
730
|
-
END OF
|
|
1706
|
+
END OF etag@1.8.1 AND INFORMATION
|
|
731
1707
|
|
|
732
|
-
%%
|
|
1708
|
+
%% eventsource-parser@3.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
733
1709
|
=========================================
|
|
734
|
-
|
|
1710
|
+
MIT License
|
|
735
1711
|
|
|
736
|
-
Copyright (c)
|
|
1712
|
+
Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
|
|
737
1713
|
|
|
738
|
-
Permission is hereby granted, free of charge, to any person
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
1714
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1715
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1716
|
+
in the Software without restriction, including without limitation the rights
|
|
1717
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1718
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1719
|
+
furnished to do so, subject to the following conditions:
|
|
1720
|
+
|
|
1721
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1722
|
+
copies or substantial portions of the Software.
|
|
1723
|
+
|
|
1724
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1725
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1726
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1727
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1728
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1729
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1730
|
+
SOFTWARE.
|
|
1731
|
+
=========================================
|
|
1732
|
+
END OF eventsource-parser@3.0.3 AND INFORMATION
|
|
1733
|
+
|
|
1734
|
+
%% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
1735
|
+
=========================================
|
|
1736
|
+
The MIT License
|
|
1737
|
+
|
|
1738
|
+
Copyright (c) EventSource GitHub organisation
|
|
1739
|
+
|
|
1740
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1741
|
+
a copy of this software and associated documentation files (the
|
|
1742
|
+
"Software"), to deal in the Software without restriction, including
|
|
1743
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1744
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1745
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1746
|
+
the following conditions:
|
|
745
1747
|
|
|
746
1748
|
The above copyright notice and this permission notice shall be
|
|
747
1749
|
included in all copies or substantial portions of the Software.
|
|
@@ -749,18 +1751,1808 @@ included in all copies or substantial portions of the Software.
|
|
|
749
1751
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
750
1752
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
751
1753
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
752
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
1754
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1755
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1756
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1757
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1758
|
+
=========================================
|
|
1759
|
+
END OF eventsource@3.0.7 AND INFORMATION
|
|
1760
|
+
|
|
1761
|
+
%% express-rate-limit@7.5.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1762
|
+
=========================================
|
|
1763
|
+
# MIT License
|
|
1764
|
+
|
|
1765
|
+
Copyright 2023 Nathan Friedly, Vedant K
|
|
1766
|
+
|
|
1767
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1768
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1769
|
+
the Software without restriction, including without limitation the rights to
|
|
1770
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1771
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1772
|
+
subject to the following conditions:
|
|
1773
|
+
|
|
1774
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1775
|
+
copies or substantial portions of the Software.
|
|
1776
|
+
|
|
1777
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1778
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1779
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1780
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1781
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1782
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1783
|
+
=========================================
|
|
1784
|
+
END OF express-rate-limit@7.5.1 AND INFORMATION
|
|
1785
|
+
|
|
1786
|
+
%% express@5.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1787
|
+
=========================================
|
|
1788
|
+
(The MIT License)
|
|
1789
|
+
|
|
1790
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
1791
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
1792
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1793
|
+
|
|
1794
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1795
|
+
a copy of this software and associated documentation files (the
|
|
1796
|
+
'Software'), to deal in the Software without restriction, including
|
|
1797
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1798
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1799
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1800
|
+
the following conditions:
|
|
1801
|
+
|
|
1802
|
+
The above copyright notice and this permission notice shall be
|
|
1803
|
+
included in all copies or substantial portions of the Software.
|
|
1804
|
+
|
|
1805
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1806
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1807
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1808
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1809
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1810
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1811
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1812
|
+
=========================================
|
|
1813
|
+
END OF express@5.1.0 AND INFORMATION
|
|
1814
|
+
|
|
1815
|
+
%% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1816
|
+
=========================================
|
|
1817
|
+
MIT License
|
|
1818
|
+
|
|
1819
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
1820
|
+
|
|
1821
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1822
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1823
|
+
in the Software without restriction, including without limitation the rights
|
|
1824
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1825
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1826
|
+
furnished to do so, subject to the following conditions:
|
|
1827
|
+
|
|
1828
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1829
|
+
copies or substantial portions of the Software.
|
|
1830
|
+
|
|
1831
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1832
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1833
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1834
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1835
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1836
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
756
1837
|
SOFTWARE.
|
|
757
1838
|
=========================================
|
|
758
|
-
END OF
|
|
1839
|
+
END OF fast-deep-equal@3.1.3 AND INFORMATION
|
|
759
1840
|
|
|
760
|
-
%%
|
|
1841
|
+
%% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
761
1842
|
=========================================
|
|
762
|
-
|
|
763
|
-
|
|
1843
|
+
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
|
|
1844
|
+
Copyright (c) 2021-present The Fastify team
|
|
1845
|
+
All rights reserved.
|
|
1846
|
+
|
|
1847
|
+
The Fastify team members are listed at https://github.com/fastify/fastify#team.
|
|
1848
|
+
|
|
1849
|
+
Redistribution and use in source and binary forms, with or without
|
|
1850
|
+
modification, are permitted provided that the following conditions are met:
|
|
1851
|
+
* Redistributions of source code must retain the above copyright
|
|
1852
|
+
notice, this list of conditions and the following disclaimer.
|
|
1853
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1854
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1855
|
+
documentation and/or other materials provided with the distribution.
|
|
1856
|
+
* The names of any contributors may not be used to endorse or promote
|
|
1857
|
+
products derived from this software without specific prior written
|
|
1858
|
+
permission.
|
|
1859
|
+
|
|
1860
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
1861
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
1862
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1863
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
|
|
1864
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
1865
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
1866
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
1867
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1868
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1869
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1870
|
+
|
|
1871
|
+
* * *
|
|
1872
|
+
|
|
1873
|
+
The complete list of contributors can be found at:
|
|
1874
|
+
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
1875
|
+
=========================================
|
|
1876
|
+
END OF fast-uri@3.1.0 AND INFORMATION
|
|
1877
|
+
|
|
1878
|
+
%% finalhandler@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1879
|
+
=========================================
|
|
1880
|
+
(The MIT License)
|
|
1881
|
+
|
|
1882
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1883
|
+
|
|
1884
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1885
|
+
a copy of this software and associated documentation files (the
|
|
1886
|
+
'Software'), to deal in the Software without restriction, including
|
|
1887
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1888
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1889
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1890
|
+
the following conditions:
|
|
1891
|
+
|
|
1892
|
+
The above copyright notice and this permission notice shall be
|
|
1893
|
+
included in all copies or substantial portions of the Software.
|
|
1894
|
+
|
|
1895
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1896
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1897
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1898
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1899
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1900
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1901
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1902
|
+
=========================================
|
|
1903
|
+
END OF finalhandler@2.1.0 AND INFORMATION
|
|
1904
|
+
|
|
1905
|
+
%% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1906
|
+
=========================================
|
|
1907
|
+
(The MIT License)
|
|
1908
|
+
|
|
1909
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
1910
|
+
|
|
1911
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1912
|
+
a copy of this software and associated documentation files (the
|
|
1913
|
+
'Software'), to deal in the Software without restriction, including
|
|
1914
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1915
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1916
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1917
|
+
the following conditions:
|
|
1918
|
+
|
|
1919
|
+
The above copyright notice and this permission notice shall be
|
|
1920
|
+
included in all copies or substantial portions of the Software.
|
|
1921
|
+
|
|
1922
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1923
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1924
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1925
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1926
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1927
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1928
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1929
|
+
=========================================
|
|
1930
|
+
END OF forwarded@0.2.0 AND INFORMATION
|
|
1931
|
+
|
|
1932
|
+
%% fresh@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1933
|
+
=========================================
|
|
1934
|
+
(The MIT License)
|
|
1935
|
+
|
|
1936
|
+
Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
|
|
1937
|
+
Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
1938
|
+
|
|
1939
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1940
|
+
a copy of this software and associated documentation files (the
|
|
1941
|
+
'Software'), to deal in the Software without restriction, including
|
|
1942
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1943
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1944
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1945
|
+
the following conditions:
|
|
1946
|
+
|
|
1947
|
+
The above copyright notice and this permission notice shall be
|
|
1948
|
+
included in all copies or substantial portions of the Software.
|
|
1949
|
+
|
|
1950
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1951
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1952
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1953
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1954
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1955
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1956
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1957
|
+
=========================================
|
|
1958
|
+
END OF fresh@2.0.0 AND INFORMATION
|
|
1959
|
+
|
|
1960
|
+
%% function-bind@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1961
|
+
=========================================
|
|
1962
|
+
Copyright (c) 2013 Raynos.
|
|
1963
|
+
|
|
1964
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1965
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1966
|
+
in the Software without restriction, including without limitation the rights
|
|
1967
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1968
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1969
|
+
furnished to do so, subject to the following conditions:
|
|
1970
|
+
|
|
1971
|
+
The above copyright notice and this permission notice shall be included in
|
|
1972
|
+
all copies or substantial portions of the Software.
|
|
1973
|
+
|
|
1974
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1975
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1976
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1977
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1978
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1979
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1980
|
+
THE SOFTWARE.
|
|
1981
|
+
=========================================
|
|
1982
|
+
END OF function-bind@1.1.2 AND INFORMATION
|
|
1983
|
+
|
|
1984
|
+
%% get-intrinsic@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1985
|
+
=========================================
|
|
1986
|
+
MIT License
|
|
1987
|
+
|
|
1988
|
+
Copyright (c) 2020 Jordan Harband
|
|
1989
|
+
|
|
1990
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1991
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1992
|
+
in the Software without restriction, including without limitation the rights
|
|
1993
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1994
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1995
|
+
furnished to do so, subject to the following conditions:
|
|
1996
|
+
|
|
1997
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1998
|
+
copies or substantial portions of the Software.
|
|
1999
|
+
|
|
2000
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2001
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2002
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2003
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2004
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2005
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2006
|
+
SOFTWARE.
|
|
2007
|
+
=========================================
|
|
2008
|
+
END OF get-intrinsic@1.3.0 AND INFORMATION
|
|
2009
|
+
|
|
2010
|
+
%% get-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2011
|
+
=========================================
|
|
2012
|
+
MIT License
|
|
2013
|
+
|
|
2014
|
+
Copyright (c) 2025 Jordan Harband
|
|
2015
|
+
|
|
2016
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2017
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2018
|
+
in the Software without restriction, including without limitation the rights
|
|
2019
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2020
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2021
|
+
furnished to do so, subject to the following conditions:
|
|
2022
|
+
|
|
2023
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2024
|
+
copies or substantial portions of the Software.
|
|
2025
|
+
|
|
2026
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2027
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2028
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2029
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2030
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2031
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2032
|
+
SOFTWARE.
|
|
2033
|
+
=========================================
|
|
2034
|
+
END OF get-proto@1.0.1 AND INFORMATION
|
|
2035
|
+
|
|
2036
|
+
%% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2037
|
+
=========================================
|
|
2038
|
+
MIT License
|
|
2039
|
+
|
|
2040
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2041
|
+
|
|
2042
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2043
|
+
|
|
2044
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2045
|
+
|
|
2046
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2047
|
+
=========================================
|
|
2048
|
+
END OF get-stream@5.2.0 AND INFORMATION
|
|
2049
|
+
|
|
2050
|
+
%% gopd@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2051
|
+
=========================================
|
|
2052
|
+
MIT License
|
|
2053
|
+
|
|
2054
|
+
Copyright (c) 2022 Jordan Harband
|
|
2055
|
+
|
|
2056
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2057
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2058
|
+
in the Software without restriction, including without limitation the rights
|
|
2059
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2060
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2061
|
+
furnished to do so, subject to the following conditions:
|
|
2062
|
+
|
|
2063
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2064
|
+
copies or substantial portions of the Software.
|
|
2065
|
+
|
|
2066
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2067
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2068
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2069
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2070
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2071
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2072
|
+
SOFTWARE.
|
|
2073
|
+
=========================================
|
|
2074
|
+
END OF gopd@1.2.0 AND INFORMATION
|
|
2075
|
+
|
|
2076
|
+
%% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
|
|
2077
|
+
=========================================
|
|
2078
|
+
The ISC License
|
|
2079
|
+
|
|
2080
|
+
Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
|
|
2081
|
+
|
|
2082
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2083
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2084
|
+
copyright notice and this permission notice appear in all copies.
|
|
2085
|
+
|
|
2086
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2087
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2088
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2089
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2090
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2091
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2092
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2093
|
+
=========================================
|
|
2094
|
+
END OF graceful-fs@4.2.10 AND INFORMATION
|
|
2095
|
+
|
|
2096
|
+
%% has-symbols@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2097
|
+
=========================================
|
|
2098
|
+
MIT License
|
|
2099
|
+
|
|
2100
|
+
Copyright (c) 2016 Jordan Harband
|
|
2101
|
+
|
|
2102
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2103
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2104
|
+
in the Software without restriction, including without limitation the rights
|
|
2105
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2106
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2107
|
+
furnished to do so, subject to the following conditions:
|
|
2108
|
+
|
|
2109
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2110
|
+
copies or substantial portions of the Software.
|
|
2111
|
+
|
|
2112
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2113
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2114
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2115
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2116
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2117
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2118
|
+
SOFTWARE.
|
|
2119
|
+
=========================================
|
|
2120
|
+
END OF has-symbols@1.1.0 AND INFORMATION
|
|
2121
|
+
|
|
2122
|
+
%% hasown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2123
|
+
=========================================
|
|
2124
|
+
MIT License
|
|
2125
|
+
|
|
2126
|
+
Copyright (c) Jordan Harband and contributors
|
|
2127
|
+
|
|
2128
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2129
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2130
|
+
in the Software without restriction, including without limitation the rights
|
|
2131
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2132
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2133
|
+
furnished to do so, subject to the following conditions:
|
|
2134
|
+
|
|
2135
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2136
|
+
copies or substantial portions of the Software.
|
|
2137
|
+
|
|
2138
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2139
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2140
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2141
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2142
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2143
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2144
|
+
SOFTWARE.
|
|
2145
|
+
=========================================
|
|
2146
|
+
END OF hasown@2.0.2 AND INFORMATION
|
|
2147
|
+
|
|
2148
|
+
%% hono@4.11.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2149
|
+
=========================================
|
|
2150
|
+
MIT License
|
|
2151
|
+
|
|
2152
|
+
Copyright (c) 2021 - present, Yusuke Wada and Hono contributors
|
|
2153
|
+
|
|
2154
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2155
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2156
|
+
in the Software without restriction, including without limitation the rights
|
|
2157
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2158
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2159
|
+
furnished to do so, subject to the following conditions:
|
|
2160
|
+
|
|
2161
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2162
|
+
copies or substantial portions of the Software.
|
|
2163
|
+
|
|
2164
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2165
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2166
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2167
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2168
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2169
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2170
|
+
SOFTWARE.
|
|
2171
|
+
=========================================
|
|
2172
|
+
END OF hono@4.11.3 AND INFORMATION
|
|
2173
|
+
|
|
2174
|
+
%% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2175
|
+
=========================================
|
|
2176
|
+
The MIT License (MIT)
|
|
2177
|
+
|
|
2178
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
2179
|
+
Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
|
|
2180
|
+
|
|
2181
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2182
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2183
|
+
in the Software without restriction, including without limitation the rights
|
|
2184
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2185
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2186
|
+
furnished to do so, subject to the following conditions:
|
|
2187
|
+
|
|
2188
|
+
The above copyright notice and this permission notice shall be included in
|
|
2189
|
+
all copies or substantial portions of the Software.
|
|
2190
|
+
|
|
2191
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2192
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2193
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2194
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2195
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2196
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2197
|
+
THE SOFTWARE.
|
|
2198
|
+
=========================================
|
|
2199
|
+
END OF http-errors@2.0.1 AND INFORMATION
|
|
2200
|
+
|
|
2201
|
+
%% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
2202
|
+
=========================================
|
|
2203
|
+
(The MIT License)
|
|
2204
|
+
|
|
2205
|
+
Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
|
|
2206
|
+
|
|
2207
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2208
|
+
a copy of this software and associated documentation files (the
|
|
2209
|
+
'Software'), to deal in the Software without restriction, including
|
|
2210
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2211
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2212
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2213
|
+
the following conditions:
|
|
2214
|
+
|
|
2215
|
+
The above copyright notice and this permission notice shall be
|
|
2216
|
+
included in all copies or substantial portions of the Software.
|
|
2217
|
+
|
|
2218
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2219
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2220
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2221
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2222
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2223
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2224
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2225
|
+
=========================================
|
|
2226
|
+
END OF https-proxy-agent@7.0.6 AND INFORMATION
|
|
2227
|
+
|
|
2228
|
+
%% iconv-lite@0.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2229
|
+
=========================================
|
|
2230
|
+
Copyright (c) 2011 Alexander Shtuchkin
|
|
2231
|
+
|
|
2232
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2233
|
+
a copy of this software and associated documentation files (the
|
|
2234
|
+
"Software"), to deal in the Software without restriction, including
|
|
2235
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2236
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2237
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2238
|
+
the following conditions:
|
|
2239
|
+
|
|
2240
|
+
The above copyright notice and this permission notice shall be
|
|
2241
|
+
included in all copies or substantial portions of the Software.
|
|
2242
|
+
|
|
2243
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2244
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2245
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2246
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
2247
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
2248
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
2249
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2250
|
+
=========================================
|
|
2251
|
+
END OF iconv-lite@0.7.0 AND INFORMATION
|
|
2252
|
+
|
|
2253
|
+
%% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2254
|
+
=========================================
|
|
2255
|
+
The ISC License
|
|
2256
|
+
|
|
2257
|
+
Copyright (c) Isaac Z. Schlueter
|
|
2258
|
+
|
|
2259
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2260
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2261
|
+
copyright notice and this permission notice appear in all copies.
|
|
2262
|
+
|
|
2263
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2264
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2265
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2266
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
2267
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
2268
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
2269
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
2270
|
+
=========================================
|
|
2271
|
+
END OF inherits@2.0.4 AND INFORMATION
|
|
2272
|
+
|
|
2273
|
+
%% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
2274
|
+
=========================================
|
|
2275
|
+
Copyright (C) 2011 by Beau Gunderson
|
|
2276
|
+
|
|
2277
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2278
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2279
|
+
in the Software without restriction, including without limitation the rights
|
|
2280
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2281
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2282
|
+
furnished to do so, subject to the following conditions:
|
|
2283
|
+
|
|
2284
|
+
The above copyright notice and this permission notice shall be included in
|
|
2285
|
+
all copies or substantial portions of the Software.
|
|
2286
|
+
|
|
2287
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2288
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2289
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2290
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2291
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2292
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2293
|
+
THE SOFTWARE.
|
|
2294
|
+
=========================================
|
|
2295
|
+
END OF ip-address@9.0.5 AND INFORMATION
|
|
2296
|
+
|
|
2297
|
+
%% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2298
|
+
=========================================
|
|
2299
|
+
Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
|
|
2300
|
+
|
|
2301
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2302
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2303
|
+
in the Software without restriction, including without limitation the rights
|
|
2304
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2305
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2306
|
+
furnished to do so, subject to the following conditions:
|
|
2307
|
+
|
|
2308
|
+
The above copyright notice and this permission notice shall be included in
|
|
2309
|
+
all copies or substantial portions of the Software.
|
|
2310
|
+
|
|
2311
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2312
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2313
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2314
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2315
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2316
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2317
|
+
THE SOFTWARE.
|
|
2318
|
+
=========================================
|
|
2319
|
+
END OF ipaddr.js@1.9.1 AND INFORMATION
|
|
2320
|
+
|
|
2321
|
+
%% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2322
|
+
=========================================
|
|
2323
|
+
MIT License
|
|
2324
|
+
|
|
2325
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2326
|
+
|
|
2327
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2328
|
+
|
|
2329
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2330
|
+
|
|
2331
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2332
|
+
=========================================
|
|
2333
|
+
END OF is-docker@2.2.1 AND INFORMATION
|
|
2334
|
+
|
|
2335
|
+
%% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2336
|
+
=========================================
|
|
2337
|
+
Copyright (c) 2014 Forbes Lindesay
|
|
2338
|
+
|
|
2339
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2340
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2341
|
+
in the Software without restriction, including without limitation the rights
|
|
2342
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2343
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2344
|
+
furnished to do so, subject to the following conditions:
|
|
2345
|
+
|
|
2346
|
+
The above copyright notice and this permission notice shall be included in
|
|
2347
|
+
all copies or substantial portions of the Software.
|
|
2348
|
+
|
|
2349
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2350
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2351
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2352
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2353
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2354
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2355
|
+
THE SOFTWARE.
|
|
2356
|
+
=========================================
|
|
2357
|
+
END OF is-promise@4.0.0 AND INFORMATION
|
|
2358
|
+
|
|
2359
|
+
%% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2360
|
+
=========================================
|
|
2361
|
+
MIT License
|
|
2362
|
+
|
|
2363
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2364
|
+
|
|
2365
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2366
|
+
|
|
2367
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2368
|
+
|
|
2369
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2370
|
+
=========================================
|
|
2371
|
+
END OF is-wsl@2.2.0 AND INFORMATION
|
|
2372
|
+
|
|
2373
|
+
%% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2374
|
+
=========================================
|
|
2375
|
+
The ISC License
|
|
2376
|
+
|
|
2377
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2378
|
+
|
|
2379
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2380
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2381
|
+
copyright notice and this permission notice appear in all copies.
|
|
2382
|
+
|
|
2383
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2384
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2385
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2386
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2387
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2388
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2389
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2390
|
+
=========================================
|
|
2391
|
+
END OF isexe@2.0.0 AND INFORMATION
|
|
2392
|
+
|
|
2393
|
+
%% jose@6.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2394
|
+
=========================================
|
|
2395
|
+
The MIT License (MIT)
|
|
2396
|
+
|
|
2397
|
+
Copyright (c) 2018 Filip Skokan
|
|
2398
|
+
|
|
2399
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2400
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2401
|
+
in the Software without restriction, including without limitation the rights
|
|
2402
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2403
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2404
|
+
furnished to do so, subject to the following conditions:
|
|
2405
|
+
|
|
2406
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2407
|
+
copies or substantial portions of the Software.
|
|
2408
|
+
|
|
2409
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2410
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2411
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2412
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2413
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2414
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2415
|
+
SOFTWARE.
|
|
2416
|
+
=========================================
|
|
2417
|
+
END OF jose@6.1.3 AND INFORMATION
|
|
2418
|
+
|
|
2419
|
+
%% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2420
|
+
=========================================
|
|
2421
|
+
Copyright (c) 2014, Eugene Ware
|
|
2422
|
+
All rights reserved.
|
|
2423
|
+
|
|
2424
|
+
Redistribution and use in source and binary forms, with or without
|
|
2425
|
+
modification, are permitted provided that the following conditions are met:
|
|
2426
|
+
|
|
2427
|
+
1. Redistributions of source code must retain the above copyright
|
|
2428
|
+
notice, this list of conditions and the following disclaimer.
|
|
2429
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
2430
|
+
notice, this list of conditions and the following disclaimer in the
|
|
2431
|
+
documentation and/or other materials provided with the distribution.
|
|
2432
|
+
3. Neither the name of Eugene Ware nor the names of its contributors
|
|
2433
|
+
may be used to endorse or promote products derived from this software
|
|
2434
|
+
without specific prior written permission.
|
|
2435
|
+
|
|
2436
|
+
THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
|
|
2437
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2438
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2439
|
+
DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
|
|
2440
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2441
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2442
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
2443
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2444
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2445
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2446
|
+
=========================================
|
|
2447
|
+
END OF jpeg-js@0.4.4 AND INFORMATION
|
|
2448
|
+
|
|
2449
|
+
%% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2450
|
+
=========================================
|
|
2451
|
+
Licensing
|
|
2452
|
+
---------
|
|
2453
|
+
|
|
2454
|
+
This software is covered under the following copyright:
|
|
2455
|
+
|
|
2456
|
+
/*
|
|
2457
|
+
* Copyright (c) 2003-2005 Tom Wu
|
|
2458
|
+
* All Rights Reserved.
|
|
2459
|
+
*
|
|
2460
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
2461
|
+
* a copy of this software and associated documentation files (the
|
|
2462
|
+
* "Software"), to deal in the Software without restriction, including
|
|
2463
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
|
2464
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
2465
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
|
2466
|
+
* the following conditions:
|
|
2467
|
+
*
|
|
2468
|
+
* The above copyright notice and this permission notice shall be
|
|
2469
|
+
* included in all copies or substantial portions of the Software.
|
|
2470
|
+
*
|
|
2471
|
+
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
2472
|
+
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
2473
|
+
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
2474
|
+
*
|
|
2475
|
+
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
2476
|
+
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
2477
|
+
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
2478
|
+
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
2479
|
+
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2480
|
+
*
|
|
2481
|
+
* In addition, the following condition applies:
|
|
2482
|
+
*
|
|
2483
|
+
* All redistributions must retain an intact copy of this copyright notice
|
|
2484
|
+
* and disclaimer.
|
|
2485
|
+
*/
|
|
2486
|
+
|
|
2487
|
+
Address all questions regarding this license to:
|
|
2488
|
+
|
|
2489
|
+
Tom Wu
|
|
2490
|
+
tjw@cs.Stanford.EDU
|
|
2491
|
+
=========================================
|
|
2492
|
+
END OF jsbn@1.1.0 AND INFORMATION
|
|
2493
|
+
|
|
2494
|
+
%% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2495
|
+
=========================================
|
|
2496
|
+
MIT License
|
|
2497
|
+
|
|
2498
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
2499
|
+
|
|
2500
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2501
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2502
|
+
in the Software without restriction, including without limitation the rights
|
|
2503
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2504
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2505
|
+
furnished to do so, subject to the following conditions:
|
|
2506
|
+
|
|
2507
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2508
|
+
copies or substantial portions of the Software.
|
|
2509
|
+
|
|
2510
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2511
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2512
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2513
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2514
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2515
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2516
|
+
SOFTWARE.
|
|
2517
|
+
=========================================
|
|
2518
|
+
END OF json-schema-traverse@1.0.0 AND INFORMATION
|
|
2519
|
+
|
|
2520
|
+
%% json-schema-typed@8.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2521
|
+
=========================================
|
|
2522
|
+
BSD 2-Clause License
|
|
2523
|
+
|
|
2524
|
+
Original source code is copyright (c) 2019-2025 Remy Rylan
|
|
2525
|
+
<https://github.com/RemyRylan>
|
|
2526
|
+
|
|
2527
|
+
All JSON Schema documentation and descriptions are copyright (c):
|
|
2528
|
+
|
|
2529
|
+
2009 [draft-0] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2530
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2531
|
+
|
|
2532
|
+
2009 [draft-1] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2533
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2534
|
+
|
|
2535
|
+
2010 [draft-2] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2536
|
+
and SitePen (USA) <https://www.sitepen.com/>.
|
|
2537
|
+
|
|
2538
|
+
2010 [draft-3] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
|
|
2539
|
+
Gary Court <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
|
|
2540
|
+
|
|
2541
|
+
2013 [draft-4] IETF Trust <https://www.ietf.org/>), Francis Galiegue
|
|
2542
|
+
<fgaliegue@gmail.com>, Kris Zyp <kris@sitepen.com>, Gary Court
|
|
2543
|
+
<gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
|
|
2544
|
+
|
|
2545
|
+
2018 [draft-7] IETF Trust <https://www.ietf.org/>, Austin Wright <aaa@bzfx.net>,
|
|
2546
|
+
Henry Andrews <henry@cloudflare.com>, Geraint Luff <luffgd@gmail.com>, and
|
|
2547
|
+
Cloudflare, Inc. <https://www.cloudflare.com/>.
|
|
2548
|
+
|
|
2549
|
+
2019 [draft-2019-09] IETF Trust <https://www.ietf.org/>, Austin Wright
|
|
2550
|
+
<aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
|
|
2551
|
+
<bh7@sanger.ac.uk>, and Greg Dennis <gregsdennis@yahoo.com>.
|
|
2552
|
+
|
|
2553
|
+
2020 [draft-2020-12] IETF Trust <https://www.ietf.org/>, Austin Wright
|
|
2554
|
+
<aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
|
|
2555
|
+
<ben@jsonschema.dev>, and Greg Dennis <gregsdennis@yahoo.com>.
|
|
2556
|
+
|
|
2557
|
+
All rights reserved.
|
|
2558
|
+
|
|
2559
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
2560
|
+
are permitted provided that the following conditions are met:
|
|
2561
|
+
|
|
2562
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2563
|
+
list of conditions and the following disclaimer.
|
|
2564
|
+
|
|
2565
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2566
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2567
|
+
and/or other materials provided with the distribution.
|
|
2568
|
+
|
|
2569
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
2570
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2571
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2572
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
2573
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2574
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2575
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
2576
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2577
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2578
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2579
|
+
=========================================
|
|
2580
|
+
END OF json-schema-typed@8.0.2 AND INFORMATION
|
|
2581
|
+
|
|
2582
|
+
%% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2583
|
+
=========================================
|
|
2584
|
+
MIT License
|
|
2585
|
+
|
|
2586
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
2587
|
+
|
|
2588
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2589
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2590
|
+
in the Software without restriction, including without limitation the rights
|
|
2591
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2592
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2593
|
+
furnished to do so, subject to the following conditions:
|
|
2594
|
+
|
|
2595
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2596
|
+
copies or substantial portions of the Software.
|
|
2597
|
+
|
|
2598
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2599
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2600
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2601
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2602
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2603
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2604
|
+
SOFTWARE.
|
|
2605
|
+
=========================================
|
|
2606
|
+
END OF math-intrinsics@1.1.0 AND INFORMATION
|
|
2607
|
+
|
|
2608
|
+
%% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2609
|
+
=========================================
|
|
2610
|
+
(The MIT License)
|
|
2611
|
+
|
|
2612
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
2613
|
+
|
|
2614
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2615
|
+
a copy of this software and associated documentation files (the
|
|
2616
|
+
'Software'), to deal in the Software without restriction, including
|
|
2617
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2618
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2619
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2620
|
+
the following conditions:
|
|
2621
|
+
|
|
2622
|
+
The above copyright notice and this permission notice shall be
|
|
2623
|
+
included in all copies or substantial portions of the Software.
|
|
2624
|
+
|
|
2625
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2626
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2627
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2628
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2629
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2630
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2631
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2632
|
+
=========================================
|
|
2633
|
+
END OF media-typer@1.1.0 AND INFORMATION
|
|
2634
|
+
|
|
2635
|
+
%% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2636
|
+
=========================================
|
|
2637
|
+
MIT License
|
|
2638
|
+
|
|
2639
|
+
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
2640
|
+
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2641
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2642
|
+
|
|
2643
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2644
|
+
|
|
2645
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2646
|
+
|
|
2647
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2648
|
+
=========================================
|
|
2649
|
+
END OF merge-descriptors@2.0.0 AND INFORMATION
|
|
2650
|
+
|
|
2651
|
+
%% mime-db@1.54.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2652
|
+
=========================================
|
|
2653
|
+
(The MIT License)
|
|
2654
|
+
|
|
2655
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2656
|
+
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2657
|
+
|
|
2658
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2659
|
+
a copy of this software and associated documentation files (the
|
|
2660
|
+
'Software'), to deal in the Software without restriction, including
|
|
2661
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2662
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2663
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2664
|
+
the following conditions:
|
|
2665
|
+
|
|
2666
|
+
The above copyright notice and this permission notice shall be
|
|
2667
|
+
included in all copies or substantial portions of the Software.
|
|
2668
|
+
|
|
2669
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2670
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2671
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2672
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2673
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2674
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2675
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2676
|
+
=========================================
|
|
2677
|
+
END OF mime-db@1.54.0 AND INFORMATION
|
|
2678
|
+
|
|
2679
|
+
%% mime-types@3.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2680
|
+
=========================================
|
|
2681
|
+
(The MIT License)
|
|
2682
|
+
|
|
2683
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2684
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2685
|
+
|
|
2686
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2687
|
+
a copy of this software and associated documentation files (the
|
|
2688
|
+
'Software'), to deal in the Software without restriction, including
|
|
2689
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2690
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2691
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2692
|
+
the following conditions:
|
|
2693
|
+
|
|
2694
|
+
The above copyright notice and this permission notice shall be
|
|
2695
|
+
included in all copies or substantial portions of the Software.
|
|
2696
|
+
|
|
2697
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2698
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2699
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2700
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2701
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2702
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2703
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2704
|
+
=========================================
|
|
2705
|
+
END OF mime-types@3.0.1 AND INFORMATION
|
|
2706
|
+
|
|
2707
|
+
%% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2708
|
+
=========================================
|
|
2709
|
+
The MIT License (MIT)
|
|
2710
|
+
|
|
2711
|
+
Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
|
|
2712
|
+
|
|
2713
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2714
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2715
|
+
in the Software without restriction, including without limitation the rights
|
|
2716
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2717
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2718
|
+
furnished to do so, subject to the following conditions:
|
|
2719
|
+
|
|
2720
|
+
The above copyright notice and this permission notice shall be included in
|
|
2721
|
+
all copies or substantial portions of the Software.
|
|
2722
|
+
|
|
2723
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2724
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2725
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2726
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2727
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2728
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2729
|
+
THE SOFTWARE.
|
|
2730
|
+
=========================================
|
|
2731
|
+
END OF mime@3.0.0 AND INFORMATION
|
|
2732
|
+
|
|
2733
|
+
%% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2734
|
+
=========================================
|
|
2735
|
+
The ISC License
|
|
2736
|
+
|
|
2737
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2738
|
+
|
|
2739
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2740
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2741
|
+
copyright notice and this permission notice appear in all copies.
|
|
2742
|
+
|
|
2743
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2744
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2745
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2746
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2747
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2748
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2749
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2750
|
+
=========================================
|
|
2751
|
+
END OF minimatch@3.1.2 AND INFORMATION
|
|
2752
|
+
|
|
2753
|
+
%% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2754
|
+
=========================================
|
|
2755
|
+
The MIT License (MIT)
|
|
2756
|
+
|
|
2757
|
+
Copyright (c) 2016 Zeit, Inc.
|
|
2758
|
+
|
|
2759
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2760
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2761
|
+
in the Software without restriction, including without limitation the rights
|
|
2762
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2763
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2764
|
+
furnished to do so, subject to the following conditions:
|
|
2765
|
+
|
|
2766
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2767
|
+
copies or substantial portions of the Software.
|
|
2768
|
+
|
|
2769
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2770
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2771
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2772
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2773
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2774
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2775
|
+
SOFTWARE.
|
|
2776
|
+
=========================================
|
|
2777
|
+
END OF ms@2.1.2 AND INFORMATION
|
|
2778
|
+
|
|
2779
|
+
%% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2780
|
+
=========================================
|
|
2781
|
+
The MIT License (MIT)
|
|
2782
|
+
|
|
2783
|
+
Copyright (c) 2020 Vercel, Inc.
|
|
2784
|
+
|
|
2785
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2786
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2787
|
+
in the Software without restriction, including without limitation the rights
|
|
2788
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2789
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2790
|
+
furnished to do so, subject to the following conditions:
|
|
2791
|
+
|
|
2792
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2793
|
+
copies or substantial portions of the Software.
|
|
2794
|
+
|
|
2795
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2796
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2797
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2798
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2799
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2800
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2801
|
+
SOFTWARE.
|
|
2802
|
+
=========================================
|
|
2803
|
+
END OF ms@2.1.3 AND INFORMATION
|
|
2804
|
+
|
|
2805
|
+
%% negotiator@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2806
|
+
=========================================
|
|
2807
|
+
(The MIT License)
|
|
2808
|
+
|
|
2809
|
+
Copyright (c) 2012-2014 Federico Romero
|
|
2810
|
+
Copyright (c) 2012-2014 Isaac Z. Schlueter
|
|
2811
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson
|
|
2812
|
+
|
|
2813
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2814
|
+
a copy of this software and associated documentation files (the
|
|
2815
|
+
'Software'), to deal in the Software without restriction, including
|
|
2816
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2817
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2818
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2819
|
+
the following conditions:
|
|
2820
|
+
|
|
2821
|
+
The above copyright notice and this permission notice shall be
|
|
2822
|
+
included in all copies or substantial portions of the Software.
|
|
2823
|
+
|
|
2824
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2825
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2826
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2827
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2828
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2829
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2830
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2831
|
+
=========================================
|
|
2832
|
+
END OF negotiator@1.0.0 AND INFORMATION
|
|
2833
|
+
|
|
2834
|
+
%% object-assign@4.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2835
|
+
=========================================
|
|
2836
|
+
The MIT License (MIT)
|
|
2837
|
+
|
|
2838
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2839
|
+
|
|
2840
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2841
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2842
|
+
in the Software without restriction, including without limitation the rights
|
|
2843
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2844
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2845
|
+
furnished to do so, subject to the following conditions:
|
|
2846
|
+
|
|
2847
|
+
The above copyright notice and this permission notice shall be included in
|
|
2848
|
+
all copies or substantial portions of the Software.
|
|
2849
|
+
|
|
2850
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2851
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2852
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2853
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2854
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2855
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2856
|
+
THE SOFTWARE.
|
|
2857
|
+
=========================================
|
|
2858
|
+
END OF object-assign@4.1.1 AND INFORMATION
|
|
2859
|
+
|
|
2860
|
+
%% object-inspect@1.13.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2861
|
+
=========================================
|
|
2862
|
+
MIT License
|
|
2863
|
+
|
|
2864
|
+
Copyright (c) 2013 James Halliday
|
|
2865
|
+
|
|
2866
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2867
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2868
|
+
in the Software without restriction, including without limitation the rights
|
|
2869
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2870
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2871
|
+
furnished to do so, subject to the following conditions:
|
|
2872
|
+
|
|
2873
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2874
|
+
copies or substantial portions of the Software.
|
|
2875
|
+
|
|
2876
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2877
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2878
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2879
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2880
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2881
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2882
|
+
SOFTWARE.
|
|
2883
|
+
=========================================
|
|
2884
|
+
END OF object-inspect@1.13.4 AND INFORMATION
|
|
2885
|
+
|
|
2886
|
+
%% on-finished@2.4.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2887
|
+
=========================================
|
|
2888
|
+
(The MIT License)
|
|
2889
|
+
|
|
2890
|
+
Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
|
|
2891
|
+
Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2892
|
+
|
|
2893
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2894
|
+
a copy of this software and associated documentation files (the
|
|
2895
|
+
'Software'), to deal in the Software without restriction, including
|
|
2896
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2897
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2898
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2899
|
+
the following conditions:
|
|
2900
|
+
|
|
2901
|
+
The above copyright notice and this permission notice shall be
|
|
2902
|
+
included in all copies or substantial portions of the Software.
|
|
2903
|
+
|
|
2904
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2905
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2906
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2907
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2908
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2909
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2910
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2911
|
+
=========================================
|
|
2912
|
+
END OF on-finished@2.4.1 AND INFORMATION
|
|
2913
|
+
|
|
2914
|
+
%% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2915
|
+
=========================================
|
|
2916
|
+
The ISC License
|
|
2917
|
+
|
|
2918
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2919
|
+
|
|
2920
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2921
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2922
|
+
copyright notice and this permission notice appear in all copies.
|
|
2923
|
+
|
|
2924
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2925
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2926
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2927
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2928
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2929
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2930
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2931
|
+
=========================================
|
|
2932
|
+
END OF once@1.4.0 AND INFORMATION
|
|
2933
|
+
|
|
2934
|
+
%% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2935
|
+
=========================================
|
|
2936
|
+
MIT License
|
|
2937
|
+
|
|
2938
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2939
|
+
|
|
2940
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2941
|
+
|
|
2942
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2943
|
+
|
|
2944
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2945
|
+
=========================================
|
|
2946
|
+
END OF open@8.4.0 AND INFORMATION
|
|
2947
|
+
|
|
2948
|
+
%% parseurl@1.3.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2949
|
+
=========================================
|
|
2950
|
+
(The MIT License)
|
|
2951
|
+
|
|
2952
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2953
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2954
|
+
|
|
2955
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2956
|
+
a copy of this software and associated documentation files (the
|
|
2957
|
+
'Software'), to deal in the Software without restriction, including
|
|
2958
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2959
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2960
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2961
|
+
the following conditions:
|
|
2962
|
+
|
|
2963
|
+
The above copyright notice and this permission notice shall be
|
|
2964
|
+
included in all copies or substantial portions of the Software.
|
|
2965
|
+
|
|
2966
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2967
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2968
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2969
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2970
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2971
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2972
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2973
|
+
=========================================
|
|
2974
|
+
END OF parseurl@1.3.3 AND INFORMATION
|
|
2975
|
+
|
|
2976
|
+
%% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2977
|
+
=========================================
|
|
2978
|
+
MIT License
|
|
2979
|
+
|
|
2980
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
2981
|
+
|
|
2982
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2983
|
+
|
|
2984
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2985
|
+
|
|
2986
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2987
|
+
=========================================
|
|
2988
|
+
END OF path-key@3.1.1 AND INFORMATION
|
|
2989
|
+
|
|
2990
|
+
%% path-to-regexp@8.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2991
|
+
=========================================
|
|
2992
|
+
The MIT License (MIT)
|
|
2993
|
+
|
|
2994
|
+
Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
|
|
2995
|
+
|
|
2996
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2997
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2998
|
+
in the Software without restriction, including without limitation the rights
|
|
2999
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3000
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3001
|
+
furnished to do so, subject to the following conditions:
|
|
3002
|
+
|
|
3003
|
+
The above copyright notice and this permission notice shall be included in
|
|
3004
|
+
all copies or substantial portions of the Software.
|
|
3005
|
+
|
|
3006
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3007
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3008
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3009
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3010
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3011
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3012
|
+
THE SOFTWARE.
|
|
3013
|
+
=========================================
|
|
3014
|
+
END OF path-to-regexp@8.2.0 AND INFORMATION
|
|
3015
|
+
|
|
3016
|
+
%% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3017
|
+
=========================================
|
|
3018
|
+
The MIT License (Expat)
|
|
3019
|
+
|
|
3020
|
+
Copyright (c) 2014 Andrew Kelley
|
|
3021
|
+
|
|
3022
|
+
Permission is hereby granted, free of charge, to any person
|
|
3023
|
+
obtaining a copy of this software and associated documentation files
|
|
3024
|
+
(the "Software"), to deal in the Software without restriction,
|
|
3025
|
+
including without limitation the rights to use, copy, modify, merge,
|
|
3026
|
+
publish, distribute, sublicense, and/or sell copies of the Software,
|
|
3027
|
+
and to permit persons to whom the Software is furnished to do so,
|
|
3028
|
+
subject to the following conditions:
|
|
3029
|
+
|
|
3030
|
+
The above copyright notice and this permission notice shall be
|
|
3031
|
+
included in all copies or substantial portions of the Software.
|
|
3032
|
+
|
|
3033
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3034
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3035
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3036
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
3037
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
3038
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3039
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3040
|
+
SOFTWARE.
|
|
3041
|
+
=========================================
|
|
3042
|
+
END OF pend@1.2.0 AND INFORMATION
|
|
3043
|
+
|
|
3044
|
+
%% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3045
|
+
=========================================
|
|
3046
|
+
MIT License
|
|
3047
|
+
|
|
3048
|
+
Copyright (c) 2019
|
|
3049
|
+
|
|
3050
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3051
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3052
|
+
in the Software without restriction, including without limitation the rights
|
|
3053
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3054
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3055
|
+
furnished to do so, subject to the following conditions:
|
|
3056
|
+
|
|
3057
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3058
|
+
copies or substantial portions of the Software.
|
|
3059
|
+
|
|
3060
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3061
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3062
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3063
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3064
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3065
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3066
|
+
SOFTWARE.
|
|
3067
|
+
=========================================
|
|
3068
|
+
END OF pkce-challenge@5.0.0 AND INFORMATION
|
|
3069
|
+
|
|
3070
|
+
%% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3071
|
+
=========================================
|
|
3072
|
+
pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
|
|
3073
|
+
pngjs derived work Copyright (c) 2012 Kuba Niegowski
|
|
3074
|
+
|
|
3075
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3076
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3077
|
+
in the Software without restriction, including without limitation the rights
|
|
3078
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3079
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3080
|
+
furnished to do so, subject to the following conditions:
|
|
3081
|
+
|
|
3082
|
+
The above copyright notice and this permission notice shall be included in
|
|
3083
|
+
all copies or substantial portions of the Software.
|
|
3084
|
+
|
|
3085
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3086
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3087
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3088
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3089
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3090
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3091
|
+
THE SOFTWARE.
|
|
3092
|
+
=========================================
|
|
3093
|
+
END OF pngjs@6.0.0 AND INFORMATION
|
|
3094
|
+
|
|
3095
|
+
%% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3096
|
+
=========================================
|
|
3097
|
+
(The MIT License)
|
|
3098
|
+
|
|
3099
|
+
Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
3100
|
+
|
|
3101
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3102
|
+
a copy of this software and associated documentation files (the
|
|
3103
|
+
'Software'), to deal in the Software without restriction, including
|
|
3104
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3105
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3106
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3107
|
+
the following conditions:
|
|
3108
|
+
|
|
3109
|
+
The above copyright notice and this permission notice shall be
|
|
3110
|
+
included in all copies or substantial portions of the Software.
|
|
3111
|
+
|
|
3112
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3113
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3114
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3115
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3116
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3117
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3118
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3119
|
+
=========================================
|
|
3120
|
+
END OF progress@2.0.3 AND INFORMATION
|
|
3121
|
+
|
|
3122
|
+
%% proxy-addr@2.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
3123
|
+
=========================================
|
|
3124
|
+
(The MIT License)
|
|
3125
|
+
|
|
3126
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
3127
|
+
|
|
3128
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3129
|
+
a copy of this software and associated documentation files (the
|
|
3130
|
+
'Software'), to deal in the Software without restriction, including
|
|
3131
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3132
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3133
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3134
|
+
the following conditions:
|
|
3135
|
+
|
|
3136
|
+
The above copyright notice and this permission notice shall be
|
|
3137
|
+
included in all copies or substantial portions of the Software.
|
|
3138
|
+
|
|
3139
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3140
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3141
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3142
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3143
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3144
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3145
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3146
|
+
=========================================
|
|
3147
|
+
END OF proxy-addr@2.0.7 AND INFORMATION
|
|
3148
|
+
|
|
3149
|
+
%% proxy-from-env@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3150
|
+
=========================================
|
|
3151
|
+
The MIT License
|
|
3152
|
+
|
|
3153
|
+
Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
|
|
3154
|
+
|
|
3155
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3156
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3157
|
+
the Software without restriction, including without limitation the rights to
|
|
3158
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
3159
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
3160
|
+
so, subject to the following conditions:
|
|
3161
|
+
|
|
3162
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3163
|
+
copies or substantial portions of the Software.
|
|
3164
|
+
|
|
3165
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3166
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3167
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3168
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3169
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3170
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3171
|
+
=========================================
|
|
3172
|
+
END OF proxy-from-env@1.1.0 AND INFORMATION
|
|
3173
|
+
|
|
3174
|
+
%% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3175
|
+
=========================================
|
|
3176
|
+
The MIT License (MIT)
|
|
3177
|
+
|
|
3178
|
+
Copyright (c) 2014 Mathias Buus
|
|
3179
|
+
|
|
3180
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3181
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3182
|
+
in the Software without restriction, including without limitation the rights
|
|
3183
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3184
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3185
|
+
furnished to do so, subject to the following conditions:
|
|
3186
|
+
|
|
3187
|
+
The above copyright notice and this permission notice shall be included in
|
|
3188
|
+
all copies or substantial portions of the Software.
|
|
3189
|
+
|
|
3190
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3191
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3192
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3193
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3194
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3195
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3196
|
+
THE SOFTWARE.
|
|
3197
|
+
=========================================
|
|
3198
|
+
END OF pump@3.0.2 AND INFORMATION
|
|
3199
|
+
|
|
3200
|
+
%% qs@6.14.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3201
|
+
=========================================
|
|
3202
|
+
BSD 3-Clause License
|
|
3203
|
+
|
|
3204
|
+
Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
|
|
3205
|
+
All rights reserved.
|
|
3206
|
+
|
|
3207
|
+
Redistribution and use in source and binary forms, with or without
|
|
3208
|
+
modification, are permitted provided that the following conditions are met:
|
|
3209
|
+
|
|
3210
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3211
|
+
list of conditions and the following disclaimer.
|
|
3212
|
+
|
|
3213
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3214
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3215
|
+
and/or other materials provided with the distribution.
|
|
3216
|
+
|
|
3217
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
3218
|
+
contributors may be used to endorse or promote products derived from
|
|
3219
|
+
this software without specific prior written permission.
|
|
3220
|
+
|
|
3221
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3222
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3223
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3224
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
3225
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3226
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3227
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3228
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3229
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3230
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3231
|
+
=========================================
|
|
3232
|
+
END OF qs@6.14.1 AND INFORMATION
|
|
3233
|
+
|
|
3234
|
+
%% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3235
|
+
=========================================
|
|
3236
|
+
(The MIT License)
|
|
3237
|
+
|
|
3238
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
3239
|
+
Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
|
|
3240
|
+
|
|
3241
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3242
|
+
a copy of this software and associated documentation files (the
|
|
3243
|
+
'Software'), to deal in the Software without restriction, including
|
|
3244
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3245
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3246
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3247
|
+
the following conditions:
|
|
3248
|
+
|
|
3249
|
+
The above copyright notice and this permission notice shall be
|
|
3250
|
+
included in all copies or substantial portions of the Software.
|
|
3251
|
+
|
|
3252
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3253
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3254
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3255
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3256
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3257
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3258
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3259
|
+
=========================================
|
|
3260
|
+
END OF range-parser@1.2.1 AND INFORMATION
|
|
3261
|
+
|
|
3262
|
+
%% raw-body@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3263
|
+
=========================================
|
|
3264
|
+
The MIT License (MIT)
|
|
3265
|
+
|
|
3266
|
+
Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
|
|
3267
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3268
|
+
|
|
3269
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3270
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3271
|
+
in the Software without restriction, including without limitation the rights
|
|
3272
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3273
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3274
|
+
furnished to do so, subject to the following conditions:
|
|
3275
|
+
|
|
3276
|
+
The above copyright notice and this permission notice shall be included in
|
|
3277
|
+
all copies or substantial portions of the Software.
|
|
3278
|
+
|
|
3279
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3280
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3281
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3282
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3283
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3284
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3285
|
+
THE SOFTWARE.
|
|
3286
|
+
=========================================
|
|
3287
|
+
END OF raw-body@3.0.2 AND INFORMATION
|
|
3288
|
+
|
|
3289
|
+
%% require-from-string@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3290
|
+
=========================================
|
|
3291
|
+
The MIT License (MIT)
|
|
3292
|
+
|
|
3293
|
+
Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
|
|
3294
|
+
|
|
3295
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3296
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3297
|
+
in the Software without restriction, including without limitation the rights
|
|
3298
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3299
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3300
|
+
furnished to do so, subject to the following conditions:
|
|
3301
|
+
|
|
3302
|
+
The above copyright notice and this permission notice shall be included in
|
|
3303
|
+
all copies or substantial portions of the Software.
|
|
3304
|
+
|
|
3305
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3306
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3307
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3308
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3309
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3310
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3311
|
+
THE SOFTWARE.
|
|
3312
|
+
=========================================
|
|
3313
|
+
END OF require-from-string@2.0.2 AND INFORMATION
|
|
3314
|
+
|
|
3315
|
+
%% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3316
|
+
=========================================
|
|
3317
|
+
Copyright (c) 2011:
|
|
3318
|
+
Tim Koschützki (tim@debuggable.com)
|
|
3319
|
+
Felix Geisendörfer (felix@debuggable.com)
|
|
3320
|
+
|
|
3321
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3322
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3323
|
+
in the Software without restriction, including without limitation the rights
|
|
3324
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3325
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3326
|
+
furnished to do so, subject to the following conditions:
|
|
3327
|
+
|
|
3328
|
+
The above copyright notice and this permission notice shall be included in
|
|
3329
|
+
all copies or substantial portions of the Software.
|
|
3330
|
+
|
|
3331
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3332
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3333
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3334
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3335
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3336
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3337
|
+
THE SOFTWARE.
|
|
3338
|
+
=========================================
|
|
3339
|
+
END OF retry@0.12.0 AND INFORMATION
|
|
3340
|
+
|
|
3341
|
+
%% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3342
|
+
=========================================
|
|
3343
|
+
(The MIT License)
|
|
3344
|
+
|
|
3345
|
+
Copyright (c) 2013 Roman Shtylman
|
|
3346
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
3347
|
+
|
|
3348
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3349
|
+
a copy of this software and associated documentation files (the
|
|
3350
|
+
'Software'), to deal in the Software without restriction, including
|
|
3351
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3352
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3353
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3354
|
+
the following conditions:
|
|
3355
|
+
|
|
3356
|
+
The above copyright notice and this permission notice shall be
|
|
3357
|
+
included in all copies or substantial portions of the Software.
|
|
3358
|
+
|
|
3359
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3360
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3361
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3362
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3363
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3364
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3365
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3366
|
+
=========================================
|
|
3367
|
+
END OF router@2.2.0 AND INFORMATION
|
|
3368
|
+
|
|
3369
|
+
%% safe-buffer@5.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3370
|
+
=========================================
|
|
3371
|
+
The MIT License (MIT)
|
|
3372
|
+
|
|
3373
|
+
Copyright (c) Feross Aboukhadijeh
|
|
3374
|
+
|
|
3375
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3376
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3377
|
+
in the Software without restriction, including without limitation the rights
|
|
3378
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3379
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3380
|
+
furnished to do so, subject to the following conditions:
|
|
3381
|
+
|
|
3382
|
+
The above copyright notice and this permission notice shall be included in
|
|
3383
|
+
all copies or substantial portions of the Software.
|
|
3384
|
+
|
|
3385
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3386
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3387
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3388
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3389
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3390
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3391
|
+
THE SOFTWARE.
|
|
3392
|
+
=========================================
|
|
3393
|
+
END OF safe-buffer@5.2.1 AND INFORMATION
|
|
3394
|
+
|
|
3395
|
+
%% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3396
|
+
=========================================
|
|
3397
|
+
MIT License
|
|
3398
|
+
|
|
3399
|
+
Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
|
|
3400
|
+
|
|
3401
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3402
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3403
|
+
in the Software without restriction, including without limitation the rights
|
|
3404
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3405
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3406
|
+
furnished to do so, subject to the following conditions:
|
|
3407
|
+
|
|
3408
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3409
|
+
copies or substantial portions of the Software.
|
|
3410
|
+
|
|
3411
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3412
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3413
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3414
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3415
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3416
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3417
|
+
SOFTWARE.
|
|
3418
|
+
=========================================
|
|
3419
|
+
END OF safer-buffer@2.1.2 AND INFORMATION
|
|
3420
|
+
|
|
3421
|
+
%% send@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3422
|
+
=========================================
|
|
3423
|
+
(The MIT License)
|
|
3424
|
+
|
|
3425
|
+
Copyright (c) 2012 TJ Holowaychuk
|
|
3426
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
3427
|
+
|
|
3428
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3429
|
+
a copy of this software and associated documentation files (the
|
|
3430
|
+
'Software'), to deal in the Software without restriction, including
|
|
3431
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3432
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3433
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3434
|
+
the following conditions:
|
|
3435
|
+
|
|
3436
|
+
The above copyright notice and this permission notice shall be
|
|
3437
|
+
included in all copies or substantial portions of the Software.
|
|
3438
|
+
|
|
3439
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3440
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3441
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3442
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3443
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3444
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3445
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3446
|
+
=========================================
|
|
3447
|
+
END OF send@1.2.0 AND INFORMATION
|
|
3448
|
+
|
|
3449
|
+
%% serve-static@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3450
|
+
=========================================
|
|
3451
|
+
(The MIT License)
|
|
3452
|
+
|
|
3453
|
+
Copyright (c) 2010 Sencha Inc.
|
|
3454
|
+
Copyright (c) 2011 LearnBoost
|
|
3455
|
+
Copyright (c) 2011 TJ Holowaychuk
|
|
3456
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
3457
|
+
|
|
3458
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3459
|
+
a copy of this software and associated documentation files (the
|
|
3460
|
+
'Software'), to deal in the Software without restriction, including
|
|
3461
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3462
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3463
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3464
|
+
the following conditions:
|
|
3465
|
+
|
|
3466
|
+
The above copyright notice and this permission notice shall be
|
|
3467
|
+
included in all copies or substantial portions of the Software.
|
|
3468
|
+
|
|
3469
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3470
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3471
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3472
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3473
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3474
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3475
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3476
|
+
=========================================
|
|
3477
|
+
END OF serve-static@2.2.0 AND INFORMATION
|
|
3478
|
+
|
|
3479
|
+
%% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3480
|
+
=========================================
|
|
3481
|
+
Copyright (c) 2015, Wes Todd
|
|
3482
|
+
|
|
3483
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
3484
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
3485
|
+
copyright notice and this permission notice appear in all copies.
|
|
3486
|
+
|
|
3487
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3488
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3489
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
3490
|
+
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3491
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
3492
|
+
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
3493
|
+
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3494
|
+
=========================================
|
|
3495
|
+
END OF setprototypeof@1.2.0 AND INFORMATION
|
|
3496
|
+
|
|
3497
|
+
%% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3498
|
+
=========================================
|
|
3499
|
+
MIT License
|
|
3500
|
+
|
|
3501
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
3502
|
+
|
|
3503
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
3504
|
+
|
|
3505
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3506
|
+
|
|
3507
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3508
|
+
=========================================
|
|
3509
|
+
END OF shebang-command@2.0.0 AND INFORMATION
|
|
3510
|
+
|
|
3511
|
+
%% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3512
|
+
=========================================
|
|
3513
|
+
MIT License
|
|
3514
|
+
|
|
3515
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
3516
|
+
|
|
3517
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
3518
|
+
|
|
3519
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3520
|
+
|
|
3521
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3522
|
+
=========================================
|
|
3523
|
+
END OF shebang-regex@3.0.0 AND INFORMATION
|
|
3524
|
+
|
|
3525
|
+
%% side-channel-list@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3526
|
+
=========================================
|
|
3527
|
+
MIT License
|
|
3528
|
+
|
|
3529
|
+
Copyright (c) 2024 Jordan Harband
|
|
3530
|
+
|
|
3531
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3532
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3533
|
+
in the Software without restriction, including without limitation the rights
|
|
3534
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3535
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3536
|
+
furnished to do so, subject to the following conditions:
|
|
3537
|
+
|
|
3538
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3539
|
+
copies or substantial portions of the Software.
|
|
3540
|
+
|
|
3541
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3542
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3543
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3544
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3545
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3546
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3547
|
+
SOFTWARE.
|
|
3548
|
+
=========================================
|
|
3549
|
+
END OF side-channel-list@1.0.0 AND INFORMATION
|
|
3550
|
+
|
|
3551
|
+
%% side-channel-map@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3552
|
+
=========================================
|
|
3553
|
+
MIT License
|
|
3554
|
+
|
|
3555
|
+
Copyright (c) 2024 Jordan Harband
|
|
764
3556
|
|
|
765
3557
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
766
3558
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -769,76 +3561,50 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
769
3561
|
copies of the Software, and to permit persons to whom the Software is
|
|
770
3562
|
furnished to do so, subject to the following conditions:
|
|
771
3563
|
|
|
772
|
-
The above copyright notice and this permission notice shall be included in
|
|
773
|
-
|
|
3564
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3565
|
+
copies or substantial portions of the Software.
|
|
774
3566
|
|
|
775
3567
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
776
3568
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
777
3569
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
778
3570
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
779
3571
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
780
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
781
|
-
|
|
782
|
-
=========================================
|
|
783
|
-
END OF pngjs@6.0.0 AND INFORMATION
|
|
784
|
-
|
|
785
|
-
%% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
786
|
-
=========================================
|
|
787
|
-
(The MIT License)
|
|
788
|
-
|
|
789
|
-
Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
790
|
-
|
|
791
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
792
|
-
a copy of this software and associated documentation files (the
|
|
793
|
-
'Software'), to deal in the Software without restriction, including
|
|
794
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
795
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
796
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
797
|
-
the following conditions:
|
|
798
|
-
|
|
799
|
-
The above copyright notice and this permission notice shall be
|
|
800
|
-
included in all copies or substantial portions of the Software.
|
|
801
|
-
|
|
802
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
803
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
804
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
805
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
806
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
807
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
808
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3572
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3573
|
+
SOFTWARE.
|
|
809
3574
|
=========================================
|
|
810
|
-
END OF
|
|
3575
|
+
END OF side-channel-map@1.0.1 AND INFORMATION
|
|
811
3576
|
|
|
812
|
-
%%
|
|
3577
|
+
%% side-channel-weakmap@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
813
3578
|
=========================================
|
|
814
|
-
|
|
3579
|
+
MIT License
|
|
815
3580
|
|
|
816
|
-
Copyright (
|
|
3581
|
+
Copyright (c) 2019 Jordan Harband
|
|
817
3582
|
|
|
818
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
819
|
-
this software and associated documentation files (the "Software"), to deal
|
|
820
|
-
the Software without restriction, including without limitation the rights
|
|
821
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
822
|
-
of the Software, and to permit persons to whom the Software is
|
|
823
|
-
so, subject to the following conditions:
|
|
3583
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3584
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3585
|
+
in the Software without restriction, including without limitation the rights
|
|
3586
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3587
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3588
|
+
furnished to do so, subject to the following conditions:
|
|
824
3589
|
|
|
825
3590
|
The above copyright notice and this permission notice shall be included in all
|
|
826
3591
|
copies or substantial portions of the Software.
|
|
827
3592
|
|
|
828
3593
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
829
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
830
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
831
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
832
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
833
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3594
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3595
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3596
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3597
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3598
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3599
|
+
SOFTWARE.
|
|
834
3600
|
=========================================
|
|
835
|
-
END OF
|
|
3601
|
+
END OF side-channel-weakmap@1.0.2 AND INFORMATION
|
|
836
3602
|
|
|
837
|
-
%%
|
|
3603
|
+
%% side-channel@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
838
3604
|
=========================================
|
|
839
|
-
|
|
3605
|
+
MIT License
|
|
840
3606
|
|
|
841
|
-
Copyright (c)
|
|
3607
|
+
Copyright (c) 2019 Jordan Harband
|
|
842
3608
|
|
|
843
3609
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
844
3610
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -847,44 +3613,18 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
847
3613
|
copies of the Software, and to permit persons to whom the Software is
|
|
848
3614
|
furnished to do so, subject to the following conditions:
|
|
849
3615
|
|
|
850
|
-
The above copyright notice and this permission notice shall be included in
|
|
851
|
-
|
|
3616
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3617
|
+
copies or substantial portions of the Software.
|
|
852
3618
|
|
|
853
3619
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
854
3620
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
855
3621
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
856
3622
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
857
3623
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
858
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
859
|
-
|
|
860
|
-
=========================================
|
|
861
|
-
END OF pump@3.0.2 AND INFORMATION
|
|
862
|
-
|
|
863
|
-
%% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
|
|
864
|
-
=========================================
|
|
865
|
-
Copyright (c) 2011:
|
|
866
|
-
Tim Koschützki (tim@debuggable.com)
|
|
867
|
-
Felix Geisendörfer (felix@debuggable.com)
|
|
868
|
-
|
|
869
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
870
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
871
|
-
in the Software without restriction, including without limitation the rights
|
|
872
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
873
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
874
|
-
furnished to do so, subject to the following conditions:
|
|
875
|
-
|
|
876
|
-
The above copyright notice and this permission notice shall be included in
|
|
877
|
-
all copies or substantial portions of the Software.
|
|
878
|
-
|
|
879
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
880
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
881
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
882
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
883
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
884
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
885
|
-
THE SOFTWARE.
|
|
3624
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3625
|
+
SOFTWARE.
|
|
886
3626
|
=========================================
|
|
887
|
-
END OF
|
|
3627
|
+
END OF side-channel@1.1.0 AND INFORMATION
|
|
888
3628
|
|
|
889
3629
|
%% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
890
3630
|
=========================================
|
|
@@ -1013,6 +3753,161 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
1013
3753
|
=========================================
|
|
1014
3754
|
END OF sprintf-js@1.1.3 AND INFORMATION
|
|
1015
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
|
+
|
|
1016
3911
|
%% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1017
3912
|
=========================================
|
|
1018
3913
|
The ISC License
|
|
@@ -1128,7 +4023,27 @@ SOFTWARE.
|
|
|
1128
4023
|
=========================================
|
|
1129
4024
|
END OF yazl@2.5.1 AND INFORMATION
|
|
1130
4025
|
|
|
1131
|
-
%% zod@3.25.
|
|
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
|
|
1132
4047
|
=========================================
|
|
1133
4048
|
MIT License
|
|
1134
4049
|
|
|
@@ -1152,10 +4067,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1152
4067
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1153
4068
|
SOFTWARE.
|
|
1154
4069
|
=========================================
|
|
1155
|
-
END OF zod@3.
|
|
4070
|
+
END OF zod@4.3.5 AND INFORMATION
|
|
1156
4071
|
|
|
1157
4072
|
SUMMARY BEGIN HERE
|
|
1158
4073
|
=========================================
|
|
1159
|
-
Total Packages:
|
|
4074
|
+
Total Packages: 133
|
|
1160
4075
|
=========================================
|
|
1161
4076
|
END OF SUMMARY
|