@smoothdeploy/playwright 1.57.1 → 1.58.1-beta-1770383926000
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.
Potentially problematic release.
This version of @smoothdeploy/playwright might be problematic. Click here for more details.
- package/ThirdPartyNotices.txt +1188 -65
- package/lib/agents/agentParser.js +89 -0
- package/lib/agents/generateAgents.js +27 -74
- package/lib/agents/generateAgents.js.map +7 -0
- package/lib/agents/playwright-test-planner.agent.md +1 -0
- package/lib/common/config.js +6 -4
- package/lib/common/config.js.map +7 -0
- package/lib/common/configLoader.js.map +7 -0
- package/lib/common/esmLoaderHost.js +2 -0
- package/lib/common/esmLoaderHost.js.map +7 -0
- package/lib/common/expectBundle.js +2 -17
- package/lib/common/expectBundle.js.map +7 -0
- package/lib/common/expectBundleImpl.js +132 -132
- package/lib/common/expectBundleImpl.js.map +7 -0
- package/lib/common/fixtures.js.map +7 -0
- package/lib/common/globals.js.map +7 -0
- package/lib/common/ipc.js.map +7 -0
- package/lib/common/poolBuilder.js.map +7 -0
- package/lib/common/process.js +28 -0
- package/lib/common/process.js.map +7 -0
- package/lib/common/suiteUtils.js.map +7 -0
- package/lib/common/test.js.map +7 -0
- package/lib/common/testLoader.js.map +7 -0
- package/lib/common/testType.js.map +7 -0
- package/lib/common/validators.js +10 -10
- package/lib/common/validators.js.map +7 -0
- package/lib/fsWatcher.js.map +7 -0
- package/lib/index.js +205 -12
- package/lib/index.js.map +7 -0
- package/lib/internalsForTest.js.map +7 -0
- package/lib/isomorphic/events.js.map +7 -0
- package/lib/isomorphic/folders.js.map +7 -0
- package/lib/isomorphic/stringInternPool.js.map +7 -0
- package/lib/isomorphic/teleReceiver.js +15 -2
- package/lib/isomorphic/teleReceiver.js.map +7 -0
- package/lib/isomorphic/teleSuiteUpdater.js +24 -4
- package/lib/isomorphic/teleSuiteUpdater.js.map +7 -0
- package/lib/isomorphic/testServerConnection.js.map +7 -0
- package/lib/isomorphic/testServerInterface.js.map +7 -0
- package/lib/isomorphic/testTree.js +13 -18
- package/lib/isomorphic/testTree.js.map +7 -0
- package/lib/isomorphic/types.d.js.map +7 -0
- package/lib/loader/loaderMain.js.map +7 -0
- package/lib/matchers/expect.js +2 -15
- package/lib/matchers/expect.js.map +7 -0
- package/lib/matchers/matcherHint.js +1 -44
- package/lib/matchers/matcherHint.js.map +7 -0
- package/lib/matchers/matchers.js +3 -2
- package/lib/matchers/matchers.js.map +7 -0
- package/lib/matchers/toBeTruthy.js +5 -3
- package/lib/matchers/toBeTruthy.js.map +7 -0
- package/lib/matchers/toEqual.js +4 -3
- package/lib/matchers/toEqual.js.map +7 -0
- package/lib/matchers/toHaveURL.js +5 -6
- package/lib/matchers/toHaveURL.js.map +7 -0
- package/lib/matchers/toMatchAriaSnapshot.js +5 -5
- package/lib/matchers/toMatchAriaSnapshot.js.map +7 -0
- package/lib/matchers/toMatchSnapshot.js +9 -8
- package/lib/matchers/toMatchSnapshot.js.map +7 -0
- package/lib/matchers/toMatchText.js +9 -9
- package/lib/matchers/toMatchText.js.map +7 -0
- package/lib/mcp/browser/actions.d.js.map +7 -0
- package/lib/mcp/browser/browserContextFactory.js +62 -29
- package/lib/mcp/browser/browserContextFactory.js.map +7 -0
- package/lib/mcp/browser/browserServerBackend.js +17 -9
- package/lib/mcp/browser/browserServerBackend.js.map +7 -0
- package/lib/mcp/browser/codegen.js.map +7 -0
- package/lib/mcp/browser/config.js +65 -12
- package/lib/mcp/browser/config.js.map +7 -0
- package/lib/mcp/browser/context.js +71 -94
- package/lib/mcp/browser/context.js.map +7 -0
- package/lib/mcp/browser/response.js +172 -131
- package/lib/mcp/browser/response.js.map +7 -0
- package/lib/mcp/browser/sessionLog.js +19 -104
- package/lib/mcp/browser/sessionLog.js.map +7 -0
- package/lib/mcp/browser/tab.js +92 -41
- package/lib/mcp/browser/tab.js.map +7 -0
- package/lib/mcp/browser/tools/common.js +8 -6
- package/lib/mcp/browser/tools/common.js.map +7 -0
- package/lib/mcp/browser/tools/console.js +7 -5
- package/lib/mcp/browser/tools/console.js.map +7 -0
- package/lib/mcp/browser/tools/dialogs.js +4 -4
- package/lib/mcp/browser/tools/dialogs.js.map +7 -0
- package/lib/mcp/browser/tools/evaluate.js +11 -19
- package/lib/mcp/browser/tools/evaluate.js.map +7 -0
- package/lib/mcp/browser/tools/files.js +3 -3
- package/lib/mcp/browser/tools/files.js.map +7 -0
- package/lib/mcp/browser/tools/form.js +9 -19
- package/lib/mcp/browser/tools/form.js.map +7 -0
- package/lib/mcp/browser/tools/install.js +6 -3
- package/lib/mcp/browser/tools/install.js.map +7 -0
- package/lib/mcp/browser/tools/keyboard.js +34 -11
- package/lib/mcp/browser/tools/keyboard.js.map +7 -0
- package/lib/mcp/browser/tools/mouse.js +11 -11
- package/lib/mcp/browser/tools/mouse.js.map +7 -0
- package/lib/mcp/browser/tools/navigate.js +14 -5
- package/lib/mcp/browser/tools/navigate.js.map +7 -0
- package/lib/mcp/browser/tools/network.js +20 -11
- package/lib/mcp/browser/tools/network.js.map +7 -0
- package/lib/mcp/browser/tools/open.js +57 -0
- package/lib/mcp/browser/tools/pdf.js +9 -19
- package/lib/mcp/browser/tools/pdf.js.map +7 -0
- package/lib/mcp/browser/tools/runCode.js +11 -8
- package/lib/mcp/browser/tools/runCode.js.map +7 -0
- package/lib/mcp/browser/tools/screenshot.js +16 -29
- package/lib/mcp/browser/tools/screenshot.js.map +7 -0
- package/lib/mcp/browser/tools/snapshot.js +21 -29
- package/lib/mcp/browser/tools/snapshot.js.map +7 -0
- package/lib/mcp/browser/tools/tabs.js +12 -12
- package/lib/mcp/browser/tools/tabs.js.map +7 -0
- package/lib/mcp/browser/tools/tool.js +2 -4
- package/lib/mcp/browser/tools/tool.js.map +7 -0
- package/lib/mcp/browser/tools/tracing.js +6 -6
- package/lib/mcp/browser/tools/tracing.js.map +7 -0
- package/lib/mcp/browser/tools/utils.js +49 -44
- package/lib/mcp/browser/tools/utils.js.map +7 -0
- package/lib/mcp/browser/tools/verify.js +24 -34
- package/lib/mcp/browser/tools/verify.js.map +7 -0
- package/lib/mcp/browser/tools/wait.js +6 -6
- package/lib/mcp/browser/tools/wait.js.map +7 -0
- package/lib/mcp/browser/tools.js +3 -1
- package/lib/mcp/browser/tools.js.map +7 -0
- package/lib/mcp/browser/watchdog.js.map +7 -0
- package/lib/mcp/config.d.js.map +7 -0
- package/lib/mcp/extension/cdpRelay.js +1 -1
- package/lib/mcp/extension/cdpRelay.js.map +7 -0
- package/lib/mcp/extension/extensionContextFactory.js +6 -5
- package/lib/mcp/extension/extensionContextFactory.js.map +7 -0
- package/lib/mcp/extension/protocol.js.map +7 -0
- package/lib/mcp/index.js.map +7 -0
- package/lib/mcp/log.js.map +7 -0
- package/lib/mcp/program.js +15 -20
- package/lib/mcp/program.js.map +7 -0
- package/lib/mcp/sdk/bundle.js.map +7 -0
- package/lib/mcp/sdk/exports.js +0 -2
- package/lib/mcp/sdk/exports.js.map +7 -0
- package/lib/mcp/sdk/http.js +20 -55
- package/lib/mcp/sdk/http.js.map +7 -0
- package/lib/mcp/sdk/inProcessTransport.js.map +7 -0
- package/lib/mcp/sdk/proxyBackend.js.map +7 -0
- package/lib/mcp/sdk/server.js +29 -4
- package/lib/mcp/sdk/server.js.map +7 -0
- package/lib/mcp/sdk/tool.js +2 -2
- package/lib/mcp/sdk/tool.js.map +7 -0
- package/lib/mcp/terminal/cli.js +296 -0
- package/lib/mcp/terminal/command.js +56 -0
- package/lib/mcp/terminal/commands.js +333 -0
- package/lib/mcp/terminal/daemon.js +129 -0
- package/lib/mcp/terminal/help.json +32 -0
- package/lib/mcp/terminal/helpGenerator.js +88 -0
- package/lib/mcp/terminal/socketConnection.js +80 -0
- package/lib/mcp/test/browserBackend.js +3 -13
- package/lib/mcp/test/browserBackend.js.map +7 -0
- package/lib/mcp/test/generatorTools.js +9 -9
- package/lib/mcp/test/generatorTools.js.map +7 -0
- package/lib/mcp/test/plannerTools.js +23 -22
- package/lib/mcp/test/plannerTools.js.map +7 -0
- package/lib/mcp/test/seed.js.map +7 -0
- package/lib/mcp/test/streams.js.map +7 -0
- package/lib/mcp/test/testBackend.js +6 -6
- package/lib/mcp/test/testBackend.js.map +7 -0
- package/lib/mcp/test/testContext.js +9 -3
- package/lib/mcp/test/testContext.js.map +7 -0
- package/lib/mcp/test/testTool.js.map +7 -0
- package/lib/mcp/test/testTools.js +12 -10
- package/lib/mcp/test/testTools.js.map +7 -0
- package/lib/mcpBundleImpl.js.map +7 -0
- package/lib/plugins/gitCommitInfoPlugin.js.map +7 -0
- package/lib/plugins/index.js.map +7 -0
- package/lib/plugins/webServerPlugin.js.map +7 -0
- package/lib/program.js +18 -4
- package/lib/program.js.map +7 -0
- package/lib/reporters/base.js +29 -4
- package/lib/reporters/base.js.map +7 -0
- package/lib/reporters/blob.js +3 -0
- package/lib/reporters/blob.js.map +7 -0
- package/lib/reporters/dot.js +17 -0
- package/lib/reporters/dot.js.map +7 -0
- package/lib/reporters/empty.js.map +7 -0
- package/lib/reporters/github.js.map +7 -0
- package/lib/reporters/html.js +13 -3
- package/lib/reporters/html.js.map +7 -0
- package/lib/reporters/internalReporter.js +6 -0
- package/lib/reporters/internalReporter.js.map +7 -0
- package/lib/reporters/json.js.map +7 -0
- package/lib/reporters/junit.js.map +7 -0
- package/lib/reporters/line.js +18 -0
- package/lib/reporters/line.js.map +7 -0
- package/lib/reporters/list.js +22 -0
- package/lib/reporters/list.js.map +7 -0
- package/lib/reporters/listModeReporter.js.map +7 -0
- package/lib/reporters/markdown.js.map +7 -0
- package/lib/reporters/merge.js +25 -8
- package/lib/reporters/merge.js.map +7 -0
- package/lib/reporters/multiplexer.js +8 -0
- package/lib/reporters/multiplexer.js.map +7 -0
- package/lib/reporters/reporterV2.js.map +7 -0
- package/lib/reporters/smoothdeploy.js +191 -0
- package/lib/reporters/teleEmitter.js +22 -4
- package/lib/reporters/teleEmitter.js.map +7 -0
- package/lib/reporters/versions/blobV1.js.map +7 -0
- package/lib/runner/dispatcher.js +20 -4
- package/lib/runner/dispatcher.js.map +7 -0
- package/lib/runner/failureTracker.js.map +7 -0
- package/lib/runner/lastRun.js.map +7 -0
- package/lib/runner/loadUtils.js +2 -2
- package/lib/runner/loadUtils.js.map +7 -0
- package/lib/runner/loaderHost.js.map +7 -0
- package/lib/runner/processHost.js +19 -0
- package/lib/runner/processHost.js.map +7 -0
- package/lib/runner/projectUtils.js +1 -1
- package/lib/runner/projectUtils.js.map +7 -0
- package/lib/runner/rebase.js.map +7 -0
- package/lib/runner/reporters.js +3 -1
- package/lib/runner/reporters.js.map +7 -0
- package/lib/runner/sigIntWatcher.js.map +7 -0
- package/lib/runner/storage.js +91 -0
- package/lib/runner/taskRunner.js.map +7 -0
- package/lib/runner/tasks.js.map +7 -0
- package/lib/runner/testGroups.js +14 -6
- package/lib/runner/testGroups.js.map +7 -0
- package/lib/runner/testRunner.js +13 -4
- package/lib/runner/testRunner.js.map +7 -0
- package/lib/runner/testServer.js +2 -2
- package/lib/runner/testServer.js.map +7 -0
- package/lib/runner/uiModeReporter.js.map +7 -0
- package/lib/runner/vcs.js.map +7 -0
- package/lib/runner/watchMode.js +2 -1
- package/lib/runner/watchMode.js.map +7 -0
- package/lib/runner/workerHost.js +6 -0
- package/lib/runner/workerHost.js.map +7 -0
- package/lib/third_party/pirates.js.map +7 -0
- package/lib/third_party/tsconfig-loader.js.map +7 -0
- package/lib/transform/babelBundle.js +3 -0
- package/lib/transform/babelBundle.js.map +7 -0
- package/lib/transform/babelBundleImpl.js +134 -134
- package/lib/transform/babelBundleImpl.js.map +7 -0
- package/lib/transform/compilationCache.js +2 -0
- package/lib/transform/compilationCache.js.map +7 -0
- package/lib/transform/esmLoader.js +10 -11
- package/lib/transform/esmLoader.js.map +7 -0
- package/lib/transform/md.js +221 -0
- package/lib/transform/portTransport.js.map +7 -0
- package/lib/transform/transform.js +18 -8
- package/lib/transform/transform.js.map +7 -0
- package/lib/util.js +3 -6
- package/lib/util.js.map +7 -0
- package/lib/utilsBundle.js +7 -0
- package/lib/utilsBundle.js.map +7 -0
- package/lib/utilsBundleImpl.js +51 -48
- package/lib/utilsBundleImpl.js.map +7 -0
- package/lib/worker/fixtureRunner.js +6 -2
- package/lib/worker/fixtureRunner.js.map +7 -0
- package/lib/worker/testInfo.js +39 -19
- package/lib/worker/testInfo.js.map +7 -0
- package/lib/worker/testTracing.js.map +7 -0
- package/lib/worker/timeoutManager.js.map +7 -0
- package/lib/worker/util.js.map +7 -0
- package/lib/worker/workerMain.js +17 -16
- package/lib/worker/workerMain.js.map +7 -0
- package/package.json +2 -2
- package/test.mjs +1 -0
- package/types/test.d.ts +26 -6
- package/types/testReporter.d.ts +1 -0
package/ThirdPartyNotices.txt
CHANGED
|
@@ -65,11 +65,15 @@ This project incorporates components from the projects listed below. The origina
|
|
|
65
65
|
- @jridgewell/trace-mapping@0.3.29 (https://github.com/jridgewell/sourcemaps)
|
|
66
66
|
- @modelcontextprotocol/sdk@1.17.5 (https://github.com/modelcontextprotocol/typescript-sdk)
|
|
67
67
|
- @sinclair/typebox@0.34.41 (https://github.com/sinclairzx81/typebox)
|
|
68
|
+
- @types/debug@4.1.12 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
68
69
|
- @types/istanbul-lib-coverage@2.0.6 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
69
70
|
- @types/istanbul-lib-report@3.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
70
71
|
- @types/istanbul-reports@3.0.4 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
72
|
+
- @types/mdast@4.0.4 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
73
|
+
- @types/ms@2.1.0 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
71
74
|
- @types/node@24.9.2 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
72
75
|
- @types/stack-utils@2.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
76
|
+
- @types/unist@3.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
73
77
|
- @types/yargs-parser@21.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
74
78
|
- @types/yargs@17.0.34 (https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
75
79
|
- accepts@2.0.0 (https://github.com/jshttp/accepts)
|
|
@@ -78,6 +82,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
78
82
|
- ansi-styles@4.3.0 (https://github.com/chalk/ansi-styles)
|
|
79
83
|
- ansi-styles@5.2.0 (https://github.com/chalk/ansi-styles)
|
|
80
84
|
- anymatch@3.1.3 (https://github.com/micromatch/anymatch)
|
|
85
|
+
- bail@2.0.2 (https://github.com/wooorm/bail)
|
|
81
86
|
- binary-extensions@2.2.0 (https://github.com/sindresorhus/binary-extensions)
|
|
82
87
|
- body-parser@2.2.0 (https://github.com/expressjs/body-parser)
|
|
83
88
|
- braces@3.0.3 (https://github.com/micromatch/braces)
|
|
@@ -88,6 +93,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
88
93
|
- call-bound@1.0.4 (https://github.com/ljharb/call-bound)
|
|
89
94
|
- caniuse-lite@1.0.30001731 (https://github.com/browserslist/caniuse-lite)
|
|
90
95
|
- chalk@4.1.2 (https://github.com/chalk/chalk)
|
|
96
|
+
- character-entities@2.0.2 (https://github.com/wooorm/character-entities)
|
|
91
97
|
- chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
|
|
92
98
|
- ci-info@4.3.1 (https://github.com/watson/ci-info)
|
|
93
99
|
- codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
|
|
@@ -101,7 +107,11 @@ This project incorporates components from the projects listed below. The origina
|
|
|
101
107
|
- cors@2.8.5 (https://github.com/expressjs/cors)
|
|
102
108
|
- cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
|
|
103
109
|
- debug@4.4.0 (https://github.com/debug-js/debug)
|
|
110
|
+
- debug@4.4.3 (https://github.com/debug-js/debug)
|
|
111
|
+
- decode-named-character-reference@1.2.0 (https://github.com/wooorm/decode-named-character-reference)
|
|
104
112
|
- depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
|
|
113
|
+
- dequal@2.0.3 (https://github.com/lukeed/dequal)
|
|
114
|
+
- devlop@1.1.0 (https://github.com/wooorm/devlop)
|
|
105
115
|
- dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
|
|
106
116
|
- ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
|
|
107
117
|
- electron-to-chromium@1.5.192 (https://github.com/kilian/electron-to-chromium)
|
|
@@ -119,6 +129,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
119
129
|
- expect@30.2.0 (https://github.com/jestjs/jest)
|
|
120
130
|
- express-rate-limit@7.5.1 (https://github.com/express-rate-limit/express-rate-limit)
|
|
121
131
|
- express@5.1.0 (https://github.com/expressjs/express)
|
|
132
|
+
- extend@3.0.2 (https://github.com/justmoon/node-extend)
|
|
122
133
|
- fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
|
|
123
134
|
- fast-json-stable-stringify@2.1.0 (https://github.com/epoberezkin/fast-json-stable-stringify)
|
|
124
135
|
- fill-range@7.1.1 (https://github.com/jonschlinkert/fill-range)
|
|
@@ -144,6 +155,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
144
155
|
- is-extglob@2.1.1 (https://github.com/jonschlinkert/is-extglob)
|
|
145
156
|
- is-glob@4.0.3 (https://github.com/micromatch/is-glob)
|
|
146
157
|
- is-number@7.0.0 (https://github.com/jonschlinkert/is-number)
|
|
158
|
+
- is-plain-obj@4.1.0 (https://github.com/sindresorhus/is-plain-obj)
|
|
147
159
|
- is-promise@4.0.0 (https://github.com/then/is-promise)
|
|
148
160
|
- isexe@2.0.0 (https://github.com/isaacs/isexe)
|
|
149
161
|
- jest-diff@30.2.0 (https://github.com/jestjs/jest)
|
|
@@ -158,8 +170,31 @@ This project incorporates components from the projects listed below. The origina
|
|
|
158
170
|
- json5@2.2.3 (https://github.com/json5/json5)
|
|
159
171
|
- lru-cache@5.1.1 (https://github.com/isaacs/node-lru-cache)
|
|
160
172
|
- math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
|
|
173
|
+
- mdast-util-from-markdown@2.0.2 (https://github.com/syntax-tree/mdast-util-from-markdown)
|
|
174
|
+
- mdast-util-to-string@4.0.0 (https://github.com/syntax-tree/mdast-util-to-string)
|
|
161
175
|
- media-typer@1.1.0 (https://github.com/jshttp/media-typer)
|
|
162
176
|
- merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
|
|
177
|
+
- micromark-core-commonmark@2.0.3 (https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark)
|
|
178
|
+
- micromark-factory-destination@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination)
|
|
179
|
+
- micromark-factory-label@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label)
|
|
180
|
+
- micromark-factory-space@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-factory-space)
|
|
181
|
+
- micromark-factory-title@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-factory-title)
|
|
182
|
+
- micromark-factory-whitespace@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-factory-whitespace)
|
|
183
|
+
- micromark-util-character@2.1.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-character)
|
|
184
|
+
- micromark-util-chunked@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-chunked)
|
|
185
|
+
- micromark-util-classify-character@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-classify-character)
|
|
186
|
+
- micromark-util-combine-extensions@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-combine-extensions)
|
|
187
|
+
- micromark-util-decode-numeric-character-reference@2.0.2 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-numeric-character-reference)
|
|
188
|
+
- micromark-util-decode-string@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-string)
|
|
189
|
+
- micromark-util-encode@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-encode)
|
|
190
|
+
- micromark-util-html-tag-name@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-html-tag-name)
|
|
191
|
+
- micromark-util-normalize-identifier@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-normalize-identifier)
|
|
192
|
+
- micromark-util-resolve-all@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-resolve-all)
|
|
193
|
+
- micromark-util-sanitize-uri@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-sanitize-uri)
|
|
194
|
+
- micromark-util-subtokenize@2.1.0 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize)
|
|
195
|
+
- micromark-util-symbol@2.0.1 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol)
|
|
196
|
+
- micromark-util-types@2.0.2 (https://github.com/micromark/micromark/tree/main/packages/micromark-util-types)
|
|
197
|
+
- micromark@4.0.2 (https://github.com/micromark/micromark/tree/main/packages/micromark)
|
|
163
198
|
- micromatch@4.0.8 (https://github.com/micromatch/micromatch)
|
|
164
199
|
- mime-db@1.54.0 (https://github.com/jshttp/mime-db)
|
|
165
200
|
- mime-types@3.0.1 (https://github.com/jshttp/mime-types)
|
|
@@ -186,6 +221,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
186
221
|
- raw-body@3.0.0 (https://github.com/stream-utils/raw-body)
|
|
187
222
|
- react-is@18.3.1 (https://github.com/facebook/react)
|
|
188
223
|
- readdirp@3.6.0 (https://github.com/paulmillr/readdirp)
|
|
224
|
+
- remark-parse@11.0.0 (https://github.com/remarkjs/remark/tree/main/packages/remark-parse)
|
|
189
225
|
- router@2.2.0 (https://github.com/pillarjs/router)
|
|
190
226
|
- safe-buffer@5.2.1 (https://github.com/feross/safe-buffer)
|
|
191
227
|
- safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
|
|
@@ -209,12 +245,17 @@ This project incorporates components from the projects listed below. The origina
|
|
|
209
245
|
- supports-color@7.2.0 (https://github.com/chalk/supports-color)
|
|
210
246
|
- to-regex-range@5.0.1 (https://github.com/micromatch/to-regex-range)
|
|
211
247
|
- toidentifier@1.0.1 (https://github.com/component/toidentifier)
|
|
248
|
+
- trough@2.2.0 (https://github.com/wooorm/trough)
|
|
212
249
|
- type-is@2.0.1 (https://github.com/jshttp/type-is)
|
|
213
250
|
- undici-types@7.16.0 (https://github.com/nodejs/undici)
|
|
251
|
+
- unified@11.0.5 (https://github.com/unifiedjs/unified)
|
|
252
|
+
- unist-util-stringify-position@4.0.0 (https://github.com/syntax-tree/unist-util-stringify-position)
|
|
214
253
|
- unpipe@1.0.0 (https://github.com/stream-utils/unpipe)
|
|
215
254
|
- update-browserslist-db@1.1.3 (https://github.com/browserslist/update-db)
|
|
216
255
|
- uri-js@4.4.1 (https://github.com/garycourt/uri-js)
|
|
217
256
|
- vary@1.1.2 (https://github.com/jshttp/vary)
|
|
257
|
+
- vfile-message@4.0.3 (https://github.com/vfile/vfile-message)
|
|
258
|
+
- vfile@6.0.3 (https://github.com/vfile/vfile)
|
|
218
259
|
- which@2.0.2 (https://github.com/isaacs/node-which)
|
|
219
260
|
- wrappy@1.0.2 (https://github.com/npm/wrappy)
|
|
220
261
|
- yallist@3.1.1 (https://github.com/isaacs/yallist)
|
|
@@ -2035,6 +2076,32 @@ THE SOFTWARE.
|
|
|
2035
2076
|
=========================================
|
|
2036
2077
|
END OF @sinclair/typebox@0.34.41 AND INFORMATION
|
|
2037
2078
|
|
|
2079
|
+
%% @types/debug@4.1.12 NOTICES AND INFORMATION BEGIN HERE
|
|
2080
|
+
=========================================
|
|
2081
|
+
MIT License
|
|
2082
|
+
|
|
2083
|
+
Copyright (c) Microsoft Corporation.
|
|
2084
|
+
|
|
2085
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2086
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2087
|
+
in the Software without restriction, including without limitation the rights
|
|
2088
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2089
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2090
|
+
furnished to do so, subject to the following conditions:
|
|
2091
|
+
|
|
2092
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2093
|
+
copies or substantial portions of the Software.
|
|
2094
|
+
|
|
2095
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2096
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2097
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2098
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2099
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2100
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2101
|
+
SOFTWARE
|
|
2102
|
+
=========================================
|
|
2103
|
+
END OF @types/debug@4.1.12 AND INFORMATION
|
|
2104
|
+
|
|
2038
2105
|
%% @types/istanbul-lib-coverage@2.0.6 NOTICES AND INFORMATION BEGIN HERE
|
|
2039
2106
|
=========================================
|
|
2040
2107
|
MIT License
|
|
@@ -2113,6 +2180,58 @@ MIT License
|
|
|
2113
2180
|
=========================================
|
|
2114
2181
|
END OF @types/istanbul-reports@3.0.4 AND INFORMATION
|
|
2115
2182
|
|
|
2183
|
+
%% @types/mdast@4.0.4 NOTICES AND INFORMATION BEGIN HERE
|
|
2184
|
+
=========================================
|
|
2185
|
+
MIT License
|
|
2186
|
+
|
|
2187
|
+
Copyright (c) Microsoft Corporation.
|
|
2188
|
+
|
|
2189
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2190
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2191
|
+
in the Software without restriction, including without limitation the rights
|
|
2192
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2193
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2194
|
+
furnished to do so, subject to the following conditions:
|
|
2195
|
+
|
|
2196
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2197
|
+
copies or substantial portions of the Software.
|
|
2198
|
+
|
|
2199
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2200
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2201
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2202
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2203
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2204
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2205
|
+
SOFTWARE
|
|
2206
|
+
=========================================
|
|
2207
|
+
END OF @types/mdast@4.0.4 AND INFORMATION
|
|
2208
|
+
|
|
2209
|
+
%% @types/ms@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2210
|
+
=========================================
|
|
2211
|
+
MIT License
|
|
2212
|
+
|
|
2213
|
+
Copyright (c) Microsoft Corporation.
|
|
2214
|
+
|
|
2215
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2216
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2217
|
+
in the Software without restriction, including without limitation the rights
|
|
2218
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2219
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2220
|
+
furnished to do so, subject to the following conditions:
|
|
2221
|
+
|
|
2222
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2223
|
+
copies or substantial portions of the Software.
|
|
2224
|
+
|
|
2225
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2226
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2227
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2228
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2229
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2230
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2231
|
+
SOFTWARE
|
|
2232
|
+
=========================================
|
|
2233
|
+
END OF @types/ms@2.1.0 AND INFORMATION
|
|
2234
|
+
|
|
2116
2235
|
%% @types/node@24.9.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2117
2236
|
=========================================
|
|
2118
2237
|
MIT License
|
|
@@ -2165,6 +2284,32 @@ MIT License
|
|
|
2165
2284
|
=========================================
|
|
2166
2285
|
END OF @types/stack-utils@2.0.3 AND INFORMATION
|
|
2167
2286
|
|
|
2287
|
+
%% @types/unist@3.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2288
|
+
=========================================
|
|
2289
|
+
MIT License
|
|
2290
|
+
|
|
2291
|
+
Copyright (c) Microsoft Corporation.
|
|
2292
|
+
|
|
2293
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2294
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2295
|
+
in the Software without restriction, including without limitation the rights
|
|
2296
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2297
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2298
|
+
furnished to do so, subject to the following conditions:
|
|
2299
|
+
|
|
2300
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2301
|
+
copies or substantial portions of the Software.
|
|
2302
|
+
|
|
2303
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2304
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2305
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2306
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2307
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2308
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2309
|
+
SOFTWARE
|
|
2310
|
+
=========================================
|
|
2311
|
+
END OF @types/unist@3.0.3 AND INFORMATION
|
|
2312
|
+
|
|
2168
2313
|
%% @types/yargs-parser@21.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
2169
2314
|
=========================================
|
|
2170
2315
|
MIT License
|
|
@@ -2345,6 +2490,33 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
2345
2490
|
=========================================
|
|
2346
2491
|
END OF anymatch@3.1.3 AND INFORMATION
|
|
2347
2492
|
|
|
2493
|
+
%% bail@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2494
|
+
=========================================
|
|
2495
|
+
(The MIT License)
|
|
2496
|
+
|
|
2497
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
2498
|
+
|
|
2499
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2500
|
+
a copy of this software and associated documentation files (the
|
|
2501
|
+
'Software'), to deal in the Software without restriction, including
|
|
2502
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2503
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2504
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2505
|
+
the following conditions:
|
|
2506
|
+
|
|
2507
|
+
The above copyright notice and this permission notice shall be
|
|
2508
|
+
included in all copies or substantial portions of the Software.
|
|
2509
|
+
|
|
2510
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2511
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2512
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2513
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2514
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2515
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2516
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2517
|
+
=========================================
|
|
2518
|
+
END OF bail@2.0.2 AND INFORMATION
|
|
2519
|
+
|
|
2348
2520
|
%% binary-extensions@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2349
2521
|
=========================================
|
|
2350
2522
|
MIT License
|
|
@@ -2958,6 +3130,33 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
2958
3130
|
=========================================
|
|
2959
3131
|
END OF chalk@4.1.2 AND INFORMATION
|
|
2960
3132
|
|
|
3133
|
+
%% character-entities@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3134
|
+
=========================================
|
|
3135
|
+
(The MIT License)
|
|
3136
|
+
|
|
3137
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
3138
|
+
|
|
3139
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3140
|
+
a copy of this software and associated documentation files (the
|
|
3141
|
+
'Software'), to deal in the Software without restriction, including
|
|
3142
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3143
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3144
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3145
|
+
the following conditions:
|
|
3146
|
+
|
|
3147
|
+
The above copyright notice and this permission notice shall be
|
|
3148
|
+
included in all copies or substantial portions of the Software.
|
|
3149
|
+
|
|
3150
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3151
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3152
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3153
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3154
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3155
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3156
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3157
|
+
=========================================
|
|
3158
|
+
END OF character-entities@2.0.2 AND INFORMATION
|
|
3159
|
+
|
|
2961
3160
|
%% chokidar@3.6.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2962
3161
|
=========================================
|
|
2963
3162
|
The MIT License (MIT)
|
|
@@ -3288,6 +3487,57 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3288
3487
|
=========================================
|
|
3289
3488
|
END OF debug@4.4.0 AND INFORMATION
|
|
3290
3489
|
|
|
3490
|
+
%% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3491
|
+
=========================================
|
|
3492
|
+
(The MIT License)
|
|
3493
|
+
|
|
3494
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
3495
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
3496
|
+
|
|
3497
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
3498
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
3499
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3500
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3501
|
+
subject to the following conditions:
|
|
3502
|
+
|
|
3503
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3504
|
+
portions of the Software.
|
|
3505
|
+
|
|
3506
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
3507
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3508
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
3509
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3510
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3511
|
+
=========================================
|
|
3512
|
+
END OF debug@4.4.3 AND INFORMATION
|
|
3513
|
+
|
|
3514
|
+
%% decode-named-character-reference@1.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3515
|
+
=========================================
|
|
3516
|
+
(The MIT License)
|
|
3517
|
+
|
|
3518
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
3519
|
+
|
|
3520
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3521
|
+
a copy of this software and associated documentation files (the
|
|
3522
|
+
'Software'), to deal in the Software without restriction, including
|
|
3523
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3524
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3525
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3526
|
+
the following conditions:
|
|
3527
|
+
|
|
3528
|
+
The above copyright notice and this permission notice shall be
|
|
3529
|
+
included in all copies or substantial portions of the Software.
|
|
3530
|
+
|
|
3531
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3532
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3533
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3534
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3535
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3536
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3537
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3538
|
+
=========================================
|
|
3539
|
+
END OF decode-named-character-reference@1.2.0 AND INFORMATION
|
|
3540
|
+
|
|
3291
3541
|
%% depd@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3292
3542
|
=========================================
|
|
3293
3543
|
(The MIT License)
|
|
@@ -3315,6 +3565,59 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3315
3565
|
=========================================
|
|
3316
3566
|
END OF depd@2.0.0 AND INFORMATION
|
|
3317
3567
|
|
|
3568
|
+
%% dequal@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3569
|
+
=========================================
|
|
3570
|
+
The MIT License (MIT)
|
|
3571
|
+
|
|
3572
|
+
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
3573
|
+
|
|
3574
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3575
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3576
|
+
in the Software without restriction, including without limitation the rights
|
|
3577
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3578
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3579
|
+
furnished to do so, subject to the following conditions:
|
|
3580
|
+
|
|
3581
|
+
The above copyright notice and this permission notice shall be included in
|
|
3582
|
+
all copies or substantial portions of the Software.
|
|
3583
|
+
|
|
3584
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3585
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3586
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3587
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3588
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3589
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3590
|
+
THE SOFTWARE.
|
|
3591
|
+
=========================================
|
|
3592
|
+
END OF dequal@2.0.3 AND INFORMATION
|
|
3593
|
+
|
|
3594
|
+
%% devlop@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3595
|
+
=========================================
|
|
3596
|
+
(The MIT License)
|
|
3597
|
+
|
|
3598
|
+
Copyright (c) 2023 Titus Wormer <tituswormer@gmail.com>
|
|
3599
|
+
|
|
3600
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
3601
|
+
a copy of this software and associated documentation files (the
|
|
3602
|
+
'Software'), to deal in the Software without restriction, including
|
|
3603
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
3604
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
3605
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
3606
|
+
the following conditions:
|
|
3607
|
+
|
|
3608
|
+
The above copyright notice and this permission notice shall be
|
|
3609
|
+
included in all copies or substantial portions of the Software.
|
|
3610
|
+
|
|
3611
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
3612
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3613
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3614
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3615
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3616
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3617
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3618
|
+
=========================================
|
|
3619
|
+
END OF devlop@1.1.0 AND INFORMATION
|
|
3620
|
+
|
|
3318
3621
|
%% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
3319
3622
|
=========================================
|
|
3320
3623
|
MIT License
|
|
@@ -3726,20 +4029,47 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3726
4029
|
=========================================
|
|
3727
4030
|
END OF express@5.1.0 AND INFORMATION
|
|
3728
4031
|
|
|
3729
|
-
%%
|
|
4032
|
+
%% extend@3.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3730
4033
|
=========================================
|
|
3731
|
-
MIT License
|
|
4034
|
+
The MIT License (MIT)
|
|
3732
4035
|
|
|
3733
|
-
Copyright (c)
|
|
4036
|
+
Copyright (c) 2014 Stefan Thomas
|
|
3734
4037
|
|
|
3735
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
3736
|
-
of this software and associated documentation files (the
|
|
3737
|
-
in the Software without restriction, including
|
|
3738
|
-
to use, copy, modify, merge, publish,
|
|
3739
|
-
copies of the Software, and to
|
|
3740
|
-
furnished to do so, subject to
|
|
4038
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4039
|
+
a copy of this software and associated documentation files (the
|
|
4040
|
+
"Software"), to deal in the Software without restriction, including
|
|
4041
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4042
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4043
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4044
|
+
the following conditions:
|
|
3741
4045
|
|
|
3742
|
-
The above copyright notice and this permission notice shall be
|
|
4046
|
+
The above copyright notice and this permission notice shall be
|
|
4047
|
+
included in all copies or substantial portions of the Software.
|
|
4048
|
+
|
|
4049
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4050
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4051
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
4052
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
4053
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4054
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
4055
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4056
|
+
=========================================
|
|
4057
|
+
END OF extend@3.0.2 AND INFORMATION
|
|
4058
|
+
|
|
4059
|
+
%% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
4060
|
+
=========================================
|
|
4061
|
+
MIT License
|
|
4062
|
+
|
|
4063
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
4064
|
+
|
|
4065
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4066
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4067
|
+
in the Software without restriction, including without limitation the rights
|
|
4068
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4069
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4070
|
+
furnished to do so, subject to the following conditions:
|
|
4071
|
+
|
|
4072
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3743
4073
|
copies or substantial portions of the Software.
|
|
3744
4074
|
|
|
3745
4075
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
@@ -4308,6 +4638,20 @@ THE SOFTWARE.
|
|
|
4308
4638
|
=========================================
|
|
4309
4639
|
END OF is-number@7.0.0 AND INFORMATION
|
|
4310
4640
|
|
|
4641
|
+
%% is-plain-obj@4.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4642
|
+
=========================================
|
|
4643
|
+
MIT License
|
|
4644
|
+
|
|
4645
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
4646
|
+
|
|
4647
|
+
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:
|
|
4648
|
+
|
|
4649
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
4650
|
+
|
|
4651
|
+
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.
|
|
4652
|
+
=========================================
|
|
4653
|
+
END OF is-plain-obj@4.1.0 AND INFORMATION
|
|
4654
|
+
|
|
4311
4655
|
%% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4312
4656
|
=========================================
|
|
4313
4657
|
Copyright (c) 2014 Forbes Lindesay
|
|
@@ -4607,69 +4951,679 @@ furnished to do so, subject to the following conditions:
|
|
|
4607
4951
|
The above copyright notice and this permission notice shall be included in all
|
|
4608
4952
|
copies or substantial portions of the Software.
|
|
4609
4953
|
|
|
4610
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4611
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4612
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4613
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4614
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4615
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4616
|
-
SOFTWARE.
|
|
4954
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4955
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4956
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4957
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4958
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4959
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4960
|
+
SOFTWARE.
|
|
4961
|
+
|
|
4962
|
+
[others]: https://github.com/json5/json5/contributors
|
|
4963
|
+
=========================================
|
|
4964
|
+
END OF json5@2.2.3 AND INFORMATION
|
|
4965
|
+
|
|
4966
|
+
%% lru-cache@5.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4967
|
+
=========================================
|
|
4968
|
+
The ISC License
|
|
4969
|
+
|
|
4970
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
4971
|
+
|
|
4972
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4973
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4974
|
+
copyright notice and this permission notice appear in all copies.
|
|
4975
|
+
|
|
4976
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
4977
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
4978
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
4979
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4980
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
4981
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
4982
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
4983
|
+
=========================================
|
|
4984
|
+
END OF lru-cache@5.1.1 AND INFORMATION
|
|
4985
|
+
|
|
4986
|
+
%% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4987
|
+
=========================================
|
|
4988
|
+
MIT License
|
|
4989
|
+
|
|
4990
|
+
Copyright (c) 2024 ECMAScript Shims
|
|
4991
|
+
|
|
4992
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4993
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4994
|
+
in the Software without restriction, including without limitation the rights
|
|
4995
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4996
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4997
|
+
furnished to do so, subject to the following conditions:
|
|
4998
|
+
|
|
4999
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5000
|
+
copies or substantial portions of the Software.
|
|
5001
|
+
|
|
5002
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5003
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5004
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5005
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5006
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5007
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5008
|
+
SOFTWARE.
|
|
5009
|
+
=========================================
|
|
5010
|
+
END OF math-intrinsics@1.1.0 AND INFORMATION
|
|
5011
|
+
|
|
5012
|
+
%% mdast-util-from-markdown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
5013
|
+
=========================================
|
|
5014
|
+
(The MIT License)
|
|
5015
|
+
|
|
5016
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5017
|
+
|
|
5018
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5019
|
+
a copy of this software and associated documentation files (the
|
|
5020
|
+
'Software'), to deal in the Software without restriction, including
|
|
5021
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5022
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5023
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5024
|
+
the following conditions:
|
|
5025
|
+
|
|
5026
|
+
The above copyright notice and this permission notice shall be
|
|
5027
|
+
included in all copies or substantial portions of the Software.
|
|
5028
|
+
|
|
5029
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5030
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5031
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5032
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5033
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5034
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5035
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5036
|
+
=========================================
|
|
5037
|
+
END OF mdast-util-from-markdown@2.0.2 AND INFORMATION
|
|
5038
|
+
|
|
5039
|
+
%% mdast-util-to-string@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5040
|
+
=========================================
|
|
5041
|
+
(The MIT License)
|
|
5042
|
+
|
|
5043
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
5044
|
+
|
|
5045
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5046
|
+
a copy of this software and associated documentation files (the
|
|
5047
|
+
'Software'), to deal in the Software without restriction, including
|
|
5048
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5049
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5050
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5051
|
+
the following conditions:
|
|
5052
|
+
|
|
5053
|
+
The above copyright notice and this permission notice shall be
|
|
5054
|
+
included in all copies or substantial portions of the Software.
|
|
5055
|
+
|
|
5056
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5057
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5058
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5059
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5060
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5061
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5062
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5063
|
+
=========================================
|
|
5064
|
+
END OF mdast-util-to-string@4.0.0 AND INFORMATION
|
|
5065
|
+
|
|
5066
|
+
%% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5067
|
+
=========================================
|
|
5068
|
+
(The MIT License)
|
|
5069
|
+
|
|
5070
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
5071
|
+
|
|
5072
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5073
|
+
a copy of this software and associated documentation files (the
|
|
5074
|
+
'Software'), to deal in the Software without restriction, including
|
|
5075
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5076
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5077
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5078
|
+
the following conditions:
|
|
5079
|
+
|
|
5080
|
+
The above copyright notice and this permission notice shall be
|
|
5081
|
+
included in all copies or substantial portions of the Software.
|
|
5082
|
+
|
|
5083
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5084
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5085
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5086
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5087
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5088
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5089
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5090
|
+
=========================================
|
|
5091
|
+
END OF media-typer@1.1.0 AND INFORMATION
|
|
5092
|
+
|
|
5093
|
+
%% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5094
|
+
=========================================
|
|
5095
|
+
MIT License
|
|
5096
|
+
|
|
5097
|
+
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
5098
|
+
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
5099
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
5100
|
+
|
|
5101
|
+
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:
|
|
5102
|
+
|
|
5103
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5104
|
+
|
|
5105
|
+
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.
|
|
5106
|
+
=========================================
|
|
5107
|
+
END OF merge-descriptors@2.0.0 AND INFORMATION
|
|
5108
|
+
|
|
5109
|
+
%% micromark-core-commonmark@2.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
5110
|
+
=========================================
|
|
5111
|
+
(The MIT License)
|
|
5112
|
+
|
|
5113
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5114
|
+
|
|
5115
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5116
|
+
a copy of this software and associated documentation files (the
|
|
5117
|
+
'Software'), to deal in the Software without restriction, including
|
|
5118
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5119
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5120
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5121
|
+
the following conditions:
|
|
5122
|
+
|
|
5123
|
+
The above copyright notice and this permission notice shall be
|
|
5124
|
+
included in all copies or substantial portions of the Software.
|
|
5125
|
+
|
|
5126
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5127
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5128
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5129
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5130
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5131
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5132
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5133
|
+
=========================================
|
|
5134
|
+
END OF micromark-core-commonmark@2.0.3 AND INFORMATION
|
|
5135
|
+
|
|
5136
|
+
%% micromark-factory-destination@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5137
|
+
=========================================
|
|
5138
|
+
(The MIT License)
|
|
5139
|
+
|
|
5140
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5141
|
+
|
|
5142
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5143
|
+
a copy of this software and associated documentation files (the
|
|
5144
|
+
'Software'), to deal in the Software without restriction, including
|
|
5145
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5146
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5147
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5148
|
+
the following conditions:
|
|
5149
|
+
|
|
5150
|
+
The above copyright notice and this permission notice shall be
|
|
5151
|
+
included in all copies or substantial portions of the Software.
|
|
5152
|
+
|
|
5153
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5154
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5155
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5156
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5157
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5158
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5159
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5160
|
+
=========================================
|
|
5161
|
+
END OF micromark-factory-destination@2.0.1 AND INFORMATION
|
|
5162
|
+
|
|
5163
|
+
%% micromark-factory-label@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5164
|
+
=========================================
|
|
5165
|
+
(The MIT License)
|
|
5166
|
+
|
|
5167
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5168
|
+
|
|
5169
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5170
|
+
a copy of this software and associated documentation files (the
|
|
5171
|
+
'Software'), to deal in the Software without restriction, including
|
|
5172
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5173
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5174
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5175
|
+
the following conditions:
|
|
5176
|
+
|
|
5177
|
+
The above copyright notice and this permission notice shall be
|
|
5178
|
+
included in all copies or substantial portions of the Software.
|
|
5179
|
+
|
|
5180
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5181
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5182
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5183
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5184
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5185
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5186
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5187
|
+
=========================================
|
|
5188
|
+
END OF micromark-factory-label@2.0.1 AND INFORMATION
|
|
5189
|
+
|
|
5190
|
+
%% micromark-factory-space@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5191
|
+
=========================================
|
|
5192
|
+
(The MIT License)
|
|
5193
|
+
|
|
5194
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5195
|
+
|
|
5196
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5197
|
+
a copy of this software and associated documentation files (the
|
|
5198
|
+
'Software'), to deal in the Software without restriction, including
|
|
5199
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5200
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5201
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5202
|
+
the following conditions:
|
|
5203
|
+
|
|
5204
|
+
The above copyright notice and this permission notice shall be
|
|
5205
|
+
included in all copies or substantial portions of the Software.
|
|
5206
|
+
|
|
5207
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5208
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5209
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5210
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5211
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5212
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5213
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5214
|
+
=========================================
|
|
5215
|
+
END OF micromark-factory-space@2.0.1 AND INFORMATION
|
|
5216
|
+
|
|
5217
|
+
%% micromark-factory-title@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5218
|
+
=========================================
|
|
5219
|
+
(The MIT License)
|
|
5220
|
+
|
|
5221
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5222
|
+
|
|
5223
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5224
|
+
a copy of this software and associated documentation files (the
|
|
5225
|
+
'Software'), to deal in the Software without restriction, including
|
|
5226
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5227
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5228
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5229
|
+
the following conditions:
|
|
5230
|
+
|
|
5231
|
+
The above copyright notice and this permission notice shall be
|
|
5232
|
+
included in all copies or substantial portions of the Software.
|
|
5233
|
+
|
|
5234
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5235
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5236
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5237
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5238
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5239
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5240
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5241
|
+
=========================================
|
|
5242
|
+
END OF micromark-factory-title@2.0.1 AND INFORMATION
|
|
5243
|
+
|
|
5244
|
+
%% micromark-factory-whitespace@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5245
|
+
=========================================
|
|
5246
|
+
(The MIT License)
|
|
5247
|
+
|
|
5248
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5249
|
+
|
|
5250
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5251
|
+
a copy of this software and associated documentation files (the
|
|
5252
|
+
'Software'), to deal in the Software without restriction, including
|
|
5253
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5254
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5255
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5256
|
+
the following conditions:
|
|
5257
|
+
|
|
5258
|
+
The above copyright notice and this permission notice shall be
|
|
5259
|
+
included in all copies or substantial portions of the Software.
|
|
5260
|
+
|
|
5261
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5262
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5263
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5264
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5265
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5266
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5267
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5268
|
+
=========================================
|
|
5269
|
+
END OF micromark-factory-whitespace@2.0.1 AND INFORMATION
|
|
5270
|
+
|
|
5271
|
+
%% micromark-util-character@2.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5272
|
+
=========================================
|
|
5273
|
+
(The MIT License)
|
|
5274
|
+
|
|
5275
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5276
|
+
|
|
5277
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5278
|
+
a copy of this software and associated documentation files (the
|
|
5279
|
+
'Software'), to deal in the Software without restriction, including
|
|
5280
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5281
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5282
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5283
|
+
the following conditions:
|
|
5284
|
+
|
|
5285
|
+
The above copyright notice and this permission notice shall be
|
|
5286
|
+
included in all copies or substantial portions of the Software.
|
|
5287
|
+
|
|
5288
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5289
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5290
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5291
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5292
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5293
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5294
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5295
|
+
=========================================
|
|
5296
|
+
END OF micromark-util-character@2.1.1 AND INFORMATION
|
|
5297
|
+
|
|
5298
|
+
%% micromark-util-chunked@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5299
|
+
=========================================
|
|
5300
|
+
(The MIT License)
|
|
5301
|
+
|
|
5302
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5303
|
+
|
|
5304
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5305
|
+
a copy of this software and associated documentation files (the
|
|
5306
|
+
'Software'), to deal in the Software without restriction, including
|
|
5307
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5308
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5309
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5310
|
+
the following conditions:
|
|
5311
|
+
|
|
5312
|
+
The above copyright notice and this permission notice shall be
|
|
5313
|
+
included in all copies or substantial portions of the Software.
|
|
5314
|
+
|
|
5315
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5316
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5317
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5318
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5319
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5320
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5321
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5322
|
+
=========================================
|
|
5323
|
+
END OF micromark-util-chunked@2.0.1 AND INFORMATION
|
|
5324
|
+
|
|
5325
|
+
%% micromark-util-classify-character@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5326
|
+
=========================================
|
|
5327
|
+
(The MIT License)
|
|
5328
|
+
|
|
5329
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5330
|
+
|
|
5331
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5332
|
+
a copy of this software and associated documentation files (the
|
|
5333
|
+
'Software'), to deal in the Software without restriction, including
|
|
5334
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5335
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5336
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5337
|
+
the following conditions:
|
|
5338
|
+
|
|
5339
|
+
The above copyright notice and this permission notice shall be
|
|
5340
|
+
included in all copies or substantial portions of the Software.
|
|
5341
|
+
|
|
5342
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5343
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5344
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5345
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5346
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5347
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5348
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5349
|
+
=========================================
|
|
5350
|
+
END OF micromark-util-classify-character@2.0.1 AND INFORMATION
|
|
5351
|
+
|
|
5352
|
+
%% micromark-util-combine-extensions@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5353
|
+
=========================================
|
|
5354
|
+
(The MIT License)
|
|
5355
|
+
|
|
5356
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5357
|
+
|
|
5358
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5359
|
+
a copy of this software and associated documentation files (the
|
|
5360
|
+
'Software'), to deal in the Software without restriction, including
|
|
5361
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5362
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5363
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5364
|
+
the following conditions:
|
|
5365
|
+
|
|
5366
|
+
The above copyright notice and this permission notice shall be
|
|
5367
|
+
included in all copies or substantial portions of the Software.
|
|
5368
|
+
|
|
5369
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5370
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5371
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5372
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5373
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5374
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5375
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5376
|
+
=========================================
|
|
5377
|
+
END OF micromark-util-combine-extensions@2.0.1 AND INFORMATION
|
|
5378
|
+
|
|
5379
|
+
%% micromark-util-decode-numeric-character-reference@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
5380
|
+
=========================================
|
|
5381
|
+
(The MIT License)
|
|
5382
|
+
|
|
5383
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5384
|
+
|
|
5385
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5386
|
+
a copy of this software and associated documentation files (the
|
|
5387
|
+
'Software'), to deal in the Software without restriction, including
|
|
5388
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5389
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5390
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5391
|
+
the following conditions:
|
|
5392
|
+
|
|
5393
|
+
The above copyright notice and this permission notice shall be
|
|
5394
|
+
included in all copies or substantial portions of the Software.
|
|
5395
|
+
|
|
5396
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5397
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5398
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5399
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5400
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5401
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5402
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5403
|
+
=========================================
|
|
5404
|
+
END OF micromark-util-decode-numeric-character-reference@2.0.2 AND INFORMATION
|
|
5405
|
+
|
|
5406
|
+
%% micromark-util-decode-string@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5407
|
+
=========================================
|
|
5408
|
+
(The MIT License)
|
|
5409
|
+
|
|
5410
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5411
|
+
|
|
5412
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5413
|
+
a copy of this software and associated documentation files (the
|
|
5414
|
+
'Software'), to deal in the Software without restriction, including
|
|
5415
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5416
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5417
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5418
|
+
the following conditions:
|
|
5419
|
+
|
|
5420
|
+
The above copyright notice and this permission notice shall be
|
|
5421
|
+
included in all copies or substantial portions of the Software.
|
|
5422
|
+
|
|
5423
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5424
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5425
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5426
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5427
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5428
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5429
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5430
|
+
=========================================
|
|
5431
|
+
END OF micromark-util-decode-string@2.0.1 AND INFORMATION
|
|
5432
|
+
|
|
5433
|
+
%% micromark-util-encode@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5434
|
+
=========================================
|
|
5435
|
+
(The MIT License)
|
|
5436
|
+
|
|
5437
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5438
|
+
|
|
5439
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5440
|
+
a copy of this software and associated documentation files (the
|
|
5441
|
+
'Software'), to deal in the Software without restriction, including
|
|
5442
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5443
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5444
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5445
|
+
the following conditions:
|
|
5446
|
+
|
|
5447
|
+
The above copyright notice and this permission notice shall be
|
|
5448
|
+
included in all copies or substantial portions of the Software.
|
|
5449
|
+
|
|
5450
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5451
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5452
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5453
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5454
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5455
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5456
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5457
|
+
=========================================
|
|
5458
|
+
END OF micromark-util-encode@2.0.1 AND INFORMATION
|
|
5459
|
+
|
|
5460
|
+
%% micromark-util-html-tag-name@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5461
|
+
=========================================
|
|
5462
|
+
(The MIT License)
|
|
5463
|
+
|
|
5464
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5465
|
+
|
|
5466
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5467
|
+
a copy of this software and associated documentation files (the
|
|
5468
|
+
'Software'), to deal in the Software without restriction, including
|
|
5469
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5470
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5471
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5472
|
+
the following conditions:
|
|
5473
|
+
|
|
5474
|
+
The above copyright notice and this permission notice shall be
|
|
5475
|
+
included in all copies or substantial portions of the Software.
|
|
5476
|
+
|
|
5477
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5478
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5479
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5480
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5481
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5482
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5483
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5484
|
+
=========================================
|
|
5485
|
+
END OF micromark-util-html-tag-name@2.0.1 AND INFORMATION
|
|
5486
|
+
|
|
5487
|
+
%% micromark-util-normalize-identifier@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5488
|
+
=========================================
|
|
5489
|
+
(The MIT License)
|
|
5490
|
+
|
|
5491
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5492
|
+
|
|
5493
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5494
|
+
a copy of this software and associated documentation files (the
|
|
5495
|
+
'Software'), to deal in the Software without restriction, including
|
|
5496
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5497
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5498
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5499
|
+
the following conditions:
|
|
5500
|
+
|
|
5501
|
+
The above copyright notice and this permission notice shall be
|
|
5502
|
+
included in all copies or substantial portions of the Software.
|
|
5503
|
+
|
|
5504
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5505
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5506
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5507
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5508
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5509
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5510
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5511
|
+
=========================================
|
|
5512
|
+
END OF micromark-util-normalize-identifier@2.0.1 AND INFORMATION
|
|
5513
|
+
|
|
5514
|
+
%% micromark-util-resolve-all@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5515
|
+
=========================================
|
|
5516
|
+
(The MIT License)
|
|
5517
|
+
|
|
5518
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5519
|
+
|
|
5520
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5521
|
+
a copy of this software and associated documentation files (the
|
|
5522
|
+
'Software'), to deal in the Software without restriction, including
|
|
5523
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5524
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5525
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5526
|
+
the following conditions:
|
|
5527
|
+
|
|
5528
|
+
The above copyright notice and this permission notice shall be
|
|
5529
|
+
included in all copies or substantial portions of the Software.
|
|
5530
|
+
|
|
5531
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5532
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5533
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5534
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5535
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5536
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5537
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5538
|
+
=========================================
|
|
5539
|
+
END OF micromark-util-resolve-all@2.0.1 AND INFORMATION
|
|
5540
|
+
|
|
5541
|
+
%% micromark-util-sanitize-uri@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5542
|
+
=========================================
|
|
5543
|
+
(The MIT License)
|
|
5544
|
+
|
|
5545
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
5546
|
+
|
|
5547
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5548
|
+
a copy of this software and associated documentation files (the
|
|
5549
|
+
'Software'), to deal in the Software without restriction, including
|
|
5550
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5551
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5552
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5553
|
+
the following conditions:
|
|
5554
|
+
|
|
5555
|
+
The above copyright notice and this permission notice shall be
|
|
5556
|
+
included in all copies or substantial portions of the Software.
|
|
4617
5557
|
|
|
4618
|
-
|
|
5558
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5559
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5560
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5561
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5562
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5563
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5564
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4619
5565
|
=========================================
|
|
4620
|
-
END OF
|
|
5566
|
+
END OF micromark-util-sanitize-uri@2.0.1 AND INFORMATION
|
|
4621
5567
|
|
|
4622
|
-
%%
|
|
5568
|
+
%% micromark-util-subtokenize@2.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
4623
5569
|
=========================================
|
|
4624
|
-
The
|
|
5570
|
+
(The MIT License)
|
|
4625
5571
|
|
|
4626
|
-
Copyright (c)
|
|
5572
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
4627
5573
|
|
|
4628
|
-
Permission
|
|
4629
|
-
|
|
4630
|
-
|
|
5574
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5575
|
+
a copy of this software and associated documentation files (the
|
|
5576
|
+
'Software'), to deal in the Software without restriction, including
|
|
5577
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5578
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5579
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5580
|
+
the following conditions:
|
|
4631
5581
|
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
IN
|
|
5582
|
+
The above copyright notice and this permission notice shall be
|
|
5583
|
+
included in all copies or substantial portions of the Software.
|
|
5584
|
+
|
|
5585
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5586
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5587
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5588
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5589
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5590
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5591
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4639
5592
|
=========================================
|
|
4640
|
-
END OF
|
|
5593
|
+
END OF micromark-util-subtokenize@2.1.0 AND INFORMATION
|
|
4641
5594
|
|
|
4642
|
-
%%
|
|
5595
|
+
%% micromark-util-symbol@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
4643
5596
|
=========================================
|
|
4644
|
-
MIT License
|
|
5597
|
+
(The MIT License)
|
|
4645
5598
|
|
|
4646
|
-
Copyright (c)
|
|
5599
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
4647
5600
|
|
|
4648
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
4649
|
-
of this software and associated documentation files (the
|
|
4650
|
-
in the Software without restriction, including
|
|
4651
|
-
to use, copy, modify, merge, publish,
|
|
4652
|
-
copies of the Software, and to
|
|
4653
|
-
furnished to do so, subject to
|
|
5601
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5602
|
+
a copy of this software and associated documentation files (the
|
|
5603
|
+
'Software'), to deal in the Software without restriction, including
|
|
5604
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5605
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5606
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5607
|
+
the following conditions:
|
|
4654
5608
|
|
|
4655
|
-
The above copyright notice and this permission notice shall be
|
|
4656
|
-
copies or substantial portions of the Software.
|
|
5609
|
+
The above copyright notice and this permission notice shall be
|
|
5610
|
+
included in all copies or substantial portions of the Software.
|
|
4657
5611
|
|
|
4658
|
-
THE SOFTWARE IS PROVIDED
|
|
4659
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4660
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4661
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4662
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
4663
|
-
|
|
4664
|
-
SOFTWARE.
|
|
5612
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5613
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5614
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5615
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5616
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5617
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5618
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4665
5619
|
=========================================
|
|
4666
|
-
END OF
|
|
5620
|
+
END OF micromark-util-symbol@2.0.1 AND INFORMATION
|
|
4667
5621
|
|
|
4668
|
-
%%
|
|
5622
|
+
%% micromark-util-types@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
4669
5623
|
=========================================
|
|
4670
5624
|
(The MIT License)
|
|
4671
5625
|
|
|
4672
|
-
Copyright (c)
|
|
5626
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
4673
5627
|
|
|
4674
5628
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4675
5629
|
a copy of this software and associated documentation files (the
|
|
@@ -4690,23 +5644,34 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
4690
5644
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
4691
5645
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4692
5646
|
=========================================
|
|
4693
|
-
END OF
|
|
5647
|
+
END OF micromark-util-types@2.0.2 AND INFORMATION
|
|
4694
5648
|
|
|
4695
|
-
%%
|
|
5649
|
+
%% micromark@4.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
4696
5650
|
=========================================
|
|
4697
|
-
MIT License
|
|
5651
|
+
(The MIT License)
|
|
4698
5652
|
|
|
4699
|
-
Copyright (c)
|
|
4700
|
-
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
4701
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
5653
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
4702
5654
|
|
|
4703
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5655
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5656
|
+
a copy of this software and associated documentation files (the
|
|
5657
|
+
'Software'), to deal in the Software without restriction, including
|
|
5658
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5659
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5660
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5661
|
+
the following conditions:
|
|
4704
5662
|
|
|
4705
|
-
The above copyright notice and this permission notice shall be
|
|
5663
|
+
The above copyright notice and this permission notice shall be
|
|
5664
|
+
included in all copies or substantial portions of the Software.
|
|
4706
5665
|
|
|
4707
|
-
THE SOFTWARE IS PROVIDED
|
|
5666
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5667
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5668
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5669
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5670
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5671
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5672
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4708
5673
|
=========================================
|
|
4709
|
-
END OF
|
|
5674
|
+
END OF micromark@4.0.2 AND INFORMATION
|
|
4710
5675
|
|
|
4711
5676
|
%% micromatch@4.0.8 NOTICES AND INFORMATION BEGIN HERE
|
|
4712
5677
|
=========================================
|
|
@@ -5383,6 +6348,32 @@ SOFTWARE.
|
|
|
5383
6348
|
=========================================
|
|
5384
6349
|
END OF readdirp@3.6.0 AND INFORMATION
|
|
5385
6350
|
|
|
6351
|
+
%% remark-parse@11.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
6352
|
+
=========================================
|
|
6353
|
+
(The MIT License)
|
|
6354
|
+
|
|
6355
|
+
Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
|
6356
|
+
|
|
6357
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6358
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6359
|
+
in the Software without restriction, including without limitation the rights
|
|
6360
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6361
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6362
|
+
furnished to do so, subject to the following conditions:
|
|
6363
|
+
|
|
6364
|
+
The above copyright notice and this permission notice shall be included in
|
|
6365
|
+
all copies or substantial portions of the Software.
|
|
6366
|
+
|
|
6367
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6368
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6369
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6370
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6371
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6372
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
6373
|
+
THE SOFTWARE.
|
|
6374
|
+
=========================================
|
|
6375
|
+
END OF remark-parse@11.0.0 AND INFORMATION
|
|
6376
|
+
|
|
5386
6377
|
%% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5387
6378
|
=========================================
|
|
5388
6379
|
(The MIT License)
|
|
@@ -5935,6 +6926,32 @@ SOFTWARE.
|
|
|
5935
6926
|
=========================================
|
|
5936
6927
|
END OF toidentifier@1.0.1 AND INFORMATION
|
|
5937
6928
|
|
|
6929
|
+
%% trough@2.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
6930
|
+
=========================================
|
|
6931
|
+
(The MIT License)
|
|
6932
|
+
|
|
6933
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
6934
|
+
|
|
6935
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6936
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6937
|
+
in the Software without restriction, including without limitation the rights
|
|
6938
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6939
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6940
|
+
furnished to do so, subject to the following conditions:
|
|
6941
|
+
|
|
6942
|
+
The above copyright notice and this permission notice shall be included in
|
|
6943
|
+
all copies or substantial portions of the Software.
|
|
6944
|
+
|
|
6945
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6946
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6947
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6948
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6949
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6950
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
6951
|
+
THE SOFTWARE.
|
|
6952
|
+
=========================================
|
|
6953
|
+
END OF trough@2.2.0 AND INFORMATION
|
|
6954
|
+
|
|
5938
6955
|
%% type-is@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
5939
6956
|
=========================================
|
|
5940
6957
|
(The MIT License)
|
|
@@ -5989,6 +7006,59 @@ SOFTWARE.
|
|
|
5989
7006
|
=========================================
|
|
5990
7007
|
END OF undici-types@7.16.0 AND INFORMATION
|
|
5991
7008
|
|
|
7009
|
+
%% unified@11.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
7010
|
+
=========================================
|
|
7011
|
+
(The MIT License)
|
|
7012
|
+
|
|
7013
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
7014
|
+
|
|
7015
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7016
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7017
|
+
in the Software without restriction, including without limitation the rights
|
|
7018
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7019
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7020
|
+
furnished to do so, subject to the following conditions:
|
|
7021
|
+
|
|
7022
|
+
The above copyright notice and this permission notice shall be included in
|
|
7023
|
+
all copies or substantial portions of the Software.
|
|
7024
|
+
|
|
7025
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7026
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7027
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7028
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7029
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7030
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
7031
|
+
THE SOFTWARE.
|
|
7032
|
+
=========================================
|
|
7033
|
+
END OF unified@11.0.5 AND INFORMATION
|
|
7034
|
+
|
|
7035
|
+
%% unist-util-stringify-position@4.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
7036
|
+
=========================================
|
|
7037
|
+
(The MIT License)
|
|
7038
|
+
|
|
7039
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
7040
|
+
|
|
7041
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
7042
|
+
a copy of this software and associated documentation files (the
|
|
7043
|
+
'Software'), to deal in the Software without restriction, including
|
|
7044
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7045
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
7046
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
7047
|
+
the following conditions:
|
|
7048
|
+
|
|
7049
|
+
The above copyright notice and this permission notice shall be
|
|
7050
|
+
included in all copies or substantial portions of the Software.
|
|
7051
|
+
|
|
7052
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
7053
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
7054
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
7055
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
7056
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
7057
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
7058
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
7059
|
+
=========================================
|
|
7060
|
+
END OF unist-util-stringify-position@4.0.0 AND INFORMATION
|
|
7061
|
+
|
|
5992
7062
|
%% unpipe@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
5993
7063
|
=========================================
|
|
5994
7064
|
(The MIT License)
|
|
@@ -6084,6 +7154,59 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
6084
7154
|
=========================================
|
|
6085
7155
|
END OF vary@1.1.2 AND INFORMATION
|
|
6086
7156
|
|
|
7157
|
+
%% vfile-message@4.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
7158
|
+
=========================================
|
|
7159
|
+
(The MIT License)
|
|
7160
|
+
|
|
7161
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
7162
|
+
|
|
7163
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
7164
|
+
a copy of this software and associated documentation files (the
|
|
7165
|
+
'Software'), to deal in the Software without restriction, including
|
|
7166
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7167
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
7168
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
7169
|
+
the following conditions:
|
|
7170
|
+
|
|
7171
|
+
The above copyright notice and this permission notice shall be
|
|
7172
|
+
included in all copies or substantial portions of the Software.
|
|
7173
|
+
|
|
7174
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
7175
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
7176
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
7177
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
7178
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
7179
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
7180
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
7181
|
+
=========================================
|
|
7182
|
+
END OF vfile-message@4.0.3 AND INFORMATION
|
|
7183
|
+
|
|
7184
|
+
%% vfile@6.0.3 NOTICES AND INFORMATION BEGIN HERE
|
|
7185
|
+
=========================================
|
|
7186
|
+
(The MIT License)
|
|
7187
|
+
|
|
7188
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
7189
|
+
|
|
7190
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7191
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7192
|
+
in the Software without restriction, including without limitation the rights
|
|
7193
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7194
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7195
|
+
furnished to do so, subject to the following conditions:
|
|
7196
|
+
|
|
7197
|
+
The above copyright notice and this permission notice shall be included in
|
|
7198
|
+
all copies or substantial portions of the Software.
|
|
7199
|
+
|
|
7200
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7201
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7202
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7203
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7204
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7205
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
7206
|
+
THE SOFTWARE.
|
|
7207
|
+
=========================================
|
|
7208
|
+
END OF vfile@6.0.3 AND INFORMATION
|
|
7209
|
+
|
|
6087
7210
|
%% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
6088
7211
|
=========================================
|
|
6089
7212
|
The ISC License
|
|
@@ -6192,6 +7315,6 @@ END OF zod@3.25.76 AND INFORMATION
|
|
|
6192
7315
|
|
|
6193
7316
|
SUMMARY BEGIN HERE
|
|
6194
7317
|
=========================================
|
|
6195
|
-
Total Packages:
|
|
7318
|
+
Total Packages: 257
|
|
6196
7319
|
=========================================
|
|
6197
7320
|
END OF SUMMARY
|