playwright 1.54.1 → 1.56.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/ThirdPartyNotices.txt +2727 -434
- package/lib/agents/generateAgents.js +263 -0
- package/lib/agents/generator.md +102 -0
- package/lib/agents/healer.md +78 -0
- package/lib/agents/planner.md +135 -0
- package/lib/common/config.js +3 -1
- package/lib/common/configLoader.js +2 -1
- package/lib/common/expectBundle.js +3 -0
- package/lib/common/expectBundleImpl.js +51 -51
- package/lib/common/fixtures.js +1 -1
- package/lib/common/suiteUtils.js +0 -9
- package/lib/index.js +127 -115
- package/lib/isomorphic/testTree.js +35 -8
- package/lib/matchers/expect.js +6 -7
- package/lib/matchers/matcherHint.js +43 -15
- package/lib/matchers/matchers.js +10 -4
- package/lib/matchers/toBeTruthy.js +16 -14
- package/lib/matchers/toEqual.js +18 -13
- package/lib/matchers/toHaveURL.js +12 -27
- package/lib/matchers/toMatchAriaSnapshot.js +26 -31
- package/lib/matchers/toMatchSnapshot.js +15 -12
- package/lib/matchers/toMatchText.js +29 -35
- package/lib/mcp/browser/actions.d.js +16 -0
- package/lib/mcp/browser/browserContextFactory.js +296 -0
- package/lib/mcp/browser/browserServerBackend.js +76 -0
- package/lib/mcp/browser/codegen.js +66 -0
- package/lib/mcp/browser/config.js +383 -0
- package/lib/mcp/browser/context.js +284 -0
- package/lib/mcp/browser/response.js +228 -0
- package/lib/mcp/browser/sessionLog.js +160 -0
- package/lib/mcp/browser/tab.js +277 -0
- package/lib/mcp/browser/tools/common.js +63 -0
- package/lib/mcp/browser/tools/console.js +44 -0
- package/lib/mcp/browser/tools/dialogs.js +60 -0
- package/lib/mcp/browser/tools/evaluate.js +70 -0
- package/lib/mcp/browser/tools/files.js +58 -0
- package/lib/mcp/browser/tools/form.js +74 -0
- package/lib/mcp/browser/tools/install.js +69 -0
- package/lib/mcp/browser/tools/keyboard.js +85 -0
- package/lib/mcp/browser/tools/mouse.js +107 -0
- package/lib/mcp/browser/tools/navigate.js +62 -0
- package/lib/mcp/browser/tools/network.js +54 -0
- package/lib/mcp/browser/tools/pdf.js +59 -0
- package/lib/mcp/browser/tools/screenshot.js +88 -0
- package/lib/mcp/browser/tools/snapshot.js +182 -0
- package/lib/mcp/browser/tools/tabs.js +67 -0
- package/lib/mcp/browser/tools/tool.js +49 -0
- package/lib/mcp/browser/tools/tracing.js +74 -0
- package/lib/mcp/browser/tools/utils.js +100 -0
- package/lib/mcp/browser/tools/verify.js +154 -0
- package/lib/mcp/browser/tools/wait.js +63 -0
- package/lib/mcp/browser/tools.js +80 -0
- package/lib/mcp/browser/watchdog.js +44 -0
- package/lib/mcp/config.d.js +16 -0
- package/lib/mcp/extension/cdpRelay.js +351 -0
- package/lib/mcp/extension/extensionContextFactory.js +75 -0
- package/lib/mcp/extension/protocol.js +28 -0
- package/lib/mcp/index.js +61 -0
- package/lib/mcp/log.js +35 -0
- package/lib/mcp/program.js +96 -0
- package/lib/mcp/sdk/bundle.js +81 -0
- package/lib/mcp/sdk/exports.js +32 -0
- package/lib/mcp/sdk/http.js +180 -0
- package/lib/mcp/sdk/inProcessTransport.js +71 -0
- package/lib/mcp/sdk/mdb.js +208 -0
- package/lib/mcp/sdk/proxyBackend.js +128 -0
- package/lib/mcp/sdk/server.js +190 -0
- package/lib/mcp/sdk/tool.js +51 -0
- package/lib/mcp/test/browserBackend.js +98 -0
- package/lib/mcp/test/generatorTools.js +122 -0
- package/lib/mcp/test/plannerTools.js +46 -0
- package/lib/mcp/test/seed.js +72 -0
- package/lib/mcp/test/streams.js +39 -0
- package/lib/mcp/test/testBackend.js +97 -0
- package/lib/mcp/test/testContext.js +176 -0
- package/lib/mcp/test/testTool.js +30 -0
- package/lib/mcp/test/testTools.js +115 -0
- package/lib/mcpBundleImpl.js +41 -0
- package/lib/plugins/webServerPlugin.js +2 -0
- package/lib/program.js +77 -57
- package/lib/reporters/base.js +34 -29
- package/lib/reporters/dot.js +11 -11
- package/lib/reporters/github.js +2 -1
- package/lib/reporters/html.js +58 -41
- package/lib/reporters/internalReporter.js +2 -1
- package/lib/reporters/line.js +15 -15
- package/lib/reporters/list.js +24 -19
- package/lib/reporters/listModeReporter.js +69 -0
- package/lib/reporters/markdown.js +3 -3
- package/lib/reporters/merge.js +3 -1
- package/lib/reporters/teleEmitter.js +3 -1
- package/lib/runner/dispatcher.js +9 -2
- package/lib/runner/failureTracker.js +12 -2
- package/lib/runner/lastRun.js +7 -4
- package/lib/runner/loadUtils.js +46 -12
- package/lib/runner/projectUtils.js +8 -2
- package/lib/runner/reporters.js +7 -32
- package/lib/runner/tasks.js +20 -10
- package/lib/runner/testRunner.js +390 -0
- package/lib/runner/testServer.js +57 -276
- package/lib/runner/watchMode.js +5 -1
- package/lib/runner/workerHost.js +8 -6
- package/lib/transform/babelBundleImpl.js +179 -195
- package/lib/transform/compilationCache.js +22 -5
- package/lib/transform/transform.js +1 -1
- package/lib/util.js +12 -35
- package/lib/utilsBundleImpl.js +1 -1
- package/lib/worker/fixtureRunner.js +7 -2
- package/lib/worker/testInfo.js +76 -45
- package/lib/worker/testTracing.js +8 -7
- package/lib/worker/workerMain.js +12 -3
- package/package.json +10 -2
- package/types/test.d.ts +63 -44
- package/types/testReporter.d.ts +1 -1
- package/lib/runner/runner.js +0 -110
package/ThirdPartyNotices.txt
CHANGED
|
@@ -6,61 +6,63 @@ This project incorporates components from the projects listed below. The origina
|
|
|
6
6
|
|
|
7
7
|
- @ampproject/remapping@2.2.1 (https://github.com/ampproject/remapping)
|
|
8
8
|
- @babel/code-frame@7.24.7 (https://github.com/babel/babel)
|
|
9
|
-
- @babel/code-frame@7.
|
|
10
|
-
- @babel/compat-data@7.
|
|
11
|
-
- @babel/core@7.
|
|
12
|
-
- @babel/generator@7.
|
|
13
|
-
- @babel/helper-annotate-as-pure@7.
|
|
14
|
-
- @babel/helper-compilation-targets@7.
|
|
15
|
-
- @babel/helper-create-class-features-plugin@7.
|
|
16
|
-
- @babel/helper-
|
|
17
|
-
- @babel/helper-
|
|
18
|
-
- @babel/helper-module-
|
|
19
|
-
- @babel/helper-
|
|
20
|
-
- @babel/helper-
|
|
21
|
-
- @babel/helper-
|
|
22
|
-
- @babel/helper-
|
|
23
|
-
- @babel/helper-
|
|
9
|
+
- @babel/code-frame@7.27.1 (https://github.com/babel/babel)
|
|
10
|
+
- @babel/compat-data@7.28.0 (https://github.com/babel/babel)
|
|
11
|
+
- @babel/core@7.28.0 (https://github.com/babel/babel)
|
|
12
|
+
- @babel/generator@7.28.0 (https://github.com/babel/babel)
|
|
13
|
+
- @babel/helper-annotate-as-pure@7.27.3 (https://github.com/babel/babel)
|
|
14
|
+
- @babel/helper-compilation-targets@7.27.2 (https://github.com/babel/babel)
|
|
15
|
+
- @babel/helper-create-class-features-plugin@7.27.1 (https://github.com/babel/babel)
|
|
16
|
+
- @babel/helper-globals@7.28.0 (https://github.com/babel/babel)
|
|
17
|
+
- @babel/helper-member-expression-to-functions@7.27.1 (https://github.com/babel/babel)
|
|
18
|
+
- @babel/helper-module-imports@7.27.1 (https://github.com/babel/babel)
|
|
19
|
+
- @babel/helper-module-transforms@7.27.3 (https://github.com/babel/babel)
|
|
20
|
+
- @babel/helper-optimise-call-expression@7.27.1 (https://github.com/babel/babel)
|
|
21
|
+
- @babel/helper-plugin-utils@7.27.1 (https://github.com/babel/babel)
|
|
22
|
+
- @babel/helper-replace-supers@7.27.1 (https://github.com/babel/babel)
|
|
23
|
+
- @babel/helper-skip-transparent-expression-wrappers@7.27.1 (https://github.com/babel/babel)
|
|
24
|
+
- @babel/helper-string-parser@7.27.1 (https://github.com/babel/babel)
|
|
24
25
|
- @babel/helper-validator-identifier@7.24.7 (https://github.com/babel/babel)
|
|
25
|
-
- @babel/helper-validator-identifier@7.
|
|
26
|
-
- @babel/helper-validator-option@7.
|
|
27
|
-
- @babel/helpers@7.
|
|
26
|
+
- @babel/helper-validator-identifier@7.27.1 (https://github.com/babel/babel)
|
|
27
|
+
- @babel/helper-validator-option@7.27.1 (https://github.com/babel/babel)
|
|
28
|
+
- @babel/helpers@7.28.2 (https://github.com/babel/babel)
|
|
28
29
|
- @babel/highlight@7.24.7 (https://github.com/babel/babel)
|
|
29
|
-
- @babel/parser@7.
|
|
30
|
-
- @babel/plugin-proposal-decorators@7.
|
|
31
|
-
- @babel/plugin-proposal-explicit-resource-management@7.25.9 (https://github.com/babel/babel)
|
|
30
|
+
- @babel/parser@7.28.0 (https://github.com/babel/babel)
|
|
31
|
+
- @babel/plugin-proposal-decorators@7.28.0 (https://github.com/babel/babel)
|
|
32
32
|
- @babel/plugin-syntax-async-generators@7.8.4 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators)
|
|
33
|
-
- @babel/plugin-syntax-decorators@7.
|
|
34
|
-
- @babel/plugin-syntax-import-attributes@7.
|
|
33
|
+
- @babel/plugin-syntax-decorators@7.27.1 (https://github.com/babel/babel)
|
|
34
|
+
- @babel/plugin-syntax-import-attributes@7.27.1 (https://github.com/babel/babel)
|
|
35
35
|
- @babel/plugin-syntax-json-strings@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings)
|
|
36
|
-
- @babel/plugin-syntax-jsx@7.
|
|
36
|
+
- @babel/plugin-syntax-jsx@7.27.1 (https://github.com/babel/babel)
|
|
37
37
|
- @babel/plugin-syntax-object-rest-spread@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread)
|
|
38
38
|
- @babel/plugin-syntax-optional-catch-binding@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding)
|
|
39
|
-
- @babel/plugin-syntax-typescript@7.
|
|
40
|
-
- @babel/plugin-transform-class-properties@7.
|
|
41
|
-
- @babel/plugin-transform-class-static-block@7.
|
|
42
|
-
- @babel/plugin-transform-
|
|
43
|
-
- @babel/plugin-transform-
|
|
44
|
-
- @babel/plugin-transform-
|
|
45
|
-
- @babel/plugin-transform-
|
|
46
|
-
- @babel/plugin-transform-
|
|
47
|
-
- @babel/plugin-transform-
|
|
48
|
-
- @babel/plugin-transform-
|
|
49
|
-
- @babel/plugin-transform-
|
|
50
|
-
- @babel/plugin-transform-
|
|
51
|
-
- @babel/plugin-transform-
|
|
52
|
-
- @babel/
|
|
53
|
-
- @babel/
|
|
54
|
-
- @babel/
|
|
55
|
-
- @babel/
|
|
39
|
+
- @babel/plugin-syntax-typescript@7.27.1 (https://github.com/babel/babel)
|
|
40
|
+
- @babel/plugin-transform-class-properties@7.27.1 (https://github.com/babel/babel)
|
|
41
|
+
- @babel/plugin-transform-class-static-block@7.27.1 (https://github.com/babel/babel)
|
|
42
|
+
- @babel/plugin-transform-destructuring@7.28.0 (https://github.com/babel/babel)
|
|
43
|
+
- @babel/plugin-transform-explicit-resource-management@7.28.0 (https://github.com/babel/babel)
|
|
44
|
+
- @babel/plugin-transform-export-namespace-from@7.27.1 (https://github.com/babel/babel)
|
|
45
|
+
- @babel/plugin-transform-logical-assignment-operators@7.27.1 (https://github.com/babel/babel)
|
|
46
|
+
- @babel/plugin-transform-modules-commonjs@7.27.1 (https://github.com/babel/babel)
|
|
47
|
+
- @babel/plugin-transform-nullish-coalescing-operator@7.27.1 (https://github.com/babel/babel)
|
|
48
|
+
- @babel/plugin-transform-numeric-separator@7.27.1 (https://github.com/babel/babel)
|
|
49
|
+
- @babel/plugin-transform-optional-chaining@7.27.1 (https://github.com/babel/babel)
|
|
50
|
+
- @babel/plugin-transform-private-methods@7.27.1 (https://github.com/babel/babel)
|
|
51
|
+
- @babel/plugin-transform-private-property-in-object@7.27.1 (https://github.com/babel/babel)
|
|
52
|
+
- @babel/plugin-transform-react-jsx@7.27.1 (https://github.com/babel/babel)
|
|
53
|
+
- @babel/plugin-transform-typescript@7.28.0 (https://github.com/babel/babel)
|
|
54
|
+
- @babel/preset-typescript@7.27.1 (https://github.com/babel/babel)
|
|
55
|
+
- @babel/template@7.27.2 (https://github.com/babel/babel)
|
|
56
|
+
- @babel/traverse@7.28.0 (https://github.com/babel/babel)
|
|
57
|
+
- @babel/types@7.28.2 (https://github.com/babel/babel)
|
|
56
58
|
- @jest/expect-utils@29.7.0 (https://github.com/jestjs/jest)
|
|
57
59
|
- @jest/schemas@29.6.3 (https://github.com/jestjs/jest)
|
|
58
60
|
- @jest/types@29.6.3 (https://github.com/jestjs/jest)
|
|
59
|
-
- @jridgewell/gen-mapping@0.3.
|
|
61
|
+
- @jridgewell/gen-mapping@0.3.12 (https://github.com/jridgewell/sourcemaps)
|
|
60
62
|
- @jridgewell/resolve-uri@3.1.1 (https://github.com/jridgewell/resolve-uri)
|
|
61
|
-
- @jridgewell/
|
|
62
|
-
- @jridgewell/
|
|
63
|
-
- @
|
|
63
|
+
- @jridgewell/sourcemap-codec@1.5.4 (https://github.com/jridgewell/sourcemaps)
|
|
64
|
+
- @jridgewell/trace-mapping@0.3.29 (https://github.com/jridgewell/sourcemaps)
|
|
65
|
+
- @modelcontextprotocol/sdk@1.17.5 (https://github.com/modelcontextprotocol/typescript-sdk)
|
|
64
66
|
- @sinclair/typebox@0.27.8 (https://github.com/sinclairzx81/typebox)
|
|
65
67
|
- @types/istanbul-lib-coverage@2.0.6 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
66
68
|
- @types/istanbul-lib-report@3.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
@@ -69,16 +71,22 @@ This project incorporates components from the projects listed below. The origina
|
|
|
69
71
|
- @types/stack-utils@2.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
70
72
|
- @types/yargs-parser@21.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
71
73
|
- @types/yargs@17.0.33 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
74
|
+
- accepts@2.0.0 (https://github.com/jshttp/accepts)
|
|
75
|
+
- ajv@6.12.6 (https://github.com/ajv-validator/ajv)
|
|
72
76
|
- ansi-colors@4.1.3 (https://github.com/doowb/ansi-colors)
|
|
73
77
|
- ansi-styles@3.2.1 (https://github.com/chalk/ansi-styles)
|
|
74
78
|
- ansi-styles@4.3.0 (https://github.com/chalk/ansi-styles)
|
|
75
79
|
- ansi-styles@5.2.0 (https://github.com/chalk/ansi-styles)
|
|
76
80
|
- anymatch@3.1.3 (https://github.com/micromatch/anymatch)
|
|
77
81
|
- binary-extensions@2.2.0 (https://github.com/sindresorhus/binary-extensions)
|
|
82
|
+
- body-parser@2.2.0 (https://github.com/expressjs/body-parser)
|
|
78
83
|
- braces@3.0.3 (https://github.com/micromatch/braces)
|
|
79
|
-
- browserslist@4.
|
|
84
|
+
- browserslist@4.25.1 (https://github.com/browserslist/browserslist)
|
|
80
85
|
- buffer-from@1.1.2 (https://github.com/LinusU/buffer-from)
|
|
81
|
-
-
|
|
86
|
+
- bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
|
|
87
|
+
- call-bind-apply-helpers@1.0.2 (https://github.com/ljharb/call-bind-apply-helpers)
|
|
88
|
+
- call-bound@1.0.4 (https://github.com/ljharb/call-bound)
|
|
89
|
+
- caniuse-lite@1.0.30001731 (https://github.com/browserslist/caniuse-lite)
|
|
82
90
|
- chalk@2.4.2 (https://github.com/chalk/chalk)
|
|
83
91
|
- chalk@4.1.2 (https://github.com/chalk/chalk)
|
|
84
92
|
- chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
|
|
@@ -88,26 +96,61 @@ This project incorporates components from the projects listed below. The origina
|
|
|
88
96
|
- color-convert@2.0.1 (https://github.com/Qix-/color-convert)
|
|
89
97
|
- color-name@1.1.3 (https://github.com/dfcreative/color-name)
|
|
90
98
|
- color-name@1.1.4 (https://github.com/colorjs/color-name)
|
|
99
|
+
- content-disposition@1.0.0 (https://github.com/jshttp/content-disposition)
|
|
100
|
+
- content-type@1.0.5 (https://github.com/jshttp/content-type)
|
|
91
101
|
- convert-source-map@2.0.0 (https://github.com/thlorenz/convert-source-map)
|
|
102
|
+
- cookie-signature@1.2.2 (https://github.com/visionmedia/node-cookie-signature)
|
|
103
|
+
- cookie@0.7.2 (https://github.com/jshttp/cookie)
|
|
104
|
+
- cors@2.8.5 (https://github.com/expressjs/cors)
|
|
105
|
+
- cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
|
|
92
106
|
- debug@4.4.0 (https://github.com/debug-js/debug)
|
|
107
|
+
- depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
|
|
93
108
|
- diff-sequences@29.6.3 (https://github.com/jestjs/jest)
|
|
94
|
-
-
|
|
109
|
+
- dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
|
|
110
|
+
- ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
|
|
111
|
+
- electron-to-chromium@1.5.192 (https://github.com/kilian/electron-to-chromium)
|
|
112
|
+
- encodeurl@2.0.0 (https://github.com/pillarjs/encodeurl)
|
|
95
113
|
- enquirer@2.3.6 (https://github.com/enquirer/enquirer)
|
|
114
|
+
- es-define-property@1.0.1 (https://github.com/ljharb/es-define-property)
|
|
115
|
+
- es-errors@1.3.0 (https://github.com/ljharb/es-errors)
|
|
116
|
+
- es-object-atoms@1.1.1 (https://github.com/ljharb/es-object-atoms)
|
|
96
117
|
- escalade@3.2.0 (https://github.com/lukeed/escalade)
|
|
118
|
+
- escape-html@1.0.3 (https://github.com/component/escape-html)
|
|
97
119
|
- escape-string-regexp@1.0.5 (https://github.com/sindresorhus/escape-string-regexp)
|
|
98
120
|
- escape-string-regexp@2.0.0 (https://github.com/sindresorhus/escape-string-regexp)
|
|
121
|
+
- etag@1.8.1 (https://github.com/jshttp/etag)
|
|
122
|
+
- eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
|
|
123
|
+
- eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
|
|
124
|
+
- express-rate-limit@7.5.1 (https://github.com/express-rate-limit/express-rate-limit)
|
|
125
|
+
- express@5.1.0 (https://github.com/expressjs/express)
|
|
126
|
+
- fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
|
|
127
|
+
- fast-json-stable-stringify@2.1.0 (https://github.com/epoberezkin/fast-json-stable-stringify)
|
|
99
128
|
- fill-range@7.1.1 (https://github.com/jonschlinkert/fill-range)
|
|
129
|
+
- finalhandler@2.1.0 (https://github.com/pillarjs/finalhandler)
|
|
130
|
+
- forwarded@0.2.0 (https://github.com/jshttp/forwarded)
|
|
131
|
+
- fresh@2.0.0 (https://github.com/jshttp/fresh)
|
|
132
|
+
- function-bind@1.1.2 (https://github.com/Raynos/function-bind)
|
|
100
133
|
- gensync@1.0.0-beta.2 (https://github.com/loganfsmyth/gensync)
|
|
101
134
|
- get-east-asian-width@1.3.0 (https://github.com/sindresorhus/get-east-asian-width)
|
|
135
|
+
- get-intrinsic@1.3.0 (https://github.com/ljharb/get-intrinsic)
|
|
136
|
+
- get-proto@1.0.1 (https://github.com/ljharb/get-proto)
|
|
102
137
|
- glob-parent@5.1.2 (https://github.com/gulpjs/glob-parent)
|
|
103
|
-
-
|
|
138
|
+
- gopd@1.2.0 (https://github.com/ljharb/gopd)
|
|
104
139
|
- graceful-fs@4.2.11 (https://github.com/isaacs/node-graceful-fs)
|
|
105
140
|
- has-flag@3.0.0 (https://github.com/sindresorhus/has-flag)
|
|
106
141
|
- has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
|
|
142
|
+
- has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
|
|
143
|
+
- hasown@2.0.2 (https://github.com/inspect-js/hasOwn)
|
|
144
|
+
- http-errors@2.0.0 (https://github.com/jshttp/http-errors)
|
|
145
|
+
- iconv-lite@0.6.3 (https://github.com/ashtuchkin/iconv-lite)
|
|
146
|
+
- inherits@2.0.4 (https://github.com/isaacs/inherits)
|
|
147
|
+
- ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
|
|
107
148
|
- is-binary-path@2.1.0 (https://github.com/sindresorhus/is-binary-path)
|
|
108
149
|
- is-extglob@2.1.1 (https://github.com/jonschlinkert/is-extglob)
|
|
109
150
|
- is-glob@4.0.3 (https://github.com/micromatch/is-glob)
|
|
110
151
|
- is-number@7.0.0 (https://github.com/jonschlinkert/is-number)
|
|
152
|
+
- is-promise@4.0.0 (https://github.com/then/is-promise)
|
|
153
|
+
- isexe@2.0.0 (https://github.com/isaacs/isexe)
|
|
111
154
|
- jest-diff@29.7.0 (https://github.com/jestjs/jest)
|
|
112
155
|
- jest-get-type@29.6.3 (https://github.com/jestjs/jest)
|
|
113
156
|
- jest-matcher-utils@29.7.0 (https://github.com/jestjs/jest)
|
|
@@ -116,30 +159,73 @@ This project incorporates components from the projects listed below. The origina
|
|
|
116
159
|
- jest-util@29.7.0 (https://github.com/jestjs/jest)
|
|
117
160
|
- js-tokens@4.0.0 (https://github.com/lydell/js-tokens)
|
|
118
161
|
- jsesc@3.1.0 (https://github.com/mathiasbynens/jsesc)
|
|
162
|
+
- json-schema-traverse@0.4.1 (https://github.com/epoberezkin/json-schema-traverse)
|
|
119
163
|
- json5@2.2.3 (https://github.com/json5/json5)
|
|
120
164
|
- lru-cache@5.1.1 (https://github.com/isaacs/node-lru-cache)
|
|
165
|
+
- math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
|
|
166
|
+
- media-typer@1.1.0 (https://github.com/jshttp/media-typer)
|
|
167
|
+
- merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
|
|
121
168
|
- micromatch@4.0.8 (https://github.com/micromatch/micromatch)
|
|
169
|
+
- mime-db@1.54.0 (https://github.com/jshttp/mime-db)
|
|
170
|
+
- mime-types@3.0.1 (https://github.com/jshttp/mime-types)
|
|
122
171
|
- ms@2.1.3 (https://github.com/vercel/ms)
|
|
172
|
+
- negotiator@1.0.0 (https://github.com/jshttp/negotiator)
|
|
123
173
|
- node-releases@2.0.19 (https://github.com/chicoxyzzy/node-releases)
|
|
124
174
|
- normalize-path@3.0.0 (https://github.com/jonschlinkert/normalize-path)
|
|
175
|
+
- object-assign@4.1.1 (https://github.com/sindresorhus/object-assign)
|
|
176
|
+
- object-inspect@1.13.4 (https://github.com/inspect-js/object-inspect)
|
|
177
|
+
- on-finished@2.4.1 (https://github.com/jshttp/on-finished)
|
|
178
|
+
- once@1.4.0 (https://github.com/isaacs/once)
|
|
179
|
+
- parseurl@1.3.3 (https://github.com/pillarjs/parseurl)
|
|
180
|
+
- path-key@3.1.1 (https://github.com/sindresorhus/path-key)
|
|
181
|
+
- path-to-regexp@8.2.0 (https://github.com/pillarjs/path-to-regexp)
|
|
125
182
|
- picocolors@1.1.0 (https://github.com/alexeyraspopov/picocolors)
|
|
126
183
|
- picocolors@1.1.1 (https://github.com/alexeyraspopov/picocolors)
|
|
127
184
|
- picomatch@2.3.1 (https://github.com/micromatch/picomatch)
|
|
185
|
+
- pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
|
|
128
186
|
- pretty-format@29.7.0 (https://github.com/jestjs/jest)
|
|
187
|
+
- proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
|
|
188
|
+
- punycode@2.3.1 (https://github.com/mathiasbynens/punycode.js)
|
|
189
|
+
- qs@6.14.0 (https://github.com/ljharb/qs)
|
|
190
|
+
- range-parser@1.2.1 (https://github.com/jshttp/range-parser)
|
|
191
|
+
- raw-body@3.0.0 (https://github.com/stream-utils/raw-body)
|
|
129
192
|
- react-is@18.3.1 (https://github.com/facebook/react)
|
|
130
193
|
- readdirp@3.6.0 (https://github.com/paulmillr/readdirp)
|
|
194
|
+
- router@2.2.0 (https://github.com/pillarjs/router)
|
|
195
|
+
- safe-buffer@5.2.1 (https://github.com/feross/safe-buffer)
|
|
196
|
+
- safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
|
|
131
197
|
- semver@6.3.1 (https://github.com/npm/node-semver)
|
|
198
|
+
- send@1.2.0 (https://github.com/pillarjs/send)
|
|
199
|
+
- serve-static@2.2.0 (https://github.com/expressjs/serve-static)
|
|
200
|
+
- setprototypeof@1.2.0 (https://github.com/wesleytodd/setprototypeof)
|
|
201
|
+
- shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
|
|
202
|
+
- shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
|
|
203
|
+
- side-channel-list@1.0.0 (https://github.com/ljharb/side-channel-list)
|
|
204
|
+
- side-channel-map@1.0.1 (https://github.com/ljharb/side-channel-map)
|
|
205
|
+
- side-channel-weakmap@1.0.2 (https://github.com/ljharb/side-channel-weakmap)
|
|
206
|
+
- side-channel@1.1.0 (https://github.com/ljharb/side-channel)
|
|
132
207
|
- slash@3.0.0 (https://github.com/sindresorhus/slash)
|
|
133
208
|
- source-map-support@0.5.21 (https://github.com/evanw/node-source-map-support)
|
|
134
209
|
- source-map@0.6.1 (https://github.com/mozilla/source-map)
|
|
135
210
|
- stack-utils@2.0.6 (https://github.com/tapjs/stack-utils)
|
|
211
|
+
- statuses@2.0.1 (https://github.com/jshttp/statuses)
|
|
212
|
+
- statuses@2.0.2 (https://github.com/jshttp/statuses)
|
|
136
213
|
- stoppable@1.1.0 (https://github.com/hunterloftis/stoppable)
|
|
137
214
|
- supports-color@5.5.0 (https://github.com/chalk/supports-color)
|
|
138
215
|
- supports-color@7.2.0 (https://github.com/chalk/supports-color)
|
|
139
216
|
- to-regex-range@5.0.1 (https://github.com/micromatch/to-regex-range)
|
|
217
|
+
- toidentifier@1.0.1 (https://github.com/component/toidentifier)
|
|
218
|
+
- type-is@2.0.1 (https://github.com/jshttp/type-is)
|
|
140
219
|
- undici-types@6.19.8 (https://github.com/nodejs/undici)
|
|
220
|
+
- unpipe@1.0.0 (https://github.com/stream-utils/unpipe)
|
|
141
221
|
- update-browserslist-db@1.1.3 (https://github.com/browserslist/update-db)
|
|
222
|
+
- uri-js@4.4.1 (https://github.com/garycourt/uri-js)
|
|
223
|
+
- vary@1.1.2 (https://github.com/jshttp/vary)
|
|
224
|
+
- which@2.0.2 (https://github.com/isaacs/node-which)
|
|
225
|
+
- wrappy@1.0.2 (https://github.com/npm/wrappy)
|
|
142
226
|
- yallist@3.1.1 (https://github.com/isaacs/yallist)
|
|
227
|
+
- zod-to-json-schema@3.24.6 (https://github.com/StefanTerdell/zod-to-json-schema)
|
|
228
|
+
- zod@3.25.76 (https://github.com/colinhacks/zod)
|
|
143
229
|
|
|
144
230
|
%% @ampproject/remapping@2.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
145
231
|
=========================================
|
|
@@ -374,7 +460,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
374
460
|
=========================================
|
|
375
461
|
END OF @babel/code-frame@7.24.7 AND INFORMATION
|
|
376
462
|
|
|
377
|
-
%% @babel/code-frame@7.
|
|
463
|
+
%% @babel/code-frame@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
378
464
|
=========================================
|
|
379
465
|
MIT License
|
|
380
466
|
|
|
@@ -399,9 +485,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
399
485
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
400
486
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
401
487
|
=========================================
|
|
402
|
-
END OF @babel/code-frame@7.
|
|
488
|
+
END OF @babel/code-frame@7.27.1 AND INFORMATION
|
|
403
489
|
|
|
404
|
-
%% @babel/compat-data@7.
|
|
490
|
+
%% @babel/compat-data@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
405
491
|
=========================================
|
|
406
492
|
MIT License
|
|
407
493
|
|
|
@@ -426,9 +512,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
426
512
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
427
513
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
428
514
|
=========================================
|
|
429
|
-
END OF @babel/compat-data@7.
|
|
515
|
+
END OF @babel/compat-data@7.28.0 AND INFORMATION
|
|
430
516
|
|
|
431
|
-
%% @babel/core@7.
|
|
517
|
+
%% @babel/core@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
432
518
|
=========================================
|
|
433
519
|
MIT License
|
|
434
520
|
|
|
@@ -453,9 +539,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
453
539
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
454
540
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
455
541
|
=========================================
|
|
456
|
-
END OF @babel/core@7.
|
|
542
|
+
END OF @babel/core@7.28.0 AND INFORMATION
|
|
457
543
|
|
|
458
|
-
%% @babel/generator@7.
|
|
544
|
+
%% @babel/generator@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
459
545
|
=========================================
|
|
460
546
|
MIT License
|
|
461
547
|
|
|
@@ -480,9 +566,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
480
566
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
481
567
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
482
568
|
=========================================
|
|
483
|
-
END OF @babel/generator@7.
|
|
569
|
+
END OF @babel/generator@7.28.0 AND INFORMATION
|
|
484
570
|
|
|
485
|
-
%% @babel/helper-annotate-as-pure@7.
|
|
571
|
+
%% @babel/helper-annotate-as-pure@7.27.3 NOTICES AND INFORMATION BEGIN HERE
|
|
486
572
|
=========================================
|
|
487
573
|
MIT License
|
|
488
574
|
|
|
@@ -507,9 +593,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
507
593
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
508
594
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
509
595
|
=========================================
|
|
510
|
-
END OF @babel/helper-annotate-as-pure@7.
|
|
596
|
+
END OF @babel/helper-annotate-as-pure@7.27.3 AND INFORMATION
|
|
511
597
|
|
|
512
|
-
%% @babel/helper-compilation-targets@7.
|
|
598
|
+
%% @babel/helper-compilation-targets@7.27.2 NOTICES AND INFORMATION BEGIN HERE
|
|
513
599
|
=========================================
|
|
514
600
|
MIT License
|
|
515
601
|
|
|
@@ -534,9 +620,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
534
620
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
535
621
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
536
622
|
=========================================
|
|
537
|
-
END OF @babel/helper-compilation-targets@7.
|
|
623
|
+
END OF @babel/helper-compilation-targets@7.27.2 AND INFORMATION
|
|
538
624
|
|
|
539
|
-
%% @babel/helper-create-class-features-plugin@7.
|
|
625
|
+
%% @babel/helper-create-class-features-plugin@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
540
626
|
=========================================
|
|
541
627
|
MIT License
|
|
542
628
|
|
|
@@ -561,9 +647,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
561
647
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
562
648
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
563
649
|
=========================================
|
|
564
|
-
END OF @babel/helper-create-class-features-plugin@7.
|
|
650
|
+
END OF @babel/helper-create-class-features-plugin@7.27.1 AND INFORMATION
|
|
565
651
|
|
|
566
|
-
%% @babel/helper-
|
|
652
|
+
%% @babel/helper-globals@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
567
653
|
=========================================
|
|
568
654
|
MIT License
|
|
569
655
|
|
|
@@ -588,9 +674,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
588
674
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
589
675
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
590
676
|
=========================================
|
|
591
|
-
END OF @babel/helper-
|
|
677
|
+
END OF @babel/helper-globals@7.28.0 AND INFORMATION
|
|
592
678
|
|
|
593
|
-
%% @babel/helper-
|
|
679
|
+
%% @babel/helper-member-expression-to-functions@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
594
680
|
=========================================
|
|
595
681
|
MIT License
|
|
596
682
|
|
|
@@ -615,9 +701,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
615
701
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
616
702
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
617
703
|
=========================================
|
|
618
|
-
END OF @babel/helper-
|
|
704
|
+
END OF @babel/helper-member-expression-to-functions@7.27.1 AND INFORMATION
|
|
619
705
|
|
|
620
|
-
%% @babel/helper-module-
|
|
706
|
+
%% @babel/helper-module-imports@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
621
707
|
=========================================
|
|
622
708
|
MIT License
|
|
623
709
|
|
|
@@ -642,9 +728,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
642
728
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
643
729
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
644
730
|
=========================================
|
|
645
|
-
END OF @babel/helper-module-
|
|
731
|
+
END OF @babel/helper-module-imports@7.27.1 AND INFORMATION
|
|
646
732
|
|
|
647
|
-
%% @babel/helper-
|
|
733
|
+
%% @babel/helper-module-transforms@7.27.3 NOTICES AND INFORMATION BEGIN HERE
|
|
648
734
|
=========================================
|
|
649
735
|
MIT License
|
|
650
736
|
|
|
@@ -669,9 +755,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
669
755
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
670
756
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
671
757
|
=========================================
|
|
672
|
-
END OF @babel/helper-
|
|
758
|
+
END OF @babel/helper-module-transforms@7.27.3 AND INFORMATION
|
|
673
759
|
|
|
674
|
-
%% @babel/helper-
|
|
760
|
+
%% @babel/helper-optimise-call-expression@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
675
761
|
=========================================
|
|
676
762
|
MIT License
|
|
677
763
|
|
|
@@ -696,9 +782,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
696
782
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
697
783
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
698
784
|
=========================================
|
|
699
|
-
END OF @babel/helper-
|
|
785
|
+
END OF @babel/helper-optimise-call-expression@7.27.1 AND INFORMATION
|
|
700
786
|
|
|
701
|
-
%% @babel/helper-
|
|
787
|
+
%% @babel/helper-plugin-utils@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
702
788
|
=========================================
|
|
703
789
|
MIT License
|
|
704
790
|
|
|
@@ -723,9 +809,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
723
809
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
724
810
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
725
811
|
=========================================
|
|
726
|
-
END OF @babel/helper-
|
|
812
|
+
END OF @babel/helper-plugin-utils@7.27.1 AND INFORMATION
|
|
727
813
|
|
|
728
|
-
%% @babel/helper-
|
|
814
|
+
%% @babel/helper-replace-supers@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
729
815
|
=========================================
|
|
730
816
|
MIT License
|
|
731
817
|
|
|
@@ -750,9 +836,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
750
836
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
751
837
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
752
838
|
=========================================
|
|
753
|
-
END OF @babel/helper-
|
|
839
|
+
END OF @babel/helper-replace-supers@7.27.1 AND INFORMATION
|
|
754
840
|
|
|
755
|
-
%% @babel/helper-
|
|
841
|
+
%% @babel/helper-skip-transparent-expression-wrappers@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
756
842
|
=========================================
|
|
757
843
|
MIT License
|
|
758
844
|
|
|
@@ -777,7 +863,34 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
777
863
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
778
864
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
779
865
|
=========================================
|
|
780
|
-
END OF @babel/helper-
|
|
866
|
+
END OF @babel/helper-skip-transparent-expression-wrappers@7.27.1 AND INFORMATION
|
|
867
|
+
|
|
868
|
+
%% @babel/helper-string-parser@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
869
|
+
=========================================
|
|
870
|
+
MIT License
|
|
871
|
+
|
|
872
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
873
|
+
|
|
874
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
875
|
+
a copy of this software and associated documentation files (the
|
|
876
|
+
"Software"), to deal in the Software without restriction, including
|
|
877
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
878
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
879
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
880
|
+
the following conditions:
|
|
881
|
+
|
|
882
|
+
The above copyright notice and this permission notice shall be
|
|
883
|
+
included in all copies or substantial portions of the Software.
|
|
884
|
+
|
|
885
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
886
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
887
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
888
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
889
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
890
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
891
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
892
|
+
=========================================
|
|
893
|
+
END OF @babel/helper-string-parser@7.27.1 AND INFORMATION
|
|
781
894
|
|
|
782
895
|
%% @babel/helper-validator-identifier@7.24.7 NOTICES AND INFORMATION BEGIN HERE
|
|
783
896
|
=========================================
|
|
@@ -806,7 +919,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
806
919
|
=========================================
|
|
807
920
|
END OF @babel/helper-validator-identifier@7.24.7 AND INFORMATION
|
|
808
921
|
|
|
809
|
-
%% @babel/helper-validator-identifier@7.
|
|
922
|
+
%% @babel/helper-validator-identifier@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
810
923
|
=========================================
|
|
811
924
|
MIT License
|
|
812
925
|
|
|
@@ -831,9 +944,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
831
944
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
832
945
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
833
946
|
=========================================
|
|
834
|
-
END OF @babel/helper-validator-identifier@7.
|
|
947
|
+
END OF @babel/helper-validator-identifier@7.27.1 AND INFORMATION
|
|
835
948
|
|
|
836
|
-
%% @babel/helper-validator-option@7.
|
|
949
|
+
%% @babel/helper-validator-option@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
837
950
|
=========================================
|
|
838
951
|
MIT License
|
|
839
952
|
|
|
@@ -858,13 +971,14 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
858
971
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
859
972
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
860
973
|
=========================================
|
|
861
|
-
END OF @babel/helper-validator-option@7.
|
|
974
|
+
END OF @babel/helper-validator-option@7.27.1 AND INFORMATION
|
|
862
975
|
|
|
863
|
-
%% @babel/helpers@7.
|
|
976
|
+
%% @babel/helpers@7.28.2 NOTICES AND INFORMATION BEGIN HERE
|
|
864
977
|
=========================================
|
|
865
978
|
MIT License
|
|
866
979
|
|
|
867
980
|
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
981
|
+
Copyright (c) 2014-present, Facebook, Inc. (ONLY ./src/helpers/regenerator* files)
|
|
868
982
|
|
|
869
983
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
870
984
|
a copy of this software and associated documentation files (the
|
|
@@ -885,7 +999,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
885
999
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
886
1000
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
887
1001
|
=========================================
|
|
888
|
-
END OF @babel/helpers@7.
|
|
1002
|
+
END OF @babel/helpers@7.28.2 AND INFORMATION
|
|
889
1003
|
|
|
890
1004
|
%% @babel/highlight@7.24.7 NOTICES AND INFORMATION BEGIN HERE
|
|
891
1005
|
=========================================
|
|
@@ -914,7 +1028,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
914
1028
|
=========================================
|
|
915
1029
|
END OF @babel/highlight@7.24.7 AND INFORMATION
|
|
916
1030
|
|
|
917
|
-
%% @babel/parser@7.
|
|
1031
|
+
%% @babel/parser@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
918
1032
|
=========================================
|
|
919
1033
|
Copyright (C) 2012-2014 by various contributors (see AUTHORS)
|
|
920
1034
|
|
|
@@ -936,9 +1050,9 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
936
1050
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
937
1051
|
THE SOFTWARE.
|
|
938
1052
|
=========================================
|
|
939
|
-
END OF @babel/parser@7.
|
|
1053
|
+
END OF @babel/parser@7.28.0 AND INFORMATION
|
|
940
1054
|
|
|
941
|
-
%% @babel/plugin-proposal-decorators@7.
|
|
1055
|
+
%% @babel/plugin-proposal-decorators@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
942
1056
|
=========================================
|
|
943
1057
|
MIT License
|
|
944
1058
|
|
|
@@ -963,9 +1077,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
963
1077
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
964
1078
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
965
1079
|
=========================================
|
|
966
|
-
END OF @babel/plugin-proposal-decorators@7.
|
|
1080
|
+
END OF @babel/plugin-proposal-decorators@7.28.0 AND INFORMATION
|
|
967
1081
|
|
|
968
|
-
%% @babel/plugin-
|
|
1082
|
+
%% @babel/plugin-syntax-async-generators@7.8.4 NOTICES AND INFORMATION BEGIN HERE
|
|
969
1083
|
=========================================
|
|
970
1084
|
MIT License
|
|
971
1085
|
|
|
@@ -990,9 +1104,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
990
1104
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
991
1105
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
992
1106
|
=========================================
|
|
993
|
-
END OF @babel/plugin-
|
|
1107
|
+
END OF @babel/plugin-syntax-async-generators@7.8.4 AND INFORMATION
|
|
994
1108
|
|
|
995
|
-
%% @babel/plugin-syntax-
|
|
1109
|
+
%% @babel/plugin-syntax-decorators@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
996
1110
|
=========================================
|
|
997
1111
|
MIT License
|
|
998
1112
|
|
|
@@ -1017,9 +1131,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1017
1131
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1018
1132
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1019
1133
|
=========================================
|
|
1020
|
-
END OF @babel/plugin-syntax-
|
|
1134
|
+
END OF @babel/plugin-syntax-decorators@7.27.1 AND INFORMATION
|
|
1021
1135
|
|
|
1022
|
-
%% @babel/plugin-syntax-
|
|
1136
|
+
%% @babel/plugin-syntax-import-attributes@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1023
1137
|
=========================================
|
|
1024
1138
|
MIT License
|
|
1025
1139
|
|
|
@@ -1044,9 +1158,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1044
1158
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1045
1159
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1046
1160
|
=========================================
|
|
1047
|
-
END OF @babel/plugin-syntax-
|
|
1161
|
+
END OF @babel/plugin-syntax-import-attributes@7.27.1 AND INFORMATION
|
|
1048
1162
|
|
|
1049
|
-
%% @babel/plugin-syntax-
|
|
1163
|
+
%% @babel/plugin-syntax-json-strings@7.8.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1050
1164
|
=========================================
|
|
1051
1165
|
MIT License
|
|
1052
1166
|
|
|
@@ -1071,9 +1185,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1071
1185
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1072
1186
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1073
1187
|
=========================================
|
|
1074
|
-
END OF @babel/plugin-syntax-
|
|
1188
|
+
END OF @babel/plugin-syntax-json-strings@7.8.3 AND INFORMATION
|
|
1075
1189
|
|
|
1076
|
-
%% @babel/plugin-syntax-
|
|
1190
|
+
%% @babel/plugin-syntax-jsx@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1077
1191
|
=========================================
|
|
1078
1192
|
MIT License
|
|
1079
1193
|
|
|
@@ -1098,9 +1212,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1098
1212
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1099
1213
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1100
1214
|
=========================================
|
|
1101
|
-
END OF @babel/plugin-syntax-
|
|
1215
|
+
END OF @babel/plugin-syntax-jsx@7.27.1 AND INFORMATION
|
|
1102
1216
|
|
|
1103
|
-
%% @babel/plugin-syntax-
|
|
1217
|
+
%% @babel/plugin-syntax-object-rest-spread@7.8.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1104
1218
|
=========================================
|
|
1105
1219
|
MIT License
|
|
1106
1220
|
|
|
@@ -1125,9 +1239,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1125
1239
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1126
1240
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1127
1241
|
=========================================
|
|
1128
|
-
END OF @babel/plugin-syntax-
|
|
1242
|
+
END OF @babel/plugin-syntax-object-rest-spread@7.8.3 AND INFORMATION
|
|
1129
1243
|
|
|
1130
|
-
%% @babel/plugin-syntax-
|
|
1244
|
+
%% @babel/plugin-syntax-optional-catch-binding@7.8.3 NOTICES AND INFORMATION BEGIN HERE
|
|
1131
1245
|
=========================================
|
|
1132
1246
|
MIT License
|
|
1133
1247
|
|
|
@@ -1152,9 +1266,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1152
1266
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1153
1267
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1154
1268
|
=========================================
|
|
1155
|
-
END OF @babel/plugin-syntax-
|
|
1269
|
+
END OF @babel/plugin-syntax-optional-catch-binding@7.8.3 AND INFORMATION
|
|
1156
1270
|
|
|
1157
|
-
%% @babel/plugin-syntax-
|
|
1271
|
+
%% @babel/plugin-syntax-typescript@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1158
1272
|
=========================================
|
|
1159
1273
|
MIT License
|
|
1160
1274
|
|
|
@@ -1179,9 +1293,36 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1179
1293
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1180
1294
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1181
1295
|
=========================================
|
|
1182
|
-
END OF @babel/plugin-syntax-
|
|
1296
|
+
END OF @babel/plugin-syntax-typescript@7.27.1 AND INFORMATION
|
|
1297
|
+
|
|
1298
|
+
%% @babel/plugin-transform-class-properties@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1299
|
+
=========================================
|
|
1300
|
+
MIT License
|
|
1301
|
+
|
|
1302
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
1303
|
+
|
|
1304
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1305
|
+
a copy of this software and associated documentation files (the
|
|
1306
|
+
"Software"), to deal in the Software without restriction, including
|
|
1307
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1308
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1309
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1310
|
+
the following conditions:
|
|
1311
|
+
|
|
1312
|
+
The above copyright notice and this permission notice shall be
|
|
1313
|
+
included in all copies or substantial portions of the Software.
|
|
1314
|
+
|
|
1315
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1316
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1317
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1318
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1319
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1320
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1321
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1322
|
+
=========================================
|
|
1323
|
+
END OF @babel/plugin-transform-class-properties@7.27.1 AND INFORMATION
|
|
1183
1324
|
|
|
1184
|
-
%% @babel/plugin-
|
|
1325
|
+
%% @babel/plugin-transform-class-static-block@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1185
1326
|
=========================================
|
|
1186
1327
|
MIT License
|
|
1187
1328
|
|
|
@@ -1206,9 +1347,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1206
1347
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1207
1348
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1208
1349
|
=========================================
|
|
1209
|
-
END OF @babel/plugin-
|
|
1350
|
+
END OF @babel/plugin-transform-class-static-block@7.27.1 AND INFORMATION
|
|
1210
1351
|
|
|
1211
|
-
%% @babel/plugin-transform-
|
|
1352
|
+
%% @babel/plugin-transform-destructuring@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1212
1353
|
=========================================
|
|
1213
1354
|
MIT License
|
|
1214
1355
|
|
|
@@ -1233,9 +1374,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1233
1374
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1234
1375
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1235
1376
|
=========================================
|
|
1236
|
-
END OF @babel/plugin-transform-
|
|
1377
|
+
END OF @babel/plugin-transform-destructuring@7.28.0 AND INFORMATION
|
|
1237
1378
|
|
|
1238
|
-
%% @babel/plugin-transform-
|
|
1379
|
+
%% @babel/plugin-transform-explicit-resource-management@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1239
1380
|
=========================================
|
|
1240
1381
|
MIT License
|
|
1241
1382
|
|
|
@@ -1260,9 +1401,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1260
1401
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1261
1402
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1262
1403
|
=========================================
|
|
1263
|
-
END OF @babel/plugin-transform-
|
|
1404
|
+
END OF @babel/plugin-transform-explicit-resource-management@7.28.0 AND INFORMATION
|
|
1264
1405
|
|
|
1265
|
-
%% @babel/plugin-transform-export-namespace-from@7.
|
|
1406
|
+
%% @babel/plugin-transform-export-namespace-from@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1266
1407
|
=========================================
|
|
1267
1408
|
MIT License
|
|
1268
1409
|
|
|
@@ -1287,9 +1428,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1287
1428
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1288
1429
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1289
1430
|
=========================================
|
|
1290
|
-
END OF @babel/plugin-transform-export-namespace-from@7.
|
|
1431
|
+
END OF @babel/plugin-transform-export-namespace-from@7.27.1 AND INFORMATION
|
|
1291
1432
|
|
|
1292
|
-
%% @babel/plugin-transform-logical-assignment-operators@7.
|
|
1433
|
+
%% @babel/plugin-transform-logical-assignment-operators@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1293
1434
|
=========================================
|
|
1294
1435
|
MIT License
|
|
1295
1436
|
|
|
@@ -1314,9 +1455,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1314
1455
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1315
1456
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1316
1457
|
=========================================
|
|
1317
|
-
END OF @babel/plugin-transform-logical-assignment-operators@7.
|
|
1458
|
+
END OF @babel/plugin-transform-logical-assignment-operators@7.27.1 AND INFORMATION
|
|
1318
1459
|
|
|
1319
|
-
%% @babel/plugin-transform-modules-commonjs@7.
|
|
1460
|
+
%% @babel/plugin-transform-modules-commonjs@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1320
1461
|
=========================================
|
|
1321
1462
|
MIT License
|
|
1322
1463
|
|
|
@@ -1341,9 +1482,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1341
1482
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1342
1483
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1343
1484
|
=========================================
|
|
1344
|
-
END OF @babel/plugin-transform-modules-commonjs@7.
|
|
1485
|
+
END OF @babel/plugin-transform-modules-commonjs@7.27.1 AND INFORMATION
|
|
1345
1486
|
|
|
1346
|
-
%% @babel/plugin-transform-nullish-coalescing-operator@7.
|
|
1487
|
+
%% @babel/plugin-transform-nullish-coalescing-operator@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1347
1488
|
=========================================
|
|
1348
1489
|
MIT License
|
|
1349
1490
|
|
|
@@ -1368,9 +1509,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1368
1509
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1369
1510
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1370
1511
|
=========================================
|
|
1371
|
-
END OF @babel/plugin-transform-nullish-coalescing-operator@7.
|
|
1512
|
+
END OF @babel/plugin-transform-nullish-coalescing-operator@7.27.1 AND INFORMATION
|
|
1372
1513
|
|
|
1373
|
-
%% @babel/plugin-transform-numeric-separator@7.
|
|
1514
|
+
%% @babel/plugin-transform-numeric-separator@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1374
1515
|
=========================================
|
|
1375
1516
|
MIT License
|
|
1376
1517
|
|
|
@@ -1395,9 +1536,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1395
1536
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1396
1537
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1397
1538
|
=========================================
|
|
1398
|
-
END OF @babel/plugin-transform-numeric-separator@7.
|
|
1539
|
+
END OF @babel/plugin-transform-numeric-separator@7.27.1 AND INFORMATION
|
|
1399
1540
|
|
|
1400
|
-
%% @babel/plugin-transform-optional-chaining@7.
|
|
1541
|
+
%% @babel/plugin-transform-optional-chaining@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1401
1542
|
=========================================
|
|
1402
1543
|
MIT License
|
|
1403
1544
|
|
|
@@ -1422,9 +1563,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1422
1563
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1423
1564
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1424
1565
|
=========================================
|
|
1425
|
-
END OF @babel/plugin-transform-optional-chaining@7.
|
|
1566
|
+
END OF @babel/plugin-transform-optional-chaining@7.27.1 AND INFORMATION
|
|
1426
1567
|
|
|
1427
|
-
%% @babel/plugin-transform-private-methods@7.
|
|
1568
|
+
%% @babel/plugin-transform-private-methods@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1428
1569
|
=========================================
|
|
1429
1570
|
MIT License
|
|
1430
1571
|
|
|
@@ -1449,9 +1590,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1449
1590
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1450
1591
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1451
1592
|
=========================================
|
|
1452
|
-
END OF @babel/plugin-transform-private-methods@7.
|
|
1593
|
+
END OF @babel/plugin-transform-private-methods@7.27.1 AND INFORMATION
|
|
1453
1594
|
|
|
1454
|
-
%% @babel/plugin-transform-private-property-in-object@7.
|
|
1595
|
+
%% @babel/plugin-transform-private-property-in-object@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1455
1596
|
=========================================
|
|
1456
1597
|
MIT License
|
|
1457
1598
|
|
|
@@ -1476,9 +1617,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1476
1617
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1477
1618
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1478
1619
|
=========================================
|
|
1479
|
-
END OF @babel/plugin-transform-private-property-in-object@7.
|
|
1620
|
+
END OF @babel/plugin-transform-private-property-in-object@7.27.1 AND INFORMATION
|
|
1480
1621
|
|
|
1481
|
-
%% @babel/plugin-transform-react-jsx@7.
|
|
1622
|
+
%% @babel/plugin-transform-react-jsx@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1482
1623
|
=========================================
|
|
1483
1624
|
MIT License
|
|
1484
1625
|
|
|
@@ -1503,9 +1644,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1503
1644
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1504
1645
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1505
1646
|
=========================================
|
|
1506
|
-
END OF @babel/plugin-transform-react-jsx@7.
|
|
1647
|
+
END OF @babel/plugin-transform-react-jsx@7.27.1 AND INFORMATION
|
|
1507
1648
|
|
|
1508
|
-
%% @babel/plugin-transform-typescript@7.
|
|
1649
|
+
%% @babel/plugin-transform-typescript@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1509
1650
|
=========================================
|
|
1510
1651
|
MIT License
|
|
1511
1652
|
|
|
@@ -1530,9 +1671,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1530
1671
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1531
1672
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1532
1673
|
=========================================
|
|
1533
|
-
END OF @babel/plugin-transform-typescript@7.
|
|
1674
|
+
END OF @babel/plugin-transform-typescript@7.28.0 AND INFORMATION
|
|
1534
1675
|
|
|
1535
|
-
%% @babel/preset-typescript@7.
|
|
1676
|
+
%% @babel/preset-typescript@7.27.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1536
1677
|
=========================================
|
|
1537
1678
|
MIT License
|
|
1538
1679
|
|
|
@@ -1557,9 +1698,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1557
1698
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1558
1699
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1559
1700
|
=========================================
|
|
1560
|
-
END OF @babel/preset-typescript@7.
|
|
1701
|
+
END OF @babel/preset-typescript@7.27.1 AND INFORMATION
|
|
1561
1702
|
|
|
1562
|
-
%% @babel/template@7.
|
|
1703
|
+
%% @babel/template@7.27.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1563
1704
|
=========================================
|
|
1564
1705
|
MIT License
|
|
1565
1706
|
|
|
@@ -1584,9 +1725,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1584
1725
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1585
1726
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1586
1727
|
=========================================
|
|
1587
|
-
END OF @babel/template@7.
|
|
1728
|
+
END OF @babel/template@7.27.2 AND INFORMATION
|
|
1588
1729
|
|
|
1589
|
-
%% @babel/traverse@7.
|
|
1730
|
+
%% @babel/traverse@7.28.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1590
1731
|
=========================================
|
|
1591
1732
|
MIT License
|
|
1592
1733
|
|
|
@@ -1611,9 +1752,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1611
1752
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1612
1753
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1613
1754
|
=========================================
|
|
1614
|
-
END OF @babel/traverse@7.
|
|
1755
|
+
END OF @babel/traverse@7.28.0 AND INFORMATION
|
|
1615
1756
|
|
|
1616
|
-
%% @babel/types@7.
|
|
1757
|
+
%% @babel/types@7.28.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1617
1758
|
=========================================
|
|
1618
1759
|
MIT License
|
|
1619
1760
|
|
|
@@ -1638,7 +1779,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
1638
1779
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1639
1780
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1640
1781
|
=========================================
|
|
1641
|
-
END OF @babel/types@7.
|
|
1782
|
+
END OF @babel/types@7.28.2 AND INFORMATION
|
|
1642
1783
|
|
|
1643
1784
|
%% @jest/expect-utils@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1644
1785
|
=========================================
|
|
@@ -1718,9 +1859,9 @@ SOFTWARE.
|
|
|
1718
1859
|
=========================================
|
|
1719
1860
|
END OF @jest/types@29.6.3 AND INFORMATION
|
|
1720
1861
|
|
|
1721
|
-
%% @jridgewell/gen-mapping@0.3.
|
|
1862
|
+
%% @jridgewell/gen-mapping@0.3.12 NOTICES AND INFORMATION BEGIN HERE
|
|
1722
1863
|
=========================================
|
|
1723
|
-
Copyright
|
|
1864
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
1724
1865
|
|
|
1725
1866
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1726
1867
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1740,7 +1881,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1740
1881
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1741
1882
|
SOFTWARE.
|
|
1742
1883
|
=========================================
|
|
1743
|
-
END OF @jridgewell/gen-mapping@0.3.
|
|
1884
|
+
END OF @jridgewell/gen-mapping@0.3.12 AND INFORMATION
|
|
1744
1885
|
|
|
1745
1886
|
%% @jridgewell/resolve-uri@3.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1746
1887
|
=========================================
|
|
@@ -1766,9 +1907,9 @@ SOFTWARE.
|
|
|
1766
1907
|
=========================================
|
|
1767
1908
|
END OF @jridgewell/resolve-uri@3.1.1 AND INFORMATION
|
|
1768
1909
|
|
|
1769
|
-
%% @jridgewell/
|
|
1910
|
+
%% @jridgewell/sourcemap-codec@1.5.4 NOTICES AND INFORMATION BEGIN HERE
|
|
1770
1911
|
=========================================
|
|
1771
|
-
Copyright
|
|
1912
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
1772
1913
|
|
|
1773
1914
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1774
1915
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1788,13 +1929,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1788
1929
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1789
1930
|
SOFTWARE.
|
|
1790
1931
|
=========================================
|
|
1791
|
-
END OF @jridgewell/
|
|
1932
|
+
END OF @jridgewell/sourcemap-codec@1.5.4 AND INFORMATION
|
|
1792
1933
|
|
|
1793
|
-
%% @jridgewell/
|
|
1934
|
+
%% @jridgewell/trace-mapping@0.3.29 NOTICES AND INFORMATION BEGIN HERE
|
|
1794
1935
|
=========================================
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
Copyright (c) 2015 Rich Harris
|
|
1936
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
1798
1937
|
|
|
1799
1938
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1800
1939
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1811,14 +1950,16 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
1811
1950
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1812
1951
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1813
1952
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1814
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1815
|
-
|
|
1953
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1954
|
+
SOFTWARE.
|
|
1816
1955
|
=========================================
|
|
1817
|
-
END OF @jridgewell/
|
|
1956
|
+
END OF @jridgewell/trace-mapping@0.3.29 AND INFORMATION
|
|
1818
1957
|
|
|
1819
|
-
%% @
|
|
1958
|
+
%% @modelcontextprotocol/sdk@1.17.5 NOTICES AND INFORMATION BEGIN HERE
|
|
1820
1959
|
=========================================
|
|
1821
|
-
|
|
1960
|
+
MIT License
|
|
1961
|
+
|
|
1962
|
+
Copyright (c) 2024 Anthropic, PBC
|
|
1822
1963
|
|
|
1823
1964
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1824
1965
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1827,8 +1968,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
1827
1968
|
copies of the Software, and to permit persons to whom the Software is
|
|
1828
1969
|
furnished to do so, subject to the following conditions:
|
|
1829
1970
|
|
|
1830
|
-
The above copyright notice and this permission notice shall be included in
|
|
1831
|
-
|
|
1971
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1972
|
+
copies or substantial portions of the Software.
|
|
1832
1973
|
|
|
1833
1974
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1834
1975
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
@@ -1838,7 +1979,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1838
1979
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1839
1980
|
SOFTWARE.
|
|
1840
1981
|
=========================================
|
|
1841
|
-
END OF @
|
|
1982
|
+
END OF @modelcontextprotocol/sdk@1.17.5 AND INFORMATION
|
|
1842
1983
|
|
|
1843
1984
|
%% @sinclair/typebox@0.27.8 NOTICES AND INFORMATION BEGIN HERE
|
|
1844
1985
|
=========================================
|
|
@@ -2050,6 +2191,60 @@ MIT License
|
|
|
2050
2191
|
=========================================
|
|
2051
2192
|
END OF @types/yargs@17.0.33 AND INFORMATION
|
|
2052
2193
|
|
|
2194
|
+
%% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2195
|
+
=========================================
|
|
2196
|
+
(The MIT License)
|
|
2197
|
+
|
|
2198
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2199
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2200
|
+
|
|
2201
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2202
|
+
a copy of this software and associated documentation files (the
|
|
2203
|
+
'Software'), to deal in the Software without restriction, including
|
|
2204
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2205
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2206
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2207
|
+
the following conditions:
|
|
2208
|
+
|
|
2209
|
+
The above copyright notice and this permission notice shall be
|
|
2210
|
+
included in all copies or substantial portions of the Software.
|
|
2211
|
+
|
|
2212
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2213
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2214
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2215
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2216
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2217
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2218
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2219
|
+
=========================================
|
|
2220
|
+
END OF accepts@2.0.0 AND INFORMATION
|
|
2221
|
+
|
|
2222
|
+
%% ajv@6.12.6 NOTICES AND INFORMATION BEGIN HERE
|
|
2223
|
+
=========================================
|
|
2224
|
+
The MIT License (MIT)
|
|
2225
|
+
|
|
2226
|
+
Copyright (c) 2015-2017 Evgeny Poberezkin
|
|
2227
|
+
|
|
2228
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2229
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2230
|
+
in the Software without restriction, including without limitation the rights
|
|
2231
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2232
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2233
|
+
furnished to do so, subject to the following conditions:
|
|
2234
|
+
|
|
2235
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2236
|
+
copies or substantial portions of the Software.
|
|
2237
|
+
|
|
2238
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2239
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2240
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2241
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2242
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2243
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2244
|
+
SOFTWARE.
|
|
2245
|
+
=========================================
|
|
2246
|
+
END OF ajv@6.12.6 AND INFORMATION
|
|
2247
|
+
|
|
2053
2248
|
%% ansi-colors@4.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2054
2249
|
=========================================
|
|
2055
2250
|
The MIT License (MIT)
|
|
@@ -2152,6 +2347,34 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
2152
2347
|
=========================================
|
|
2153
2348
|
END OF binary-extensions@2.2.0 AND INFORMATION
|
|
2154
2349
|
|
|
2350
|
+
%% body-parser@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2351
|
+
=========================================
|
|
2352
|
+
(The MIT License)
|
|
2353
|
+
|
|
2354
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
2355
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2356
|
+
|
|
2357
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2358
|
+
a copy of this software and associated documentation files (the
|
|
2359
|
+
'Software'), to deal in the Software without restriction, including
|
|
2360
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2361
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2362
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2363
|
+
the following conditions:
|
|
2364
|
+
|
|
2365
|
+
The above copyright notice and this permission notice shall be
|
|
2366
|
+
included in all copies or substantial portions of the Software.
|
|
2367
|
+
|
|
2368
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2369
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2370
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2371
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2372
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2373
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2374
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2375
|
+
=========================================
|
|
2376
|
+
END OF body-parser@2.2.0 AND INFORMATION
|
|
2377
|
+
|
|
2155
2378
|
%% braces@3.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2156
2379
|
=========================================
|
|
2157
2380
|
The MIT License (MIT)
|
|
@@ -2178,7 +2401,7 @@ THE SOFTWARE.
|
|
|
2178
2401
|
=========================================
|
|
2179
2402
|
END OF braces@3.0.3 AND INFORMATION
|
|
2180
2403
|
|
|
2181
|
-
%% browserslist@4.
|
|
2404
|
+
%% browserslist@4.25.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2182
2405
|
=========================================
|
|
2183
2406
|
The MIT License (MIT)
|
|
2184
2407
|
|
|
@@ -2201,7 +2424,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
2201
2424
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
2202
2425
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2203
2426
|
=========================================
|
|
2204
|
-
END OF browserslist@4.
|
|
2427
|
+
END OF browserslist@4.25.1 AND INFORMATION
|
|
2205
2428
|
|
|
2206
2429
|
%% buffer-from@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2207
2430
|
=========================================
|
|
@@ -2229,7 +2452,87 @@ SOFTWARE.
|
|
|
2229
2452
|
=========================================
|
|
2230
2453
|
END OF buffer-from@1.1.2 AND INFORMATION
|
|
2231
2454
|
|
|
2232
|
-
%%
|
|
2455
|
+
%% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2456
|
+
=========================================
|
|
2457
|
+
(The MIT License)
|
|
2458
|
+
|
|
2459
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
2460
|
+
Copyright (c) 2015 Jed Watson <jed.watson@me.com>
|
|
2461
|
+
|
|
2462
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2463
|
+
a copy of this software and associated documentation files (the
|
|
2464
|
+
'Software'), to deal in the Software without restriction, including
|
|
2465
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2466
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2467
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2468
|
+
the following conditions:
|
|
2469
|
+
|
|
2470
|
+
The above copyright notice and this permission notice shall be
|
|
2471
|
+
included in all copies or substantial portions of the Software.
|
|
2472
|
+
|
|
2473
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2474
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2475
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2476
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2477
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2478
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2479
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2480
|
+
=========================================
|
|
2481
|
+
END OF bytes@3.1.2 AND INFORMATION
|
|
2482
|
+
|
|
2483
|
+
%% call-bind-apply-helpers@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2484
|
+
=========================================
|
|
2485
|
+
MIT License
|
|
2486
|
+
|
|
2487
|
+
Copyright (c) 2024 Jordan Harband
|
|
2488
|
+
|
|
2489
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2490
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2491
|
+
in the Software without restriction, including without limitation the rights
|
|
2492
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2493
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2494
|
+
furnished to do so, subject to the following conditions:
|
|
2495
|
+
|
|
2496
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2497
|
+
copies or substantial portions of the Software.
|
|
2498
|
+
|
|
2499
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2500
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2501
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2502
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2503
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2504
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2505
|
+
SOFTWARE.
|
|
2506
|
+
=========================================
|
|
2507
|
+
END OF call-bind-apply-helpers@1.0.2 AND INFORMATION
|
|
2508
|
+
|
|
2509
|
+
%% call-bound@1.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2510
|
+
=========================================
|
|
2511
|
+
MIT License
|
|
2512
|
+
|
|
2513
|
+
Copyright (c) 2024 Jordan Harband
|
|
2514
|
+
|
|
2515
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2516
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2517
|
+
in the Software without restriction, including without limitation the rights
|
|
2518
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2519
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2520
|
+
furnished to do so, subject to the following conditions:
|
|
2521
|
+
|
|
2522
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2523
|
+
copies or substantial portions of the Software.
|
|
2524
|
+
|
|
2525
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2526
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2527
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2528
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2529
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2530
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2531
|
+
SOFTWARE.
|
|
2532
|
+
=========================================
|
|
2533
|
+
END OF call-bound@1.0.4 AND INFORMATION
|
|
2534
|
+
|
|
2535
|
+
%% caniuse-lite@1.0.30001731 NOTICES AND INFORMATION BEGIN HERE
|
|
2233
2536
|
=========================================
|
|
2234
2537
|
Attribution 4.0 International
|
|
2235
2538
|
|
|
@@ -2627,7 +2930,7 @@ public licenses.
|
|
|
2627
2930
|
|
|
2628
2931
|
Creative Commons may be contacted at creativecommons.org.
|
|
2629
2932
|
=========================================
|
|
2630
|
-
END OF caniuse-lite@1.0.
|
|
2933
|
+
END OF caniuse-lite@1.0.30001731 AND INFORMATION
|
|
2631
2934
|
|
|
2632
2935
|
%% chalk@2.4.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2633
2936
|
=========================================
|
|
@@ -2811,6 +3114,60 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
2811
3114
|
=========================================
|
|
2812
3115
|
END OF color-name@1.1.4 AND INFORMATION
|
|
2813
3116
|
|
|
3117
|
+
%% content-disposition@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3118
|
+
=========================================
|
|
3119
|
+
(The MIT License)
|
|
3120
|
+
|
|
3121
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
3122
|
+
|
|
3123
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3124
|
+
a copy of this software and associated documentation files (the
|
|
3125
|
+
'Software'), to deal in the Software without restriction, including
|
|
3126
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3127
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3128
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3129
|
+
the following conditions:
|
|
3130
|
+
|
|
3131
|
+
The above copyright notice and this permission notice shall be
|
|
3132
|
+
included in all copies or substantial portions of the Software.
|
|
3133
|
+
|
|
3134
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3135
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3136
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3137
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3138
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3139
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3140
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3141
|
+
=========================================
|
|
3142
|
+
END OF content-disposition@1.0.0 AND INFORMATION
|
|
3143
|
+
|
|
3144
|
+
%% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
3145
|
+
=========================================
|
|
3146
|
+
(The MIT License)
|
|
3147
|
+
|
|
3148
|
+
Copyright (c) 2015 Douglas Christopher Wilson
|
|
3149
|
+
|
|
3150
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3151
|
+
a copy of this software and associated documentation files (the
|
|
3152
|
+
'Software'), to deal in the Software without restriction, including
|
|
3153
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3154
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3155
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3156
|
+
the following conditions:
|
|
3157
|
+
|
|
3158
|
+
The above copyright notice and this permission notice shall be
|
|
3159
|
+
included in all copies or substantial portions of the Software.
|
|
3160
|
+
|
|
3161
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3162
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3163
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3164
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3165
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3166
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3167
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3168
|
+
=========================================
|
|
3169
|
+
END OF content-type@1.0.5 AND INFORMATION
|
|
3170
|
+
|
|
2814
3171
|
%% convert-source-map@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2815
3172
|
=========================================
|
|
2816
3173
|
Copyright 2013 Thorsten Lorenz.
|
|
@@ -2839,31 +3196,1242 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
2839
3196
|
=========================================
|
|
2840
3197
|
END OF convert-source-map@2.0.0 AND INFORMATION
|
|
2841
3198
|
|
|
2842
|
-
%%
|
|
3199
|
+
%% cookie-signature@1.2.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2843
3200
|
=========================================
|
|
2844
3201
|
(The MIT License)
|
|
2845
3202
|
|
|
2846
|
-
Copyright (c)
|
|
2847
|
-
Copyright (c) 2018-2021 Josh Junon
|
|
3203
|
+
Copyright (c) 2012–2024 LearnBoost <tj@learnboost.com> and other contributors;
|
|
2848
3204
|
|
|
2849
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
2850
|
-
and associated documentation files (the
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
3205
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3206
|
+
a copy of this software and associated documentation files (the
|
|
3207
|
+
'Software'), to deal in the Software without restriction, including
|
|
3208
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3209
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3210
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3211
|
+
the following conditions:
|
|
2854
3212
|
|
|
2855
|
-
The above copyright notice and this permission notice shall be
|
|
2856
|
-
portions of the Software.
|
|
3213
|
+
The above copyright notice and this permission notice shall be
|
|
3214
|
+
included in all copies or substantial portions of the Software.
|
|
2857
3215
|
|
|
2858
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3216
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3217
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3218
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3219
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3220
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3221
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3222
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3223
|
+
=========================================
|
|
3224
|
+
END OF cookie-signature@1.2.2 AND INFORMATION
|
|
3225
|
+
|
|
3226
|
+
%% cookie@0.7.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3227
|
+
=========================================
|
|
3228
|
+
(The MIT License)
|
|
3229
|
+
|
|
3230
|
+
Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
|
|
3231
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3232
|
+
|
|
3233
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3234
|
+
a copy of this software and associated documentation files (the
|
|
3235
|
+
'Software'), to deal in the Software without restriction, including
|
|
3236
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3237
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3238
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3239
|
+
the following conditions:
|
|
3240
|
+
|
|
3241
|
+
The above copyright notice and this permission notice shall be
|
|
3242
|
+
included in all copies or substantial portions of the Software.
|
|
3243
|
+
|
|
3244
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3245
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3246
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3247
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3248
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3249
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3250
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3251
|
+
=========================================
|
|
3252
|
+
END OF cookie@0.7.2 AND INFORMATION
|
|
3253
|
+
|
|
3254
|
+
%% cors@2.8.5 NOTICES AND INFORMATION BEGIN HERE
|
|
3255
|
+
=========================================
|
|
3256
|
+
(The MIT License)
|
|
3257
|
+
|
|
3258
|
+
Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
|
|
3259
|
+
|
|
3260
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3261
|
+
a copy of this software and associated documentation files (the
|
|
3262
|
+
'Software'), to deal in the Software without restriction, including
|
|
3263
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3264
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3265
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3266
|
+
the following conditions:
|
|
3267
|
+
|
|
3268
|
+
The above copyright notice and this permission notice shall be
|
|
3269
|
+
included in all copies or substantial portions of the Software.
|
|
3270
|
+
|
|
3271
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3272
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3273
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3274
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3275
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3276
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3277
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3278
|
+
=========================================
|
|
3279
|
+
END OF cors@2.8.5 AND INFORMATION
|
|
3280
|
+
|
|
3281
|
+
%% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
3282
|
+
=========================================
|
|
3283
|
+
The MIT License (MIT)
|
|
3284
|
+
|
|
3285
|
+
Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
|
|
3286
|
+
|
|
3287
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3288
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3289
|
+
in the Software without restriction, including without limitation the rights
|
|
3290
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3291
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3292
|
+
furnished to do so, subject to the following conditions:
|
|
3293
|
+
|
|
3294
|
+
The above copyright notice and this permission notice shall be included in
|
|
3295
|
+
all copies or substantial portions of the Software.
|
|
3296
|
+
|
|
3297
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3298
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3299
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3300
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3301
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3302
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3303
|
+
THE SOFTWARE.
|
|
3304
|
+
=========================================
|
|
3305
|
+
END OF cross-spawn@7.0.6 AND INFORMATION
|
|
3306
|
+
|
|
3307
|
+
%% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3308
|
+
=========================================
|
|
3309
|
+
(The MIT License)
|
|
3310
|
+
|
|
3311
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
3312
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
3313
|
+
|
|
3314
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
3315
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
3316
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3317
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3318
|
+
subject to the following conditions:
|
|
3319
|
+
|
|
3320
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3321
|
+
portions of the Software.
|
|
3322
|
+
|
|
3323
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
2859
3324
|
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2860
3325
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
2861
3326
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2862
3327
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2863
3328
|
=========================================
|
|
2864
|
-
END OF debug@4.4.0 AND INFORMATION
|
|
3329
|
+
END OF debug@4.4.0 AND INFORMATION
|
|
3330
|
+
|
|
3331
|
+
%% depd@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3332
|
+
=========================================
|
|
3333
|
+
(The MIT License)
|
|
3334
|
+
|
|
3335
|
+
Copyright (c) 2014-2018 Douglas Christopher Wilson
|
|
3336
|
+
|
|
3337
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3338
|
+
a copy of this software and associated documentation files (the
|
|
3339
|
+
'Software'), to deal in the Software without restriction, including
|
|
3340
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3341
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3342
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3343
|
+
the following conditions:
|
|
3344
|
+
|
|
3345
|
+
The above copyright notice and this permission notice shall be
|
|
3346
|
+
included in all copies or substantial portions of the Software.
|
|
3347
|
+
|
|
3348
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3349
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3350
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3351
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3352
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3353
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3354
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3355
|
+
=========================================
|
|
3356
|
+
END OF depd@2.0.0 AND INFORMATION
|
|
3357
|
+
|
|
3358
|
+
%% diff-sequences@29.6.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3359
|
+
=========================================
|
|
3360
|
+
MIT License
|
|
3361
|
+
|
|
3362
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3363
|
+
|
|
3364
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3365
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3366
|
+
in the Software without restriction, including without limitation the rights
|
|
3367
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3368
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3369
|
+
furnished to do so, subject to the following conditions:
|
|
3370
|
+
|
|
3371
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3372
|
+
copies or substantial portions of the Software.
|
|
3373
|
+
|
|
3374
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3375
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3376
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3377
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3378
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3379
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3380
|
+
SOFTWARE.
|
|
3381
|
+
=========================================
|
|
3382
|
+
END OF diff-sequences@29.6.3 AND INFORMATION
|
|
3383
|
+
|
|
3384
|
+
%% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3385
|
+
=========================================
|
|
3386
|
+
MIT License
|
|
3387
|
+
|
|
3388
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
3389
|
+
|
|
3390
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3391
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3392
|
+
in the Software without restriction, including without limitation the rights
|
|
3393
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3394
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3395
|
+
furnished to do so, subject to the following conditions:
|
|
3396
|
+
|
|
3397
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3398
|
+
copies or substantial portions of the Software.
|
|
3399
|
+
|
|
3400
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3401
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3402
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3403
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3404
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3405
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3406
|
+
SOFTWARE.
|
|
3407
|
+
=========================================
|
|
3408
|
+
END OF dunder-proto@1.0.1 AND INFORMATION
|
|
3409
|
+
|
|
3410
|
+
%% ee-first@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3411
|
+
=========================================
|
|
3412
|
+
The MIT License (MIT)
|
|
3413
|
+
|
|
3414
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
3415
|
+
|
|
3416
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3417
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3418
|
+
in the Software without restriction, including without limitation the rights
|
|
3419
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3420
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3421
|
+
furnished to do so, subject to the following conditions:
|
|
3422
|
+
|
|
3423
|
+
The above copyright notice and this permission notice shall be included in
|
|
3424
|
+
all copies or substantial portions of the Software.
|
|
3425
|
+
|
|
3426
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3427
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3428
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3429
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3430
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3431
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3432
|
+
THE SOFTWARE.
|
|
3433
|
+
=========================================
|
|
3434
|
+
END OF ee-first@1.1.1 AND INFORMATION
|
|
3435
|
+
|
|
3436
|
+
%% electron-to-chromium@1.5.192 NOTICES AND INFORMATION BEGIN HERE
|
|
3437
|
+
=========================================
|
|
3438
|
+
Copyright 2018 Kilian Valkhof
|
|
3439
|
+
|
|
3440
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
|
3441
|
+
|
|
3442
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3443
|
+
=========================================
|
|
3444
|
+
END OF electron-to-chromium@1.5.192 AND INFORMATION
|
|
3445
|
+
|
|
3446
|
+
%% encodeurl@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3447
|
+
=========================================
|
|
3448
|
+
(The MIT License)
|
|
3449
|
+
|
|
3450
|
+
Copyright (c) 2016 Douglas Christopher Wilson
|
|
3451
|
+
|
|
3452
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3453
|
+
a copy of this software and associated documentation files (the
|
|
3454
|
+
'Software'), to deal in the Software without restriction, including
|
|
3455
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3456
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3457
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3458
|
+
the following conditions:
|
|
3459
|
+
|
|
3460
|
+
The above copyright notice and this permission notice shall be
|
|
3461
|
+
included in all copies or substantial portions of the Software.
|
|
3462
|
+
|
|
3463
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3464
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3465
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3466
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3467
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3468
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3469
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3470
|
+
=========================================
|
|
3471
|
+
END OF encodeurl@2.0.0 AND INFORMATION
|
|
3472
|
+
|
|
3473
|
+
%% enquirer@2.3.6 NOTICES AND INFORMATION BEGIN HERE
|
|
3474
|
+
=========================================
|
|
3475
|
+
The MIT License (MIT)
|
|
3476
|
+
|
|
3477
|
+
Copyright (c) 2016-present, Jon Schlinkert.
|
|
3478
|
+
|
|
3479
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3480
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3481
|
+
in the Software without restriction, including without limitation the rights
|
|
3482
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3483
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3484
|
+
furnished to do so, subject to the following conditions:
|
|
3485
|
+
|
|
3486
|
+
The above copyright notice and this permission notice shall be included in
|
|
3487
|
+
all copies or substantial portions of the Software.
|
|
3488
|
+
|
|
3489
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3490
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3491
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3492
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3493
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3494
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3495
|
+
THE SOFTWARE.
|
|
3496
|
+
=========================================
|
|
3497
|
+
END OF enquirer@2.3.6 AND INFORMATION
|
|
3498
|
+
|
|
3499
|
+
%% es-define-property@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3500
|
+
=========================================
|
|
3501
|
+
MIT License
|
|
3502
|
+
|
|
3503
|
+
Copyright (c) 2024 Jordan Harband
|
|
3504
|
+
|
|
3505
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3506
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3507
|
+
in the Software without restriction, including without limitation the rights
|
|
3508
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3509
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3510
|
+
furnished to do so, subject to the following conditions:
|
|
3511
|
+
|
|
3512
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3513
|
+
copies or substantial portions of the Software.
|
|
3514
|
+
|
|
3515
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3516
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3517
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3518
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3519
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3520
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3521
|
+
SOFTWARE.
|
|
3522
|
+
=========================================
|
|
3523
|
+
END OF es-define-property@1.0.1 AND INFORMATION
|
|
3524
|
+
|
|
3525
|
+
%% es-errors@1.3.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 es-errors@1.3.0 AND INFORMATION
|
|
3550
|
+
|
|
3551
|
+
%% es-object-atoms@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3552
|
+
=========================================
|
|
3553
|
+
MIT License
|
|
3554
|
+
|
|
3555
|
+
Copyright (c) 2024 Jordan Harband
|
|
3556
|
+
|
|
3557
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3558
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3559
|
+
in the Software without restriction, including without limitation the rights
|
|
3560
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3561
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3562
|
+
furnished to do so, subject to the following conditions:
|
|
3563
|
+
|
|
3564
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3565
|
+
copies or substantial portions of the Software.
|
|
3566
|
+
|
|
3567
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3568
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3569
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3570
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3571
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3572
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3573
|
+
SOFTWARE.
|
|
3574
|
+
=========================================
|
|
3575
|
+
END OF es-object-atoms@1.1.1 AND INFORMATION
|
|
3576
|
+
|
|
3577
|
+
%% escalade@3.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3578
|
+
=========================================
|
|
3579
|
+
MIT License
|
|
3580
|
+
|
|
3581
|
+
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
3582
|
+
|
|
3583
|
+
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:
|
|
3584
|
+
|
|
3585
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3586
|
+
|
|
3587
|
+
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.
|
|
3588
|
+
=========================================
|
|
3589
|
+
END OF escalade@3.2.0 AND INFORMATION
|
|
3590
|
+
|
|
3591
|
+
%% escape-html@1.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3592
|
+
=========================================
|
|
3593
|
+
(The MIT License)
|
|
3594
|
+
|
|
3595
|
+
Copyright (c) 2012-2013 TJ Holowaychuk
|
|
3596
|
+
Copyright (c) 2015 Andreas Lubbe
|
|
3597
|
+
Copyright (c) 2015 Tiancheng "Timothy" Gu
|
|
3598
|
+
|
|
3599
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3600
|
+
a copy of this software and associated documentation files (the
|
|
3601
|
+
'Software'), to deal in the Software without restriction, including
|
|
3602
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3603
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3604
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3605
|
+
the following conditions:
|
|
3606
|
+
|
|
3607
|
+
The above copyright notice and this permission notice shall be
|
|
3608
|
+
included in all copies or substantial portions of the Software.
|
|
3609
|
+
|
|
3610
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3611
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3612
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3613
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3614
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3615
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3616
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3617
|
+
=========================================
|
|
3618
|
+
END OF escape-html@1.0.3 AND INFORMATION
|
|
3619
|
+
|
|
3620
|
+
%% escape-string-regexp@1.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
3621
|
+
=========================================
|
|
3622
|
+
The MIT License (MIT)
|
|
3623
|
+
|
|
3624
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
3625
|
+
|
|
3626
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3627
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3628
|
+
in the Software without restriction, including without limitation the rights
|
|
3629
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3630
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3631
|
+
furnished to do so, subject to the following conditions:
|
|
3632
|
+
|
|
3633
|
+
The above copyright notice and this permission notice shall be included in
|
|
3634
|
+
all copies or substantial portions of the Software.
|
|
3635
|
+
|
|
3636
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3637
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3638
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3639
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3640
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3641
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3642
|
+
THE SOFTWARE.
|
|
3643
|
+
=========================================
|
|
3644
|
+
END OF escape-string-regexp@1.0.5 AND INFORMATION
|
|
3645
|
+
|
|
3646
|
+
%% escape-string-regexp@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3647
|
+
=========================================
|
|
3648
|
+
MIT License
|
|
3649
|
+
|
|
3650
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
3651
|
+
|
|
3652
|
+
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:
|
|
3653
|
+
|
|
3654
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3655
|
+
|
|
3656
|
+
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.
|
|
3657
|
+
=========================================
|
|
3658
|
+
END OF escape-string-regexp@2.0.0 AND INFORMATION
|
|
3659
|
+
|
|
3660
|
+
%% etag@1.8.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3661
|
+
=========================================
|
|
3662
|
+
(The MIT License)
|
|
3663
|
+
|
|
3664
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
3665
|
+
|
|
3666
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3667
|
+
a copy of this software and associated documentation files (the
|
|
3668
|
+
'Software'), to deal in the Software without restriction, including
|
|
3669
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3670
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3671
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3672
|
+
the following conditions:
|
|
3673
|
+
|
|
3674
|
+
The above copyright notice and this permission notice shall be
|
|
3675
|
+
included in all copies or substantial portions of the Software.
|
|
3676
|
+
|
|
3677
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3678
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3679
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3680
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3681
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3682
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3683
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3684
|
+
=========================================
|
|
3685
|
+
END OF etag@1.8.1 AND INFORMATION
|
|
3686
|
+
|
|
3687
|
+
%% eventsource-parser@3.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3688
|
+
=========================================
|
|
3689
|
+
MIT License
|
|
3690
|
+
|
|
3691
|
+
Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
|
|
3692
|
+
|
|
3693
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3694
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3695
|
+
in the Software without restriction, including without limitation the rights
|
|
3696
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3697
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3698
|
+
furnished to do so, subject to the following conditions:
|
|
3699
|
+
|
|
3700
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3701
|
+
copies or substantial portions of the Software.
|
|
3702
|
+
|
|
3703
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3704
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3705
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3706
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3707
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3708
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3709
|
+
SOFTWARE.
|
|
3710
|
+
=========================================
|
|
3711
|
+
END OF eventsource-parser@3.0.3 AND INFORMATION
|
|
3712
|
+
|
|
3713
|
+
%% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
3714
|
+
=========================================
|
|
3715
|
+
The MIT License
|
|
3716
|
+
|
|
3717
|
+
Copyright (c) EventSource GitHub organisation
|
|
3718
|
+
|
|
3719
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3720
|
+
a copy of this software and associated documentation files (the
|
|
3721
|
+
"Software"), to deal in the Software without restriction, including
|
|
3722
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3723
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3724
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3725
|
+
the following conditions:
|
|
3726
|
+
|
|
3727
|
+
The above copyright notice and this permission notice shall be
|
|
3728
|
+
included in all copies or substantial portions of the Software.
|
|
3729
|
+
|
|
3730
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3731
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3732
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
3733
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
3734
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3735
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3736
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3737
|
+
=========================================
|
|
3738
|
+
END OF eventsource@3.0.7 AND INFORMATION
|
|
3739
|
+
|
|
3740
|
+
%% express-rate-limit@7.5.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3741
|
+
=========================================
|
|
3742
|
+
# MIT License
|
|
3743
|
+
|
|
3744
|
+
Copyright 2023 Nathan Friedly, Vedant K
|
|
3745
|
+
|
|
3746
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3747
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3748
|
+
the Software without restriction, including without limitation the rights to
|
|
3749
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
3750
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3751
|
+
subject to the following conditions:
|
|
3752
|
+
|
|
3753
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3754
|
+
copies or substantial portions of the Software.
|
|
3755
|
+
|
|
3756
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3757
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3758
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3759
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3760
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3761
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3762
|
+
=========================================
|
|
3763
|
+
END OF express-rate-limit@7.5.1 AND INFORMATION
|
|
3764
|
+
|
|
3765
|
+
%% express@5.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3766
|
+
=========================================
|
|
3767
|
+
(The MIT License)
|
|
3768
|
+
|
|
3769
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
3770
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
3771
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3772
|
+
|
|
3773
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3774
|
+
a copy of this software and associated documentation files (the
|
|
3775
|
+
'Software'), to deal in the Software without restriction, including
|
|
3776
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3777
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3778
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3779
|
+
the following conditions:
|
|
3780
|
+
|
|
3781
|
+
The above copyright notice and this permission notice shall be
|
|
3782
|
+
included in all copies or substantial portions of the Software.
|
|
3783
|
+
|
|
3784
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3785
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3786
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3787
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3788
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3789
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3790
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3791
|
+
=========================================
|
|
3792
|
+
END OF express@5.1.0 AND INFORMATION
|
|
3793
|
+
|
|
3794
|
+
%% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3795
|
+
=========================================
|
|
3796
|
+
MIT License
|
|
3797
|
+
|
|
3798
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
3799
|
+
|
|
3800
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3801
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3802
|
+
in the Software without restriction, including without limitation the rights
|
|
3803
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3804
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3805
|
+
furnished to do so, subject to the following conditions:
|
|
3806
|
+
|
|
3807
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3808
|
+
copies or substantial portions of the Software.
|
|
3809
|
+
|
|
3810
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3811
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3812
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3813
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3814
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3815
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3816
|
+
SOFTWARE.
|
|
3817
|
+
=========================================
|
|
3818
|
+
END OF fast-deep-equal@3.1.3 AND INFORMATION
|
|
3819
|
+
|
|
3820
|
+
%% fast-json-stable-stringify@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3821
|
+
=========================================
|
|
3822
|
+
This software is released under the MIT license:
|
|
3823
|
+
|
|
3824
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
3825
|
+
Copyright (c) 2013 James Halliday
|
|
3826
|
+
|
|
3827
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3828
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3829
|
+
the Software without restriction, including without limitation the rights to
|
|
3830
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
3831
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3832
|
+
subject to the following conditions:
|
|
3833
|
+
|
|
3834
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3835
|
+
copies or substantial portions of the Software.
|
|
3836
|
+
|
|
3837
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3838
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3839
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3840
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3841
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3842
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3843
|
+
=========================================
|
|
3844
|
+
END OF fast-json-stable-stringify@2.1.0 AND INFORMATION
|
|
3845
|
+
|
|
3846
|
+
%% fill-range@7.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3847
|
+
=========================================
|
|
3848
|
+
The MIT License (MIT)
|
|
3849
|
+
|
|
3850
|
+
Copyright (c) 2014-present, Jon Schlinkert.
|
|
3851
|
+
|
|
3852
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3853
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3854
|
+
in the Software without restriction, including without limitation the rights
|
|
3855
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3856
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3857
|
+
furnished to do so, subject to the following conditions:
|
|
3858
|
+
|
|
3859
|
+
The above copyright notice and this permission notice shall be included in
|
|
3860
|
+
all copies or substantial portions of the Software.
|
|
3861
|
+
|
|
3862
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3863
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3864
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3865
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3866
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3867
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3868
|
+
THE SOFTWARE.
|
|
3869
|
+
=========================================
|
|
3870
|
+
END OF fill-range@7.1.1 AND INFORMATION
|
|
3871
|
+
|
|
3872
|
+
%% finalhandler@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3873
|
+
=========================================
|
|
3874
|
+
(The MIT License)
|
|
3875
|
+
|
|
3876
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3877
|
+
|
|
3878
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3879
|
+
a copy of this software and associated documentation files (the
|
|
3880
|
+
'Software'), to deal in the Software without restriction, including
|
|
3881
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3882
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3883
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3884
|
+
the following conditions:
|
|
3885
|
+
|
|
3886
|
+
The above copyright notice and this permission notice shall be
|
|
3887
|
+
included in all copies or substantial portions of the Software.
|
|
3888
|
+
|
|
3889
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3890
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3891
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3892
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3893
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3894
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3895
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3896
|
+
=========================================
|
|
3897
|
+
END OF finalhandler@2.1.0 AND INFORMATION
|
|
3898
|
+
|
|
3899
|
+
%% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3900
|
+
=========================================
|
|
3901
|
+
(The MIT License)
|
|
3902
|
+
|
|
3903
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
3904
|
+
|
|
3905
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3906
|
+
a copy of this software and associated documentation files (the
|
|
3907
|
+
'Software'), to deal in the Software without restriction, including
|
|
3908
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3909
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3910
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3911
|
+
the following conditions:
|
|
3912
|
+
|
|
3913
|
+
The above copyright notice and this permission notice shall be
|
|
3914
|
+
included in all copies or substantial portions of the Software.
|
|
3915
|
+
|
|
3916
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3917
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3918
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3919
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3920
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3921
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3922
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3923
|
+
=========================================
|
|
3924
|
+
END OF forwarded@0.2.0 AND INFORMATION
|
|
3925
|
+
|
|
3926
|
+
%% fresh@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3927
|
+
=========================================
|
|
3928
|
+
(The MIT License)
|
|
3929
|
+
|
|
3930
|
+
Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
|
|
3931
|
+
Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3932
|
+
|
|
3933
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3934
|
+
a copy of this software and associated documentation files (the
|
|
3935
|
+
'Software'), to deal in the Software without restriction, including
|
|
3936
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3937
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3938
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3939
|
+
the following conditions:
|
|
3940
|
+
|
|
3941
|
+
The above copyright notice and this permission notice shall be
|
|
3942
|
+
included in all copies or substantial portions of the Software.
|
|
3943
|
+
|
|
3944
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3945
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3946
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3947
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3948
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3949
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3950
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3951
|
+
=========================================
|
|
3952
|
+
END OF fresh@2.0.0 AND INFORMATION
|
|
3953
|
+
|
|
3954
|
+
%% function-bind@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3955
|
+
=========================================
|
|
3956
|
+
Copyright (c) 2013 Raynos.
|
|
3957
|
+
|
|
3958
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3959
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3960
|
+
in the Software without restriction, including without limitation the rights
|
|
3961
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3962
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3963
|
+
furnished to do so, subject to the following conditions:
|
|
3964
|
+
|
|
3965
|
+
The above copyright notice and this permission notice shall be included in
|
|
3966
|
+
all copies or substantial portions of the Software.
|
|
3967
|
+
|
|
3968
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3969
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3970
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3971
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3972
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3973
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3974
|
+
THE SOFTWARE.
|
|
3975
|
+
=========================================
|
|
3976
|
+
END OF function-bind@1.1.2 AND INFORMATION
|
|
3977
|
+
|
|
3978
|
+
%% gensync@1.0.0-beta.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3979
|
+
=========================================
|
|
3980
|
+
Copyright 2018 Logan Smyth <loganfsmyth@gmail.com>
|
|
3981
|
+
|
|
3982
|
+
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:
|
|
3983
|
+
|
|
3984
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3985
|
+
|
|
3986
|
+
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.
|
|
3987
|
+
=========================================
|
|
3988
|
+
END OF gensync@1.0.0-beta.2 AND INFORMATION
|
|
3989
|
+
|
|
3990
|
+
%% get-east-asian-width@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3991
|
+
=========================================
|
|
3992
|
+
MIT License
|
|
3993
|
+
|
|
3994
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3995
|
+
|
|
3996
|
+
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:
|
|
3997
|
+
|
|
3998
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3999
|
+
|
|
4000
|
+
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.
|
|
4001
|
+
=========================================
|
|
4002
|
+
END OF get-east-asian-width@1.3.0 AND INFORMATION
|
|
4003
|
+
|
|
4004
|
+
%% get-intrinsic@1.3.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4005
|
+
=========================================
|
|
4006
|
+
MIT License
|
|
4007
|
+
|
|
4008
|
+
Copyright (c) 2020 Jordan Harband
|
|
4009
|
+
|
|
4010
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4011
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4012
|
+
in the Software without restriction, including without limitation the rights
|
|
4013
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4014
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4015
|
+
furnished to do so, subject to the following conditions:
|
|
4016
|
+
|
|
4017
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4018
|
+
copies or substantial portions of the Software.
|
|
4019
|
+
|
|
4020
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4021
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4022
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4023
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4024
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4025
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4026
|
+
SOFTWARE.
|
|
4027
|
+
=========================================
|
|
4028
|
+
END OF get-intrinsic@1.3.0 AND INFORMATION
|
|
4029
|
+
|
|
4030
|
+
%% get-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4031
|
+
=========================================
|
|
4032
|
+
MIT License
|
|
4033
|
+
|
|
4034
|
+
Copyright (c) 2025 Jordan Harband
|
|
4035
|
+
|
|
4036
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4037
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4038
|
+
in the Software without restriction, including without limitation the rights
|
|
4039
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4040
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4041
|
+
furnished to do so, subject to the following conditions:
|
|
4042
|
+
|
|
4043
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4044
|
+
copies or substantial portions of the Software.
|
|
4045
|
+
|
|
4046
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4047
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4048
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4049
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4050
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4051
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4052
|
+
SOFTWARE.
|
|
4053
|
+
=========================================
|
|
4054
|
+
END OF get-proto@1.0.1 AND INFORMATION
|
|
4055
|
+
|
|
4056
|
+
%% glob-parent@5.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
4057
|
+
=========================================
|
|
4058
|
+
The ISC License
|
|
4059
|
+
|
|
4060
|
+
Copyright (c) 2015, 2019 Elan Shanker
|
|
4061
|
+
|
|
4062
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4063
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4064
|
+
copyright notice and this permission notice appear in all copies.
|
|
4065
|
+
|
|
4066
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
4067
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
4068
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
4069
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4070
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
4071
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
4072
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
4073
|
+
=========================================
|
|
4074
|
+
END OF glob-parent@5.1.2 AND INFORMATION
|
|
4075
|
+
|
|
4076
|
+
%% gopd@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4077
|
+
=========================================
|
|
4078
|
+
MIT License
|
|
4079
|
+
|
|
4080
|
+
Copyright (c) 2022 Jordan Harband
|
|
4081
|
+
|
|
4082
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4083
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4084
|
+
in the Software without restriction, including without limitation the rights
|
|
4085
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4086
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4087
|
+
furnished to do so, subject to the following conditions:
|
|
4088
|
+
|
|
4089
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4090
|
+
copies or substantial portions of the Software.
|
|
4091
|
+
|
|
4092
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4093
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4094
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4095
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4096
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4097
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4098
|
+
SOFTWARE.
|
|
4099
|
+
=========================================
|
|
4100
|
+
END OF gopd@1.2.0 AND INFORMATION
|
|
4101
|
+
|
|
4102
|
+
%% graceful-fs@4.2.11 NOTICES AND INFORMATION BEGIN HERE
|
|
4103
|
+
=========================================
|
|
4104
|
+
The ISC License
|
|
4105
|
+
|
|
4106
|
+
Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
|
|
4107
|
+
|
|
4108
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4109
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4110
|
+
copyright notice and this permission notice appear in all copies.
|
|
4111
|
+
|
|
4112
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
4113
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
4114
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
4115
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4116
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
4117
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
4118
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
4119
|
+
=========================================
|
|
4120
|
+
END OF graceful-fs@4.2.11 AND INFORMATION
|
|
4121
|
+
|
|
4122
|
+
%% has-flag@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4123
|
+
=========================================
|
|
4124
|
+
MIT License
|
|
4125
|
+
|
|
4126
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
4127
|
+
|
|
4128
|
+
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:
|
|
4129
|
+
|
|
4130
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4131
|
+
|
|
4132
|
+
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.
|
|
4133
|
+
=========================================
|
|
4134
|
+
END OF has-flag@3.0.0 AND INFORMATION
|
|
4135
|
+
|
|
4136
|
+
%% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4137
|
+
=========================================
|
|
4138
|
+
MIT License
|
|
4139
|
+
|
|
4140
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
4141
|
+
|
|
4142
|
+
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:
|
|
4143
|
+
|
|
4144
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4145
|
+
|
|
4146
|
+
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.
|
|
4147
|
+
=========================================
|
|
4148
|
+
END OF has-flag@4.0.0 AND INFORMATION
|
|
4149
|
+
|
|
4150
|
+
%% has-symbols@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4151
|
+
=========================================
|
|
4152
|
+
MIT License
|
|
4153
|
+
|
|
4154
|
+
Copyright (c) 2016 Jordan Harband
|
|
4155
|
+
|
|
4156
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4157
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4158
|
+
in the Software without restriction, including without limitation the rights
|
|
4159
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4160
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4161
|
+
furnished to do so, subject to the following conditions:
|
|
4162
|
+
|
|
4163
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4164
|
+
copies or substantial portions of the Software.
|
|
4165
|
+
|
|
4166
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4167
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4168
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4169
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4170
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4171
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4172
|
+
SOFTWARE.
|
|
4173
|
+
=========================================
|
|
4174
|
+
END OF has-symbols@1.1.0 AND INFORMATION
|
|
4175
|
+
|
|
4176
|
+
%% hasown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
4177
|
+
=========================================
|
|
4178
|
+
MIT License
|
|
4179
|
+
|
|
4180
|
+
Copyright (c) Jordan Harband and contributors
|
|
4181
|
+
|
|
4182
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4183
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4184
|
+
in the Software without restriction, including without limitation the rights
|
|
4185
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4186
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4187
|
+
furnished to do so, subject to the following conditions:
|
|
4188
|
+
|
|
4189
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4190
|
+
copies or substantial portions of the Software.
|
|
4191
|
+
|
|
4192
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4193
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4194
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4195
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4196
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4197
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4198
|
+
SOFTWARE.
|
|
4199
|
+
=========================================
|
|
4200
|
+
END OF hasown@2.0.2 AND INFORMATION
|
|
4201
|
+
|
|
4202
|
+
%% http-errors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4203
|
+
=========================================
|
|
4204
|
+
The MIT License (MIT)
|
|
4205
|
+
|
|
4206
|
+
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
4207
|
+
Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
|
|
4208
|
+
|
|
4209
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4210
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4211
|
+
in the Software without restriction, including without limitation the rights
|
|
4212
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4213
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4214
|
+
furnished to do so, subject to the following conditions:
|
|
4215
|
+
|
|
4216
|
+
The above copyright notice and this permission notice shall be included in
|
|
4217
|
+
all copies or substantial portions of the Software.
|
|
4218
|
+
|
|
4219
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4220
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4221
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4222
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4223
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4224
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4225
|
+
THE SOFTWARE.
|
|
4226
|
+
=========================================
|
|
4227
|
+
END OF http-errors@2.0.0 AND INFORMATION
|
|
4228
|
+
|
|
4229
|
+
%% iconv-lite@0.6.3 NOTICES AND INFORMATION BEGIN HERE
|
|
4230
|
+
=========================================
|
|
4231
|
+
Copyright (c) 2011 Alexander Shtuchkin
|
|
4232
|
+
|
|
4233
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4234
|
+
a copy of this software and associated documentation files (the
|
|
4235
|
+
"Software"), to deal in the Software without restriction, including
|
|
4236
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4237
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4238
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4239
|
+
the following conditions:
|
|
4240
|
+
|
|
4241
|
+
The above copyright notice and this permission notice shall be
|
|
4242
|
+
included in all copies or substantial portions of the Software.
|
|
4243
|
+
|
|
4244
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4245
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4246
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
4247
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
4248
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4249
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
4250
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4251
|
+
=========================================
|
|
4252
|
+
END OF iconv-lite@0.6.3 AND INFORMATION
|
|
4253
|
+
|
|
4254
|
+
%% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
4255
|
+
=========================================
|
|
4256
|
+
The ISC License
|
|
4257
|
+
|
|
4258
|
+
Copyright (c) Isaac Z. Schlueter
|
|
4259
|
+
|
|
4260
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4261
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4262
|
+
copyright notice and this permission notice appear in all copies.
|
|
4263
|
+
|
|
4264
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
4265
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
4266
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
4267
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
4268
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
4269
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
4270
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
4271
|
+
=========================================
|
|
4272
|
+
END OF inherits@2.0.4 AND INFORMATION
|
|
4273
|
+
|
|
4274
|
+
%% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4275
|
+
=========================================
|
|
4276
|
+
Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
|
|
4277
|
+
|
|
4278
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4279
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4280
|
+
in the Software without restriction, including without limitation the rights
|
|
4281
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4282
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4283
|
+
furnished to do so, subject to the following conditions:
|
|
4284
|
+
|
|
4285
|
+
The above copyright notice and this permission notice shall be included in
|
|
4286
|
+
all copies or substantial portions of the Software.
|
|
4287
|
+
|
|
4288
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4289
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4290
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4291
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4292
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4293
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4294
|
+
THE SOFTWARE.
|
|
4295
|
+
=========================================
|
|
4296
|
+
END OF ipaddr.js@1.9.1 AND INFORMATION
|
|
4297
|
+
|
|
4298
|
+
%% is-binary-path@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4299
|
+
=========================================
|
|
4300
|
+
MIT License
|
|
4301
|
+
|
|
4302
|
+
Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
|
|
4303
|
+
|
|
4304
|
+
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:
|
|
4305
|
+
|
|
4306
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4307
|
+
|
|
4308
|
+
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.
|
|
4309
|
+
=========================================
|
|
4310
|
+
END OF is-binary-path@2.1.0 AND INFORMATION
|
|
4311
|
+
|
|
4312
|
+
%% is-extglob@2.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4313
|
+
=========================================
|
|
4314
|
+
The MIT License (MIT)
|
|
4315
|
+
|
|
4316
|
+
Copyright (c) 2014-2016, Jon Schlinkert
|
|
4317
|
+
|
|
4318
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4319
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4320
|
+
in the Software without restriction, including without limitation the rights
|
|
4321
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4322
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4323
|
+
furnished to do so, subject to the following conditions:
|
|
4324
|
+
|
|
4325
|
+
The above copyright notice and this permission notice shall be included in
|
|
4326
|
+
all copies or substantial portions of the Software.
|
|
4327
|
+
|
|
4328
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4329
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4330
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4331
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4332
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4333
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4334
|
+
THE SOFTWARE.
|
|
4335
|
+
=========================================
|
|
4336
|
+
END OF is-extglob@2.1.1 AND INFORMATION
|
|
4337
|
+
|
|
4338
|
+
%% is-glob@4.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
4339
|
+
=========================================
|
|
4340
|
+
The MIT License (MIT)
|
|
4341
|
+
|
|
4342
|
+
Copyright (c) 2014-2017, Jon Schlinkert.
|
|
4343
|
+
|
|
4344
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4345
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4346
|
+
in the Software without restriction, including without limitation the rights
|
|
4347
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4348
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4349
|
+
furnished to do so, subject to the following conditions:
|
|
4350
|
+
|
|
4351
|
+
The above copyright notice and this permission notice shall be included in
|
|
4352
|
+
all copies or substantial portions of the Software.
|
|
4353
|
+
|
|
4354
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4355
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4356
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4357
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4358
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4359
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4360
|
+
THE SOFTWARE.
|
|
4361
|
+
=========================================
|
|
4362
|
+
END OF is-glob@4.0.3 AND INFORMATION
|
|
4363
|
+
|
|
4364
|
+
%% is-number@7.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4365
|
+
=========================================
|
|
4366
|
+
The MIT License (MIT)
|
|
4367
|
+
|
|
4368
|
+
Copyright (c) 2014-present, Jon Schlinkert.
|
|
4369
|
+
|
|
4370
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4371
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4372
|
+
in the Software without restriction, including without limitation the rights
|
|
4373
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4374
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4375
|
+
furnished to do so, subject to the following conditions:
|
|
4376
|
+
|
|
4377
|
+
The above copyright notice and this permission notice shall be included in
|
|
4378
|
+
all copies or substantial portions of the Software.
|
|
4379
|
+
|
|
4380
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4381
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4382
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4383
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4384
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4385
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4386
|
+
THE SOFTWARE.
|
|
4387
|
+
=========================================
|
|
4388
|
+
END OF is-number@7.0.0 AND INFORMATION
|
|
4389
|
+
|
|
4390
|
+
%% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4391
|
+
=========================================
|
|
4392
|
+
Copyright (c) 2014 Forbes Lindesay
|
|
4393
|
+
|
|
4394
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4395
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4396
|
+
in the Software without restriction, including without limitation the rights
|
|
4397
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4398
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4399
|
+
furnished to do so, subject to the following conditions:
|
|
4400
|
+
|
|
4401
|
+
The above copyright notice and this permission notice shall be included in
|
|
4402
|
+
all copies or substantial portions of the Software.
|
|
4403
|
+
|
|
4404
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4405
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4406
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4407
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4408
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4409
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4410
|
+
THE SOFTWARE.
|
|
4411
|
+
=========================================
|
|
4412
|
+
END OF is-promise@4.0.0 AND INFORMATION
|
|
2865
4413
|
|
|
2866
|
-
%%
|
|
4414
|
+
%% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4415
|
+
=========================================
|
|
4416
|
+
The ISC License
|
|
4417
|
+
|
|
4418
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
4419
|
+
|
|
4420
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4421
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4422
|
+
copyright notice and this permission notice appear in all copies.
|
|
4423
|
+
|
|
4424
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
4425
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
4426
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
4427
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4428
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
4429
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
4430
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
4431
|
+
=========================================
|
|
4432
|
+
END OF isexe@2.0.0 AND INFORMATION
|
|
4433
|
+
|
|
4434
|
+
%% jest-diff@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2867
4435
|
=========================================
|
|
2868
4436
|
MIT License
|
|
2869
4437
|
|
|
@@ -2887,23 +4455,39 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
2887
4455
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2888
4456
|
SOFTWARE.
|
|
2889
4457
|
=========================================
|
|
2890
|
-
END OF diff
|
|
4458
|
+
END OF jest-diff@29.7.0 AND INFORMATION
|
|
2891
4459
|
|
|
2892
|
-
%%
|
|
4460
|
+
%% jest-get-type@29.6.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2893
4461
|
=========================================
|
|
2894
|
-
|
|
4462
|
+
MIT License
|
|
2895
4463
|
|
|
2896
|
-
|
|
4464
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2897
4465
|
|
|
2898
|
-
|
|
4466
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4467
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4468
|
+
in the Software without restriction, including without limitation the rights
|
|
4469
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4470
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4471
|
+
furnished to do so, subject to the following conditions:
|
|
4472
|
+
|
|
4473
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4474
|
+
copies or substantial portions of the Software.
|
|
4475
|
+
|
|
4476
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4477
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4478
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4479
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4480
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4481
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4482
|
+
SOFTWARE.
|
|
2899
4483
|
=========================================
|
|
2900
|
-
END OF
|
|
4484
|
+
END OF jest-get-type@29.6.3 AND INFORMATION
|
|
2901
4485
|
|
|
2902
|
-
%%
|
|
4486
|
+
%% jest-matcher-utils@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2903
4487
|
=========================================
|
|
2904
|
-
|
|
4488
|
+
MIT License
|
|
2905
4489
|
|
|
2906
|
-
Copyright (c)
|
|
4490
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2907
4491
|
|
|
2908
4492
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2909
4493
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2912,38 +4496,50 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
2912
4496
|
copies of the Software, and to permit persons to whom the Software is
|
|
2913
4497
|
furnished to do so, subject to the following conditions:
|
|
2914
4498
|
|
|
2915
|
-
The above copyright notice and this permission notice shall be included in
|
|
2916
|
-
|
|
4499
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4500
|
+
copies or substantial portions of the Software.
|
|
2917
4501
|
|
|
2918
4502
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2919
4503
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2920
4504
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2921
4505
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2922
4506
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2923
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2924
|
-
|
|
4507
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4508
|
+
SOFTWARE.
|
|
2925
4509
|
=========================================
|
|
2926
|
-
END OF
|
|
4510
|
+
END OF jest-matcher-utils@29.7.0 AND INFORMATION
|
|
2927
4511
|
|
|
2928
|
-
%%
|
|
4512
|
+
%% jest-message-util@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2929
4513
|
=========================================
|
|
2930
4514
|
MIT License
|
|
2931
4515
|
|
|
2932
|
-
Copyright (c)
|
|
4516
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2933
4517
|
|
|
2934
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4518
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4519
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4520
|
+
in the Software without restriction, including without limitation the rights
|
|
4521
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4522
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4523
|
+
furnished to do so, subject to the following conditions:
|
|
2935
4524
|
|
|
2936
|
-
The above copyright notice and this permission notice shall be included in all
|
|
4525
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4526
|
+
copies or substantial portions of the Software.
|
|
2937
4527
|
|
|
2938
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4528
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4529
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4530
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4531
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4532
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4533
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4534
|
+
SOFTWARE.
|
|
2939
4535
|
=========================================
|
|
2940
|
-
END OF
|
|
4536
|
+
END OF jest-message-util@29.7.0 AND INFORMATION
|
|
2941
4537
|
|
|
2942
|
-
%%
|
|
4538
|
+
%% jest-mock@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2943
4539
|
=========================================
|
|
2944
|
-
|
|
4540
|
+
MIT License
|
|
2945
4541
|
|
|
2946
|
-
Copyright (c)
|
|
4542
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2947
4543
|
|
|
2948
4544
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2949
4545
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2952,38 +4548,50 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
2952
4548
|
copies of the Software, and to permit persons to whom the Software is
|
|
2953
4549
|
furnished to do so, subject to the following conditions:
|
|
2954
4550
|
|
|
2955
|
-
The above copyright notice and this permission notice shall be included in
|
|
2956
|
-
|
|
4551
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4552
|
+
copies or substantial portions of the Software.
|
|
2957
4553
|
|
|
2958
4554
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2959
4555
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2960
4556
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2961
4557
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2962
4558
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2963
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2964
|
-
|
|
4559
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4560
|
+
SOFTWARE.
|
|
2965
4561
|
=========================================
|
|
2966
|
-
END OF
|
|
4562
|
+
END OF jest-mock@29.7.0 AND INFORMATION
|
|
2967
4563
|
|
|
2968
|
-
%%
|
|
4564
|
+
%% jest-util@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2969
4565
|
=========================================
|
|
2970
4566
|
MIT License
|
|
2971
4567
|
|
|
2972
|
-
Copyright (c)
|
|
4568
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2973
4569
|
|
|
2974
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4570
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4571
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4572
|
+
in the Software without restriction, including without limitation the rights
|
|
4573
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4574
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4575
|
+
furnished to do so, subject to the following conditions:
|
|
2975
4576
|
|
|
2976
|
-
The above copyright notice and this permission notice shall be included in all
|
|
4577
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4578
|
+
copies or substantial portions of the Software.
|
|
2977
4579
|
|
|
2978
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4580
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4581
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4582
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4583
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4584
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4585
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4586
|
+
SOFTWARE.
|
|
2979
4587
|
=========================================
|
|
2980
|
-
END OF
|
|
4588
|
+
END OF jest-util@29.7.0 AND INFORMATION
|
|
2981
4589
|
|
|
2982
|
-
%%
|
|
4590
|
+
%% js-tokens@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2983
4591
|
=========================================
|
|
2984
4592
|
The MIT License (MIT)
|
|
2985
4593
|
|
|
2986
|
-
Copyright (c) 2014
|
|
4594
|
+
Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
|
|
2987
4595
|
|
|
2988
4596
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2989
4597
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3003,39 +4611,92 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3003
4611
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3004
4612
|
THE SOFTWARE.
|
|
3005
4613
|
=========================================
|
|
3006
|
-
END OF
|
|
4614
|
+
END OF js-tokens@4.0.0 AND INFORMATION
|
|
3007
4615
|
|
|
3008
|
-
%%
|
|
4616
|
+
%% jsesc@3.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3009
4617
|
=========================================
|
|
3010
|
-
Copyright
|
|
4618
|
+
Copyright Mathias Bynens <https://mathiasbynens.be/>
|
|
3011
4619
|
|
|
3012
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
4620
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4621
|
+
a copy of this software and associated documentation files (the
|
|
4622
|
+
"Software"), to deal in the Software without restriction, including
|
|
4623
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4624
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4625
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4626
|
+
the following conditions:
|
|
3013
4627
|
|
|
3014
|
-
The above copyright notice and this permission notice shall be
|
|
4628
|
+
The above copyright notice and this permission notice shall be
|
|
4629
|
+
included in all copies or substantial portions of the Software.
|
|
3015
4630
|
|
|
3016
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4631
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4632
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4633
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
4634
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
4635
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4636
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
4637
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3017
4638
|
=========================================
|
|
3018
|
-
END OF
|
|
4639
|
+
END OF jsesc@3.1.0 AND INFORMATION
|
|
3019
4640
|
|
|
3020
|
-
%%
|
|
4641
|
+
%% json-schema-traverse@0.4.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3021
4642
|
=========================================
|
|
3022
4643
|
MIT License
|
|
3023
4644
|
|
|
3024
|
-
Copyright (c)
|
|
4645
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
3025
4646
|
|
|
3026
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4647
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4648
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4649
|
+
in the Software without restriction, including without limitation the rights
|
|
4650
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4651
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4652
|
+
furnished to do so, subject to the following conditions:
|
|
3027
4653
|
|
|
3028
|
-
The above copyright notice and this permission notice shall be included in all
|
|
4654
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4655
|
+
copies or substantial portions of the Software.
|
|
3029
4656
|
|
|
3030
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4657
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4658
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4659
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4660
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4661
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4662
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4663
|
+
SOFTWARE.
|
|
3031
4664
|
=========================================
|
|
3032
|
-
END OF
|
|
4665
|
+
END OF json-schema-traverse@0.4.1 AND INFORMATION
|
|
3033
4666
|
|
|
3034
|
-
%%
|
|
4667
|
+
%% json5@2.2.3 NOTICES AND INFORMATION BEGIN HERE
|
|
4668
|
+
=========================================
|
|
4669
|
+
MIT License
|
|
4670
|
+
|
|
4671
|
+
Copyright (c) 2012-2018 Aseem Kishore, and [others].
|
|
4672
|
+
|
|
4673
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4674
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4675
|
+
in the Software without restriction, including without limitation the rights
|
|
4676
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4677
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4678
|
+
furnished to do so, subject to the following conditions:
|
|
4679
|
+
|
|
4680
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4681
|
+
copies or substantial portions of the Software.
|
|
4682
|
+
|
|
4683
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4684
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4685
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4686
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4687
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4688
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4689
|
+
SOFTWARE.
|
|
4690
|
+
|
|
4691
|
+
[others]: https://github.com/json5/json5/contributors
|
|
4692
|
+
=========================================
|
|
4693
|
+
END OF json5@2.2.3 AND INFORMATION
|
|
4694
|
+
|
|
4695
|
+
%% lru-cache@5.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3035
4696
|
=========================================
|
|
3036
4697
|
The ISC License
|
|
3037
4698
|
|
|
3038
|
-
Copyright (c)
|
|
4699
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
3039
4700
|
|
|
3040
4701
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
3041
4702
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -3049,47 +4710,68 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
3049
4710
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
3050
4711
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3051
4712
|
=========================================
|
|
3052
|
-
END OF
|
|
4713
|
+
END OF lru-cache@5.1.1 AND INFORMATION
|
|
3053
4714
|
|
|
3054
|
-
%%
|
|
4715
|
+
%% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3055
4716
|
=========================================
|
|
3056
4717
|
MIT License
|
|
3057
4718
|
|
|
3058
|
-
Copyright (c)
|
|
4719
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
3059
4720
|
|
|
3060
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4721
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4722
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4723
|
+
in the Software without restriction, including without limitation the rights
|
|
4724
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4725
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4726
|
+
furnished to do so, subject to the following conditions:
|
|
3061
4727
|
|
|
3062
|
-
The above copyright notice and this permission notice shall be included in all
|
|
4728
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4729
|
+
copies or substantial portions of the Software.
|
|
3063
4730
|
|
|
3064
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4731
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4732
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4733
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4734
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4735
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4736
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4737
|
+
SOFTWARE.
|
|
3065
4738
|
=========================================
|
|
3066
|
-
END OF
|
|
4739
|
+
END OF math-intrinsics@1.1.0 AND INFORMATION
|
|
3067
4740
|
|
|
3068
|
-
%%
|
|
4741
|
+
%% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3069
4742
|
=========================================
|
|
3070
|
-
The
|
|
4743
|
+
(The MIT License)
|
|
3071
4744
|
|
|
3072
|
-
Copyright (c)
|
|
4745
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
3073
4746
|
|
|
3074
|
-
Permission
|
|
3075
|
-
|
|
3076
|
-
|
|
4747
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4748
|
+
a copy of this software and associated documentation files (the
|
|
4749
|
+
'Software'), to deal in the Software without restriction, including
|
|
4750
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4751
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4752
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4753
|
+
the following conditions:
|
|
4754
|
+
|
|
4755
|
+
The above copyright notice and this permission notice shall be
|
|
4756
|
+
included in all copies or substantial portions of the Software.
|
|
3077
4757
|
|
|
3078
|
-
THE SOFTWARE IS PROVIDED
|
|
3079
|
-
|
|
3080
|
-
MERCHANTABILITY
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
4758
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
4759
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4760
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4761
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4762
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
4763
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
4764
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3085
4765
|
=========================================
|
|
3086
|
-
END OF
|
|
4766
|
+
END OF media-typer@1.1.0 AND INFORMATION
|
|
3087
4767
|
|
|
3088
|
-
%%
|
|
4768
|
+
%% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3089
4769
|
=========================================
|
|
3090
4770
|
MIT License
|
|
3091
4771
|
|
|
3092
|
-
Copyright (c)
|
|
4772
|
+
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
4773
|
+
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
4774
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3093
4775
|
|
|
3094
4776
|
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:
|
|
3095
4777
|
|
|
@@ -3097,41 +4779,95 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
3097
4779
|
|
|
3098
4780
|
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.
|
|
3099
4781
|
=========================================
|
|
3100
|
-
END OF
|
|
4782
|
+
END OF merge-descriptors@2.0.0 AND INFORMATION
|
|
3101
4783
|
|
|
3102
|
-
%%
|
|
4784
|
+
%% micromatch@4.0.8 NOTICES AND INFORMATION BEGIN HERE
|
|
3103
4785
|
=========================================
|
|
3104
|
-
MIT License
|
|
4786
|
+
The MIT License (MIT)
|
|
3105
4787
|
|
|
3106
|
-
Copyright (c)
|
|
4788
|
+
Copyright (c) 2014-present, Jon Schlinkert.
|
|
3107
4789
|
|
|
3108
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4790
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4791
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4792
|
+
in the Software without restriction, including without limitation the rights
|
|
4793
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4794
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4795
|
+
furnished to do so, subject to the following conditions:
|
|
3109
4796
|
|
|
3110
|
-
The above copyright notice and this permission notice shall be included in
|
|
4797
|
+
The above copyright notice and this permission notice shall be included in
|
|
4798
|
+
all copies or substantial portions of the Software.
|
|
3111
4799
|
|
|
3112
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4800
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4801
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4802
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4803
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4804
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4805
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4806
|
+
THE SOFTWARE.
|
|
3113
4807
|
=========================================
|
|
3114
|
-
END OF
|
|
4808
|
+
END OF micromatch@4.0.8 AND INFORMATION
|
|
3115
4809
|
|
|
3116
|
-
%%
|
|
4810
|
+
%% mime-db@1.54.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3117
4811
|
=========================================
|
|
3118
|
-
MIT License
|
|
4812
|
+
(The MIT License)
|
|
3119
4813
|
|
|
3120
|
-
Copyright (c)
|
|
4814
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
4815
|
+
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3121
4816
|
|
|
3122
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
4817
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4818
|
+
a copy of this software and associated documentation files (the
|
|
4819
|
+
'Software'), to deal in the Software without restriction, including
|
|
4820
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4821
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4822
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4823
|
+
the following conditions:
|
|
3123
4824
|
|
|
3124
|
-
The above copyright notice and this permission notice shall be
|
|
4825
|
+
The above copyright notice and this permission notice shall be
|
|
4826
|
+
included in all copies or substantial portions of the Software.
|
|
3125
4827
|
|
|
3126
|
-
THE SOFTWARE IS PROVIDED
|
|
4828
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
4829
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4830
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4831
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4832
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
4833
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
4834
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3127
4835
|
=========================================
|
|
3128
|
-
END OF
|
|
4836
|
+
END OF mime-db@1.54.0 AND INFORMATION
|
|
3129
4837
|
|
|
3130
|
-
%%
|
|
4838
|
+
%% mime-types@3.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4839
|
+
=========================================
|
|
4840
|
+
(The MIT License)
|
|
4841
|
+
|
|
4842
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
4843
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
4844
|
+
|
|
4845
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4846
|
+
a copy of this software and associated documentation files (the
|
|
4847
|
+
'Software'), to deal in the Software without restriction, including
|
|
4848
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4849
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4850
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4851
|
+
the following conditions:
|
|
4852
|
+
|
|
4853
|
+
The above copyright notice and this permission notice shall be
|
|
4854
|
+
included in all copies or substantial portions of the Software.
|
|
4855
|
+
|
|
4856
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
4857
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4858
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4859
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4860
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
4861
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
4862
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4863
|
+
=========================================
|
|
4864
|
+
END OF mime-types@3.0.1 AND INFORMATION
|
|
4865
|
+
|
|
4866
|
+
%% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3131
4867
|
=========================================
|
|
3132
4868
|
The MIT License (MIT)
|
|
3133
4869
|
|
|
3134
|
-
Copyright (c)
|
|
4870
|
+
Copyright (c) 2020 Vercel, Inc.
|
|
3135
4871
|
|
|
3136
4872
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3137
4873
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3140,24 +4876,53 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
3140
4876
|
copies of the Software, and to permit persons to whom the Software is
|
|
3141
4877
|
furnished to do so, subject to the following conditions:
|
|
3142
4878
|
|
|
3143
|
-
The above copyright notice and this permission notice shall be included in
|
|
3144
|
-
|
|
4879
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4880
|
+
copies or substantial portions of the Software.
|
|
3145
4881
|
|
|
3146
4882
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3147
4883
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3148
4884
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3149
4885
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3150
4886
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3151
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3152
|
-
|
|
4887
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4888
|
+
SOFTWARE.
|
|
3153
4889
|
=========================================
|
|
3154
|
-
END OF
|
|
4890
|
+
END OF ms@2.1.3 AND INFORMATION
|
|
3155
4891
|
|
|
3156
|
-
%%
|
|
4892
|
+
%% negotiator@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3157
4893
|
=========================================
|
|
3158
|
-
The MIT License
|
|
4894
|
+
(The MIT License)
|
|
3159
4895
|
|
|
3160
|
-
Copyright (c) 2014
|
|
4896
|
+
Copyright (c) 2012-2014 Federico Romero
|
|
4897
|
+
Copyright (c) 2012-2014 Isaac Z. Schlueter
|
|
4898
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson
|
|
4899
|
+
|
|
4900
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4901
|
+
a copy of this software and associated documentation files (the
|
|
4902
|
+
'Software'), to deal in the Software without restriction, including
|
|
4903
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4904
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4905
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4906
|
+
the following conditions:
|
|
4907
|
+
|
|
4908
|
+
The above copyright notice and this permission notice shall be
|
|
4909
|
+
included in all copies or substantial portions of the Software.
|
|
4910
|
+
|
|
4911
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
4912
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4913
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4914
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4915
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
4916
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
4917
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4918
|
+
=========================================
|
|
4919
|
+
END OF negotiator@1.0.0 AND INFORMATION
|
|
4920
|
+
|
|
4921
|
+
%% node-releases@2.0.19 NOTICES AND INFORMATION BEGIN HERE
|
|
4922
|
+
=========================================
|
|
4923
|
+
The MIT License
|
|
4924
|
+
|
|
4925
|
+
Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)
|
|
3161
4926
|
|
|
3162
4927
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3163
4928
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3177,13 +4942,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3177
4942
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3178
4943
|
THE SOFTWARE.
|
|
3179
4944
|
=========================================
|
|
3180
|
-
END OF
|
|
4945
|
+
END OF node-releases@2.0.19 AND INFORMATION
|
|
3181
4946
|
|
|
3182
|
-
%%
|
|
4947
|
+
%% normalize-path@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3183
4948
|
=========================================
|
|
3184
4949
|
The MIT License (MIT)
|
|
3185
4950
|
|
|
3186
|
-
Copyright (c) 2014-
|
|
4951
|
+
Copyright (c) 2014-2018, Jon Schlinkert.
|
|
3187
4952
|
|
|
3188
4953
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3189
4954
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3203,13 +4968,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3203
4968
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3204
4969
|
THE SOFTWARE.
|
|
3205
4970
|
=========================================
|
|
3206
|
-
END OF
|
|
4971
|
+
END OF normalize-path@3.0.0 AND INFORMATION
|
|
3207
4972
|
|
|
3208
|
-
%%
|
|
4973
|
+
%% object-assign@4.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3209
4974
|
=========================================
|
|
3210
|
-
MIT License
|
|
4975
|
+
The MIT License (MIT)
|
|
3211
4976
|
|
|
3212
|
-
Copyright (c)
|
|
4977
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
3213
4978
|
|
|
3214
4979
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3215
4980
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3218,24 +4983,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
3218
4983
|
copies of the Software, and to permit persons to whom the Software is
|
|
3219
4984
|
furnished to do so, subject to the following conditions:
|
|
3220
4985
|
|
|
3221
|
-
The above copyright notice and this permission notice shall be included in
|
|
3222
|
-
copies or substantial portions of the Software.
|
|
4986
|
+
The above copyright notice and this permission notice shall be included in
|
|
4987
|
+
all copies or substantial portions of the Software.
|
|
3223
4988
|
|
|
3224
4989
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3225
4990
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3226
4991
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3227
4992
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3228
4993
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3229
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3230
|
-
SOFTWARE.
|
|
4994
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4995
|
+
THE SOFTWARE.
|
|
3231
4996
|
=========================================
|
|
3232
|
-
END OF
|
|
4997
|
+
END OF object-assign@4.1.1 AND INFORMATION
|
|
3233
4998
|
|
|
3234
|
-
%%
|
|
4999
|
+
%% object-inspect@1.13.4 NOTICES AND INFORMATION BEGIN HERE
|
|
3235
5000
|
=========================================
|
|
3236
5001
|
MIT License
|
|
3237
5002
|
|
|
3238
|
-
Copyright (c)
|
|
5003
|
+
Copyright (c) 2013 James Halliday
|
|
3239
5004
|
|
|
3240
5005
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3241
5006
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3255,13 +5020,103 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3255
5020
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3256
5021
|
SOFTWARE.
|
|
3257
5022
|
=========================================
|
|
3258
|
-
END OF
|
|
5023
|
+
END OF object-inspect@1.13.4 AND INFORMATION
|
|
3259
5024
|
|
|
3260
|
-
%%
|
|
5025
|
+
%% on-finished@2.4.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5026
|
+
=========================================
|
|
5027
|
+
(The MIT License)
|
|
5028
|
+
|
|
5029
|
+
Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
|
|
5030
|
+
Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
5031
|
+
|
|
5032
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5033
|
+
a copy of this software and associated documentation files (the
|
|
5034
|
+
'Software'), to deal in the Software without restriction, including
|
|
5035
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5036
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5037
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5038
|
+
the following conditions:
|
|
5039
|
+
|
|
5040
|
+
The above copyright notice and this permission notice shall be
|
|
5041
|
+
included in all copies or substantial portions of the Software.
|
|
5042
|
+
|
|
5043
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5044
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5045
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5046
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5047
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5048
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5049
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5050
|
+
=========================================
|
|
5051
|
+
END OF on-finished@2.4.1 AND INFORMATION
|
|
5052
|
+
|
|
5053
|
+
%% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5054
|
+
=========================================
|
|
5055
|
+
The ISC License
|
|
5056
|
+
|
|
5057
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
5058
|
+
|
|
5059
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
5060
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
5061
|
+
copyright notice and this permission notice appear in all copies.
|
|
5062
|
+
|
|
5063
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
5064
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
5065
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
5066
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
5067
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
5068
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
5069
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
5070
|
+
=========================================
|
|
5071
|
+
END OF once@1.4.0 AND INFORMATION
|
|
5072
|
+
|
|
5073
|
+
%% parseurl@1.3.3 NOTICES AND INFORMATION BEGIN HERE
|
|
5074
|
+
=========================================
|
|
5075
|
+
(The MIT License)
|
|
5076
|
+
|
|
5077
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
5078
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
5079
|
+
|
|
5080
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5081
|
+
a copy of this software and associated documentation files (the
|
|
5082
|
+
'Software'), to deal in the Software without restriction, including
|
|
5083
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5084
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5085
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5086
|
+
the following conditions:
|
|
5087
|
+
|
|
5088
|
+
The above copyright notice and this permission notice shall be
|
|
5089
|
+
included in all copies or substantial portions of the Software.
|
|
5090
|
+
|
|
5091
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5092
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5093
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5094
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5095
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5096
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5097
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5098
|
+
=========================================
|
|
5099
|
+
END OF parseurl@1.3.3 AND INFORMATION
|
|
5100
|
+
|
|
5101
|
+
%% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3261
5102
|
=========================================
|
|
3262
5103
|
MIT License
|
|
3263
5104
|
|
|
3264
|
-
Copyright (c)
|
|
5105
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
5106
|
+
|
|
5107
|
+
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:
|
|
5108
|
+
|
|
5109
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5110
|
+
|
|
5111
|
+
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.
|
|
5112
|
+
=========================================
|
|
5113
|
+
END OF path-key@3.1.1 AND INFORMATION
|
|
5114
|
+
|
|
5115
|
+
%% path-to-regexp@8.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5116
|
+
=========================================
|
|
5117
|
+
The MIT License (MIT)
|
|
5118
|
+
|
|
5119
|
+
Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
|
|
3265
5120
|
|
|
3266
5121
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3267
5122
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3270,24 +5125,64 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
3270
5125
|
copies of the Software, and to permit persons to whom the Software is
|
|
3271
5126
|
furnished to do so, subject to the following conditions:
|
|
3272
5127
|
|
|
3273
|
-
The above copyright notice and this permission notice shall be included in
|
|
3274
|
-
copies or substantial portions of the Software.
|
|
5128
|
+
The above copyright notice and this permission notice shall be included in
|
|
5129
|
+
all copies or substantial portions of the Software.
|
|
3275
5130
|
|
|
3276
5131
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3277
5132
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3278
5133
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3279
5134
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3280
5135
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3281
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3282
|
-
SOFTWARE.
|
|
5136
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5137
|
+
THE SOFTWARE.
|
|
3283
5138
|
=========================================
|
|
3284
|
-
END OF
|
|
5139
|
+
END OF path-to-regexp@8.2.0 AND INFORMATION
|
|
5140
|
+
|
|
5141
|
+
%% picocolors@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5142
|
+
=========================================
|
|
5143
|
+
ISC License
|
|
5144
|
+
|
|
5145
|
+
Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
|
|
5146
|
+
|
|
5147
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
5148
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
5149
|
+
copyright notice and this permission notice appear in all copies.
|
|
5150
|
+
|
|
5151
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
5152
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
5153
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
5154
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
5155
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
5156
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
5157
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
5158
|
+
=========================================
|
|
5159
|
+
END OF picocolors@1.1.0 AND INFORMATION
|
|
5160
|
+
|
|
5161
|
+
%% picocolors@1.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5162
|
+
=========================================
|
|
5163
|
+
ISC License
|
|
5164
|
+
|
|
5165
|
+
Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
|
|
5166
|
+
|
|
5167
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
5168
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
5169
|
+
copyright notice and this permission notice appear in all copies.
|
|
5170
|
+
|
|
5171
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
5172
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
5173
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
5174
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
5175
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
5176
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
5177
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
5178
|
+
=========================================
|
|
5179
|
+
END OF picocolors@1.1.1 AND INFORMATION
|
|
3285
5180
|
|
|
3286
|
-
%%
|
|
5181
|
+
%% picomatch@2.3.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3287
5182
|
=========================================
|
|
3288
|
-
MIT License
|
|
5183
|
+
The MIT License (MIT)
|
|
3289
5184
|
|
|
3290
|
-
Copyright (c)
|
|
5185
|
+
Copyright (c) 2017-present, Jon Schlinkert.
|
|
3291
5186
|
|
|
3292
5187
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3293
5188
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3296,24 +5191,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
3296
5191
|
copies of the Software, and to permit persons to whom the Software is
|
|
3297
5192
|
furnished to do so, subject to the following conditions:
|
|
3298
5193
|
|
|
3299
|
-
The above copyright notice and this permission notice shall be included in
|
|
3300
|
-
copies or substantial portions of the Software.
|
|
5194
|
+
The above copyright notice and this permission notice shall be included in
|
|
5195
|
+
all copies or substantial portions of the Software.
|
|
3301
5196
|
|
|
3302
5197
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3303
5198
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3304
5199
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3305
5200
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3306
5201
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3307
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3308
|
-
SOFTWARE.
|
|
5202
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5203
|
+
THE SOFTWARE.
|
|
3309
5204
|
=========================================
|
|
3310
|
-
END OF
|
|
5205
|
+
END OF picomatch@2.3.1 AND INFORMATION
|
|
3311
5206
|
|
|
3312
|
-
%%
|
|
5207
|
+
%% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3313
5208
|
=========================================
|
|
3314
5209
|
MIT License
|
|
3315
5210
|
|
|
3316
|
-
Copyright (c)
|
|
5211
|
+
Copyright (c) 2019
|
|
3317
5212
|
|
|
3318
5213
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3319
5214
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3333,9 +5228,9 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3333
5228
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3334
5229
|
SOFTWARE.
|
|
3335
5230
|
=========================================
|
|
3336
|
-
END OF
|
|
5231
|
+
END OF pkce-challenge@5.0.0 AND INFORMATION
|
|
3337
5232
|
|
|
3338
|
-
%%
|
|
5233
|
+
%% pretty-format@29.7.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3339
5234
|
=========================================
|
|
3340
5235
|
MIT License
|
|
3341
5236
|
|
|
@@ -3359,35 +5254,36 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3359
5254
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3360
5255
|
SOFTWARE.
|
|
3361
5256
|
=========================================
|
|
3362
|
-
END OF
|
|
5257
|
+
END OF pretty-format@29.7.0 AND INFORMATION
|
|
3363
5258
|
|
|
3364
|
-
%%
|
|
5259
|
+
%% proxy-addr@2.0.7 NOTICES AND INFORMATION BEGIN HERE
|
|
3365
5260
|
=========================================
|
|
3366
|
-
The MIT License
|
|
5261
|
+
(The MIT License)
|
|
3367
5262
|
|
|
3368
|
-
Copyright (c) 2014
|
|
5263
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
3369
5264
|
|
|
3370
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
3371
|
-
of this software and associated documentation files (the
|
|
3372
|
-
in the Software without restriction, including
|
|
3373
|
-
to use, copy, modify, merge, publish,
|
|
3374
|
-
copies of the Software, and to
|
|
3375
|
-
furnished to do so, subject to
|
|
5265
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5266
|
+
a copy of this software and associated documentation files (the
|
|
5267
|
+
'Software'), to deal in the Software without restriction, including
|
|
5268
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5269
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5270
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5271
|
+
the following conditions:
|
|
3376
5272
|
|
|
3377
|
-
The above copyright notice and this permission notice shall be
|
|
3378
|
-
all copies or substantial portions of the Software.
|
|
5273
|
+
The above copyright notice and this permission notice shall be
|
|
5274
|
+
included in all copies or substantial portions of the Software.
|
|
3379
5275
|
|
|
3380
|
-
THE SOFTWARE IS PROVIDED
|
|
3381
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3382
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3383
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3384
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3385
|
-
OUT OF OR IN CONNECTION WITH THE
|
|
3386
|
-
THE SOFTWARE.
|
|
5276
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5277
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5278
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5279
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5280
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5281
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5282
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3387
5283
|
=========================================
|
|
3388
|
-
END OF
|
|
5284
|
+
END OF proxy-addr@2.0.7 AND INFORMATION
|
|
3389
5285
|
|
|
3390
|
-
%%
|
|
5286
|
+
%% punycode@2.3.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3391
5287
|
=========================================
|
|
3392
5288
|
Copyright Mathias Bynens <https://mathiasbynens.be/>
|
|
3393
5289
|
|
|
@@ -3410,61 +5306,76 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
3410
5306
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3411
5307
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3412
5308
|
=========================================
|
|
3413
|
-
END OF
|
|
5309
|
+
END OF punycode@2.3.1 AND INFORMATION
|
|
3414
5310
|
|
|
3415
|
-
%%
|
|
5311
|
+
%% qs@6.14.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3416
5312
|
=========================================
|
|
3417
|
-
|
|
5313
|
+
BSD 3-Clause License
|
|
3418
5314
|
|
|
3419
|
-
Copyright (c)
|
|
5315
|
+
Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
|
|
5316
|
+
All rights reserved.
|
|
3420
5317
|
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
in the Software without restriction, including without limitation the rights
|
|
3424
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3425
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3426
|
-
furnished to do so, subject to the following conditions:
|
|
5318
|
+
Redistribution and use in source and binary forms, with or without
|
|
5319
|
+
modification, are permitted provided that the following conditions are met:
|
|
3427
5320
|
|
|
3428
|
-
|
|
3429
|
-
|
|
5321
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
5322
|
+
list of conditions and the following disclaimer.
|
|
3430
5323
|
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3435
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3436
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3437
|
-
SOFTWARE.
|
|
5324
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
5325
|
+
this list of conditions and the following disclaimer in the documentation
|
|
5326
|
+
and/or other materials provided with the distribution.
|
|
3438
5327
|
|
|
3439
|
-
|
|
5328
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
5329
|
+
contributors may be used to endorse or promote products derived from
|
|
5330
|
+
this software without specific prior written permission.
|
|
5331
|
+
|
|
5332
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
5333
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
5334
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
5335
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
5336
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
5337
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
5338
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
5339
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
5340
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
5341
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3440
5342
|
=========================================
|
|
3441
|
-
END OF
|
|
5343
|
+
END OF qs@6.14.0 AND INFORMATION
|
|
3442
5344
|
|
|
3443
|
-
%%
|
|
5345
|
+
%% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3444
5346
|
=========================================
|
|
3445
|
-
The
|
|
5347
|
+
(The MIT License)
|
|
3446
5348
|
|
|
3447
|
-
Copyright (c)
|
|
5349
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
5350
|
+
Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
|
|
3448
5351
|
|
|
3449
|
-
Permission
|
|
3450
|
-
|
|
3451
|
-
|
|
5352
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5353
|
+
a copy of this software and associated documentation files (the
|
|
5354
|
+
'Software'), to deal in the Software without restriction, including
|
|
5355
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5356
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5357
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5358
|
+
the following conditions:
|
|
3452
5359
|
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
IN
|
|
5360
|
+
The above copyright notice and this permission notice shall be
|
|
5361
|
+
included in all copies or substantial portions of the Software.
|
|
5362
|
+
|
|
5363
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5364
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5365
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5366
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5367
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5368
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5369
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3460
5370
|
=========================================
|
|
3461
|
-
END OF
|
|
5371
|
+
END OF range-parser@1.2.1 AND INFORMATION
|
|
3462
5372
|
|
|
3463
|
-
%%
|
|
5373
|
+
%% raw-body@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3464
5374
|
=========================================
|
|
3465
5375
|
The MIT License (MIT)
|
|
3466
5376
|
|
|
3467
|
-
Copyright (c) 2014
|
|
5377
|
+
Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
|
|
5378
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
3468
5379
|
|
|
3469
5380
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3470
5381
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3484,13 +5395,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3484
5395
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3485
5396
|
THE SOFTWARE.
|
|
3486
5397
|
=========================================
|
|
3487
|
-
END OF
|
|
5398
|
+
END OF raw-body@3.0.0 AND INFORMATION
|
|
3488
5399
|
|
|
3489
|
-
%%
|
|
5400
|
+
%% react-is@18.3.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3490
5401
|
=========================================
|
|
3491
|
-
|
|
5402
|
+
MIT License
|
|
3492
5403
|
|
|
3493
|
-
Copyright (c)
|
|
5404
|
+
Copyright (c) Facebook, Inc. and its affiliates.
|
|
3494
5405
|
|
|
3495
5406
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3496
5407
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3510,13 +5421,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3510
5421
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3511
5422
|
SOFTWARE.
|
|
3512
5423
|
=========================================
|
|
3513
|
-
END OF
|
|
5424
|
+
END OF react-is@18.3.1 AND INFORMATION
|
|
3514
5425
|
|
|
3515
|
-
%%
|
|
5426
|
+
%% readdirp@3.6.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3516
5427
|
=========================================
|
|
3517
|
-
|
|
5428
|
+
MIT License
|
|
3518
5429
|
|
|
3519
|
-
Copyright (c)
|
|
5430
|
+
Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
|
|
3520
5431
|
|
|
3521
5432
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3522
5433
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3525,24 +5436,52 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
3525
5436
|
copies of the Software, and to permit persons to whom the Software is
|
|
3526
5437
|
furnished to do so, subject to the following conditions:
|
|
3527
5438
|
|
|
3528
|
-
The above copyright notice and this permission notice shall be included in
|
|
3529
|
-
|
|
5439
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5440
|
+
copies or substantial portions of the Software.
|
|
3530
5441
|
|
|
3531
5442
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3532
5443
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3533
5444
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3534
5445
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3535
5446
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3536
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3537
|
-
|
|
5447
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5448
|
+
SOFTWARE.
|
|
3538
5449
|
=========================================
|
|
3539
|
-
END OF
|
|
5450
|
+
END OF readdirp@3.6.0 AND INFORMATION
|
|
3540
5451
|
|
|
3541
|
-
%%
|
|
5452
|
+
%% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5453
|
+
=========================================
|
|
5454
|
+
(The MIT License)
|
|
5455
|
+
|
|
5456
|
+
Copyright (c) 2013 Roman Shtylman
|
|
5457
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
5458
|
+
|
|
5459
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5460
|
+
a copy of this software and associated documentation files (the
|
|
5461
|
+
'Software'), to deal in the Software without restriction, including
|
|
5462
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5463
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5464
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5465
|
+
the following conditions:
|
|
5466
|
+
|
|
5467
|
+
The above copyright notice and this permission notice shall be
|
|
5468
|
+
included in all copies or substantial portions of the Software.
|
|
5469
|
+
|
|
5470
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5471
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5472
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5473
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5474
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5475
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5476
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5477
|
+
=========================================
|
|
5478
|
+
END OF router@2.2.0 AND INFORMATION
|
|
5479
|
+
|
|
5480
|
+
%% safe-buffer@5.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3542
5481
|
=========================================
|
|
3543
5482
|
The MIT License (MIT)
|
|
3544
5483
|
|
|
3545
|
-
Copyright (c)
|
|
5484
|
+
Copyright (c) Feross Aboukhadijeh
|
|
3546
5485
|
|
|
3547
5486
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3548
5487
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3562,13 +5501,39 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3562
5501
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3563
5502
|
THE SOFTWARE.
|
|
3564
5503
|
=========================================
|
|
3565
|
-
END OF
|
|
5504
|
+
END OF safe-buffer@5.2.1 AND INFORMATION
|
|
3566
5505
|
|
|
3567
|
-
%%
|
|
5506
|
+
%% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3568
5507
|
=========================================
|
|
3569
|
-
|
|
5508
|
+
MIT License
|
|
3570
5509
|
|
|
3571
|
-
Copyright (c)
|
|
5510
|
+
Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
|
|
5511
|
+
|
|
5512
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5513
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5514
|
+
in the Software without restriction, including without limitation the rights
|
|
5515
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5516
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5517
|
+
furnished to do so, subject to the following conditions:
|
|
5518
|
+
|
|
5519
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5520
|
+
copies or substantial portions of the Software.
|
|
5521
|
+
|
|
5522
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5523
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5524
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5525
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5526
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5527
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5528
|
+
SOFTWARE.
|
|
5529
|
+
=========================================
|
|
5530
|
+
END OF safer-buffer@2.1.2 AND INFORMATION
|
|
5531
|
+
|
|
5532
|
+
%% semver@6.3.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5533
|
+
=========================================
|
|
5534
|
+
The ISC License
|
|
5535
|
+
|
|
5536
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
3572
5537
|
|
|
3573
5538
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
3574
5539
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -3579,16 +5544,72 @@ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
3579
5544
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3580
5545
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3581
5546
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3582
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
3583
|
-
|
|
5547
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
5548
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3584
5549
|
=========================================
|
|
3585
|
-
END OF
|
|
5550
|
+
END OF semver@6.3.1 AND INFORMATION
|
|
3586
5551
|
|
|
3587
|
-
%%
|
|
5552
|
+
%% send@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3588
5553
|
=========================================
|
|
3589
|
-
|
|
5554
|
+
(The MIT License)
|
|
3590
5555
|
|
|
3591
|
-
Copyright (c)
|
|
5556
|
+
Copyright (c) 2012 TJ Holowaychuk
|
|
5557
|
+
Copyright (c) 2014-2022 Douglas Christopher Wilson
|
|
5558
|
+
|
|
5559
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5560
|
+
a copy of this software and associated documentation files (the
|
|
5561
|
+
'Software'), to deal in the Software without restriction, including
|
|
5562
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5563
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5564
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5565
|
+
the following conditions:
|
|
5566
|
+
|
|
5567
|
+
The above copyright notice and this permission notice shall be
|
|
5568
|
+
included in all copies or substantial portions of the Software.
|
|
5569
|
+
|
|
5570
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5571
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5572
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5573
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5574
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5575
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5576
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5577
|
+
=========================================
|
|
5578
|
+
END OF send@1.2.0 AND INFORMATION
|
|
5579
|
+
|
|
5580
|
+
%% serve-static@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5581
|
+
=========================================
|
|
5582
|
+
(The MIT License)
|
|
5583
|
+
|
|
5584
|
+
Copyright (c) 2010 Sencha Inc.
|
|
5585
|
+
Copyright (c) 2011 LearnBoost
|
|
5586
|
+
Copyright (c) 2011 TJ Holowaychuk
|
|
5587
|
+
Copyright (c) 2014-2016 Douglas Christopher Wilson
|
|
5588
|
+
|
|
5589
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5590
|
+
a copy of this software and associated documentation files (the
|
|
5591
|
+
'Software'), to deal in the Software without restriction, including
|
|
5592
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5593
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5594
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5595
|
+
the following conditions:
|
|
5596
|
+
|
|
5597
|
+
The above copyright notice and this permission notice shall be
|
|
5598
|
+
included in all copies or substantial portions of the Software.
|
|
5599
|
+
|
|
5600
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5601
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5602
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5603
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5604
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5605
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5606
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5607
|
+
=========================================
|
|
5608
|
+
END OF serve-static@2.2.0 AND INFORMATION
|
|
5609
|
+
|
|
5610
|
+
%% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5611
|
+
=========================================
|
|
5612
|
+
Copyright (c) 2015, Wes Todd
|
|
3592
5613
|
|
|
3593
5614
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
3594
5615
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -3596,19 +5617,47 @@ copyright notice and this permission notice appear in all copies.
|
|
|
3596
5617
|
|
|
3597
5618
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3598
5619
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3599
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3600
|
-
|
|
3601
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3602
|
-
|
|
3603
|
-
|
|
5620
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
5621
|
+
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
5622
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
5623
|
+
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
5624
|
+
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
5625
|
+
=========================================
|
|
5626
|
+
END OF setprototypeof@1.2.0 AND INFORMATION
|
|
5627
|
+
|
|
5628
|
+
%% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5629
|
+
=========================================
|
|
5630
|
+
MIT License
|
|
5631
|
+
|
|
5632
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
5633
|
+
|
|
5634
|
+
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:
|
|
5635
|
+
|
|
5636
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5637
|
+
|
|
5638
|
+
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.
|
|
5639
|
+
=========================================
|
|
5640
|
+
END OF shebang-command@2.0.0 AND INFORMATION
|
|
5641
|
+
|
|
5642
|
+
%% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5643
|
+
=========================================
|
|
5644
|
+
MIT License
|
|
5645
|
+
|
|
5646
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
5647
|
+
|
|
5648
|
+
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:
|
|
5649
|
+
|
|
5650
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5651
|
+
|
|
5652
|
+
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.
|
|
3604
5653
|
=========================================
|
|
3605
|
-
END OF
|
|
5654
|
+
END OF shebang-regex@3.0.0 AND INFORMATION
|
|
3606
5655
|
|
|
3607
|
-
%%
|
|
5656
|
+
%% side-channel-list@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3608
5657
|
=========================================
|
|
3609
|
-
|
|
5658
|
+
MIT License
|
|
3610
5659
|
|
|
3611
|
-
Copyright (c)
|
|
5660
|
+
Copyright (c) 2024 Jordan Harband
|
|
3612
5661
|
|
|
3613
5662
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3614
5663
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3617,24 +5666,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
3617
5666
|
copies of the Software, and to permit persons to whom the Software is
|
|
3618
5667
|
furnished to do so, subject to the following conditions:
|
|
3619
5668
|
|
|
3620
|
-
The above copyright notice and this permission notice shall be included in
|
|
3621
|
-
|
|
5669
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5670
|
+
copies or substantial portions of the Software.
|
|
3622
5671
|
|
|
3623
5672
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3624
5673
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3625
5674
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3626
5675
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3627
5676
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3628
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3629
|
-
|
|
5677
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5678
|
+
SOFTWARE.
|
|
3630
5679
|
=========================================
|
|
3631
|
-
END OF
|
|
5680
|
+
END OF side-channel-list@1.0.0 AND INFORMATION
|
|
3632
5681
|
|
|
3633
|
-
%%
|
|
5682
|
+
%% side-channel-map@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3634
5683
|
=========================================
|
|
3635
5684
|
MIT License
|
|
3636
5685
|
|
|
3637
|
-
Copyright (c)
|
|
5686
|
+
Copyright (c) 2024 Jordan Harband
|
|
3638
5687
|
|
|
3639
5688
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3640
5689
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3654,13 +5703,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3654
5703
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3655
5704
|
SOFTWARE.
|
|
3656
5705
|
=========================================
|
|
3657
|
-
END OF
|
|
5706
|
+
END OF side-channel-map@1.0.1 AND INFORMATION
|
|
3658
5707
|
|
|
3659
|
-
%%
|
|
5708
|
+
%% side-channel-weakmap@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3660
5709
|
=========================================
|
|
3661
5710
|
MIT License
|
|
3662
5711
|
|
|
3663
|
-
Copyright (c)
|
|
5712
|
+
Copyright (c) 2019 Jordan Harband
|
|
3664
5713
|
|
|
3665
5714
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3666
5715
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3680,13 +5729,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3680
5729
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3681
5730
|
SOFTWARE.
|
|
3682
5731
|
=========================================
|
|
3683
|
-
END OF
|
|
5732
|
+
END OF side-channel-weakmap@1.0.2 AND INFORMATION
|
|
3684
5733
|
|
|
3685
|
-
%%
|
|
5734
|
+
%% side-channel@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3686
5735
|
=========================================
|
|
3687
5736
|
MIT License
|
|
3688
5737
|
|
|
3689
|
-
Copyright (c)
|
|
5738
|
+
Copyright (c) 2019 Jordan Harband
|
|
3690
5739
|
|
|
3691
5740
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3692
5741
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3706,27 +5755,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3706
5755
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3707
5756
|
SOFTWARE.
|
|
3708
5757
|
=========================================
|
|
3709
|
-
END OF
|
|
3710
|
-
|
|
3711
|
-
%% semver@6.3.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3712
|
-
=========================================
|
|
3713
|
-
The ISC License
|
|
3714
|
-
|
|
3715
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
3716
|
-
|
|
3717
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
3718
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
3719
|
-
copyright notice and this permission notice appear in all copies.
|
|
3720
|
-
|
|
3721
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
3722
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
3723
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
3724
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
3725
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
3726
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
3727
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
3728
|
-
=========================================
|
|
3729
|
-
END OF semver@6.3.1 AND INFORMATION
|
|
5758
|
+
END OF side-channel@1.1.0 AND INFORMATION
|
|
3730
5759
|
|
|
3731
5760
|
%% slash@3.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3732
5761
|
=========================================
|
|
@@ -3826,6 +5855,60 @@ THE SOFTWARE.
|
|
|
3826
5855
|
=========================================
|
|
3827
5856
|
END OF stack-utils@2.0.6 AND INFORMATION
|
|
3828
5857
|
|
|
5858
|
+
%% statuses@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5859
|
+
=========================================
|
|
5860
|
+
The MIT License (MIT)
|
|
5861
|
+
|
|
5862
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
5863
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
5864
|
+
|
|
5865
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5866
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5867
|
+
in the Software without restriction, including without limitation the rights
|
|
5868
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5869
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5870
|
+
furnished to do so, subject to the following conditions:
|
|
5871
|
+
|
|
5872
|
+
The above copyright notice and this permission notice shall be included in
|
|
5873
|
+
all copies or substantial portions of the Software.
|
|
5874
|
+
|
|
5875
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5876
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5877
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5878
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5879
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5880
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5881
|
+
THE SOFTWARE.
|
|
5882
|
+
=========================================
|
|
5883
|
+
END OF statuses@2.0.1 AND INFORMATION
|
|
5884
|
+
|
|
5885
|
+
%% statuses@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
5886
|
+
=========================================
|
|
5887
|
+
The MIT License (MIT)
|
|
5888
|
+
|
|
5889
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
5890
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
5891
|
+
|
|
5892
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5893
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5894
|
+
in the Software without restriction, including without limitation the rights
|
|
5895
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5896
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5897
|
+
furnished to do so, subject to the following conditions:
|
|
5898
|
+
|
|
5899
|
+
The above copyright notice and this permission notice shall be included in
|
|
5900
|
+
all copies or substantial portions of the Software.
|
|
5901
|
+
|
|
5902
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5903
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5904
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5905
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5906
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5907
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5908
|
+
THE SOFTWARE.
|
|
5909
|
+
=========================================
|
|
5910
|
+
END OF statuses@2.0.2 AND INFORMATION
|
|
5911
|
+
|
|
3829
5912
|
%% stoppable@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3830
5913
|
=========================================
|
|
3831
5914
|
The MIT License (MIT)
|
|
@@ -3906,6 +5989,60 @@ THE SOFTWARE.
|
|
|
3906
5989
|
=========================================
|
|
3907
5990
|
END OF to-regex-range@5.0.1 AND INFORMATION
|
|
3908
5991
|
|
|
5992
|
+
%% toidentifier@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5993
|
+
=========================================
|
|
5994
|
+
MIT License
|
|
5995
|
+
|
|
5996
|
+
Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
5997
|
+
|
|
5998
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5999
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6000
|
+
in the Software without restriction, including without limitation the rights
|
|
6001
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6002
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6003
|
+
furnished to do so, subject to the following conditions:
|
|
6004
|
+
|
|
6005
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6006
|
+
copies or substantial portions of the Software.
|
|
6007
|
+
|
|
6008
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6009
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6010
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6011
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6012
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6013
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6014
|
+
SOFTWARE.
|
|
6015
|
+
=========================================
|
|
6016
|
+
END OF toidentifier@1.0.1 AND INFORMATION
|
|
6017
|
+
|
|
6018
|
+
%% type-is@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
6019
|
+
=========================================
|
|
6020
|
+
(The MIT License)
|
|
6021
|
+
|
|
6022
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
6023
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
6024
|
+
|
|
6025
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6026
|
+
a copy of this software and associated documentation files (the
|
|
6027
|
+
'Software'), to deal in the Software without restriction, including
|
|
6028
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
6029
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
6030
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
6031
|
+
the following conditions:
|
|
6032
|
+
|
|
6033
|
+
The above copyright notice and this permission notice shall be
|
|
6034
|
+
included in all copies or substantial portions of the Software.
|
|
6035
|
+
|
|
6036
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
6037
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
6038
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
6039
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
6040
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
6041
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
6042
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6043
|
+
=========================================
|
|
6044
|
+
END OF type-is@2.0.1 AND INFORMATION
|
|
6045
|
+
|
|
3909
6046
|
%% undici-types@6.19.8 NOTICES AND INFORMATION BEGIN HERE
|
|
3910
6047
|
=========================================
|
|
3911
6048
|
MIT License
|
|
@@ -3932,6 +6069,33 @@ SOFTWARE.
|
|
|
3932
6069
|
=========================================
|
|
3933
6070
|
END OF undici-types@6.19.8 AND INFORMATION
|
|
3934
6071
|
|
|
6072
|
+
%% unpipe@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
6073
|
+
=========================================
|
|
6074
|
+
(The MIT License)
|
|
6075
|
+
|
|
6076
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
6077
|
+
|
|
6078
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6079
|
+
a copy of this software and associated documentation files (the
|
|
6080
|
+
'Software'), to deal in the Software without restriction, including
|
|
6081
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
6082
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
6083
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
6084
|
+
the following conditions:
|
|
6085
|
+
|
|
6086
|
+
The above copyright notice and this permission notice shall be
|
|
6087
|
+
included in all copies or substantial portions of the Software.
|
|
6088
|
+
|
|
6089
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
6090
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
6091
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
6092
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
6093
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
6094
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
6095
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6096
|
+
=========================================
|
|
6097
|
+
END OF unpipe@1.0.0 AND INFORMATION
|
|
6098
|
+
|
|
3935
6099
|
%% update-browserslist-db@1.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3936
6100
|
=========================================
|
|
3937
6101
|
The MIT License (MIT)
|
|
@@ -3957,6 +6121,89 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3957
6121
|
=========================================
|
|
3958
6122
|
END OF update-browserslist-db@1.1.3 AND INFORMATION
|
|
3959
6123
|
|
|
6124
|
+
%% uri-js@4.4.1 NOTICES AND INFORMATION BEGIN HERE
|
|
6125
|
+
=========================================
|
|
6126
|
+
Copyright 2011 Gary Court. All rights reserved.
|
|
6127
|
+
|
|
6128
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
6129
|
+
|
|
6130
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
6131
|
+
|
|
6132
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
6133
|
+
|
|
6134
|
+
THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6135
|
+
|
|
6136
|
+
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
|
|
6137
|
+
=========================================
|
|
6138
|
+
END OF uri-js@4.4.1 AND INFORMATION
|
|
6139
|
+
|
|
6140
|
+
%% vary@1.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
6141
|
+
=========================================
|
|
6142
|
+
(The MIT License)
|
|
6143
|
+
|
|
6144
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
6145
|
+
|
|
6146
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6147
|
+
a copy of this software and associated documentation files (the
|
|
6148
|
+
'Software'), to deal in the Software without restriction, including
|
|
6149
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
6150
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
6151
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
6152
|
+
the following conditions:
|
|
6153
|
+
|
|
6154
|
+
The above copyright notice and this permission notice shall be
|
|
6155
|
+
included in all copies or substantial portions of the Software.
|
|
6156
|
+
|
|
6157
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
6158
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
6159
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
6160
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
6161
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
6162
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
6163
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6164
|
+
=========================================
|
|
6165
|
+
END OF vary@1.1.2 AND INFORMATION
|
|
6166
|
+
|
|
6167
|
+
%% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
6168
|
+
=========================================
|
|
6169
|
+
The ISC License
|
|
6170
|
+
|
|
6171
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
6172
|
+
|
|
6173
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6174
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
6175
|
+
copyright notice and this permission notice appear in all copies.
|
|
6176
|
+
|
|
6177
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
6178
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
6179
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
6180
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
6181
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
6182
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
6183
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
6184
|
+
=========================================
|
|
6185
|
+
END OF which@2.0.2 AND INFORMATION
|
|
6186
|
+
|
|
6187
|
+
%% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
6188
|
+
=========================================
|
|
6189
|
+
The ISC License
|
|
6190
|
+
|
|
6191
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
6192
|
+
|
|
6193
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6194
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
6195
|
+
copyright notice and this permission notice appear in all copies.
|
|
6196
|
+
|
|
6197
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
6198
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
6199
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
6200
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
6201
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
6202
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
6203
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
6204
|
+
=========================================
|
|
6205
|
+
END OF wrappy@1.0.2 AND INFORMATION
|
|
6206
|
+
|
|
3960
6207
|
%% yallist@3.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3961
6208
|
=========================================
|
|
3962
6209
|
The ISC License
|
|
@@ -3977,8 +6224,54 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
3977
6224
|
=========================================
|
|
3978
6225
|
END OF yallist@3.1.1 AND INFORMATION
|
|
3979
6226
|
|
|
6227
|
+
%% zod-to-json-schema@3.24.6 NOTICES AND INFORMATION BEGIN HERE
|
|
6228
|
+
=========================================
|
|
6229
|
+
ISC License
|
|
6230
|
+
|
|
6231
|
+
Copyright (c) 2020, Stefan Terdell
|
|
6232
|
+
|
|
6233
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6234
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
6235
|
+
copyright notice and this permission notice appear in all copies.
|
|
6236
|
+
|
|
6237
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
6238
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
6239
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
6240
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
6241
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
6242
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
6243
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
6244
|
+
=========================================
|
|
6245
|
+
END OF zod-to-json-schema@3.24.6 AND INFORMATION
|
|
6246
|
+
|
|
6247
|
+
%% zod@3.25.76 NOTICES AND INFORMATION BEGIN HERE
|
|
6248
|
+
=========================================
|
|
6249
|
+
MIT License
|
|
6250
|
+
|
|
6251
|
+
Copyright (c) 2025 Colin McDonnell
|
|
6252
|
+
|
|
6253
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6254
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6255
|
+
in the Software without restriction, including without limitation the rights
|
|
6256
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6257
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6258
|
+
furnished to do so, subject to the following conditions:
|
|
6259
|
+
|
|
6260
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6261
|
+
copies or substantial portions of the Software.
|
|
6262
|
+
|
|
6263
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6264
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6265
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6266
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6267
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6268
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6269
|
+
SOFTWARE.
|
|
6270
|
+
=========================================
|
|
6271
|
+
END OF zod@3.25.76 AND INFORMATION
|
|
6272
|
+
|
|
3980
6273
|
SUMMARY BEGIN HERE
|
|
3981
6274
|
=========================================
|
|
3982
|
-
Total Packages:
|
|
6275
|
+
Total Packages: 222
|
|
3983
6276
|
=========================================
|
|
3984
6277
|
END OF SUMMARY
|