@gabrielbryk/arc-devtools-mcp 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (367) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +977 -0
  3. package/build/src/HeapSnapshotManager.js +148 -0
  4. package/build/src/McpContext.js +737 -0
  5. package/build/src/McpPage.js +315 -0
  6. package/build/src/McpResponse.js +990 -0
  7. package/build/src/Mutex.js +38 -0
  8. package/build/src/PageCollector.js +297 -0
  9. package/build/src/ServiceWorkerCollector.js +171 -0
  10. package/build/src/SlimMcpResponse.js +19 -0
  11. package/build/src/TextSnapshot.js +236 -0
  12. package/build/src/ToolHandler.js +223 -0
  13. package/build/src/WaitForHelper.js +190 -0
  14. package/build/src/bin/check-latest-version.js +50 -0
  15. package/build/src/bin/chrome-devtools-cli-options.js +978 -0
  16. package/build/src/bin/chrome-devtools-mcp-cli-options.js +412 -0
  17. package/build/src/bin/chrome-devtools-mcp-main.js +72 -0
  18. package/build/src/bin/chrome-devtools-mcp.js +23 -0
  19. package/build/src/bin/chrome-devtools.js +189 -0
  20. package/build/src/browser.js +253 -0
  21. package/build/src/daemon/client.js +160 -0
  22. package/build/src/daemon/daemon.js +261 -0
  23. package/build/src/daemon/types.js +7 -0
  24. package/build/src/daemon/utils.js +115 -0
  25. package/build/src/devtools/DevToolsConnectionAdapter.js +70 -0
  26. package/build/src/devtools/DevtoolsUtils.js +369 -0
  27. package/build/src/devtools/McpHostBindingAdapter.js +165 -0
  28. package/build/src/formatters/ConsoleFormatter.js +288 -0
  29. package/build/src/formatters/HeapSnapshotFormatter.js +97 -0
  30. package/build/src/formatters/IssueFormatter.js +193 -0
  31. package/build/src/formatters/NetworkFormatter.js +238 -0
  32. package/build/src/formatters/SnapshotFormatter.js +135 -0
  33. package/build/src/index.js +153 -0
  34. package/build/src/issue-descriptions.js +40 -0
  35. package/build/src/logger.js +37 -0
  36. package/build/src/polyfill.js +8 -0
  37. package/build/src/telemetry/ClearcutLogger.js +169 -0
  38. package/build/src/telemetry/WatchdogClient.js +61 -0
  39. package/build/src/telemetry/errors.js +18 -0
  40. package/build/src/telemetry/flagUtils.js +89 -0
  41. package/build/src/telemetry/metricsRegistry.js +89 -0
  42. package/build/src/telemetry/persistence.js +72 -0
  43. package/build/src/telemetry/transformation.js +134 -0
  44. package/build/src/telemetry/types.js +31 -0
  45. package/build/src/telemetry/watchdog/ClearcutSender.js +205 -0
  46. package/build/src/telemetry/watchdog/main.js +128 -0
  47. package/build/src/third_party/THIRD_PARTY_NOTICES +3637 -0
  48. package/build/src/third_party/bundled-packages.json +12 -0
  49. package/build/src/third_party/devtools-formatter-worker.js +15301 -0
  50. package/build/src/third_party/devtools-heap-snapshot-worker.js +9870 -0
  51. package/build/src/third_party/index.js +159597 -0
  52. package/build/src/third_party/issue-descriptions/CoepCoopSandboxedIframeCannotNavigateToCoopPage.md +4 -0
  53. package/build/src/third_party/issue-descriptions/CoepCorpNotSameOrigin.md +8 -0
  54. package/build/src/third_party/issue-descriptions/CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md +18 -0
  55. package/build/src/third_party/issue-descriptions/CoepCorpNotSameSite.md +7 -0
  56. package/build/src/third_party/issue-descriptions/CoepFrameResourceNeedsCoepHeader.md +10 -0
  57. package/build/src/third_party/issue-descriptions/CompatibilityModeQuirks.md +5 -0
  58. package/build/src/third_party/issue-descriptions/CookieAttributeValueExceedsMaxSize.md +5 -0
  59. package/build/src/third_party/issue-descriptions/LowTextContrast.md +5 -0
  60. package/build/src/third_party/issue-descriptions/SameSiteExcludeContextDowngradeRead.md +8 -0
  61. package/build/src/third_party/issue-descriptions/SameSiteExcludeContextDowngradeSet.md +8 -0
  62. package/build/src/third_party/issue-descriptions/SameSiteExcludeNavigationContextDowngrade.md +8 -0
  63. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureErrorRead.md +8 -0
  64. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureErrorSet.md +8 -0
  65. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureWarnRead.md +8 -0
  66. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureWarnSet.md +8 -0
  67. package/build/src/third_party/issue-descriptions/SameSiteUnspecifiedLaxAllowUnsafeRead.md +9 -0
  68. package/build/src/third_party/issue-descriptions/SameSiteUnspecifiedLaxAllowUnsafeSet.md +9 -0
  69. package/build/src/third_party/issue-descriptions/SameSiteWarnCrossDowngradeRead.md +8 -0
  70. package/build/src/third_party/issue-descriptions/SameSiteWarnCrossDowngradeSet.md +8 -0
  71. package/build/src/third_party/issue-descriptions/SameSiteWarnStrictLaxDowngradeStrict.md +8 -0
  72. package/build/src/third_party/issue-descriptions/arInsecureContext.md +7 -0
  73. package/build/src/third_party/issue-descriptions/arInvalidInfoHeader.md +5 -0
  74. package/build/src/third_party/issue-descriptions/arInvalidRegisterOsSourceHeader.md +5 -0
  75. package/build/src/third_party/issue-descriptions/arInvalidRegisterOsTriggerHeader.md +5 -0
  76. package/build/src/third_party/issue-descriptions/arInvalidRegisterSourceHeader.md +5 -0
  77. package/build/src/third_party/issue-descriptions/arInvalidRegisterTriggerHeader.md +5 -0
  78. package/build/src/third_party/issue-descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
  79. package/build/src/third_party/issue-descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +6 -0
  80. package/build/src/third_party/issue-descriptions/arNoRegisterOsSourceHeader.md +5 -0
  81. package/build/src/third_party/issue-descriptions/arNoRegisterOsTriggerHeader.md +5 -0
  82. package/build/src/third_party/issue-descriptions/arNoRegisterSourceHeader.md +5 -0
  83. package/build/src/third_party/issue-descriptions/arNoRegisterTriggerHeader.md +5 -0
  84. package/build/src/third_party/issue-descriptions/arNoWebOrOsSupport.md +4 -0
  85. package/build/src/third_party/issue-descriptions/arOsSourceIgnored.md +18 -0
  86. package/build/src/third_party/issue-descriptions/arOsTriggerIgnored.md +19 -0
  87. package/build/src/third_party/issue-descriptions/arPermissionPolicyDisabled.md +8 -0
  88. package/build/src/third_party/issue-descriptions/arSourceAndTriggerHeaders.md +9 -0
  89. package/build/src/third_party/issue-descriptions/arSourceIgnored.md +13 -0
  90. package/build/src/third_party/issue-descriptions/arTriggerIgnored.md +12 -0
  91. package/build/src/third_party/issue-descriptions/arUntrustworthyReportingOrigin.md +10 -0
  92. package/build/src/third_party/issue-descriptions/arWebAndOsHeaders.md +11 -0
  93. package/build/src/third_party/issue-descriptions/bounceTrackingMitigations.md +3 -0
  94. package/build/src/third_party/issue-descriptions/clientHintMetaTagAllowListInvalidOrigin.md +4 -0
  95. package/build/src/third_party/issue-descriptions/clientHintMetaTagModifiedHTML.md +4 -0
  96. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidAllowlistItemType.md +12 -0
  97. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidHeader.md +12 -0
  98. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidUrlPattern.md +8 -0
  99. package/build/src/third_party/issue-descriptions/connectionAllowlistItemNotInnerList.md +12 -0
  100. package/build/src/third_party/issue-descriptions/connectionAllowlistMoreThanOneList.md +7 -0
  101. package/build/src/third_party/issue-descriptions/connectionAllowlistReportingEndpointNotToken.md +10 -0
  102. package/build/src/third_party/issue-descriptions/cookieCrossSiteRedirectDowngrade.md +12 -0
  103. package/build/src/third_party/issue-descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md +4 -0
  104. package/build/src/third_party/issue-descriptions/cookieExcludeDomainNonAscii.md +11 -0
  105. package/build/src/third_party/issue-descriptions/cookieExcludePortMismatch.md +8 -0
  106. package/build/src/third_party/issue-descriptions/cookieExcludeSchemeMismatch.md +7 -0
  107. package/build/src/third_party/issue-descriptions/cookieExcludeThirdPartyPhaseoutRead.md +6 -0
  108. package/build/src/third_party/issue-descriptions/cookieExcludeThirdPartyPhaseoutSet.md +6 -0
  109. package/build/src/third_party/issue-descriptions/cookieWarnDomainNonAscii.md +11 -0
  110. package/build/src/third_party/issue-descriptions/cookieWarnMetadataGrantRead.md +4 -0
  111. package/build/src/third_party/issue-descriptions/cookieWarnMetadataGrantSet.md +4 -0
  112. package/build/src/third_party/issue-descriptions/cookieWarnThirdPartyPhaseoutRead.md +6 -0
  113. package/build/src/third_party/issue-descriptions/cookieWarnThirdPartyPhaseoutSet.md +6 -0
  114. package/build/src/third_party/issue-descriptions/corsAllowCredentialsRequired.md +6 -0
  115. package/build/src/third_party/issue-descriptions/corsDisabledScheme.md +7 -0
  116. package/build/src/third_party/issue-descriptions/corsDisallowedByMode.md +7 -0
  117. package/build/src/third_party/issue-descriptions/corsHeaderDisallowedByPreflightResponse.md +5 -0
  118. package/build/src/third_party/issue-descriptions/corsInvalidHeaderValues.md +7 -0
  119. package/build/src/third_party/issue-descriptions/corsLocalNetworkAccessPermissionDenied.md +19 -0
  120. package/build/src/third_party/issue-descriptions/corsMethodDisallowedByPreflightResponse.md +5 -0
  121. package/build/src/third_party/issue-descriptions/corsNoCorsRedirectModeNotFollow.md +5 -0
  122. package/build/src/third_party/issue-descriptions/corsOriginMismatch.md +6 -0
  123. package/build/src/third_party/issue-descriptions/corsPreflightResponseInvalid.md +5 -0
  124. package/build/src/third_party/issue-descriptions/corsRedirectContainsCredentials.md +5 -0
  125. package/build/src/third_party/issue-descriptions/corsWildcardOriginNotAllowed.md +8 -0
  126. package/build/src/third_party/issue-descriptions/cspEvalViolation.md +9 -0
  127. package/build/src/third_party/issue-descriptions/cspInlineViolation.md +10 -0
  128. package/build/src/third_party/issue-descriptions/cspTrustedTypesPolicyViolation.md +5 -0
  129. package/build/src/third_party/issue-descriptions/cspTrustedTypesSinkViolation.md +8 -0
  130. package/build/src/third_party/issue-descriptions/cspURLViolation.md +10 -0
  131. package/build/src/third_party/issue-descriptions/deprecation.md +3 -0
  132. package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsEmptyList.md +1 -0
  133. package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsHttpNotFound.md +1 -0
  134. package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsInvalidContentType.md +1 -0
  135. package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsInvalidResponse.md +1 -0
  136. package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsNoResponse.md +1 -0
  137. package/build/src/third_party/issue-descriptions/emailVerificationRequestDnsFetchFailed.md +1 -0
  138. package/build/src/third_party/issue-descriptions/emailVerificationRequestDnsInvalidRecord.md +1 -0
  139. package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownHttpNotFound.md +1 -0
  140. package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownInvalidContentType.md +1 -0
  141. package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownInvalidResponse.md +1 -0
  142. package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownNoResponse.md +1 -0
  143. package/build/src/third_party/issue-descriptions/emailVerificationRequestInvalidEmail.md +1 -0
  144. package/build/src/third_party/issue-descriptions/emailVerificationRequestJwksHttpNotFound.md +1 -0
  145. package/build/src/third_party/issue-descriptions/emailVerificationRequestJwksInvalidResponse.md +1 -0
  146. package/build/src/third_party/issue-descriptions/emailVerificationRequestKeyBindingSigningFailed.md +1 -0
  147. package/build/src/third_party/issue-descriptions/emailVerificationRequestRpOriginIsOpaque.md +1 -0
  148. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenHttpNotFound.md +1 -0
  149. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenInvalidContentType.md +1 -0
  150. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenInvalidResponse.md +1 -0
  151. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenInvalidSdJwt.md +1 -0
  152. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenMalformedSdJwt.md +1 -0
  153. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenNoResponse.md +1 -0
  154. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidAudience.md +1 -0
  155. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidIssuedAt.md +1 -0
  156. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidNonce.md +1 -0
  157. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidSdHash.md +1 -0
  158. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidTyp.md +1 -0
  159. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingAud.md +1 -0
  160. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingCnf.md +1 -0
  161. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingIat.md +1 -0
  162. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingNonce.md +1 -0
  163. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingSdHash.md +1 -0
  164. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbSignatureFailed.md +1 -0
  165. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidEmail.md +1 -0
  166. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidEmailVerified.md +1 -0
  167. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidHolderKey.md +1 -0
  168. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidIssuedAt.md +1 -0
  169. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidIssuer.md +1 -0
  170. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtJwksMissingKeys.md +1 -0
  171. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingCnf.md +1 -0
  172. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingEmail.md +1 -0
  173. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingIat.md +1 -0
  174. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingIss.md +1 -0
  175. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtSignatureFailed.md +1 -0
  176. package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtUnsupportedHeaderAlg.md +1 -0
  177. package/build/src/third_party/issue-descriptions/emailVerificationRequestUserLoggedOut.md +1 -0
  178. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownAccountsEndpointCrossOrigin.md +1 -0
  179. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownHttpNotFound.md +1 -0
  180. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownInvalidContentType.md +1 -0
  181. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownInvalidResponse.md +1 -0
  182. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownIssuanceEndpointCrossOrigin.md +1 -0
  183. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownListEmpty.md +1 -0
  184. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownMissingAccountsEndpoint.md +1 -0
  185. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownMissingIssuanceEndpoint.md +1 -0
  186. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownNoResponse.md +1 -0
  187. package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownUnsupportedSigningAlgorithm.md +1 -0
  188. package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsHttpNotFound.md +1 -0
  189. package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsInvalidResponse.md +1 -0
  190. package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsNoResponse.md +1 -0
  191. package/build/src/third_party/issue-descriptions/federatedAuthRequestApprovalDeclined.md +1 -0
  192. package/build/src/third_party/issue-descriptions/federatedAuthRequestCanceled.md +1 -0
  193. package/build/src/third_party/issue-descriptions/federatedAuthRequestErrorFetchingSignin.md +1 -0
  194. package/build/src/third_party/issue-descriptions/federatedAuthRequestErrorIdToken.md +1 -0
  195. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenHttpNotFound.md +1 -0
  196. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenInvalidRequest.md +1 -0
  197. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenInvalidResponse.md +1 -0
  198. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenNoResponse.md +1 -0
  199. package/build/src/third_party/issue-descriptions/federatedAuthRequestInvalidSigninResponse.md +1 -0
  200. package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestHttpNotFound.md +1 -0
  201. package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestInvalidResponse.md +1 -0
  202. package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestNoResponse.md +1 -0
  203. package/build/src/third_party/issue-descriptions/federatedAuthRequestTooManyRequests.md +1 -0
  204. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md +1 -0
  205. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md +1 -0
  206. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md +1 -0
  207. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoApiPermission.md +1 -0
  208. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md +1 -0
  209. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotIframe.md +1 -0
  210. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md +1 -0
  211. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotSameOrigin.md +1 -0
  212. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md +1 -0
  213. package/build/src/third_party/issue-descriptions/fetchingPartitionedBlobURL.md +7 -0
  214. package/build/src/third_party/issue-descriptions/genericBackUINavigationWouldSkipAd.md +4 -0
  215. package/build/src/third_party/issue-descriptions/genericFormAriaLabelledByToNonExistingIdError.md +8 -0
  216. package/build/src/third_party/issue-descriptions/genericFormAutocompleteAttributeEmptyError.md +5 -0
  217. package/build/src/third_party/issue-descriptions/genericFormDuplicateIdForInputError.md +5 -0
  218. package/build/src/third_party/issue-descriptions/genericFormEmptyIdAndNameAttributesForInputError.md +5 -0
  219. package/build/src/third_party/issue-descriptions/genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md +5 -0
  220. package/build/src/third_party/issue-descriptions/genericFormInputHasWrongButWellIntendedAutocompleteValueError.md +5 -0
  221. package/build/src/third_party/issue-descriptions/genericFormInputWithNoLabelError.md +5 -0
  222. package/build/src/third_party/issue-descriptions/genericFormLabelForMatchesNonExistingIdError.md +5 -0
  223. package/build/src/third_party/issue-descriptions/genericFormLabelForNameError.md +5 -0
  224. package/build/src/third_party/issue-descriptions/genericFormLabelHasNeitherForNorNestedInputError.md +5 -0
  225. package/build/src/third_party/issue-descriptions/genericFormModelContextMissingToolDescription.md +5 -0
  226. package/build/src/third_party/issue-descriptions/genericFormModelContextMissingToolName.md +5 -0
  227. package/build/src/third_party/issue-descriptions/genericFormModelContextParameterMissingName.md +5 -0
  228. package/build/src/third_party/issue-descriptions/genericFormModelContextParameterMissingTitleAndDescription.md +5 -0
  229. package/build/src/third_party/issue-descriptions/genericFormModelContextRequiredParameterMissingName.md +5 -0
  230. package/build/src/third_party/issue-descriptions/genericNavigationEntryMarkedSkippable.md +7 -0
  231. package/build/src/third_party/issue-descriptions/genericResponseWasBlockedByORB.md +4 -0
  232. package/build/src/third_party/issue-descriptions/heavyAd.md +10 -0
  233. package/build/src/third_party/issue-descriptions/mixedContent.md +5 -0
  234. package/build/src/third_party/issue-descriptions/navigatingPartitionedBlobURL.md +5 -0
  235. package/build/src/third_party/issue-descriptions/permissionElementActivationDisabled.md +7 -0
  236. package/build/src/third_party/issue-descriptions/permissionElementActivationDisabledWithOccluder.md +9 -0
  237. package/build/src/third_party/issue-descriptions/permissionElementActivationDisabledWithOccluderParent.md +9 -0
  238. package/build/src/third_party/issue-descriptions/permissionElementCspFrameAncestorsMissing.md +5 -0
  239. package/build/src/third_party/issue-descriptions/permissionElementFencedFrameDisallowed.md +5 -0
  240. package/build/src/third_party/issue-descriptions/permissionElementFontSizeTooLarge.md +5 -0
  241. package/build/src/third_party/issue-descriptions/permissionElementFontSizeTooSmall.md +5 -0
  242. package/build/src/third_party/issue-descriptions/permissionElementGeolocationDeprecated.md +5 -0
  243. package/build/src/third_party/issue-descriptions/permissionElementInsetBoxShadowUnsupported.md +5 -0
  244. package/build/src/third_party/issue-descriptions/permissionElementInvalidDisplayStyle.md +5 -0
  245. package/build/src/third_party/issue-descriptions/permissionElementInvalidSizeValue.md +5 -0
  246. package/build/src/third_party/issue-descriptions/permissionElementInvalidType.md +5 -0
  247. package/build/src/third_party/issue-descriptions/permissionElementInvalidTypeActivation.md +5 -0
  248. package/build/src/third_party/issue-descriptions/permissionElementLowContrast.md +5 -0
  249. package/build/src/third_party/issue-descriptions/permissionElementNonOpaqueColor.md +5 -0
  250. package/build/src/third_party/issue-descriptions/permissionElementPaddingBottomUnsupported.md +6 -0
  251. package/build/src/third_party/issue-descriptions/permissionElementPaddingRightUnsupported.md +6 -0
  252. package/build/src/third_party/issue-descriptions/permissionElementPermissionsPolicyBlocked.md +5 -0
  253. package/build/src/third_party/issue-descriptions/permissionElementRegistrationFailed.md +5 -0
  254. package/build/src/third_party/issue-descriptions/permissionElementRequestInProgress.md +5 -0
  255. package/build/src/third_party/issue-descriptions/permissionElementSecurityChecksFailed.md +5 -0
  256. package/build/src/third_party/issue-descriptions/permissionElementTypeNotSupported.md +5 -0
  257. package/build/src/third_party/issue-descriptions/permissionElementUntrustedEvent.md +7 -0
  258. package/build/src/third_party/issue-descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
  259. package/build/src/third_party/issue-descriptions/propertyRuleInvalidNameIssue.md +3 -0
  260. package/build/src/third_party/issue-descriptions/propertyRuleIssue.md +7 -0
  261. package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
  262. package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
  263. package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
  264. package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
  265. package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
  266. package/build/src/third_party/issue-descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
  267. package/build/src/third_party/issue-descriptions/selectivePermissionsIntervention.md +7 -0
  268. package/build/src/third_party/issue-descriptions/sharedArrayBuffer.md +7 -0
  269. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +1 -0
  270. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorDictionaryLoadFailure.md +3 -0
  271. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorMatchingDictionaryNotUsed.md +3 -0
  272. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorUnexpectedContentDictionaryHeader.md +1 -0
  273. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorCossOriginNoCorsRequest.md +1 -0
  274. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md +1 -0
  275. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorExpiredResponse.md +3 -0
  276. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorFeatureDisabled.md +3 -0
  277. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInsufficientResources.md +1 -0
  278. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidMatchField.md +1 -0
  279. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidStructuredHeader.md +1 -0
  280. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidTTLField.md +1 -0
  281. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNavigationRequest.md +3 -0
  282. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNoMatchField.md +1 -0
  283. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonIntegerTTLField.md +1 -0
  284. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonListMatchDestField.md +1 -0
  285. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonSecureContext.md +3 -0
  286. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonStringIdField.md +1 -0
  287. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonStringInMatchDestList.md +1 -0
  288. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonStringMatchField.md +1 -0
  289. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonTokenTypeField.md +1 -0
  290. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorRequestAborted.md +1 -0
  291. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorShuttingDown.md +1 -0
  292. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorTooLongIdField.md +3 -0
  293. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorUnsupportedType.md +3 -0
  294. package/build/src/third_party/issue-descriptions/sriInvalidSignatureHeader.md +14 -0
  295. package/build/src/third_party/issue-descriptions/sriInvalidSignatureInputHeader.md +15 -0
  296. package/build/src/third_party/issue-descriptions/sriMissingSignatureHeader.md +8 -0
  297. package/build/src/third_party/issue-descriptions/sriMissingSignatureInputHeader.md +7 -0
  298. package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsIncorrectLength.md +11 -0
  299. package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsNotByteSequence.md +14 -0
  300. package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsParameterized.md +15 -0
  301. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentName.md +8 -0
  302. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentType.md +13 -0
  303. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidDerivedComponentParameter.md +4 -0
  304. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidHeaderComponentParameter.md +5 -0
  305. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidParameter.md +11 -0
  306. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderKeyIdLength.md +12 -0
  307. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingLabel.md +6 -0
  308. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingRequiredParameters.md +8 -0
  309. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueMissingComponents.md +11 -0
  310. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueNotInnerList.md +11 -0
  311. package/build/src/third_party/issue-descriptions/sriValidationFailedIntegrityMismatch.md +10 -0
  312. package/build/src/third_party/issue-descriptions/sriValidationFailedInvalidLength.md +5 -0
  313. package/build/src/third_party/issue-descriptions/sriValidationFailedSignatureExpired.md +6 -0
  314. package/build/src/third_party/issue-descriptions/sriValidationFailedSignatureMismatch.md +11 -0
  315. package/build/src/third_party/issue-descriptions/stylesheetLateImport.md +4 -0
  316. package/build/src/third_party/issue-descriptions/stylesheetRequestFailed.md +3 -0
  317. package/build/src/third_party/issue-descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +3 -0
  318. package/build/src/third_party/issue-descriptions/unencodedDigestIncorrectDigestLength.md +12 -0
  319. package/build/src/third_party/issue-descriptions/unencodedDigestIncorrectDigestType.md +17 -0
  320. package/build/src/third_party/issue-descriptions/unencodedDigestMalformedDictionary.md +14 -0
  321. package/build/src/third_party/issue-descriptions/unencodedDigestUnknownAlgorithm.md +15 -0
  322. package/build/src/third_party/lighthouse-devtools-mcp-bundle.js +61598 -0
  323. package/build/src/tools/ToolDefinition.js +73 -0
  324. package/build/src/tools/categories.js +36 -0
  325. package/build/src/tools/console.js +98 -0
  326. package/build/src/tools/emulation.js +84 -0
  327. package/build/src/tools/extensions.js +101 -0
  328. package/build/src/tools/input.js +469 -0
  329. package/build/src/tools/lighthouse.js +136 -0
  330. package/build/src/tools/memory.js +227 -0
  331. package/build/src/tools/network.js +125 -0
  332. package/build/src/tools/pages.js +419 -0
  333. package/build/src/tools/performance.js +200 -0
  334. package/build/src/tools/screencast.js +117 -0
  335. package/build/src/tools/screenshot.js +169 -0
  336. package/build/src/tools/script.js +151 -0
  337. package/build/src/tools/slim/tools.js +88 -0
  338. package/build/src/tools/snapshot.js +61 -0
  339. package/build/src/tools/thirdPartyDeveloper.js +85 -0
  340. package/build/src/tools/tools.js +56 -0
  341. package/build/src/tools/webmcp.js +66 -0
  342. package/build/src/trace-processing/parse.js +85 -0
  343. package/build/src/types.js +7 -0
  344. package/build/src/utils/check-for-updates.js +74 -0
  345. package/build/src/utils/files.js +61 -0
  346. package/build/src/utils/id.js +16 -0
  347. package/build/src/utils/keyboard.js +297 -0
  348. package/build/src/utils/pagination.js +50 -0
  349. package/build/src/utils/string.js +37 -0
  350. package/build/src/utils/types.js +7 -0
  351. package/build/src/version.js +10 -0
  352. package/package.json +100 -0
  353. package/skills/a11y-debugging/SKILL.md +89 -0
  354. package/skills/a11y-debugging/references/a11y-snippets.md +92 -0
  355. package/skills/chrome-devtools/SKILL.md +72 -0
  356. package/skills/chrome-devtools-cli/SKILL.md +153 -0
  357. package/skills/chrome-devtools-cli/references/installation.md +14 -0
  358. package/skills/debug-optimize-lcp/SKILL.md +121 -0
  359. package/skills/debug-optimize-lcp/references/elements-and-size.md +27 -0
  360. package/skills/debug-optimize-lcp/references/lcp-breakdown.md +23 -0
  361. package/skills/debug-optimize-lcp/references/lcp-snippets.md +79 -0
  362. package/skills/debug-optimize-lcp/references/optimization-strategies.md +38 -0
  363. package/skills/memory-leak-debugging/SKILL.md +50 -0
  364. package/skills/memory-leak-debugging/references/common-leaks.md +33 -0
  365. package/skills/memory-leak-debugging/references/compare_snapshots.js +109 -0
  366. package/skills/memory-leak-debugging/references/memlab.md +29 -0
  367. package/skills/troubleshooting/SKILL.md +98 -0
@@ -0,0 +1,3637 @@
1
+ Name: urlpattern-polyfill
2
+ URL: https://github.com/kenchris/urlpattern-polyfill
3
+ Version: 10.1.0
4
+ License: MIT
5
+
6
+ Copyright 2020 Intel Corporation
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ THE SOFTWARE.
25
+
26
+ -------------------- DEPENDENCY DIVIDER --------------------
27
+
28
+ Name: core-js
29
+ URL: https://core-js.io
30
+ Version: 3.49.0
31
+ License: MIT
32
+
33
+ Copyright (c) 2013–2025 Denis Pushkarev (zloirock.ru)
34
+ Copyright (c) 2025–2026 CoreJS Company (core-js.io)
35
+
36
+ Permission is hereby granted, free of charge, to any person obtaining a copy
37
+ of this software and associated documentation files (the "Software"), to deal
38
+ in the Software without restriction, including without limitation the rights
39
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
40
+ copies of the Software, and to permit persons to whom the Software is
41
+ furnished to do so, subject to the following conditions:
42
+
43
+ The above copyright notice and this permission notice shall be included in
44
+ all copies or substantial portions of the Software.
45
+
46
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
49
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
50
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
51
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
52
+ THE SOFTWARE.
53
+
54
+
55
+ -------------------- DEPENDENCY DIVIDER --------------------
56
+
57
+ Name: cliui
58
+ URL: yargs/cliui
59
+ Version: 9.0.1
60
+ License: ISC
61
+
62
+ Copyright (c) 2015, Contributors
63
+
64
+ Permission to use, copy, modify, and/or distribute this software
65
+ for any purpose with or without fee is hereby granted, provided
66
+ that the above copyright notice and this permission notice
67
+ appear in all copies.
68
+
69
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
70
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
71
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
72
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
73
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
74
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
75
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
76
+
77
+
78
+ -------------------- DEPENDENCY DIVIDER --------------------
79
+
80
+ Name: ansi-regex
81
+ URL: chalk/ansi-regex
82
+ Version: 6.2.2
83
+ License: MIT
84
+
85
+ MIT License
86
+
87
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
88
+
89
+ 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:
90
+
91
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
92
+
93
+ 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.
94
+
95
+
96
+ -------------------- DEPENDENCY DIVIDER --------------------
97
+
98
+ Name: strip-ansi
99
+ URL: chalk/strip-ansi
100
+ Version: 7.1.2
101
+ License: MIT
102
+
103
+ MIT License
104
+
105
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
106
+
107
+ 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:
108
+
109
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
110
+
111
+ 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.
112
+
113
+
114
+ -------------------- DEPENDENCY DIVIDER --------------------
115
+
116
+ Name: get-east-asian-width
117
+ URL: sindresorhus/get-east-asian-width
118
+ Version: 1.4.0
119
+ License: MIT
120
+
121
+ MIT License
122
+
123
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
124
+
125
+ 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:
126
+
127
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
128
+
129
+ 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.
130
+
131
+
132
+ -------------------- DEPENDENCY DIVIDER --------------------
133
+
134
+ Name: emoji-regex
135
+ URL: https://mths.be/emoji-regex
136
+ Version: 10.6.0
137
+ License: MIT
138
+
139
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
140
+
141
+ Permission is hereby granted, free of charge, to any person obtaining
142
+ a copy of this software and associated documentation files (the
143
+ "Software"), to deal in the Software without restriction, including
144
+ without limitation the rights to use, copy, modify, merge, publish,
145
+ distribute, sublicense, and/or sell copies of the Software, and to
146
+ permit persons to whom the Software is furnished to do so, subject to
147
+ the following conditions:
148
+
149
+ The above copyright notice and this permission notice shall be
150
+ included in all copies or substantial portions of the Software.
151
+
152
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
153
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
154
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
155
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
156
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
157
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
158
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
159
+
160
+
161
+ -------------------- DEPENDENCY DIVIDER --------------------
162
+
163
+ Name: string-width
164
+ URL: sindresorhus/string-width
165
+ Version: 7.2.0
166
+ License: MIT
167
+
168
+ MIT License
169
+
170
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
171
+
172
+ 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:
173
+
174
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
175
+
176
+ 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.
177
+
178
+
179
+ -------------------- DEPENDENCY DIVIDER --------------------
180
+
181
+ Name: ansi-styles
182
+ URL: chalk/ansi-styles
183
+ Version: 6.2.3
184
+ License: MIT
185
+
186
+ MIT License
187
+
188
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
189
+
190
+ 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:
191
+
192
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
193
+
194
+ 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.
195
+
196
+
197
+ -------------------- DEPENDENCY DIVIDER --------------------
198
+
199
+ Name: wrap-ansi
200
+ URL: chalk/wrap-ansi
201
+ Version: 9.0.2
202
+ License: MIT
203
+
204
+ MIT License
205
+
206
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
207
+
208
+ 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:
209
+
210
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
211
+
212
+ 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.
213
+
214
+
215
+ -------------------- DEPENDENCY DIVIDER --------------------
216
+
217
+ Name: escalade
218
+ URL: lukeed/escalade
219
+ Version: 3.2.0
220
+ License: MIT
221
+
222
+ MIT License
223
+
224
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
225
+
226
+ 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:
227
+
228
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
229
+
230
+ 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.
231
+
232
+
233
+ -------------------- DEPENDENCY DIVIDER --------------------
234
+
235
+ Name: yargs-parser
236
+ URL: https://github.com/yargs/yargs-parser.git
237
+ Version: 22.0.0
238
+ License: ISC
239
+
240
+ Copyright (c) 2016, Contributors
241
+
242
+ Permission to use, copy, modify, and/or distribute this software
243
+ for any purpose with or without fee is hereby granted, provided
244
+ that the above copyright notice and this permission notice
245
+ appear in all copies.
246
+
247
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
248
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
249
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
250
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
251
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
252
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
253
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
254
+
255
+
256
+ -------------------- DEPENDENCY DIVIDER --------------------
257
+
258
+ Name: yargs
259
+ URL: https://yargs.js.org/
260
+ Version: 18.0.0
261
+ License: MIT
262
+
263
+ MIT License
264
+
265
+ Copyright 2010 James Halliday (mail@substack.net); Modified work Copyright 2014 Contributors (ben@npmjs.com)
266
+
267
+ Permission is hereby granted, free of charge, to any person obtaining a copy
268
+ of this software and associated documentation files (the "Software"), to deal
269
+ in the Software without restriction, including without limitation the rights
270
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
271
+ copies of the Software, and to permit persons to whom the Software is
272
+ furnished to do so, subject to the following conditions:
273
+
274
+ The above copyright notice and this permission notice shall be included in
275
+ all copies or substantial portions of the Software.
276
+
277
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
278
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
279
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
280
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
281
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
282
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
283
+ THE SOFTWARE.
284
+
285
+
286
+ -------------------- DEPENDENCY DIVIDER --------------------
287
+
288
+ Name: y18n
289
+ URL: https://github.com/yargs/y18n
290
+ Version: 5.0.8
291
+ License: ISC
292
+
293
+ Copyright (c) 2015, Contributors
294
+
295
+ Permission to use, copy, modify, and/or distribute this software for any purpose
296
+ with or without fee is hereby granted, provided that the above copyright notice
297
+ and this permission notice appear in all copies.
298
+
299
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
300
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
301
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
302
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
303
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
304
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
305
+ THIS SOFTWARE.
306
+
307
+
308
+ -------------------- DEPENDENCY DIVIDER --------------------
309
+
310
+ Name: get-caller-file
311
+ URL: https://github.com/stefanpenner/get-caller-file#readme
312
+ Version: 2.0.5
313
+ License: ISC
314
+
315
+ ISC License (ISC)
316
+ Copyright 2018 Stefan Penner
317
+
318
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
319
+
320
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
321
+
322
+
323
+ -------------------- DEPENDENCY DIVIDER --------------------
324
+
325
+ Name: semver
326
+ URL: git+https://github.com/npm/node-semver.git
327
+ Version: 7.8.4
328
+ License: ISC
329
+
330
+ The ISC License
331
+
332
+ Copyright (c) Isaac Z. Schlueter and Contributors
333
+
334
+ Permission to use, copy, modify, and/or distribute this software for any
335
+ purpose with or without fee is hereby granted, provided that the above
336
+ copyright notice and this permission notice appear in all copies.
337
+
338
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
339
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
340
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
341
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
342
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
343
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
344
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
345
+
346
+
347
+ -------------------- DEPENDENCY DIVIDER --------------------
348
+
349
+ Name: debug
350
+ URL: git://github.com/debug-js/debug.git
351
+ Version: 4.4.3
352
+ License: MIT
353
+
354
+ (The MIT License)
355
+
356
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
357
+ Copyright (c) 2018-2021 Josh Junon
358
+
359
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
360
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
361
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
362
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
363
+ subject to the following conditions:
364
+
365
+ The above copyright notice and this permission notice shall be included in all copies or substantial
366
+ portions of the Software.
367
+
368
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
369
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
370
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
371
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
372
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
373
+
374
+
375
+
376
+ -------------------- DEPENDENCY DIVIDER --------------------
377
+
378
+ Name: ms
379
+ URL: vercel/ms
380
+ Version: 2.1.3
381
+ License: MIT
382
+
383
+ The MIT License (MIT)
384
+
385
+ Copyright (c) 2020 Vercel, Inc.
386
+
387
+ Permission is hereby granted, free of charge, to any person obtaining a copy
388
+ of this software and associated documentation files (the "Software"), to deal
389
+ in the Software without restriction, including without limitation the rights
390
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
391
+ copies of the Software, and to permit persons to whom the Software is
392
+ furnished to do so, subject to the following conditions:
393
+
394
+ The above copyright notice and this permission notice shall be included in all
395
+ copies or substantial portions of the Software.
396
+
397
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
398
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
399
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
400
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
401
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
402
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
403
+ SOFTWARE.
404
+
405
+
406
+ -------------------- DEPENDENCY DIVIDER --------------------
407
+
408
+ Name: has-flag
409
+ URL: sindresorhus/has-flag
410
+ Version: 4.0.0
411
+ License: MIT
412
+
413
+ MIT License
414
+
415
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
416
+
417
+ 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:
418
+
419
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
420
+
421
+ 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.
422
+
423
+
424
+ -------------------- DEPENDENCY DIVIDER --------------------
425
+
426
+ Name: supports-color
427
+ URL: chalk/supports-color
428
+ Version: 7.2.0
429
+ License: MIT
430
+
431
+ MIT License
432
+
433
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
434
+
435
+ 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:
436
+
437
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
438
+
439
+ 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.
440
+
441
+
442
+ -------------------- DEPENDENCY DIVIDER --------------------
443
+
444
+ Name: zod
445
+ URL: https://zod.dev
446
+ Version: 3.25.76
447
+ License: MIT
448
+
449
+ MIT License
450
+
451
+ Copyright (c) 2025 Colin McDonnell
452
+
453
+ Permission is hereby granted, free of charge, to any person obtaining a copy
454
+ of this software and associated documentation files (the "Software"), to deal
455
+ in the Software without restriction, including without limitation the rights
456
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
457
+ copies of the Software, and to permit persons to whom the Software is
458
+ furnished to do so, subject to the following conditions:
459
+
460
+ The above copyright notice and this permission notice shall be included in all
461
+ copies or substantial portions of the Software.
462
+
463
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
464
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
465
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
466
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
467
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
468
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
469
+ SOFTWARE.
470
+
471
+
472
+ -------------------- DEPENDENCY DIVIDER --------------------
473
+
474
+ Name: @modelcontextprotocol/sdk
475
+ URL: https://modelcontextprotocol.io
476
+ Version: 1.29.0
477
+ License: MIT
478
+
479
+ MIT License
480
+
481
+ Copyright (c) 2024 Anthropic, PBC
482
+
483
+ Permission is hereby granted, free of charge, to any person obtaining a copy
484
+ of this software and associated documentation files (the "Software"), to deal
485
+ in the Software without restriction, including without limitation the rights
486
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
487
+ copies of the Software, and to permit persons to whom the Software is
488
+ furnished to do so, subject to the following conditions:
489
+
490
+ The above copyright notice and this permission notice shall be included in all
491
+ copies or substantial portions of the Software.
492
+
493
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
494
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
495
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
496
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
497
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
498
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
499
+ SOFTWARE.
500
+
501
+
502
+ -------------------- DEPENDENCY DIVIDER --------------------
503
+
504
+ Name: zod-to-json-schema
505
+ URL: https://github.com/StefanTerdell/zod-to-json-schema
506
+ Version: 3.25.1
507
+ License: ISC
508
+
509
+ ISC License
510
+
511
+ Copyright (c) 2020, Stefan Terdell
512
+
513
+ Permission to use, copy, modify, and/or distribute this software for any
514
+ purpose with or without fee is hereby granted, provided that the above
515
+ copyright notice and this permission notice appear in all copies.
516
+
517
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
518
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
519
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
520
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
521
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
522
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
523
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
524
+
525
+ -------------------- DEPENDENCY DIVIDER --------------------
526
+
527
+ Name: ajv
528
+ URL: https://ajv.js.org
529
+ Version: 8.18.0
530
+ License: MIT
531
+
532
+ The MIT License (MIT)
533
+
534
+ Copyright (c) 2015-2021 Evgeny Poberezkin
535
+
536
+ Permission is hereby granted, free of charge, to any person obtaining a copy
537
+ of this software and associated documentation files (the "Software"), to deal
538
+ in the Software without restriction, including without limitation the rights
539
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
540
+ copies of the Software, and to permit persons to whom the Software is
541
+ furnished to do so, subject to the following conditions:
542
+
543
+ The above copyright notice and this permission notice shall be included in all
544
+ copies or substantial portions of the Software.
545
+
546
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
547
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
548
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
549
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
550
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
551
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
552
+ SOFTWARE.
553
+
554
+
555
+
556
+ -------------------- DEPENDENCY DIVIDER --------------------
557
+
558
+ Name: fast-deep-equal
559
+ URL: https://github.com/epoberezkin/fast-deep-equal#readme
560
+ Version: 3.1.3
561
+ License: MIT
562
+
563
+ MIT License
564
+
565
+ Copyright (c) 2017 Evgeny Poberezkin
566
+
567
+ Permission is hereby granted, free of charge, to any person obtaining a copy
568
+ of this software and associated documentation files (the "Software"), to deal
569
+ in the Software without restriction, including without limitation the rights
570
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
571
+ copies of the Software, and to permit persons to whom the Software is
572
+ furnished to do so, subject to the following conditions:
573
+
574
+ The above copyright notice and this permission notice shall be included in all
575
+ copies or substantial portions of the Software.
576
+
577
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
578
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
579
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
580
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
581
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
582
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
583
+ SOFTWARE.
584
+
585
+
586
+ -------------------- DEPENDENCY DIVIDER --------------------
587
+
588
+ Name: json-schema-traverse
589
+ URL: https://github.com/epoberezkin/json-schema-traverse#readme
590
+ Version: 1.0.0
591
+ License: MIT
592
+
593
+ MIT License
594
+
595
+ Copyright (c) 2017 Evgeny Poberezkin
596
+
597
+ Permission is hereby granted, free of charge, to any person obtaining a copy
598
+ of this software and associated documentation files (the "Software"), to deal
599
+ in the Software without restriction, including without limitation the rights
600
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
601
+ copies of the Software, and to permit persons to whom the Software is
602
+ furnished to do so, subject to the following conditions:
603
+
604
+ The above copyright notice and this permission notice shall be included in all
605
+ copies or substantial portions of the Software.
606
+
607
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
608
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
609
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
610
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
611
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
612
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
613
+ SOFTWARE.
614
+
615
+
616
+ -------------------- DEPENDENCY DIVIDER --------------------
617
+
618
+ Name: fast-uri
619
+ URL: https://github.com/fastify/fast-uri
620
+ Version: 3.1.2
621
+ License: BSD-3-Clause
622
+
623
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
624
+ Copyright (c) 2021-present The Fastify team <https://github.com/fastify/fastify#team>
625
+ All rights reserved.
626
+
627
+ Redistribution and use in source and binary forms, with or without
628
+ modification, are permitted provided that the following conditions are met:
629
+ * Redistributions of source code must retain the above copyright
630
+ notice, this list of conditions and the following disclaimer.
631
+ * Redistributions in binary form must reproduce the above copyright
632
+ notice, this list of conditions and the following disclaimer in the
633
+ documentation and/or other materials provided with the distribution.
634
+ * The names of any contributors may not be used to endorse or promote
635
+ products derived from this software without specific prior written
636
+ permission.
637
+
638
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
639
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
640
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
641
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
642
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
643
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
644
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
645
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
646
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
647
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
648
+
649
+ * * *
650
+
651
+ The complete list of contributors can be found at:
652
+ - https://github.com/garycourt/uri-js/graphs/contributors
653
+
654
+ -------------------- DEPENDENCY DIVIDER --------------------
655
+
656
+ Name: ajv-formats
657
+ URL: https://github.com/ajv-validator/ajv-formats#readme
658
+ Version: 3.0.1
659
+ License: MIT
660
+
661
+ MIT License
662
+
663
+ Copyright (c) 2020 Evgeny Poberezkin
664
+
665
+ Permission is hereby granted, free of charge, to any person obtaining a copy
666
+ of this software and associated documentation files (the "Software"), to deal
667
+ in the Software without restriction, including without limitation the rights
668
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
669
+ copies of the Software, and to permit persons to whom the Software is
670
+ furnished to do so, subject to the following conditions:
671
+
672
+ The above copyright notice and this permission notice shall be included in all
673
+ copies or substantial portions of the Software.
674
+
675
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
676
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
677
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
678
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
679
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
680
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
681
+ SOFTWARE.
682
+
683
+
684
+ -------------------- DEPENDENCY DIVIDER --------------------
685
+
686
+ Name: cross-spawn
687
+ URL: https://github.com/moxystudio/node-cross-spawn
688
+ Version: 7.0.6
689
+ License: MIT
690
+
691
+ The MIT License (MIT)
692
+
693
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
694
+
695
+ Permission is hereby granted, free of charge, to any person obtaining a copy
696
+ of this software and associated documentation files (the "Software"), to deal
697
+ in the Software without restriction, including without limitation the rights
698
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
699
+ copies of the Software, and to permit persons to whom the Software is
700
+ furnished to do so, subject to the following conditions:
701
+
702
+ The above copyright notice and this permission notice shall be included in
703
+ all copies or substantial portions of the Software.
704
+
705
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
706
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
707
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
708
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
709
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
710
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
711
+ THE SOFTWARE.
712
+
713
+
714
+ -------------------- DEPENDENCY DIVIDER --------------------
715
+
716
+ Name: isexe
717
+ URL: https://github.com/isaacs/isexe#readme
718
+ Version: 2.0.0
719
+ License: ISC
720
+
721
+ The ISC License
722
+
723
+ Copyright (c) Isaac Z. Schlueter and Contributors
724
+
725
+ Permission to use, copy, modify, and/or distribute this software for any
726
+ purpose with or without fee is hereby granted, provided that the above
727
+ copyright notice and this permission notice appear in all copies.
728
+
729
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
730
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
731
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
732
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
733
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
734
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
735
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
736
+
737
+
738
+ -------------------- DEPENDENCY DIVIDER --------------------
739
+
740
+ Name: which
741
+ URL: git://github.com/isaacs/node-which.git
742
+ Version: 2.0.2
743
+ License: ISC
744
+
745
+ The ISC License
746
+
747
+ Copyright (c) Isaac Z. Schlueter and Contributors
748
+
749
+ Permission to use, copy, modify, and/or distribute this software for any
750
+ purpose with or without fee is hereby granted, provided that the above
751
+ copyright notice and this permission notice appear in all copies.
752
+
753
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
754
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
755
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
756
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
757
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
758
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
759
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
760
+
761
+
762
+ -------------------- DEPENDENCY DIVIDER --------------------
763
+
764
+ Name: path-key
765
+ URL: sindresorhus/path-key
766
+ Version: 3.1.1
767
+ License: MIT
768
+
769
+ MIT License
770
+
771
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
772
+
773
+ 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:
774
+
775
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
776
+
777
+ 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.
778
+
779
+
780
+ -------------------- DEPENDENCY DIVIDER --------------------
781
+
782
+ Name: shebang-regex
783
+ URL: sindresorhus/shebang-regex
784
+ Version: 3.0.0
785
+ License: MIT
786
+
787
+ MIT License
788
+
789
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
790
+
791
+ 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:
792
+
793
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
794
+
795
+ 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.
796
+
797
+
798
+ -------------------- DEPENDENCY DIVIDER --------------------
799
+
800
+ Name: shebang-command
801
+ URL: kevva/shebang-command
802
+ Version: 2.0.0
803
+ License: MIT
804
+
805
+ MIT License
806
+
807
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
808
+
809
+ 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:
810
+
811
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
812
+
813
+ 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.
814
+
815
+
816
+ -------------------- DEPENDENCY DIVIDER --------------------
817
+
818
+ Name: uri-js
819
+ URL: https://github.com/garycourt/uri-js
820
+ Version: 4.4.1
821
+ License: BSD-2-Clause
822
+
823
+ Copyright 2011 Gary Court. All rights reserved.
824
+
825
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
826
+
827
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
828
+
829
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
830
+
831
+ THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
832
+
833
+ The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
834
+
835
+
836
+ -------------------- DEPENDENCY DIVIDER --------------------
837
+
838
+ Name: fast-json-stable-stringify
839
+ URL: https://github.com/epoberezkin/fast-json-stable-stringify
840
+ Version: 2.1.0
841
+ License: MIT
842
+
843
+ This software is released under the MIT license:
844
+
845
+ Copyright (c) 2017 Evgeny Poberezkin
846
+ Copyright (c) 2013 James Halliday
847
+
848
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
849
+ this software and associated documentation files (the "Software"), to deal in
850
+ the Software without restriction, including without limitation the rights to
851
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
852
+ the Software, and to permit persons to whom the Software is furnished to do so,
853
+ subject to the following conditions:
854
+
855
+ The above copyright notice and this permission notice shall be included in all
856
+ copies or substantial portions of the Software.
857
+
858
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
859
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
860
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
861
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
862
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
863
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
864
+
865
+
866
+ -------------------- DEPENDENCY DIVIDER --------------------
867
+
868
+ Name: puppeteer-core
869
+ URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
870
+ Version: 25.1.0
871
+ License: Apache-2.0
872
+
873
+ -------------------- DEPENDENCY DIVIDER --------------------
874
+
875
+ Name: @puppeteer/browsers
876
+ URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
877
+ Version: 3.0.4
878
+ License: Apache-2.0
879
+
880
+ -------------------- DEPENDENCY DIVIDER --------------------
881
+
882
+ Name: ws
883
+ URL: https://github.com/websockets/ws
884
+ Version: 8.21.0
885
+ License: MIT
886
+
887
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
888
+ Copyright (c) 2013 Arnout Kazemier and contributors
889
+ Copyright (c) 2016 Luigi Pinca and contributors
890
+
891
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
892
+ this software and associated documentation files (the "Software"), to deal in
893
+ the Software without restriction, including without limitation the rights to
894
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
895
+ the Software, and to permit persons to whom the Software is furnished to do so,
896
+ subject to the following conditions:
897
+
898
+ The above copyright notice and this permission notice shall be included in all
899
+ copies or substantial portions of the Software.
900
+
901
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
902
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
903
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
904
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
905
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
906
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
907
+
908
+
909
+ -------------------- DEPENDENCY DIVIDER --------------------
910
+
911
+ Name: @toon-format/toon
912
+ URL: https://toonformat.dev
913
+ Version: 2.3.0
914
+ License: MIT
915
+
916
+ MIT License
917
+
918
+ Copyright (c) 2025-PRESENT Johann Schopplich
919
+
920
+ Permission is hereby granted, free of charge, to any person obtaining a copy
921
+ of this software and associated documentation files (the "Software"), to deal
922
+ in the Software without restriction, including without limitation the rights
923
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
924
+ copies of the Software, and to permit persons to whom the Software is
925
+ furnished to do so, subject to the following conditions:
926
+
927
+ The above copyright notice and this permission notice shall be included in all
928
+ copies or substantial portions of the Software.
929
+
930
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
931
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
932
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
933
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
934
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
935
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
936
+ SOFTWARE.
937
+
938
+
939
+ -------------------- DEPENDENCY DIVIDER --------------------
940
+
941
+ Name: chrome-devtools-frontend
942
+ License: Apache-2.0
943
+
944
+ // Copyright 2014 The Chromium Authors
945
+ //
946
+ // Redistribution and use in source and binary forms, with or without
947
+ // modification, are permitted provided that the following conditions are
948
+ // met:
949
+ //
950
+ // * Redistributions of source code must retain the above copyright
951
+ // notice, this list of conditions and the following disclaimer.
952
+ // * Redistributions in binary form must reproduce the above
953
+ // copyright notice, this list of conditions and the following disclaimer
954
+ // in the documentation and/or other materials provided with the
955
+ // distribution.
956
+ // * Neither the name of Google Inc. nor the names of its
957
+ // contributors may be used to endorse or promote products derived from
958
+ // this software without specific prior written permission.
959
+ //
960
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
961
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
962
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
963
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
964
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
965
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
966
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
967
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
968
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
969
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
970
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
971
+
972
+
973
+ -------------------- DEPENDENCY DIVIDER --------------------
974
+
975
+ Name: lighthouse
976
+ License: Apache-2.0
977
+
978
+
979
+ Apache License
980
+ Version 2.0, January 2004
981
+ http://www.apache.org/licenses/
982
+
983
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
984
+
985
+ 1. Definitions.
986
+
987
+ "License" shall mean the terms and conditions for use, reproduction,
988
+ and distribution as defined by Sections 1 through 9 of this document.
989
+
990
+ "Licensor" shall mean the copyright owner or entity authorized by
991
+ the copyright owner that is granting the License.
992
+
993
+ "Legal Entity" shall mean the union of the acting entity and all
994
+ other entities that control, are controlled by, or are under common
995
+ control with that entity. For the purposes of this definition,
996
+ "control" means (i) the power, direct or indirect, to cause the
997
+ direction or management of such entity, whether by contract or
998
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
999
+ outstanding shares, or (iii) beneficial ownership of such entity.
1000
+
1001
+ "You" (or "Your") shall mean an individual or Legal Entity
1002
+ exercising permissions granted by this License.
1003
+
1004
+ "Source" form shall mean the preferred form for making modifications,
1005
+ including but not limited to software source code, documentation
1006
+ source, and configuration files.
1007
+
1008
+ "Object" form shall mean any form resulting from mechanical
1009
+ transformation or translation of a Source form, including but
1010
+ not limited to compiled object code, generated documentation,
1011
+ and conversions to other media types.
1012
+
1013
+ "Work" shall mean the work of authorship, whether in Source or
1014
+ Object form, made available under the License, as indicated by a
1015
+ copyright notice that is included in or attached to the work
1016
+ (an example is provided in the Appendix below).
1017
+
1018
+ "Derivative Works" shall mean any work, whether in Source or Object
1019
+ form, that is based on (or derived from) the Work and for which the
1020
+ editorial revisions, annotations, elaborations, or other modifications
1021
+ represent, as a whole, an original work of authorship. For the purposes
1022
+ of this License, Derivative Works shall not include works that remain
1023
+ separable from, or merely link (or bind by name) to the interfaces of,
1024
+ the Work and Derivative Works thereof.
1025
+
1026
+ "Contribution" shall mean any work of authorship, including
1027
+ the original version of the Work and any modifications or additions
1028
+ to that Work or Derivative Works thereof, that is intentionally
1029
+ submitted to Licensor for inclusion in the Work by the copyright owner
1030
+ or by an individual or Legal Entity authorized to submit on behalf of
1031
+ the copyright owner. For the purposes of this definition, "submitted"
1032
+ means any form of electronic, verbal, or written communication sent
1033
+ to the Licensor or its representatives, including but not limited to
1034
+ communication on electronic mailing lists, source code control systems,
1035
+ and issue tracking systems that are managed by, or on behalf of, the
1036
+ Licensor for the purpose of discussing and improving the Work, but
1037
+ excluding communication that is conspicuously marked or otherwise
1038
+ designated in writing by the copyright owner as "Not a Contribution."
1039
+
1040
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1041
+ on behalf of whom a Contribution has been received by Licensor and
1042
+ subsequently incorporated within the Work.
1043
+
1044
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1045
+ this License, each Contributor hereby grants to You a perpetual,
1046
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1047
+ copyright license to reproduce, prepare Derivative Works of,
1048
+ publicly display, publicly perform, sublicense, and distribute the
1049
+ Work and such Derivative Works in Source or Object form.
1050
+
1051
+ 3. Grant of Patent License. Subject to the terms and conditions of
1052
+ this License, each Contributor hereby grants to You a perpetual,
1053
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1054
+ (except as stated in this section) patent license to make, have made,
1055
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1056
+ where such license applies only to those patent claims licensable
1057
+ by such Contributor that are necessarily infringed by their
1058
+ Contribution(s) alone or by combination of their Contribution(s)
1059
+ with the Work to which such Contribution(s) was submitted. If You
1060
+ institute patent litigation against any entity (including a
1061
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1062
+ or a Contribution incorporated within the Work constitutes direct
1063
+ or contributory patent infringement, then any patent licenses
1064
+ granted to You under this License for that Work shall terminate
1065
+ as of the date such litigation is filed.
1066
+
1067
+ 4. Redistribution. You may reproduce and distribute copies of the
1068
+ Work or Derivative Works thereof in any medium, with or without
1069
+ modifications, and in Source or Object form, provided that You
1070
+ meet the following conditions:
1071
+
1072
+ (a) You must give any other recipients of the Work or
1073
+ Derivative Works a copy of this License; and
1074
+
1075
+ (b) You must cause any modified files to carry prominent notices
1076
+ stating that You changed the files; and
1077
+
1078
+ (c) You must retain, in the Source form of any Derivative Works
1079
+ that You distribute, all copyright, patent, trademark, and
1080
+ attribution notices from the Source form of the Work,
1081
+ excluding those notices that do not pertain to any part of
1082
+ the Derivative Works; and
1083
+
1084
+ (d) If the Work includes a "NOTICE" text file as part of its
1085
+ distribution, then any Derivative Works that You distribute must
1086
+ include a readable copy of the attribution notices contained
1087
+ within such NOTICE file, excluding those notices that do not
1088
+ pertain to any part of the Derivative Works, in at least one
1089
+ of the following places: within a NOTICE text file distributed
1090
+ as part of the Derivative Works; within the Source form or
1091
+ documentation, if provided along with the Derivative Works; or,
1092
+ within a display generated by the Derivative Works, if and
1093
+ wherever such third-party notices normally appear. The contents
1094
+ of the NOTICE file are for informational purposes only and
1095
+ do not modify the License. You may add Your own attribution
1096
+ notices within Derivative Works that You distribute, alongside
1097
+ or as an addendum to the NOTICE text from the Work, provided
1098
+ that such additional attribution notices cannot be construed
1099
+ as modifying the License.
1100
+
1101
+ You may add Your own copyright statement to Your modifications and
1102
+ may provide additional or different license terms and conditions
1103
+ for use, reproduction, or distribution of Your modifications, or
1104
+ for any such Derivative Works as a whole, provided Your use,
1105
+ reproduction, and distribution of the Work otherwise complies with
1106
+ the conditions stated in this License.
1107
+
1108
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1109
+ any Contribution intentionally submitted for inclusion in the Work
1110
+ by You to the Licensor shall be under the terms and conditions of
1111
+ this License, without any additional terms or conditions.
1112
+ Notwithstanding the above, nothing herein shall supersede or modify
1113
+ the terms of any separate license agreement you may have executed
1114
+ with Licensor regarding such Contributions.
1115
+
1116
+ 6. Trademarks. This License does not grant permission to use the trade
1117
+ names, trademarks, service marks, or product names of the Licensor,
1118
+ except as required for reasonable and customary use in describing the
1119
+ origin of the Work and reproducing the content of the NOTICE file.
1120
+
1121
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1122
+ agreed to in writing, Licensor provides the Work (and each
1123
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1124
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1125
+ implied, including, without limitation, any warranties or conditions
1126
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1127
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1128
+ appropriateness of using or redistributing the Work and assume any
1129
+ risks associated with Your exercise of permissions under this License.
1130
+
1131
+ 8. Limitation of Liability. In no event and under no legal theory,
1132
+ whether in tort (including negligence), contract, or otherwise,
1133
+ unless required by applicable law (such as deliberate and grossly
1134
+ negligent acts) or agreed to in writing, shall any Contributor be
1135
+ liable to You for damages, including any direct, indirect, special,
1136
+ incidental, or consequential damages of any character arising as a
1137
+ result of this License or out of the use or inability to use the
1138
+ Work (including but not limited to damages for loss of goodwill,
1139
+ work stoppage, computer failure or malfunction, or any and all
1140
+ other commercial damages or losses), even if such Contributor
1141
+ has been advised of the possibility of such damages.
1142
+
1143
+ 9. Accepting Warranty or Additional Liability. While redistributing
1144
+ the Work or Derivative Works thereof, You may choose to offer,
1145
+ and charge a fee for, acceptance of support, warranty, indemnity,
1146
+ or other liability obligations and/or rights consistent with this
1147
+ License. However, in accepting such obligations, You may act only
1148
+ on Your own behalf and on Your sole responsibility, not on behalf
1149
+ of any other Contributor, and only if You agree to indemnify,
1150
+ defend, and hold each Contributor harmless for any liability
1151
+ incurred by, or claims asserted against, such Contributor by reason
1152
+ of your accepting any such warranty or additional liability.
1153
+
1154
+ END OF TERMS AND CONDITIONS
1155
+
1156
+ APPENDIX: How to apply the Apache License to your work.
1157
+
1158
+ To apply the Apache License to your work, attach the following
1159
+ boilerplate notice, with the fields enclosed by brackets "[]"
1160
+ replaced with your own identifying information. (Don't include
1161
+ the brackets!) The text should be enclosed in the appropriate
1162
+ comment syntax for the file format. We also recommend that a
1163
+ file or class name and description of purpose be included on the
1164
+ same "printed page" as the copyright notice for easier
1165
+ identification within third-party archives.
1166
+
1167
+ Copyright [yyyy] [name of copyright owner]
1168
+
1169
+ Licensed under the Apache License, Version 2.0 (the "License");
1170
+ you may not use this file except in compliance with the License.
1171
+ You may obtain a copy of the License at
1172
+
1173
+ http://www.apache.org/licenses/LICENSE-2.0
1174
+
1175
+ Unless required by applicable law or agreed to in writing, software
1176
+ distributed under the License is distributed on an "AS IS" BASIS,
1177
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1178
+ See the License for the specific language governing permissions and
1179
+ limitations under the License.
1180
+
1181
+
1182
+ -------------------- DEPENDENCY DIVIDER --------------------
1183
+
1184
+ Name: i18n
1185
+ License:
1186
+
1187
+
1188
+ Apache License
1189
+ Version 2.0, January 2004
1190
+ http://www.apache.org/licenses/
1191
+
1192
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1193
+
1194
+ 1. Definitions.
1195
+
1196
+ "License" shall mean the terms and conditions for use, reproduction,
1197
+ and distribution as defined by Sections 1 through 9 of this document.
1198
+
1199
+ "Licensor" shall mean the copyright owner or entity authorized by
1200
+ the copyright owner that is granting the License.
1201
+
1202
+ "Legal Entity" shall mean the union of the acting entity and all
1203
+ other entities that control, are controlled by, or are under common
1204
+ control with that entity. For the purposes of this definition,
1205
+ "control" means (i) the power, direct or indirect, to cause the
1206
+ direction or management of such entity, whether by contract or
1207
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1208
+ outstanding shares, or (iii) beneficial ownership of such entity.
1209
+
1210
+ "You" (or "Your") shall mean an individual or Legal Entity
1211
+ exercising permissions granted by this License.
1212
+
1213
+ "Source" form shall mean the preferred form for making modifications,
1214
+ including but not limited to software source code, documentation
1215
+ source, and configuration files.
1216
+
1217
+ "Object" form shall mean any form resulting from mechanical
1218
+ transformation or translation of a Source form, including but
1219
+ not limited to compiled object code, generated documentation,
1220
+ and conversions to other media types.
1221
+
1222
+ "Work" shall mean the work of authorship, whether in Source or
1223
+ Object form, made available under the License, as indicated by a
1224
+ copyright notice that is included in or attached to the work
1225
+ (an example is provided in the Appendix below).
1226
+
1227
+ "Derivative Works" shall mean any work, whether in Source or Object
1228
+ form, that is based on (or derived from) the Work and for which the
1229
+ editorial revisions, annotations, elaborations, or other modifications
1230
+ represent, as a whole, an original work of authorship. For the purposes
1231
+ of this License, Derivative Works shall not include works that remain
1232
+ separable from, or merely link (or bind by name) to the interfaces of,
1233
+ the Work and Derivative Works thereof.
1234
+
1235
+ "Contribution" shall mean any work of authorship, including
1236
+ the original version of the Work and any modifications or additions
1237
+ to that Work or Derivative Works thereof, that is intentionally
1238
+ submitted to Licensor for inclusion in the Work by the copyright owner
1239
+ or by an individual or Legal Entity authorized to submit on behalf of
1240
+ the copyright owner. For the purposes of this definition, "submitted"
1241
+ means any form of electronic, verbal, or written communication sent
1242
+ to the Licensor or its representatives, including but not limited to
1243
+ communication on electronic mailing lists, source code control systems,
1244
+ and issue tracking systems that are managed by, or on behalf of, the
1245
+ Licensor for the purpose of discussing and improving the Work, but
1246
+ excluding communication that is conspicuously marked or otherwise
1247
+ designated in writing by the copyright owner as "Not a Contribution."
1248
+
1249
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1250
+ on behalf of whom a Contribution has been received by Licensor and
1251
+ subsequently incorporated within the Work.
1252
+
1253
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1254
+ this License, each Contributor hereby grants to You a perpetual,
1255
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1256
+ copyright license to reproduce, prepare Derivative Works of,
1257
+ publicly display, publicly perform, sublicense, and distribute the
1258
+ Work and such Derivative Works in Source or Object form.
1259
+
1260
+ 3. Grant of Patent License. Subject to the terms and conditions of
1261
+ this License, each Contributor hereby grants to You a perpetual,
1262
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1263
+ (except as stated in this section) patent license to make, have made,
1264
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1265
+ where such license applies only to those patent claims licensable
1266
+ by such Contributor that are necessarily infringed by their
1267
+ Contribution(s) alone or by combination of their Contribution(s)
1268
+ with the Work to which such Contribution(s) was submitted. If You
1269
+ institute patent litigation against any entity (including a
1270
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1271
+ or a Contribution incorporated within the Work constitutes direct
1272
+ or contributory patent infringement, then any patent licenses
1273
+ granted to You under this License for that Work shall terminate
1274
+ as of the date such litigation is filed.
1275
+
1276
+ 4. Redistribution. You may reproduce and distribute copies of the
1277
+ Work or Derivative Works thereof in any medium, with or without
1278
+ modifications, and in Source or Object form, provided that You
1279
+ meet the following conditions:
1280
+
1281
+ (a) You must give any other recipients of the Work or
1282
+ Derivative Works a copy of this License; and
1283
+
1284
+ (b) You must cause any modified files to carry prominent notices
1285
+ stating that You changed the files; and
1286
+
1287
+ (c) You must retain, in the Source form of any Derivative Works
1288
+ that You distribute, all copyright, patent, trademark, and
1289
+ attribution notices from the Source form of the Work,
1290
+ excluding those notices that do not pertain to any part of
1291
+ the Derivative Works; and
1292
+
1293
+ (d) If the Work includes a "NOTICE" text file as part of its
1294
+ distribution, then any Derivative Works that You distribute must
1295
+ include a readable copy of the attribution notices contained
1296
+ within such NOTICE file, excluding those notices that do not
1297
+ pertain to any part of the Derivative Works, in at least one
1298
+ of the following places: within a NOTICE text file distributed
1299
+ as part of the Derivative Works; within the Source form or
1300
+ documentation, if provided along with the Derivative Works; or,
1301
+ within a display generated by the Derivative Works, if and
1302
+ wherever such third-party notices normally appear. The contents
1303
+ of the NOTICE file are for informational purposes only and
1304
+ do not modify the License. You may add Your own attribution
1305
+ notices within Derivative Works that You distribute, alongside
1306
+ or as an addendum to the NOTICE text from the Work, provided
1307
+ that such additional attribution notices cannot be construed
1308
+ as modifying the License.
1309
+
1310
+ You may add Your own copyright statement to Your modifications and
1311
+ may provide additional or different license terms and conditions
1312
+ for use, reproduction, or distribution of Your modifications, or
1313
+ for any such Derivative Works as a whole, provided Your use,
1314
+ reproduction, and distribution of the Work otherwise complies with
1315
+ the conditions stated in this License.
1316
+
1317
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1318
+ any Contribution intentionally submitted for inclusion in the Work
1319
+ by You to the Licensor shall be under the terms and conditions of
1320
+ this License, without any additional terms or conditions.
1321
+ Notwithstanding the above, nothing herein shall supersede or modify
1322
+ the terms of any separate license agreement you may have executed
1323
+ with Licensor regarding such Contributions.
1324
+
1325
+ 6. Trademarks. This License does not grant permission to use the trade
1326
+ names, trademarks, service marks, or product names of the Licensor,
1327
+ except as required for reasonable and customary use in describing the
1328
+ origin of the Work and reproducing the content of the NOTICE file.
1329
+
1330
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1331
+ agreed to in writing, Licensor provides the Work (and each
1332
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1333
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1334
+ implied, including, without limitation, any warranties or conditions
1335
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1336
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1337
+ appropriateness of using or redistributing the Work and assume any
1338
+ risks associated with Your exercise of permissions under this License.
1339
+
1340
+ 8. Limitation of Liability. In no event and under no legal theory,
1341
+ whether in tort (including negligence), contract, or otherwise,
1342
+ unless required by applicable law (such as deliberate and grossly
1343
+ negligent acts) or agreed to in writing, shall any Contributor be
1344
+ liable to You for damages, including any direct, indirect, special,
1345
+ incidental, or consequential damages of any character arising as a
1346
+ result of this License or out of the use or inability to use the
1347
+ Work (including but not limited to damages for loss of goodwill,
1348
+ work stoppage, computer failure or malfunction, or any and all
1349
+ other commercial damages or losses), even if such Contributor
1350
+ has been advised of the possibility of such damages.
1351
+
1352
+ 9. Accepting Warranty or Additional Liability. While redistributing
1353
+ the Work or Derivative Works thereof, You may choose to offer,
1354
+ and charge a fee for, acceptance of support, warranty, indemnity,
1355
+ or other liability obligations and/or rights consistent with this
1356
+ License. However, in accepting such obligations, You may act only
1357
+ on Your own behalf and on Your sole responsibility, not on behalf
1358
+ of any other Contributor, and only if You agree to indemnify,
1359
+ defend, and hold each Contributor harmless for any liability
1360
+ incurred by, or claims asserted against, such Contributor by reason
1361
+ of your accepting any such warranty or additional liability.
1362
+
1363
+ END OF TERMS AND CONDITIONS
1364
+
1365
+ APPENDIX: How to apply the Apache License to your work.
1366
+
1367
+ To apply the Apache License to your work, attach the following
1368
+ boilerplate notice, with the fields enclosed by brackets "[]"
1369
+ replaced with your own identifying information. (Don't include
1370
+ the brackets!) The text should be enclosed in the appropriate
1371
+ comment syntax for the file format. We also recommend that a
1372
+ file or class name and description of purpose be included on the
1373
+ same "printed page" as the copyright notice for easier
1374
+ identification within third-party archives.
1375
+
1376
+ Copyright 2014 Google Inc.
1377
+
1378
+ Licensed under the Apache License, Version 2.0 (the "License");
1379
+ you may not use this file except in compliance with the License.
1380
+ You may obtain a copy of the License at
1381
+
1382
+ http://www.apache.org/licenses/LICENSE-2.0
1383
+
1384
+ Unless required by applicable law or agreed to in writing, software
1385
+ distributed under the License is distributed on an "AS IS" BASIS,
1386
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1387
+ See the License for the specific language governing permissions and
1388
+ limitations under the License.
1389
+
1390
+
1391
+ -------------------- DEPENDENCY DIVIDER --------------------
1392
+
1393
+ Name: intl-messageformat
1394
+ License:
1395
+
1396
+ Copyright (c) 2019, Oath Inc.
1397
+
1398
+ Licensed under the terms of the New BSD license. See below for terms.
1399
+
1400
+ Redistribution and use of this software in source and binary forms,
1401
+ with or without modification, are permitted provided that the following
1402
+ conditions are met:
1403
+
1404
+ - Redistributions of source code must retain the above
1405
+ copyright notice, this list of conditions and the
1406
+ following disclaimer.
1407
+
1408
+ - Redistributions in binary form must reproduce the above
1409
+ copyright notice, this list of conditions and the
1410
+ following disclaimer in the documentation and/or other
1411
+ materials provided with the distribution.
1412
+
1413
+ - Neither the name of Oath Inc. nor the names of its
1414
+ contributors may be used to endorse or promote products
1415
+ derived from this software without specific prior
1416
+ written permission of Oath Inc.
1417
+
1418
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
1419
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
1420
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
1421
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1422
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1423
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1424
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1425
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1426
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1427
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1428
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1429
+
1430
+
1431
+ -------------------- DEPENDENCY DIVIDER --------------------
1432
+
1433
+ Name: legacy-javascript
1434
+ License:
1435
+
1436
+
1437
+ Apache License
1438
+ Version 2.0, January 2004
1439
+ http://www.apache.org/licenses/
1440
+
1441
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1442
+
1443
+ 1. Definitions.
1444
+
1445
+ "License" shall mean the terms and conditions for use, reproduction,
1446
+ and distribution as defined by Sections 1 through 9 of this document.
1447
+
1448
+ "Licensor" shall mean the copyright owner or entity authorized by
1449
+ the copyright owner that is granting the License.
1450
+
1451
+ "Legal Entity" shall mean the union of the acting entity and all
1452
+ other entities that control, are controlled by, or are under common
1453
+ control with that entity. For the purposes of this definition,
1454
+ "control" means (i) the power, direct or indirect, to cause the
1455
+ direction or management of such entity, whether by contract or
1456
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1457
+ outstanding shares, or (iii) beneficial ownership of such entity.
1458
+
1459
+ "You" (or "Your") shall mean an individual or Legal Entity
1460
+ exercising permissions granted by this License.
1461
+
1462
+ "Source" form shall mean the preferred form for making modifications,
1463
+ including but not limited to software source code, documentation
1464
+ source, and configuration files.
1465
+
1466
+ "Object" form shall mean any form resulting from mechanical
1467
+ transformation or translation of a Source form, including but
1468
+ not limited to compiled object code, generated documentation,
1469
+ and conversions to other media types.
1470
+
1471
+ "Work" shall mean the work of authorship, whether in Source or
1472
+ Object form, made available under the License, as indicated by a
1473
+ copyright notice that is included in or attached to the work
1474
+ (an example is provided in the Appendix below).
1475
+
1476
+ "Derivative Works" shall mean any work, whether in Source or Object
1477
+ form, that is based on (or derived from) the Work and for which the
1478
+ editorial revisions, annotations, elaborations, or other modifications
1479
+ represent, as a whole, an original work of authorship. For the purposes
1480
+ of this License, Derivative Works shall not include works that remain
1481
+ separable from, or merely link (or bind by name) to the interfaces of,
1482
+ the Work and Derivative Works thereof.
1483
+
1484
+ "Contribution" shall mean any work of authorship, including
1485
+ the original version of the Work and any modifications or additions
1486
+ to that Work or Derivative Works thereof, that is intentionally
1487
+ submitted to Licensor for inclusion in the Work by the copyright owner
1488
+ or by an individual or Legal Entity authorized to submit on behalf of
1489
+ the copyright owner. For the purposes of this definition, "submitted"
1490
+ means any form of electronic, verbal, or written communication sent
1491
+ to the Licensor or its representatives, including but not limited to
1492
+ communication on electronic mailing lists, source code control systems,
1493
+ and issue tracking systems that are managed by, or on behalf of, the
1494
+ Licensor for the purpose of discussing and improving the Work, but
1495
+ excluding communication that is conspicuously marked or otherwise
1496
+ designated in writing by the copyright owner as "Not a Contribution."
1497
+
1498
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1499
+ on behalf of whom a Contribution has been received by Licensor and
1500
+ subsequently incorporated within the Work.
1501
+
1502
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1503
+ this License, each Contributor hereby grants to You a perpetual,
1504
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1505
+ copyright license to reproduce, prepare Derivative Works of,
1506
+ publicly display, publicly perform, sublicense, and distribute the
1507
+ Work and such Derivative Works in Source or Object form.
1508
+
1509
+ 3. Grant of Patent License. Subject to the terms and conditions of
1510
+ this License, each Contributor hereby grants to You a perpetual,
1511
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1512
+ (except as stated in this section) patent license to make, have made,
1513
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1514
+ where such license applies only to those patent claims licensable
1515
+ by such Contributor that are necessarily infringed by their
1516
+ Contribution(s) alone or by combination of their Contribution(s)
1517
+ with the Work to which such Contribution(s) was submitted. If You
1518
+ institute patent litigation against any entity (including a
1519
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1520
+ or a Contribution incorporated within the Work constitutes direct
1521
+ or contributory patent infringement, then any patent licenses
1522
+ granted to You under this License for that Work shall terminate
1523
+ as of the date such litigation is filed.
1524
+
1525
+ 4. Redistribution. You may reproduce and distribute copies of the
1526
+ Work or Derivative Works thereof in any medium, with or without
1527
+ modifications, and in Source or Object form, provided that You
1528
+ meet the following conditions:
1529
+
1530
+ (a) You must give any other recipients of the Work or
1531
+ Derivative Works a copy of this License; and
1532
+
1533
+ (b) You must cause any modified files to carry prominent notices
1534
+ stating that You changed the files; and
1535
+
1536
+ (c) You must retain, in the Source form of any Derivative Works
1537
+ that You distribute, all copyright, patent, trademark, and
1538
+ attribution notices from the Source form of the Work,
1539
+ excluding those notices that do not pertain to any part of
1540
+ the Derivative Works; and
1541
+
1542
+ (d) If the Work includes a "NOTICE" text file as part of its
1543
+ distribution, then any Derivative Works that You distribute must
1544
+ include a readable copy of the attribution notices contained
1545
+ within such NOTICE file, excluding those notices that do not
1546
+ pertain to any part of the Derivative Works, in at least one
1547
+ of the following places: within a NOTICE text file distributed
1548
+ as part of the Derivative Works; within the Source form or
1549
+ documentation, if provided along with the Derivative Works; or,
1550
+ within a display generated by the Derivative Works, if and
1551
+ wherever such third-party notices normally appear. The contents
1552
+ of the NOTICE file are for informational purposes only and
1553
+ do not modify the License. You may add Your own attribution
1554
+ notices within Derivative Works that You distribute, alongside
1555
+ or as an addendum to the NOTICE text from the Work, provided
1556
+ that such additional attribution notices cannot be construed
1557
+ as modifying the License.
1558
+
1559
+ You may add Your own copyright statement to Your modifications and
1560
+ may provide additional or different license terms and conditions
1561
+ for use, reproduction, or distribution of Your modifications, or
1562
+ for any such Derivative Works as a whole, provided Your use,
1563
+ reproduction, and distribution of the Work otherwise complies with
1564
+ the conditions stated in this License.
1565
+
1566
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1567
+ any Contribution intentionally submitted for inclusion in the Work
1568
+ by You to the Licensor shall be under the terms and conditions of
1569
+ this License, without any additional terms or conditions.
1570
+ Notwithstanding the above, nothing herein shall supersede or modify
1571
+ the terms of any separate license agreement you may have executed
1572
+ with Licensor regarding such Contributions.
1573
+
1574
+ 6. Trademarks. This License does not grant permission to use the trade
1575
+ names, trademarks, service marks, or product names of the Licensor,
1576
+ except as required for reasonable and customary use in describing the
1577
+ origin of the Work and reproducing the content of the NOTICE file.
1578
+
1579
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1580
+ agreed to in writing, Licensor provides the Work (and each
1581
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1582
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1583
+ implied, including, without limitation, any warranties or conditions
1584
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1585
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1586
+ appropriateness of using or redistributing the Work and assume any
1587
+ risks associated with Your exercise of permissions under this License.
1588
+
1589
+ 8. Limitation of Liability. In no event and under no legal theory,
1590
+ whether in tort (including negligence), contract, or otherwise,
1591
+ unless required by applicable law (such as deliberate and grossly
1592
+ negligent acts) or agreed to in writing, shall any Contributor be
1593
+ liable to You for damages, including any direct, indirect, special,
1594
+ incidental, or consequential damages of any character arising as a
1595
+ result of this License or out of the use or inability to use the
1596
+ Work (including but not limited to damages for loss of goodwill,
1597
+ work stoppage, computer failure or malfunction, or any and all
1598
+ other commercial damages or losses), even if such Contributor
1599
+ has been advised of the possibility of such damages.
1600
+
1601
+ 9. Accepting Warranty or Additional Liability. While redistributing
1602
+ the Work or Derivative Works thereof, You may choose to offer,
1603
+ and charge a fee for, acceptance of support, warranty, indemnity,
1604
+ or other liability obligations and/or rights consistent with this
1605
+ License. However, in accepting such obligations, You may act only
1606
+ on Your own behalf and on Your sole responsibility, not on behalf
1607
+ of any other Contributor, and only if You agree to indemnify,
1608
+ defend, and hold each Contributor harmless for any liability
1609
+ incurred by, or claims asserted against, such Contributor by reason
1610
+ of your accepting any such warranty or additional liability.
1611
+
1612
+ END OF TERMS AND CONDITIONS
1613
+
1614
+ APPENDIX: How to apply the Apache License to your work.
1615
+
1616
+ To apply the Apache License to your work, attach the following
1617
+ boilerplate notice, with the fields enclosed by brackets "[]"
1618
+ replaced with your own identifying information. (Don't include
1619
+ the brackets!) The text should be enclosed in the appropriate
1620
+ comment syntax for the file format. We also recommend that a
1621
+ file or class name and description of purpose be included on the
1622
+ same "printed page" as the copyright notice for easier
1623
+ identification within third-party archives.
1624
+
1625
+ Copyright [yyyy] [name of copyright owner]
1626
+
1627
+ Licensed under the Apache License, Version 2.0 (the "License");
1628
+ you may not use this file except in compliance with the License.
1629
+ You may obtain a copy of the License at
1630
+
1631
+ http://www.apache.org/licenses/LICENSE-2.0
1632
+
1633
+ Unless required by applicable law or agreed to in writing, software
1634
+ distributed under the License is distributed on an "AS IS" BASIS,
1635
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1636
+ See the License for the specific language governing permissions and
1637
+ limitations under the License.
1638
+
1639
+
1640
+ -------------------- DEPENDENCY DIVIDER --------------------
1641
+
1642
+ Name: marked
1643
+ License:
1644
+
1645
+ ## Marked
1646
+
1647
+ Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/)
1648
+
1649
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1650
+ of this software and associated documentation files (the "Software"), to deal
1651
+ in the Software without restriction, including without limitation the rights
1652
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1653
+ copies of the Software, and to permit persons to whom the Software is
1654
+ furnished to do so, subject to the following conditions:
1655
+
1656
+ The above copyright notice and this permission notice shall be included in
1657
+ all copies or substantial portions of the Software.
1658
+
1659
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1660
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1661
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1662
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1663
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1664
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1665
+ THE SOFTWARE.
1666
+
1667
+ ## Markdown
1668
+
1669
+ Copyright © 2004, John Gruber
1670
+ http://daringfireball.net/
1671
+ All rights reserved.
1672
+
1673
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1674
+
1675
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1676
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1677
+ * Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1678
+
1679
+ This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to,
1680
+ the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct,
1681
+ indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits;
1682
+ or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way
1683
+ out of the use of this software, even if advised of the possibility of such damage.
1684
+
1685
+
1686
+ -------------------- DEPENDENCY DIVIDER --------------------
1687
+
1688
+ Name: source-map-scopes-codec
1689
+ License:
1690
+
1691
+ Copyright 2025 The Chromium Authors
1692
+
1693
+ Redistribution and use in source and binary forms, with or without modification,
1694
+ are permitted provided that the following conditions are met:
1695
+
1696
+ 1. Redistributions of source code must retain the above copyright notice, this
1697
+ list of conditions and the following disclaimer.
1698
+
1699
+ 2. Redistributions in binary form must reproduce the above copyright notice,
1700
+ this list of conditions and the following disclaimer in the documentation
1701
+ and/or other materials provided with the distribution.
1702
+
1703
+ 3. Neither the name of the copyright holder nor the names of its contributors
1704
+ may be used to endorse or promote products derived from this software without
1705
+ specific prior written permission.
1706
+
1707
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1708
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1709
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1710
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
1711
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1712
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1713
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
1714
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1715
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1716
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1717
+
1718
+ -------------------- DEPENDENCY DIVIDER --------------------
1719
+
1720
+ Name: third-party-web
1721
+ License:
1722
+
1723
+ The MIT License (MIT)
1724
+ Copyright (c) 2019 Patrick Hulce
1725
+
1726
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1727
+ of this software and associated documentation files (the "Software"), to deal
1728
+ in the Software without restriction, including without limitation the rights
1729
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1730
+ copies of the Software, and to permit persons to whom the Software is
1731
+ furnished to do so, subject to the following conditions:
1732
+
1733
+ The above copyright notice and this permission notice shall be included in all
1734
+ copies or substantial portions of the Software.
1735
+
1736
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1737
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1738
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1739
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1740
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1741
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1742
+ SOFTWARE.
1743
+
1744
+ -------------------- DEPENDENCY DIVIDER --------------------
1745
+
1746
+ Name: @formatjs/fast-memoize
1747
+ URL: https://github.com/formatjs/formatjs#readme
1748
+ Version: 2.2.0
1749
+ License: MIT
1750
+
1751
+ MIT License
1752
+
1753
+ Copyright (c) 2021 FormatJS
1754
+
1755
+ 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:
1756
+
1757
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1758
+
1759
+ 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.
1760
+
1761
+
1762
+ -------------------- DEPENDENCY DIVIDER --------------------
1763
+
1764
+ Name: @formatjs/icu-messageformat-parser
1765
+ URL: https://github.com/formatjs/formatjs.git
1766
+ Version: 2.6.2
1767
+ License: MIT
1768
+
1769
+ MIT License
1770
+
1771
+ Copyright (c) 2021 FormatJS
1772
+
1773
+ 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:
1774
+
1775
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1776
+
1777
+ 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.
1778
+
1779
+
1780
+ -------------------- DEPENDENCY DIVIDER --------------------
1781
+
1782
+ Name: @formatjs/icu-skeleton-parser
1783
+ URL: https://github.com/formatjs/formatjs.git
1784
+ Version: 1.6.2
1785
+ License: MIT
1786
+
1787
+ MIT License
1788
+
1789
+ Copyright (c) 2021 FormatJS
1790
+
1791
+ 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:
1792
+
1793
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1794
+
1795
+ 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.
1796
+
1797
+
1798
+ -------------------- DEPENDENCY DIVIDER --------------------
1799
+
1800
+ Name: @paulirish/trace_engine
1801
+ URL: N/A
1802
+ Version: 0.0.64
1803
+ License: BSD-3-Clause
1804
+
1805
+ // Copyright 2014 The Chromium Authors
1806
+ //
1807
+ // Redistribution and use in source and binary forms, with or without
1808
+ // modification, are permitted provided that the following conditions are
1809
+ // met:
1810
+ //
1811
+ // * Redistributions of source code must retain the above copyright
1812
+ // notice, this list of conditions and the following disclaimer.
1813
+ // * Redistributions in binary form must reproduce the above
1814
+ // copyright notice, this list of conditions and the following disclaimer
1815
+ // in the documentation and/or other materials provided with the
1816
+ // distribution.
1817
+ // * Neither the name of Google Inc. nor the names of its
1818
+ // contributors may be used to endorse or promote products derived from
1819
+ // this software without specific prior written permission.
1820
+ //
1821
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1822
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1823
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1824
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1825
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1826
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1827
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1828
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1829
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1830
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1831
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1832
+
1833
+
1834
+ -------------------- DEPENDENCY DIVIDER --------------------
1835
+
1836
+ Name: @sentry/node
1837
+ URL: https://github.com/getsentry/sentry-javascript/tree/master/packages/node
1838
+ Version: 9.28.1
1839
+ License: MIT
1840
+
1841
+ MIT License
1842
+
1843
+ Copyright (c) 2023 Functional Software, Inc. dba Sentry
1844
+
1845
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1846
+ this software and associated documentation files (the "Software"), to deal in
1847
+ the Software without restriction, including without limitation the rights to
1848
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1849
+ of the Software, and to permit persons to whom the Software is furnished to do
1850
+ so, subject to the following conditions:
1851
+
1852
+ The above copyright notice and this permission notice shall be included in all
1853
+ copies or substantial portions of the Software.
1854
+
1855
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1856
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1857
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1858
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1859
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1860
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1861
+ SOFTWARE.
1862
+
1863
+
1864
+ -------------------- DEPENDENCY DIVIDER --------------------
1865
+
1866
+ Name: axe-core
1867
+ URL: https://www.deque.com/axe/
1868
+ Version: 4.11.4
1869
+ License: MPL-2.0
1870
+
1871
+ Mozilla Public License, version 2.0
1872
+
1873
+ 1. Definitions
1874
+
1875
+ 1.1. "Contributor"
1876
+
1877
+ means each individual or legal entity that creates, contributes to the
1878
+ creation of, or owns Covered Software.
1879
+
1880
+ 1.2. "Contributor Version"
1881
+
1882
+ means the combination of the Contributions of others (if any) used by a
1883
+ Contributor and that particular Contributor's Contribution.
1884
+
1885
+ 1.3. "Contribution"
1886
+
1887
+ means Covered Software of a particular Contributor.
1888
+
1889
+ 1.4. "Covered Software"
1890
+
1891
+ means Source Code Form to which the initial Contributor has attached the
1892
+ notice in Exhibit A, the Executable Form of such Source Code Form, and
1893
+ Modifications of such Source Code Form, in each case including portions
1894
+ thereof.
1895
+
1896
+ 1.5. "Incompatible With Secondary Licenses"
1897
+ means
1898
+
1899
+ a. that the initial Contributor has attached the notice described in
1900
+ Exhibit B to the Covered Software; or
1901
+
1902
+ b. that the Covered Software was made available under the terms of
1903
+ version 1.1 or earlier of the License, but not also under the terms of
1904
+ a Secondary License.
1905
+
1906
+ 1.6. "Executable Form"
1907
+
1908
+ means any form of the work other than Source Code Form.
1909
+
1910
+ 1.7. "Larger Work"
1911
+
1912
+ means a work that combines Covered Software with other material, in a
1913
+ separate file or files, that is not Covered Software.
1914
+
1915
+ 1.8. "License"
1916
+
1917
+ means this document.
1918
+
1919
+ 1.9. "Licensable"
1920
+
1921
+ means having the right to grant, to the maximum extent possible, whether
1922
+ at the time of the initial grant or subsequently, any and all of the
1923
+ rights conveyed by this License.
1924
+
1925
+ 1.10. "Modifications"
1926
+
1927
+ means any of the following:
1928
+
1929
+ a. any file in Source Code Form that results from an addition to,
1930
+ deletion from, or modification of the contents of Covered Software; or
1931
+
1932
+ b. any new file in Source Code Form that contains any Covered Software.
1933
+
1934
+ 1.11. "Patent Claims" of a Contributor
1935
+
1936
+ means any patent claim(s), including without limitation, method,
1937
+ process, and apparatus claims, in any patent Licensable by such
1938
+ Contributor that would be infringed, but for the grant of the License,
1939
+ by the making, using, selling, offering for sale, having made, import,
1940
+ or transfer of either its Contributions or its Contributor Version.
1941
+
1942
+ 1.12. "Secondary License"
1943
+
1944
+ means either the GNU General Public License, Version 2.0, the GNU Lesser
1945
+ General Public License, Version 2.1, the GNU Affero General Public
1946
+ License, Version 3.0, or any later versions of those licenses.
1947
+
1948
+ 1.13. "Source Code Form"
1949
+
1950
+ means the form of the work preferred for making modifications.
1951
+
1952
+ 1.14. "You" (or "Your")
1953
+
1954
+ means an individual or a legal entity exercising rights under this
1955
+ License. For legal entities, "You" includes any entity that controls, is
1956
+ controlled by, or is under common control with You. For purposes of this
1957
+ definition, "control" means (a) the power, direct or indirect, to cause
1958
+ the direction or management of such entity, whether by contract or
1959
+ otherwise, or (b) ownership of more than fifty percent (50%) of the
1960
+ outstanding shares or beneficial ownership of such entity.
1961
+
1962
+
1963
+ 2. License Grants and Conditions
1964
+
1965
+ 2.1. Grants
1966
+
1967
+ Each Contributor hereby grants You a world-wide, royalty-free,
1968
+ non-exclusive license:
1969
+
1970
+ a. under intellectual property rights (other than patent or trademark)
1971
+ Licensable by such Contributor to use, reproduce, make available,
1972
+ modify, display, perform, distribute, and otherwise exploit its
1973
+ Contributions, either on an unmodified basis, with Modifications, or
1974
+ as part of a Larger Work; and
1975
+
1976
+ b. under Patent Claims of such Contributor to make, use, sell, offer for
1977
+ sale, have made, import, and otherwise transfer either its
1978
+ Contributions or its Contributor Version.
1979
+
1980
+ 2.2. Effective Date
1981
+
1982
+ The licenses granted in Section 2.1 with respect to any Contribution
1983
+ become effective for each Contribution on the date the Contributor first
1984
+ distributes such Contribution.
1985
+
1986
+ 2.3. Limitations on Grant Scope
1987
+
1988
+ The licenses granted in this Section 2 are the only rights granted under
1989
+ this License. No additional rights or licenses will be implied from the
1990
+ distribution or licensing of Covered Software under this License.
1991
+ Notwithstanding Section 2.1(b) above, no patent license is granted by a
1992
+ Contributor:
1993
+
1994
+ a. for any code that a Contributor has removed from Covered Software; or
1995
+
1996
+ b. for infringements caused by: (i) Your and any other third party's
1997
+ modifications of Covered Software, or (ii) the combination of its
1998
+ Contributions with other software (except as part of its Contributor
1999
+ Version); or
2000
+
2001
+ c. under Patent Claims infringed by Covered Software in the absence of
2002
+ its Contributions.
2003
+
2004
+ This License does not grant any rights in the trademarks, service marks,
2005
+ or logos of any Contributor (except as may be necessary to comply with
2006
+ the notice requirements in Section 3.4).
2007
+
2008
+ 2.4. Subsequent Licenses
2009
+
2010
+ No Contributor makes additional grants as a result of Your choice to
2011
+ distribute the Covered Software under a subsequent version of this
2012
+ License (see Section 10.2) or under the terms of a Secondary License (if
2013
+ permitted under the terms of Section 3.3).
2014
+
2015
+ 2.5. Representation
2016
+
2017
+ Each Contributor represents that the Contributor believes its
2018
+ Contributions are its original creation(s) or it has sufficient rights to
2019
+ grant the rights to its Contributions conveyed by this License.
2020
+
2021
+ 2.6. Fair Use
2022
+
2023
+ This License is not intended to limit any rights You have under
2024
+ applicable copyright doctrines of fair use, fair dealing, or other
2025
+ equivalents.
2026
+
2027
+ 2.7. Conditions
2028
+
2029
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
2030
+ Section 2.1.
2031
+
2032
+
2033
+ 3. Responsibilities
2034
+
2035
+ 3.1. Distribution of Source Form
2036
+
2037
+ All distribution of Covered Software in Source Code Form, including any
2038
+ Modifications that You create or to which You contribute, must be under
2039
+ the terms of this License. You must inform recipients that the Source
2040
+ Code Form of the Covered Software is governed by the terms of this
2041
+ License, and how they can obtain a copy of this License. You may not
2042
+ attempt to alter or restrict the recipients' rights in the Source Code
2043
+ Form.
2044
+
2045
+ 3.2. Distribution of Executable Form
2046
+
2047
+ If You distribute Covered Software in Executable Form then:
2048
+
2049
+ a. such Covered Software must also be made available in Source Code Form,
2050
+ as described in Section 3.1, and You must inform recipients of the
2051
+ Executable Form how they can obtain a copy of such Source Code Form by
2052
+ reasonable means in a timely manner, at a charge no more than the cost
2053
+ of distribution to the recipient; and
2054
+
2055
+ b. You may distribute such Executable Form under the terms of this
2056
+ License, or sublicense it under different terms, provided that the
2057
+ license for the Executable Form does not attempt to limit or alter the
2058
+ recipients' rights in the Source Code Form under this License.
2059
+
2060
+ 3.3. Distribution of a Larger Work
2061
+
2062
+ You may create and distribute a Larger Work under terms of Your choice,
2063
+ provided that You also comply with the requirements of this License for
2064
+ the Covered Software. If the Larger Work is a combination of Covered
2065
+ Software with a work governed by one or more Secondary Licenses, and the
2066
+ Covered Software is not Incompatible With Secondary Licenses, this
2067
+ License permits You to additionally distribute such Covered Software
2068
+ under the terms of such Secondary License(s), so that the recipient of
2069
+ the Larger Work may, at their option, further distribute the Covered
2070
+ Software under the terms of either this License or such Secondary
2071
+ License(s).
2072
+
2073
+ 3.4. Notices
2074
+
2075
+ You may not remove or alter the substance of any license notices
2076
+ (including copyright notices, patent notices, disclaimers of warranty, or
2077
+ limitations of liability) contained within the Source Code Form of the
2078
+ Covered Software, except that You may alter any license notices to the
2079
+ extent required to remedy known factual inaccuracies.
2080
+
2081
+ 3.5. Application of Additional Terms
2082
+
2083
+ You may choose to offer, and to charge a fee for, warranty, support,
2084
+ indemnity or liability obligations to one or more recipients of Covered
2085
+ Software. However, You may do so only on Your own behalf, and not on
2086
+ behalf of any Contributor. You must make it absolutely clear that any
2087
+ such warranty, support, indemnity, or liability obligation is offered by
2088
+ You alone, and You hereby agree to indemnify every Contributor for any
2089
+ liability incurred by such Contributor as a result of warranty, support,
2090
+ indemnity or liability terms You offer. You may include additional
2091
+ disclaimers of warranty and limitations of liability specific to any
2092
+ jurisdiction.
2093
+
2094
+ 4. Inability to Comply Due to Statute or Regulation
2095
+
2096
+ If it is impossible for You to comply with any of the terms of this License
2097
+ with respect to some or all of the Covered Software due to statute,
2098
+ judicial order, or regulation then You must: (a) comply with the terms of
2099
+ this License to the maximum extent possible; and (b) describe the
2100
+ limitations and the code they affect. Such description must be placed in a
2101
+ text file included with all distributions of the Covered Software under
2102
+ this License. Except to the extent prohibited by statute or regulation,
2103
+ such description must be sufficiently detailed for a recipient of ordinary
2104
+ skill to be able to understand it.
2105
+
2106
+ 5. Termination
2107
+
2108
+ 5.1. The rights granted under this License will terminate automatically if You
2109
+ fail to comply with any of its terms. However, if You become compliant,
2110
+ then the rights granted under this License from a particular Contributor
2111
+ are reinstated (a) provisionally, unless and until such Contributor
2112
+ explicitly and finally terminates Your grants, and (b) on an ongoing
2113
+ basis, if such Contributor fails to notify You of the non-compliance by
2114
+ some reasonable means prior to 60 days after You have come back into
2115
+ compliance. Moreover, Your grants from a particular Contributor are
2116
+ reinstated on an ongoing basis if such Contributor notifies You of the
2117
+ non-compliance by some reasonable means, this is the first time You have
2118
+ received notice of non-compliance with this License from such
2119
+ Contributor, and You become compliant prior to 30 days after Your receipt
2120
+ of the notice.
2121
+
2122
+ 5.2. If You initiate litigation against any entity by asserting a patent
2123
+ infringement claim (excluding declaratory judgment actions,
2124
+ counter-claims, and cross-claims) alleging that a Contributor Version
2125
+ directly or indirectly infringes any patent, then the rights granted to
2126
+ You by any and all Contributors for the Covered Software under Section
2127
+ 2.1 of this License shall terminate.
2128
+
2129
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
2130
+ license agreements (excluding distributors and resellers) which have been
2131
+ validly granted by You or Your distributors under this License prior to
2132
+ termination shall survive termination.
2133
+
2134
+ 6. Disclaimer of Warranty
2135
+
2136
+ Covered Software is provided under this License on an "as is" basis,
2137
+ without warranty of any kind, either expressed, implied, or statutory,
2138
+ including, without limitation, warranties that the Covered Software is free
2139
+ of defects, merchantable, fit for a particular purpose or non-infringing.
2140
+ The entire risk as to the quality and performance of the Covered Software
2141
+ is with You. Should any Covered Software prove defective in any respect,
2142
+ You (not any Contributor) assume the cost of any necessary servicing,
2143
+ repair, or correction. This disclaimer of warranty constitutes an essential
2144
+ part of this License. No use of any Covered Software is authorized under
2145
+ this License except under this disclaimer.
2146
+
2147
+ 7. Limitation of Liability
2148
+
2149
+ Under no circumstances and under no legal theory, whether tort (including
2150
+ negligence), contract, or otherwise, shall any Contributor, or anyone who
2151
+ distributes Covered Software as permitted above, be liable to You for any
2152
+ direct, indirect, special, incidental, or consequential damages of any
2153
+ character including, without limitation, damages for lost profits, loss of
2154
+ goodwill, work stoppage, computer failure or malfunction, or any and all
2155
+ other commercial damages or losses, even if such party shall have been
2156
+ informed of the possibility of such damages. This limitation of liability
2157
+ shall not apply to liability for death or personal injury resulting from
2158
+ such party's negligence to the extent applicable law prohibits such
2159
+ limitation. Some jurisdictions do not allow the exclusion or limitation of
2160
+ incidental or consequential damages, so this exclusion and limitation may
2161
+ not apply to You.
2162
+
2163
+ 8. Litigation
2164
+
2165
+ Any litigation relating to this License may be brought only in the courts
2166
+ of a jurisdiction where the defendant maintains its principal place of
2167
+ business and such litigation shall be governed by laws of that
2168
+ jurisdiction, without reference to its conflict-of-law provisions. Nothing
2169
+ in this Section shall prevent a party's ability to bring cross-claims or
2170
+ counter-claims.
2171
+
2172
+ 9. Miscellaneous
2173
+
2174
+ This License represents the complete agreement concerning the subject
2175
+ matter hereof. If any provision of this License is held to be
2176
+ unenforceable, such provision shall be reformed only to the extent
2177
+ necessary to make it enforceable. Any law or regulation which provides that
2178
+ the language of a contract shall be construed against the drafter shall not
2179
+ be used to construe this License against a Contributor.
2180
+
2181
+
2182
+ 10. Versions of the License
2183
+
2184
+ 10.1. New Versions
2185
+
2186
+ Mozilla Foundation is the license steward. Except as provided in Section
2187
+ 10.3, no one other than the license steward has the right to modify or
2188
+ publish new versions of this License. Each version will be given a
2189
+ distinguishing version number.
2190
+
2191
+ 10.2. Effect of New Versions
2192
+
2193
+ You may distribute the Covered Software under the terms of the version
2194
+ of the License under which You originally received the Covered Software,
2195
+ or under the terms of any subsequent version published by the license
2196
+ steward.
2197
+
2198
+ 10.3. Modified Versions
2199
+
2200
+ If you create software not governed by this License, and you want to
2201
+ create a new license for such software, you may create and use a
2202
+ modified version of this License if you rename the license and remove
2203
+ any references to the name of the license steward (except to note that
2204
+ such modified license differs from this License).
2205
+
2206
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary
2207
+ Licenses If You choose to distribute Source Code Form that is
2208
+ Incompatible With Secondary Licenses under the terms of this version of
2209
+ the License, the notice described in Exhibit B of this License must be
2210
+ attached.
2211
+
2212
+ Exhibit A - Source Code Form License Notice
2213
+
2214
+ This Source Code Form is subject to the
2215
+ terms of the Mozilla Public License, v.
2216
+ 2.0. If a copy of the MPL was not
2217
+ distributed with this file, You can
2218
+ obtain one at
2219
+ http://mozilla.org/MPL/2.0/.
2220
+
2221
+ If it is not possible or desirable to put the notice in a particular file,
2222
+ then You may include the notice in a location (such as a LICENSE file in a
2223
+ relevant directory) where a recipient would be likely to look for such a
2224
+ notice.
2225
+
2226
+ You may add additional accurate notices of copyright ownership.
2227
+
2228
+ Exhibit B - "Incompatible With Secondary Licenses" Notice
2229
+
2230
+ This Source Code Form is "Incompatible
2231
+ With Secondary Licenses", as defined by
2232
+ the Mozilla Public License, v. 2.0.
2233
+
2234
+
2235
+ -------------------- DEPENDENCY DIVIDER --------------------
2236
+
2237
+ Name: csp_evaluator
2238
+ URL: https://csp-evaluator.withgoogle.com/
2239
+ Version: 1.1.5
2240
+ License: Apache-2.0
2241
+
2242
+
2243
+ Apache License
2244
+ Version 2.0, January 2004
2245
+ http://www.apache.org/licenses/
2246
+
2247
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2248
+
2249
+ 1. Definitions.
2250
+
2251
+ "License" shall mean the terms and conditions for use, reproduction,
2252
+ and distribution as defined by Sections 1 through 9 of this document.
2253
+
2254
+ "Licensor" shall mean the copyright owner or entity authorized by
2255
+ the copyright owner that is granting the License.
2256
+
2257
+ "Legal Entity" shall mean the union of the acting entity and all
2258
+ other entities that control, are controlled by, or are under common
2259
+ control with that entity. For the purposes of this definition,
2260
+ "control" means (i) the power, direct or indirect, to cause the
2261
+ direction or management of such entity, whether by contract or
2262
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2263
+ outstanding shares, or (iii) beneficial ownership of such entity.
2264
+
2265
+ "You" (or "Your") shall mean an individual or Legal Entity
2266
+ exercising permissions granted by this License.
2267
+
2268
+ "Source" form shall mean the preferred form for making modifications,
2269
+ including but not limited to software source code, documentation
2270
+ source, and configuration files.
2271
+
2272
+ "Object" form shall mean any form resulting from mechanical
2273
+ transformation or translation of a Source form, including but
2274
+ not limited to compiled object code, generated documentation,
2275
+ and conversions to other media types.
2276
+
2277
+ "Work" shall mean the work of authorship, whether in Source or
2278
+ Object form, made available under the License, as indicated by a
2279
+ copyright notice that is included in or attached to the work
2280
+ (an example is provided in the Appendix below).
2281
+
2282
+ "Derivative Works" shall mean any work, whether in Source or Object
2283
+ form, that is based on (or derived from) the Work and for which the
2284
+ editorial revisions, annotations, elaborations, or other modifications
2285
+ represent, as a whole, an original work of authorship. For the purposes
2286
+ of this License, Derivative Works shall not include works that remain
2287
+ separable from, or merely link (or bind by name) to the interfaces of,
2288
+ the Work and Derivative Works thereof.
2289
+
2290
+ "Contribution" shall mean any work of authorship, including
2291
+ the original version of the Work and any modifications or additions
2292
+ to that Work or Derivative Works thereof, that is intentionally
2293
+ submitted to Licensor for inclusion in the Work by the copyright owner
2294
+ or by an individual or Legal Entity authorized to submit on behalf of
2295
+ the copyright owner. For the purposes of this definition, "submitted"
2296
+ means any form of electronic, verbal, or written communication sent
2297
+ to the Licensor or its representatives, including but not limited to
2298
+ communication on electronic mailing lists, source code control systems,
2299
+ and issue tracking systems that are managed by, or on behalf of, the
2300
+ Licensor for the purpose of discussing and improving the Work, but
2301
+ excluding communication that is conspicuously marked or otherwise
2302
+ designated in writing by the copyright owner as "Not a Contribution."
2303
+
2304
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2305
+ on behalf of whom a Contribution has been received by Licensor and
2306
+ subsequently incorporated within the Work.
2307
+
2308
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2309
+ this License, each Contributor hereby grants to You a perpetual,
2310
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2311
+ copyright license to reproduce, prepare Derivative Works of,
2312
+ publicly display, publicly perform, sublicense, and distribute the
2313
+ Work and such Derivative Works in Source or Object form.
2314
+
2315
+ 3. Grant of Patent License. Subject to the terms and conditions of
2316
+ this License, each Contributor hereby grants to You a perpetual,
2317
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2318
+ (except as stated in this section) patent license to make, have made,
2319
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2320
+ where such license applies only to those patent claims licensable
2321
+ by such Contributor that are necessarily infringed by their
2322
+ Contribution(s) alone or by combination of their Contribution(s)
2323
+ with the Work to which such Contribution(s) was submitted. If You
2324
+ institute patent litigation against any entity (including a
2325
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2326
+ or a Contribution incorporated within the Work constitutes direct
2327
+ or contributory patent infringement, then any patent licenses
2328
+ granted to You under this License for that Work shall terminate
2329
+ as of the date such litigation is filed.
2330
+
2331
+ 4. Redistribution. You may reproduce and distribute copies of the
2332
+ Work or Derivative Works thereof in any medium, with or without
2333
+ modifications, and in Source or Object form, provided that You
2334
+ meet the following conditions:
2335
+
2336
+ (a) You must give any other recipients of the Work or
2337
+ Derivative Works a copy of this License; and
2338
+
2339
+ (b) You must cause any modified files to carry prominent notices
2340
+ stating that You changed the files; and
2341
+
2342
+ (c) You must retain, in the Source form of any Derivative Works
2343
+ that You distribute, all copyright, patent, trademark, and
2344
+ attribution notices from the Source form of the Work,
2345
+ excluding those notices that do not pertain to any part of
2346
+ the Derivative Works; and
2347
+
2348
+ (d) If the Work includes a "NOTICE" text file as part of its
2349
+ distribution, then any Derivative Works that You distribute must
2350
+ include a readable copy of the attribution notices contained
2351
+ within such NOTICE file, excluding those notices that do not
2352
+ pertain to any part of the Derivative Works, in at least one
2353
+ of the following places: within a NOTICE text file distributed
2354
+ as part of the Derivative Works; within the Source form or
2355
+ documentation, if provided along with the Derivative Works; or,
2356
+ within a display generated by the Derivative Works, if and
2357
+ wherever such third-party notices normally appear. The contents
2358
+ of the NOTICE file are for informational purposes only and
2359
+ do not modify the License. You may add Your own attribution
2360
+ notices within Derivative Works that You distribute, alongside
2361
+ or as an addendum to the NOTICE text from the Work, provided
2362
+ that such additional attribution notices cannot be construed
2363
+ as modifying the License.
2364
+
2365
+ You may add Your own copyright statement to Your modifications and
2366
+ may provide additional or different license terms and conditions
2367
+ for use, reproduction, or distribution of Your modifications, or
2368
+ for any such Derivative Works as a whole, provided Your use,
2369
+ reproduction, and distribution of the Work otherwise complies with
2370
+ the conditions stated in this License.
2371
+
2372
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2373
+ any Contribution intentionally submitted for inclusion in the Work
2374
+ by You to the Licensor shall be under the terms and conditions of
2375
+ this License, without any additional terms or conditions.
2376
+ Notwithstanding the above, nothing herein shall supersede or modify
2377
+ the terms of any separate license agreement you may have executed
2378
+ with Licensor regarding such Contributions.
2379
+
2380
+ 6. Trademarks. This License does not grant permission to use the trade
2381
+ names, trademarks, service marks, or product names of the Licensor,
2382
+ except as required for reasonable and customary use in describing the
2383
+ origin of the Work and reproducing the content of the NOTICE file.
2384
+
2385
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2386
+ agreed to in writing, Licensor provides the Work (and each
2387
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2388
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2389
+ implied, including, without limitation, any warranties or conditions
2390
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2391
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2392
+ appropriateness of using or redistributing the Work and assume any
2393
+ risks associated with Your exercise of permissions under this License.
2394
+
2395
+ 8. Limitation of Liability. In no event and under no legal theory,
2396
+ whether in tort (including negligence), contract, or otherwise,
2397
+ unless required by applicable law (such as deliberate and grossly
2398
+ negligent acts) or agreed to in writing, shall any Contributor be
2399
+ liable to You for damages, including any direct, indirect, special,
2400
+ incidental, or consequential damages of any character arising as a
2401
+ result of this License or out of the use or inability to use the
2402
+ Work (including but not limited to damages for loss of goodwill,
2403
+ work stoppage, computer failure or malfunction, or any and all
2404
+ other commercial damages or losses), even if such Contributor
2405
+ has been advised of the possibility of such damages.
2406
+
2407
+ 9. Accepting Warranty or Additional Liability. While redistributing
2408
+ the Work or Derivative Works thereof, You may choose to offer,
2409
+ and charge a fee for, acceptance of support, warranty, indemnity,
2410
+ or other liability obligations and/or rights consistent with this
2411
+ License. However, in accepting such obligations, You may act only
2412
+ on Your own behalf and on Your sole responsibility, not on behalf
2413
+ of any other Contributor, and only if You agree to indemnify,
2414
+ defend, and hold each Contributor harmless for any liability
2415
+ incurred by, or claims asserted against, such Contributor by reason
2416
+ of your accepting any such warranty or additional liability.
2417
+
2418
+ END OF TERMS AND CONDITIONS
2419
+
2420
+ APPENDIX: How to apply the Apache License to your work.
2421
+
2422
+ To apply the Apache License to your work, attach the following
2423
+ boilerplate notice, with the fields enclosed by brackets "[]"
2424
+ replaced with your own identifying information. (Don't include
2425
+ the brackets!) The text should be enclosed in the appropriate
2426
+ comment syntax for the file format. We also recommend that a
2427
+ file or class name and description of purpose be included on the
2428
+ same "printed page" as the copyright notice for easier
2429
+ identification within third-party archives.
2430
+
2431
+ Copyright [yyyy] [name of copyright owner]
2432
+
2433
+ Licensed under the Apache License, Version 2.0 (the "License");
2434
+ you may not use this file except in compliance with the License.
2435
+ You may obtain a copy of the License at
2436
+
2437
+ http://www.apache.org/licenses/LICENSE-2.0
2438
+
2439
+ Unless required by applicable law or agreed to in writing, software
2440
+ distributed under the License is distributed on an "AS IS" BASIS,
2441
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2442
+ See the License for the specific language governing permissions and
2443
+ limitations under the License.
2444
+
2445
+ -------------------- DEPENDENCY DIVIDER --------------------
2446
+
2447
+ Name: debug
2448
+ URL: git://github.com/debug-js/debug.git
2449
+ Version: 4.3.4
2450
+ License: MIT
2451
+
2452
+ (The MIT License)
2453
+
2454
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
2455
+ Copyright (c) 2018-2021 Josh Junon
2456
+
2457
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
2458
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
2459
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
2460
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
2461
+ subject to the following conditions:
2462
+
2463
+ The above copyright notice and this permission notice shall be included in all copies or substantial
2464
+ portions of the Software.
2465
+
2466
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
2467
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2468
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2469
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2470
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2471
+
2472
+
2473
+
2474
+ -------------------- DEPENDENCY DIVIDER --------------------
2475
+
2476
+ Name: http-link-header
2477
+ URL: https://github.com/jhermsmeier/node-http-link-header
2478
+ Version: 1.1.1
2479
+ License: MIT
2480
+
2481
+ # The MIT License (MIT)
2482
+ Copyright (c) 2016 Jonas Hermsmeier
2483
+
2484
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2485
+ of this software and associated documentation files (the "Software"), to deal
2486
+ in the Software without restriction, including without limitation the rights
2487
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2488
+ copies of the Software, and to permit persons to whom the Software is
2489
+ furnished to do so, subject to the following conditions:
2490
+
2491
+ The above copyright notice and this permission notice shall be included in all
2492
+ copies or substantial portions of the Software.
2493
+
2494
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2495
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2496
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2497
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
2498
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
2499
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
2500
+ OR OTHER DEALINGS IN THE SOFTWARE.
2501
+
2502
+
2503
+ -------------------- DEPENDENCY DIVIDER --------------------
2504
+
2505
+ Name: intl-messageformat
2506
+ URL: https://github.com/formatjs/formatjs
2507
+ Version: 10.5.3
2508
+ License: BSD-3-Clause
2509
+
2510
+ Copyright (c) 2021, Oath Inc.
2511
+
2512
+ Licensed under the terms of the New BSD license. See below for terms.
2513
+
2514
+ Redistribution and use of this software in source and binary forms,
2515
+ with or without modification, are permitted provided that the following
2516
+ conditions are met:
2517
+
2518
+ - Redistributions of source code must retain the above
2519
+ copyright notice, this list of conditions and the
2520
+ following disclaimer.
2521
+
2522
+ - Redistributions in binary form must reproduce the above
2523
+ copyright notice, this list of conditions and the
2524
+ following disclaimer in the documentation and/or other
2525
+ materials provided with the distribution.
2526
+
2527
+ - Neither the name of Oath Inc. nor the names of its
2528
+ contributors may be used to endorse or promote products
2529
+ derived from this software without specific prior
2530
+ written permission of Oath Inc.
2531
+
2532
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
2533
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2534
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
2535
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2536
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2537
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2538
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2539
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2540
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2541
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2542
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2543
+
2544
+
2545
+ -------------------- DEPENDENCY DIVIDER --------------------
2546
+
2547
+ Name: js-library-detector
2548
+ URL: https://github.com/johnmichel/Library-Detector-for-Chrome#readme
2549
+ Version: 6.7.0
2550
+ License: MIT
2551
+
2552
+ The MIT License (MIT)
2553
+ Copyright (c) 2010-2016 Andrew Bredow, John Michel, and other contributors
2554
+
2555
+ 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:
2556
+
2557
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2558
+
2559
+ 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.
2560
+
2561
+ -------------------- DEPENDENCY DIVIDER --------------------
2562
+
2563
+ Name: legacy-javascript
2564
+ URL: https://github.com/GoogleChrome/lighthouse#readme
2565
+ Version: 0.0.1
2566
+ License: Apache-2.0
2567
+
2568
+ -------------------- DEPENDENCY DIVIDER --------------------
2569
+
2570
+ Name: lighthouse-logger
2571
+ URL: https://github.com/GoogleChrome/lighthouse.git
2572
+ Version: 2.0.2
2573
+ License: Apache-2.0
2574
+
2575
+
2576
+ Apache License
2577
+ Version 2.0, January 2004
2578
+ http://www.apache.org/licenses/
2579
+
2580
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2581
+
2582
+ 1. Definitions.
2583
+
2584
+ "License" shall mean the terms and conditions for use, reproduction,
2585
+ and distribution as defined by Sections 1 through 9 of this document.
2586
+
2587
+ "Licensor" shall mean the copyright owner or entity authorized by
2588
+ the copyright owner that is granting the License.
2589
+
2590
+ "Legal Entity" shall mean the union of the acting entity and all
2591
+ other entities that control, are controlled by, or are under common
2592
+ control with that entity. For the purposes of this definition,
2593
+ "control" means (i) the power, direct or indirect, to cause the
2594
+ direction or management of such entity, whether by contract or
2595
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2596
+ outstanding shares, or (iii) beneficial ownership of such entity.
2597
+
2598
+ "You" (or "Your") shall mean an individual or Legal Entity
2599
+ exercising permissions granted by this License.
2600
+
2601
+ "Source" form shall mean the preferred form for making modifications,
2602
+ including but not limited to software source code, documentation
2603
+ source, and configuration files.
2604
+
2605
+ "Object" form shall mean any form resulting from mechanical
2606
+ transformation or translation of a Source form, including but
2607
+ not limited to compiled object code, generated documentation,
2608
+ and conversions to other media types.
2609
+
2610
+ "Work" shall mean the work of authorship, whether in Source or
2611
+ Object form, made available under the License, as indicated by a
2612
+ copyright notice that is included in or attached to the work
2613
+ (an example is provided in the Appendix below).
2614
+
2615
+ "Derivative Works" shall mean any work, whether in Source or Object
2616
+ form, that is based on (or derived from) the Work and for which the
2617
+ editorial revisions, annotations, elaborations, or other modifications
2618
+ represent, as a whole, an original work of authorship. For the purposes
2619
+ of this License, Derivative Works shall not include works that remain
2620
+ separable from, or merely link (or bind by name) to the interfaces of,
2621
+ the Work and Derivative Works thereof.
2622
+
2623
+ "Contribution" shall mean any work of authorship, including
2624
+ the original version of the Work and any modifications or additions
2625
+ to that Work or Derivative Works thereof, that is intentionally
2626
+ submitted to Licensor for inclusion in the Work by the copyright owner
2627
+ or by an individual or Legal Entity authorized to submit on behalf of
2628
+ the copyright owner. For the purposes of this definition, "submitted"
2629
+ means any form of electronic, verbal, or written communication sent
2630
+ to the Licensor or its representatives, including but not limited to
2631
+ communication on electronic mailing lists, source code control systems,
2632
+ and issue tracking systems that are managed by, or on behalf of, the
2633
+ Licensor for the purpose of discussing and improving the Work, but
2634
+ excluding communication that is conspicuously marked or otherwise
2635
+ designated in writing by the copyright owner as "Not a Contribution."
2636
+
2637
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2638
+ on behalf of whom a Contribution has been received by Licensor and
2639
+ subsequently incorporated within the Work.
2640
+
2641
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2642
+ this License, each Contributor hereby grants to You a perpetual,
2643
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2644
+ copyright license to reproduce, prepare Derivative Works of,
2645
+ publicly display, publicly perform, sublicense, and distribute the
2646
+ Work and such Derivative Works in Source or Object form.
2647
+
2648
+ 3. Grant of Patent License. Subject to the terms and conditions of
2649
+ this License, each Contributor hereby grants to You a perpetual,
2650
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2651
+ (except as stated in this section) patent license to make, have made,
2652
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2653
+ where such license applies only to those patent claims licensable
2654
+ by such Contributor that are necessarily infringed by their
2655
+ Contribution(s) alone or by combination of their Contribution(s)
2656
+ with the Work to which such Contribution(s) was submitted. If You
2657
+ institute patent litigation against any entity (including a
2658
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2659
+ or a Contribution incorporated within the Work constitutes direct
2660
+ or contributory patent infringement, then any patent licenses
2661
+ granted to You under this License for that Work shall terminate
2662
+ as of the date such litigation is filed.
2663
+
2664
+ 4. Redistribution. You may reproduce and distribute copies of the
2665
+ Work or Derivative Works thereof in any medium, with or without
2666
+ modifications, and in Source or Object form, provided that You
2667
+ meet the following conditions:
2668
+
2669
+ (a) You must give any other recipients of the Work or
2670
+ Derivative Works a copy of this License; and
2671
+
2672
+ (b) You must cause any modified files to carry prominent notices
2673
+ stating that You changed the files; and
2674
+
2675
+ (c) You must retain, in the Source form of any Derivative Works
2676
+ that You distribute, all copyright, patent, trademark, and
2677
+ attribution notices from the Source form of the Work,
2678
+ excluding those notices that do not pertain to any part of
2679
+ the Derivative Works; and
2680
+
2681
+ (d) If the Work includes a "NOTICE" text file as part of its
2682
+ distribution, then any Derivative Works that You distribute must
2683
+ include a readable copy of the attribution notices contained
2684
+ within such NOTICE file, excluding those notices that do not
2685
+ pertain to any part of the Derivative Works, in at least one
2686
+ of the following places: within a NOTICE text file distributed
2687
+ as part of the Derivative Works; within the Source form or
2688
+ documentation, if provided along with the Derivative Works; or,
2689
+ within a display generated by the Derivative Works, if and
2690
+ wherever such third-party notices normally appear. The contents
2691
+ of the NOTICE file are for informational purposes only and
2692
+ do not modify the License. You may add Your own attribution
2693
+ notices within Derivative Works that You distribute, alongside
2694
+ or as an addendum to the NOTICE text from the Work, provided
2695
+ that such additional attribution notices cannot be construed
2696
+ as modifying the License.
2697
+
2698
+ You may add Your own copyright statement to Your modifications and
2699
+ may provide additional or different license terms and conditions
2700
+ for use, reproduction, or distribution of Your modifications, or
2701
+ for any such Derivative Works as a whole, provided Your use,
2702
+ reproduction, and distribution of the Work otherwise complies with
2703
+ the conditions stated in this License.
2704
+
2705
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2706
+ any Contribution intentionally submitted for inclusion in the Work
2707
+ by You to the Licensor shall be under the terms and conditions of
2708
+ this License, without any additional terms or conditions.
2709
+ Notwithstanding the above, nothing herein shall supersede or modify
2710
+ the terms of any separate license agreement you may have executed
2711
+ with Licensor regarding such Contributions.
2712
+
2713
+ 6. Trademarks. This License does not grant permission to use the trade
2714
+ names, trademarks, service marks, or product names of the Licensor,
2715
+ except as required for reasonable and customary use in describing the
2716
+ origin of the Work and reproducing the content of the NOTICE file.
2717
+
2718
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2719
+ agreed to in writing, Licensor provides the Work (and each
2720
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2721
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2722
+ implied, including, without limitation, any warranties or conditions
2723
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2724
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2725
+ appropriateness of using or redistributing the Work and assume any
2726
+ risks associated with Your exercise of permissions under this License.
2727
+
2728
+ 8. Limitation of Liability. In no event and under no legal theory,
2729
+ whether in tort (including negligence), contract, or otherwise,
2730
+ unless required by applicable law (such as deliberate and grossly
2731
+ negligent acts) or agreed to in writing, shall any Contributor be
2732
+ liable to You for damages, including any direct, indirect, special,
2733
+ incidental, or consequential damages of any character arising as a
2734
+ result of this License or out of the use or inability to use the
2735
+ Work (including but not limited to damages for loss of goodwill,
2736
+ work stoppage, computer failure or malfunction, or any and all
2737
+ other commercial damages or losses), even if such Contributor
2738
+ has been advised of the possibility of such damages.
2739
+
2740
+ 9. Accepting Warranty or Additional Liability. While redistributing
2741
+ the Work or Derivative Works thereof, You may choose to offer,
2742
+ and charge a fee for, acceptance of support, warranty, indemnity,
2743
+ or other liability obligations and/or rights consistent with this
2744
+ License. However, in accepting such obligations, You may act only
2745
+ on Your own behalf and on Your sole responsibility, not on behalf
2746
+ of any other Contributor, and only if You agree to indemnify,
2747
+ defend, and hold each Contributor harmless for any liability
2748
+ incurred by, or claims asserted against, such Contributor by reason
2749
+ of your accepting any such warranty or additional liability.
2750
+
2751
+ END OF TERMS AND CONDITIONS
2752
+
2753
+ APPENDIX: How to apply the Apache License to your work.
2754
+
2755
+ To apply the Apache License to your work, attach the following
2756
+ boilerplate notice, with the fields enclosed by brackets "[]"
2757
+ replaced with your own identifying information. (Don't include
2758
+ the brackets!) The text should be enclosed in the appropriate
2759
+ comment syntax for the file format. We also recommend that a
2760
+ file or class name and description of purpose be included on the
2761
+ same "printed page" as the copyright notice for easier
2762
+ identification within third-party archives.
2763
+
2764
+ Copyright 2014 Google Inc.
2765
+
2766
+ Licensed under the Apache License, Version 2.0 (the "License");
2767
+ you may not use this file except in compliance with the License.
2768
+ You may obtain a copy of the License at
2769
+
2770
+ http://www.apache.org/licenses/LICENSE-2.0
2771
+
2772
+ Unless required by applicable law or agreed to in writing, software
2773
+ distributed under the License is distributed on an "AS IS" BASIS,
2774
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2775
+ See the License for the specific language governing permissions and
2776
+ limitations under the License.
2777
+
2778
+
2779
+ -------------------- DEPENDENCY DIVIDER --------------------
2780
+
2781
+ Name: lighthouse-stack-packs
2782
+ URL: https://github.com/GoogleChrome/lighthouse-stack-packs#readme
2783
+ Version: 1.12.3
2784
+ License: Apache-2.0
2785
+
2786
+
2787
+ Apache License
2788
+ Version 2.0, January 2004
2789
+ http://www.apache.org/licenses/
2790
+
2791
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2792
+
2793
+ 1. Definitions.
2794
+
2795
+ "License" shall mean the terms and conditions for use, reproduction,
2796
+ and distribution as defined by Sections 1 through 9 of this document.
2797
+
2798
+ "Licensor" shall mean the copyright owner or entity authorized by
2799
+ the copyright owner that is granting the License.
2800
+
2801
+ "Legal Entity" shall mean the union of the acting entity and all
2802
+ other entities that control, are controlled by, or are under common
2803
+ control with that entity. For the purposes of this definition,
2804
+ "control" means (i) the power, direct or indirect, to cause the
2805
+ direction or management of such entity, whether by contract or
2806
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2807
+ outstanding shares, or (iii) beneficial ownership of such entity.
2808
+
2809
+ "You" (or "Your") shall mean an individual or Legal Entity
2810
+ exercising permissions granted by this License.
2811
+
2812
+ "Source" form shall mean the preferred form for making modifications,
2813
+ including but not limited to software source code, documentation
2814
+ source, and configuration files.
2815
+
2816
+ "Object" form shall mean any form resulting from mechanical
2817
+ transformation or translation of a Source form, including but
2818
+ not limited to compiled object code, generated documentation,
2819
+ and conversions to other media types.
2820
+
2821
+ "Work" shall mean the work of authorship, whether in Source or
2822
+ Object form, made available under the License, as indicated by a
2823
+ copyright notice that is included in or attached to the work
2824
+ (an example is provided in the Appendix below).
2825
+
2826
+ "Derivative Works" shall mean any work, whether in Source or Object
2827
+ form, that is based on (or derived from) the Work and for which the
2828
+ editorial revisions, annotations, elaborations, or other modifications
2829
+ represent, as a whole, an original work of authorship. For the purposes
2830
+ of this License, Derivative Works shall not include works that remain
2831
+ separable from, or merely link (or bind by name) to the interfaces of,
2832
+ the Work and Derivative Works thereof.
2833
+
2834
+ "Contribution" shall mean any work of authorship, including
2835
+ the original version of the Work and any modifications or additions
2836
+ to that Work or Derivative Works thereof, that is intentionally
2837
+ submitted to Licensor for inclusion in the Work by the copyright owner
2838
+ or by an individual or Legal Entity authorized to submit on behalf of
2839
+ the copyright owner. For the purposes of this definition, "submitted"
2840
+ means any form of electronic, verbal, or written communication sent
2841
+ to the Licensor or its representatives, including but not limited to
2842
+ communication on electronic mailing lists, source code control systems,
2843
+ and issue tracking systems that are managed by, or on behalf of, the
2844
+ Licensor for the purpose of discussing and improving the Work, but
2845
+ excluding communication that is conspicuously marked or otherwise
2846
+ designated in writing by the copyright owner as "Not a Contribution."
2847
+
2848
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2849
+ on behalf of whom a Contribution has been received by Licensor and
2850
+ subsequently incorporated within the Work.
2851
+
2852
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2853
+ this License, each Contributor hereby grants to You a perpetual,
2854
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2855
+ copyright license to reproduce, prepare Derivative Works of,
2856
+ publicly display, publicly perform, sublicense, and distribute the
2857
+ Work and such Derivative Works in Source or Object form.
2858
+
2859
+ 3. Grant of Patent License. Subject to the terms and conditions of
2860
+ this License, each Contributor hereby grants to You a perpetual,
2861
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2862
+ (except as stated in this section) patent license to make, have made,
2863
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2864
+ where such license applies only to those patent claims licensable
2865
+ by such Contributor that are necessarily infringed by their
2866
+ Contribution(s) alone or by combination of their Contribution(s)
2867
+ with the Work to which such Contribution(s) was submitted. If You
2868
+ institute patent litigation against any entity (including a
2869
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2870
+ or a Contribution incorporated within the Work constitutes direct
2871
+ or contributory patent infringement, then any patent licenses
2872
+ granted to You under this License for that Work shall terminate
2873
+ as of the date such litigation is filed.
2874
+
2875
+ 4. Redistribution. You may reproduce and distribute copies of the
2876
+ Work or Derivative Works thereof in any medium, with or without
2877
+ modifications, and in Source or Object form, provided that You
2878
+ meet the following conditions:
2879
+
2880
+ (a) You must give any other recipients of the Work or
2881
+ Derivative Works a copy of this License; and
2882
+
2883
+ (b) You must cause any modified files to carry prominent notices
2884
+ stating that You changed the files; and
2885
+
2886
+ (c) You must retain, in the Source form of any Derivative Works
2887
+ that You distribute, all copyright, patent, trademark, and
2888
+ attribution notices from the Source form of the Work,
2889
+ excluding those notices that do not pertain to any part of
2890
+ the Derivative Works; and
2891
+
2892
+ (d) If the Work includes a "NOTICE" text file as part of its
2893
+ distribution, then any Derivative Works that You distribute must
2894
+ include a readable copy of the attribution notices contained
2895
+ within such NOTICE file, excluding those notices that do not
2896
+ pertain to any part of the Derivative Works, in at least one
2897
+ of the following places: within a NOTICE text file distributed
2898
+ as part of the Derivative Works; within the Source form or
2899
+ documentation, if provided along with the Derivative Works; or,
2900
+ within a display generated by the Derivative Works, if and
2901
+ wherever such third-party notices normally appear. The contents
2902
+ of the NOTICE file are for informational purposes only and
2903
+ do not modify the License. You may add Your own attribution
2904
+ notices within Derivative Works that You distribute, alongside
2905
+ or as an addendum to the NOTICE text from the Work, provided
2906
+ that such additional attribution notices cannot be construed
2907
+ as modifying the License.
2908
+
2909
+ You may add Your own copyright statement to Your modifications and
2910
+ may provide additional or different license terms and conditions
2911
+ for use, reproduction, or distribution of Your modifications, or
2912
+ for any such Derivative Works as a whole, provided Your use,
2913
+ reproduction, and distribution of the Work otherwise complies with
2914
+ the conditions stated in this License.
2915
+
2916
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2917
+ any Contribution intentionally submitted for inclusion in the Work
2918
+ by You to the Licensor shall be under the terms and conditions of
2919
+ this License, without any additional terms or conditions.
2920
+ Notwithstanding the above, nothing herein shall supersede or modify
2921
+ the terms of any separate license agreement you may have executed
2922
+ with Licensor regarding such Contributions.
2923
+
2924
+ 6. Trademarks. This License does not grant permission to use the trade
2925
+ names, trademarks, service marks, or product names of the Licensor,
2926
+ except as required for reasonable and customary use in describing the
2927
+ origin of the Work and reproducing the content of the NOTICE file.
2928
+
2929
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2930
+ agreed to in writing, Licensor provides the Work (and each
2931
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2932
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2933
+ implied, including, without limitation, any warranties or conditions
2934
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2935
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2936
+ appropriateness of using or redistributing the Work and assume any
2937
+ risks associated with Your exercise of permissions under this License.
2938
+
2939
+ 8. Limitation of Liability. In no event and under no legal theory,
2940
+ whether in tort (including negligence), contract, or otherwise,
2941
+ unless required by applicable law (such as deliberate and grossly
2942
+ negligent acts) or agreed to in writing, shall any Contributor be
2943
+ liable to You for damages, including any direct, indirect, special,
2944
+ incidental, or consequential damages of any character arising as a
2945
+ result of this License or out of the use or inability to use the
2946
+ Work (including but not limited to damages for loss of goodwill,
2947
+ work stoppage, computer failure or malfunction, or any and all
2948
+ other commercial damages or losses), even if such Contributor
2949
+ has been advised of the possibility of such damages.
2950
+
2951
+ 9. Accepting Warranty or Additional Liability. While redistributing
2952
+ the Work or Derivative Works thereof, You may choose to offer,
2953
+ and charge a fee for, acceptance of support, warranty, indemnity,
2954
+ or other liability obligations and/or rights consistent with this
2955
+ License. However, in accepting such obligations, You may act only
2956
+ on Your own behalf and on Your sole responsibility, not on behalf
2957
+ of any other Contributor, and only if You agree to indemnify,
2958
+ defend, and hold each Contributor harmless for any liability
2959
+ incurred by, or claims asserted against, such Contributor by reason
2960
+ of your accepting any such warranty or additional liability.
2961
+
2962
+ END OF TERMS AND CONDITIONS
2963
+
2964
+ APPENDIX: How to apply the Apache License to your work.
2965
+
2966
+ To apply the Apache License to your work, attach the following
2967
+ boilerplate notice, with the fields enclosed by brackets "[]"
2968
+ replaced with your own identifying information. (Don't include
2969
+ the brackets!) The text should be enclosed in the appropriate
2970
+ comment syntax for the file format. We also recommend that a
2971
+ file or class name and description of purpose be included on the
2972
+ same "printed page" as the copyright notice for easier
2973
+ identification within third-party archives.
2974
+
2975
+ Copyright [yyyy] [name of copyright owner]
2976
+
2977
+ Licensed under the Apache License, Version 2.0 (the "License");
2978
+ you may not use this file except in compliance with the License.
2979
+ You may obtain a copy of the License at
2980
+
2981
+ http://www.apache.org/licenses/LICENSE-2.0
2982
+
2983
+ Unless required by applicable law or agreed to in writing, software
2984
+ distributed under the License is distributed on an "AS IS" BASIS,
2985
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2986
+ See the License for the specific language governing permissions and
2987
+ limitations under the License.
2988
+
2989
+ -------------------- DEPENDENCY DIVIDER --------------------
2990
+
2991
+ Name: lodash-es
2992
+ URL: https://lodash.com/custom-builds
2993
+ Version: 4.17.21
2994
+ License: MIT
2995
+
2996
+ Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
2997
+
2998
+ Based on Underscore.js, copyright Jeremy Ashkenas,
2999
+ DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
3000
+
3001
+ This software consists of voluntary contributions made by many
3002
+ individuals. For exact contribution history, see the revision history
3003
+ available at https://github.com/lodash/lodash
3004
+
3005
+ The following license applies to all parts of this software except as
3006
+ documented below:
3007
+
3008
+ ====
3009
+
3010
+ Permission is hereby granted, free of charge, to any person obtaining
3011
+ a copy of this software and associated documentation files (the
3012
+ "Software"), to deal in the Software without restriction, including
3013
+ without limitation the rights to use, copy, modify, merge, publish,
3014
+ distribute, sublicense, and/or sell copies of the Software, and to
3015
+ permit persons to whom the Software is furnished to do so, subject to
3016
+ the following conditions:
3017
+
3018
+ The above copyright notice and this permission notice shall be
3019
+ included in all copies or substantial portions of the Software.
3020
+
3021
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3022
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3023
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3024
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3025
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3026
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3027
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3028
+
3029
+ ====
3030
+
3031
+ Copyright and related rights for sample code are waived via CC0. Sample
3032
+ code is defined as all source code displayed within the prose of the
3033
+ documentation.
3034
+
3035
+ CC0: http://creativecommons.org/publicdomain/zero/1.0/
3036
+
3037
+ ====
3038
+
3039
+ Files located in the node_modules and vendor directories are externally
3040
+ maintained libraries used by this software which have their own
3041
+ licenses; we recommend you read them, as their terms may differ from the
3042
+ terms above.
3043
+
3044
+
3045
+ -------------------- DEPENDENCY DIVIDER --------------------
3046
+
3047
+ Name: lookup-closest-locale
3048
+ URL: https://github.com/format-message/format-message/tree/master/packages/lookup-closest-locale
3049
+ Version: 6.2.0
3050
+ License: MIT
3051
+
3052
+ -------------------- DEPENDENCY DIVIDER --------------------
3053
+
3054
+ Name: marky
3055
+ URL: https://github.com/nolanlawson/marky#readme
3056
+ Version: 1.2.2
3057
+ License: Apache-2.0
3058
+
3059
+ Apache License
3060
+ Version 2.0, January 2004
3061
+ http://www.apache.org/licenses/
3062
+
3063
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3064
+
3065
+ 1. Definitions.
3066
+
3067
+ "License" shall mean the terms and conditions for use, reproduction, and
3068
+ distribution as defined by Sections 1 through 9 of this document.
3069
+
3070
+ "Licensor" shall mean the copyright owner or entity authorized by the
3071
+ copyright owner that is granting the License.
3072
+
3073
+ "Legal Entity" shall mean the union of the acting entity and all other
3074
+ entities that control, are controlled by, or are under common control with
3075
+ that entity. For the purposes of this definition, "control" means (i) the
3076
+ power, direct or indirect, to cause the direction or management of such
3077
+ entity, whether by contract or otherwise, or (ii) ownership of
3078
+ fifty percent (50%) or more of the outstanding shares, or (iii) beneficial
3079
+ ownership of such entity.
3080
+
3081
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
3082
+ permissions granted by this License.
3083
+
3084
+ "Source" form shall mean the preferred form for making modifications,
3085
+ including but not limited to software source code, documentation source,
3086
+ and configuration files.
3087
+
3088
+ "Object" form shall mean any form resulting from mechanical transformation
3089
+ or translation of a Source form, including but not limited to compiled
3090
+ object code, generated documentation, and conversions to
3091
+ other media types.
3092
+
3093
+ "Work" shall mean the work of authorship, whether in Source or Object
3094
+ form, made available under the License, as indicated by a copyright notice
3095
+ that is included in or attached to the work (an example is provided in the
3096
+ Appendix below).
3097
+
3098
+ "Derivative Works" shall mean any work, whether in Source or Object form,
3099
+ that is based on (or derived from) the Work and for which the editorial
3100
+ revisions, annotations, elaborations, or other modifications represent,
3101
+ as a whole, an original work of authorship. For the purposes of this
3102
+ License, Derivative Works shall not include works that remain separable
3103
+ from, or merely link (or bind by name) to the interfaces of, the Work and
3104
+ Derivative Works thereof.
3105
+
3106
+ "Contribution" shall mean any work of authorship, including the original
3107
+ version of the Work and any modifications or additions to that Work or
3108
+ Derivative Works thereof, that is intentionally submitted to Licensor for
3109
+ inclusion in the Work by the copyright owner or by an individual or
3110
+ Legal Entity authorized to submit on behalf of the copyright owner.
3111
+ For the purposes of this definition, "submitted" means any form of
3112
+ electronic, verbal, or written communication sent to the Licensor or its
3113
+ representatives, including but not limited to communication on electronic
3114
+ mailing lists, source code control systems, and issue tracking systems
3115
+ that are managed by, or on behalf of, the Licensor for the purpose of
3116
+ discussing and improving the Work, but excluding communication that is
3117
+ conspicuously marked or otherwise designated in writing by the copyright
3118
+ owner as "Not a Contribution."
3119
+
3120
+ "Contributor" shall mean Licensor and any individual or Legal Entity on
3121
+ behalf of whom a Contribution has been received by Licensor and
3122
+ subsequently incorporated within the Work.
3123
+
3124
+ 2. Grant of Copyright License.
3125
+
3126
+ Subject to the terms and conditions of this License, each Contributor
3127
+ hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
3128
+ royalty-free, irrevocable copyright license to reproduce, prepare
3129
+ Derivative Works of, publicly display, publicly perform, sublicense,
3130
+ and distribute the Work and such Derivative Works in
3131
+ Source or Object form.
3132
+
3133
+ 3. Grant of Patent License.
3134
+
3135
+ Subject to the terms and conditions of this License, each Contributor
3136
+ hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
3137
+ royalty-free, irrevocable (except as stated in this section) patent
3138
+ license to make, have made, use, offer to sell, sell, import, and
3139
+ otherwise transfer the Work, where such license applies only to those
3140
+ patent claims licensable by such Contributor that are necessarily
3141
+ infringed by their Contribution(s) alone or by combination of their
3142
+ Contribution(s) with the Work to which such Contribution(s) was submitted.
3143
+ If You institute patent litigation against any entity (including a
3144
+ cross-claim or counterclaim in a lawsuit) alleging that the Work or a
3145
+ Contribution incorporated within the Work constitutes direct or
3146
+ contributory patent infringement, then any patent licenses granted to
3147
+ You under this License for that Work shall terminate as of the date such
3148
+ litigation is filed.
3149
+
3150
+ 4. Redistribution.
3151
+
3152
+ You may reproduce and distribute copies of the Work or Derivative Works
3153
+ thereof in any medium, with or without modifications, and in Source or
3154
+ Object form, provided that You meet the following conditions:
3155
+
3156
+ 1. You must give any other recipients of the Work or Derivative Works a
3157
+ copy of this License; and
3158
+
3159
+ 2. You must cause any modified files to carry prominent notices stating
3160
+ that You changed the files; and
3161
+
3162
+ 3. You must retain, in the Source form of any Derivative Works that You
3163
+ distribute, all copyright, patent, trademark, and attribution notices from
3164
+ the Source form of the Work, excluding those notices that do not pertain
3165
+ to any part of the Derivative Works; and
3166
+
3167
+ 4. If the Work includes a "NOTICE" text file as part of its distribution,
3168
+ then any Derivative Works that You distribute must include a readable copy
3169
+ of the attribution notices contained within such NOTICE file, excluding
3170
+ those notices that do not pertain to any part of the Derivative Works,
3171
+ in at least one of the following places: within a NOTICE text file
3172
+ distributed as part of the Derivative Works; within the Source form or
3173
+ documentation, if provided along with the Derivative Works; or, within a
3174
+ display generated by the Derivative Works, if and wherever such
3175
+ third-party notices normally appear. The contents of the NOTICE file are
3176
+ for informational purposes only and do not modify the License.
3177
+ You may add Your own attribution notices within Derivative Works that You
3178
+ distribute, alongside or as an addendum to the NOTICE text from the Work,
3179
+ provided that such additional attribution notices cannot be construed
3180
+ as modifying the License.
3181
+
3182
+ You may add Your own copyright statement to Your modifications and may
3183
+ provide additional or different license terms and conditions for use,
3184
+ reproduction, or distribution of Your modifications, or for any such
3185
+ Derivative Works as a whole, provided Your use, reproduction, and
3186
+ distribution of the Work otherwise complies with the conditions
3187
+ stated in this License.
3188
+
3189
+ 5. Submission of Contributions.
3190
+
3191
+ Unless You explicitly state otherwise, any Contribution intentionally
3192
+ submitted for inclusion in the Work by You to the Licensor shall be under
3193
+ the terms and conditions of this License, without any additional
3194
+ terms or conditions. Notwithstanding the above, nothing herein shall
3195
+ supersede or modify the terms of any separate license agreement you may
3196
+ have executed with Licensor regarding such Contributions.
3197
+
3198
+ 6. Trademarks.
3199
+
3200
+ This License does not grant permission to use the trade names, trademarks,
3201
+ service marks, or product names of the Licensor, except as required for
3202
+ reasonable and customary use in describing the origin of the Work and
3203
+ reproducing the content of the NOTICE file.
3204
+
3205
+ 7. Disclaimer of Warranty.
3206
+
3207
+ Unless required by applicable law or agreed to in writing, Licensor
3208
+ provides the Work (and each Contributor provides its Contributions)
3209
+ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
3210
+ either express or implied, including, without limitation, any warranties
3211
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS
3212
+ FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
3213
+ appropriateness of using or redistributing the Work and assume any risks
3214
+ associated with Your exercise of permissions under this License.
3215
+
3216
+ 8. Limitation of Liability.
3217
+
3218
+ In no event and under no legal theory, whether in tort
3219
+ (including negligence), contract, or otherwise, unless required by
3220
+ applicable law (such as deliberate and grossly negligent acts) or agreed
3221
+ to in writing, shall any Contributor be liable to You for damages,
3222
+ including any direct, indirect, special, incidental, or consequential
3223
+ damages of any character arising as a result of this License or out of
3224
+ the use or inability to use the Work (including but not limited to damages
3225
+ for loss of goodwill, work stoppage, computer failure or malfunction,
3226
+ or any and all other commercial damages or losses), even if such
3227
+ Contributor has been advised of the possibility of such damages.
3228
+
3229
+ 9. Accepting Warranty or Additional Liability.
3230
+
3231
+ While redistributing the Work or Derivative Works thereof, You may choose
3232
+ to offer, and charge a fee for, acceptance of support, warranty,
3233
+ indemnity, or other liability obligations and/or rights consistent with
3234
+ this License. However, in accepting such obligations, You may act only
3235
+ on Your own behalf and on Your sole responsibility, not on behalf of any
3236
+ other Contributor, and only if You agree to indemnify, defend, and hold
3237
+ each Contributor harmless for any liability incurred by, or claims
3238
+ asserted against, such Contributor by reason of your accepting any such
3239
+ warranty or additional liability.
3240
+
3241
+ END OF TERMS AND CONDITIONS
3242
+
3243
+ APPENDIX: How to apply the Apache License to your work
3244
+
3245
+ To apply the Apache License to your work, attach the following boilerplate
3246
+ notice, with the fields enclosed by brackets "[]" replaced with your own
3247
+ identifying information. (Don't include the brackets!) The text should be
3248
+ enclosed in the appropriate comment syntax for the file format. We also
3249
+ recommend that a file or class name and description of purpose be included
3250
+ on the same "printed page" as the copyright notice for easier
3251
+ identification within third-party archives.
3252
+
3253
+ Copyright 2016 Nolan Lawson
3254
+
3255
+
3256
+ Licensed under the Apache License, Version 2.0 (the "License");
3257
+ you may not use this file except in compliance with the License.
3258
+ You may obtain a copy of the License at
3259
+
3260
+ http://www.apache.org/licenses/LICENSE-2.0
3261
+
3262
+ Unless required by applicable law or agreed to in writing, software
3263
+ distributed under the License is distributed on an "AS IS" BASIS,
3264
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
3265
+ or implied. See the License for the specific language governing
3266
+ permissions and limitations under the License.
3267
+
3268
+
3269
+
3270
+ -------------------- DEPENDENCY DIVIDER --------------------
3271
+
3272
+ Name: ms
3273
+ URL: zeit/ms
3274
+ Version: 2.1.2
3275
+ License: MIT
3276
+
3277
+ The MIT License (MIT)
3278
+
3279
+ Copyright (c) 2016 Zeit, Inc.
3280
+
3281
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3282
+ of this software and associated documentation files (the "Software"), to deal
3283
+ in the Software without restriction, including without limitation the rights
3284
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3285
+ copies of the Software, and to permit persons to whom the Software is
3286
+ furnished to do so, subject to the following conditions:
3287
+
3288
+ The above copyright notice and this permission notice shall be included in all
3289
+ copies or substantial portions of the Software.
3290
+
3291
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3292
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3293
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3294
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3295
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3296
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3297
+ SOFTWARE.
3298
+
3299
+
3300
+ -------------------- DEPENDENCY DIVIDER --------------------
3301
+
3302
+ Name: puppeteer-core
3303
+ URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
3304
+ Version: 24.43.0
3305
+ License: Apache-2.0
3306
+
3307
+ -------------------- DEPENDENCY DIVIDER --------------------
3308
+
3309
+ Name: robots-parser
3310
+ URL: https://github.com/samclarke/robots-parser
3311
+ Version: 3.0.1
3312
+ License: MIT
3313
+
3314
+ The MIT License (MIT)
3315
+
3316
+ Copyright (c) 2014 Sam Clarke
3317
+
3318
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3319
+ of this software and associated documentation files (the "Software"), to deal
3320
+ in the Software without restriction, including without limitation the rights
3321
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3322
+ copies of the Software, and to permit persons to whom the Software is
3323
+ furnished to do so, subject to the following conditions:
3324
+
3325
+ The above copyright notice and this permission notice shall be included in
3326
+ all copies or substantial portions of the Software.
3327
+
3328
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3329
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3330
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3331
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3332
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3333
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3334
+ THE SOFTWARE.
3335
+
3336
+
3337
+ -------------------- DEPENDENCY DIVIDER --------------------
3338
+
3339
+ Name: third-party-web
3340
+ URL: https://github.com/patrickhulce/third-party-web.git
3341
+ Version: 0.26.2
3342
+ License: MIT
3343
+
3344
+ The MIT License (MIT)
3345
+ Copyright (c) 2019 Patrick Hulce
3346
+
3347
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3348
+ of this software and associated documentation files (the "Software"), to deal
3349
+ in the Software without restriction, including without limitation the rights
3350
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3351
+ copies of the Software, and to permit persons to whom the Software is
3352
+ furnished to do so, subject to the following conditions:
3353
+
3354
+ The above copyright notice and this permission notice shall be included in all
3355
+ copies or substantial portions of the Software.
3356
+
3357
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3358
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3359
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3360
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3361
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3362
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3363
+ SOFTWARE.
3364
+
3365
+
3366
+ -------------------- DEPENDENCY DIVIDER --------------------
3367
+
3368
+ Name: tldts-core
3369
+ URL: https://github.com/remusao/tldts#readme
3370
+ Version: 7.0.30
3371
+ License: MIT
3372
+
3373
+ Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
3374
+
3375
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3376
+ associated documentation files (the "Software"), to deal in the Software without restriction,
3377
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
3378
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
3379
+ subject to the following conditions:
3380
+
3381
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3382
+
3383
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3384
+ 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,
3385
+ 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.
3386
+
3387
+
3388
+ -------------------- DEPENDENCY DIVIDER --------------------
3389
+
3390
+ Name: tldts-icann
3391
+ URL: https://github.com/remusao/tldts#readme
3392
+ Version: 7.0.30
3393
+ License: MIT
3394
+
3395
+ Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
3396
+
3397
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3398
+ associated documentation files (the "Software"), to deal in the Software without restriction,
3399
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
3400
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
3401
+ subject to the following conditions:
3402
+
3403
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3404
+
3405
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3406
+ 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,
3407
+ 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.
3408
+
3409
+
3410
+ -------------------- DEPENDENCY DIVIDER --------------------
3411
+
3412
+ Name: tslib
3413
+ URL: https://www.typescriptlang.org/
3414
+ Version: 2.6.2
3415
+ License: 0BSD
3416
+
3417
+ Copyright (c) Microsoft Corporation.
3418
+
3419
+ Permission to use, copy, modify, and/or distribute this software for any
3420
+ purpose with or without fee is hereby granted.
3421
+
3422
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3423
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
3424
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3425
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
3426
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3427
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3428
+ PERFORMANCE OF THIS SOFTWARE.
3429
+
3430
+ -------------------- DEPENDENCY DIVIDER --------------------
3431
+
3432
+ Name: web-features
3433
+ URL: git+https://github.com/web-platform-dx/web-features.git
3434
+ Version: 3.26.0
3435
+ License: Apache-2.0
3436
+
3437
+ Apache License
3438
+ Version 2.0, January 2004
3439
+ http://www.apache.org/licenses/
3440
+
3441
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3442
+
3443
+ 1. Definitions.
3444
+
3445
+ "License" shall mean the terms and conditions for use, reproduction,
3446
+ and distribution as defined by Sections 1 through 9 of this document.
3447
+
3448
+ "Licensor" shall mean the copyright owner or entity authorized by
3449
+ the copyright owner that is granting the License.
3450
+
3451
+ "Legal Entity" shall mean the union of the acting entity and all
3452
+ other entities that control, are controlled by, or are under common
3453
+ control with that entity. For the purposes of this definition,
3454
+ "control" means (i) the power, direct or indirect, to cause the
3455
+ direction or management of such entity, whether by contract or
3456
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
3457
+ outstanding shares, or (iii) beneficial ownership of such entity.
3458
+
3459
+ "You" (or "Your") shall mean an individual or Legal Entity
3460
+ exercising permissions granted by this License.
3461
+
3462
+ "Source" form shall mean the preferred form for making modifications,
3463
+ including but not limited to software source code, documentation
3464
+ source, and configuration files.
3465
+
3466
+ "Object" form shall mean any form resulting from mechanical
3467
+ transformation or translation of a Source form, including but
3468
+ not limited to compiled object code, generated documentation,
3469
+ and conversions to other media types.
3470
+
3471
+ "Work" shall mean the work of authorship, whether in Source or
3472
+ Object form, made available under the License, as indicated by a
3473
+ copyright notice that is included in or attached to the work
3474
+ (an example is provided in the Appendix below).
3475
+
3476
+ "Derivative Works" shall mean any work, whether in Source or Object
3477
+ form, that is based on (or derived from) the Work and for which the
3478
+ editorial revisions, annotations, elaborations, or other modifications
3479
+ represent, as a whole, an original work of authorship. For the purposes
3480
+ of this License, Derivative Works shall not include works that remain
3481
+ separable from, or merely link (or bind by name) to the interfaces of,
3482
+ the Work and Derivative Works thereof.
3483
+
3484
+ "Contribution" shall mean any work of authorship, including
3485
+ the original version of the Work and any modifications or additions
3486
+ to that Work or Derivative Works thereof, that is intentionally
3487
+ submitted to Licensor for inclusion in the Work by the copyright owner
3488
+ or by an individual or Legal Entity authorized to submit on behalf of
3489
+ the copyright owner. For the purposes of this definition, "submitted"
3490
+ means any form of electronic, verbal, or written communication sent
3491
+ to the Licensor or its representatives, including but not limited to
3492
+ communication on electronic mailing lists, source code control systems,
3493
+ and issue tracking systems that are managed by, or on behalf of, the
3494
+ Licensor for the purpose of discussing and improving the Work, but
3495
+ excluding communication that is conspicuously marked or otherwise
3496
+ designated in writing by the copyright owner as "Not a Contribution."
3497
+
3498
+ "Contributor" shall mean Licensor and any individual or Legal Entity
3499
+ on behalf of whom a Contribution has been received by Licensor and
3500
+ subsequently incorporated within the Work.
3501
+
3502
+ 2. Grant of Copyright License. Subject to the terms and conditions of
3503
+ this License, each Contributor hereby grants to You a perpetual,
3504
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3505
+ copyright license to reproduce, prepare Derivative Works of,
3506
+ publicly display, publicly perform, sublicense, and distribute the
3507
+ Work and such Derivative Works in Source or Object form.
3508
+
3509
+ 3. Grant of Patent License. Subject to the terms and conditions of
3510
+ this License, each Contributor hereby grants to You a perpetual,
3511
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3512
+ (except as stated in this section) patent license to make, have made,
3513
+ use, offer to sell, sell, import, and otherwise transfer the Work,
3514
+ where such license applies only to those patent claims licensable
3515
+ by such Contributor that are necessarily infringed by their
3516
+ Contribution(s) alone or by combination of their Contribution(s)
3517
+ with the Work to which such Contribution(s) was submitted. If You
3518
+ institute patent litigation against any entity (including a
3519
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
3520
+ or a Contribution incorporated within the Work constitutes direct
3521
+ or contributory patent infringement, then any patent licenses
3522
+ granted to You under this License for that Work shall terminate
3523
+ as of the date such litigation is filed.
3524
+
3525
+ 4. Redistribution. You may reproduce and distribute copies of the
3526
+ Work or Derivative Works thereof in any medium, with or without
3527
+ modifications, and in Source or Object form, provided that You
3528
+ meet the following conditions:
3529
+
3530
+ (a) You must give any other recipients of the Work or
3531
+ Derivative Works a copy of this License; and
3532
+
3533
+ (b) You must cause any modified files to carry prominent notices
3534
+ stating that You changed the files; and
3535
+
3536
+ (c) You must retain, in the Source form of any Derivative Works
3537
+ that You distribute, all copyright, patent, trademark, and
3538
+ attribution notices from the Source form of the Work,
3539
+ excluding those notices that do not pertain to any part of
3540
+ the Derivative Works; and
3541
+
3542
+ (d) If the Work includes a "NOTICE" text file as part of its
3543
+ distribution, then any Derivative Works that You distribute must
3544
+ include a readable copy of the attribution notices contained
3545
+ within such NOTICE file, excluding those notices that do not
3546
+ pertain to any part of the Derivative Works, in at least one
3547
+ of the following places: within a NOTICE text file distributed
3548
+ as part of the Derivative Works; within the Source form or
3549
+ documentation, if provided along with the Derivative Works; or,
3550
+ within a display generated by the Derivative Works, if and
3551
+ wherever such third-party notices normally appear. The contents
3552
+ of the NOTICE file are for informational purposes only and
3553
+ do not modify the License. You may add Your own attribution
3554
+ notices within Derivative Works that You distribute, alongside
3555
+ or as an addendum to the NOTICE text from the Work, provided
3556
+ that such additional attribution notices cannot be construed
3557
+ as modifying the License.
3558
+
3559
+ You may add Your own copyright statement to Your modifications and
3560
+ may provide additional or different license terms and conditions
3561
+ for use, reproduction, or distribution of Your modifications, or
3562
+ for any such Derivative Works as a whole, provided Your use,
3563
+ reproduction, and distribution of the Work otherwise complies with
3564
+ the conditions stated in this License.
3565
+
3566
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
3567
+ any Contribution intentionally submitted for inclusion in the Work
3568
+ by You to the Licensor shall be under the terms and conditions of
3569
+ this License, without any additional terms or conditions.
3570
+ Notwithstanding the above, nothing herein shall supersede or modify
3571
+ the terms of any separate license agreement you may have executed
3572
+ with Licensor regarding such Contributions.
3573
+
3574
+ 6. Trademarks. This License does not grant permission to use the trade
3575
+ names, trademarks, service marks, or product names of the Licensor,
3576
+ except as required for reasonable and customary use in describing the
3577
+ origin of the Work and reproducing the content of the NOTICE file.
3578
+
3579
+ 7. Disclaimer of Warranty. Unless required by applicable law or
3580
+ agreed to in writing, Licensor provides the Work (and each
3581
+ Contributor provides its Contributions) on an "AS IS" BASIS,
3582
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3583
+ implied, including, without limitation, any warranties or conditions
3584
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3585
+ PARTICULAR PURPOSE. You are solely responsible for determining the
3586
+ appropriateness of using or redistributing the Work and assume any
3587
+ risks associated with Your exercise of permissions under this License.
3588
+
3589
+ 8. Limitation of Liability. In no event and under no legal theory,
3590
+ whether in tort (including negligence), contract, or otherwise,
3591
+ unless required by applicable law (such as deliberate and grossly
3592
+ negligent acts) or agreed to in writing, shall any Contributor be
3593
+ liable to You for damages, including any direct, indirect, special,
3594
+ incidental, or consequential damages of any character arising as a
3595
+ result of this License or out of the use or inability to use the
3596
+ Work (including but not limited to damages for loss of goodwill,
3597
+ work stoppage, computer failure or malfunction, or any and all
3598
+ other commercial damages or losses), even if such Contributor
3599
+ has been advised of the possibility of such damages.
3600
+
3601
+ 9. Accepting Warranty or Additional Liability. While redistributing
3602
+ the Work or Derivative Works thereof, You may choose to offer,
3603
+ and charge a fee for, acceptance of support, warranty, indemnity,
3604
+ or other liability obligations and/or rights consistent with this
3605
+ License. However, in accepting such obligations, You may act only
3606
+ on Your own behalf and on Your sole responsibility, not on behalf
3607
+ of any other Contributor, and only if You agree to indemnify,
3608
+ defend, and hold each Contributor harmless for any liability
3609
+ incurred by, or claims asserted against, such Contributor by reason
3610
+ of your accepting any such warranty or additional liability.
3611
+
3612
+ END OF TERMS AND CONDITIONS
3613
+
3614
+ APPENDIX: How to apply the Apache License to your work.
3615
+
3616
+ To apply the Apache License to your work, attach the following
3617
+ boilerplate notice, with the fields enclosed by brackets "[]"
3618
+ replaced with your own identifying information. (Don't include
3619
+ the brackets!) The text should be enclosed in the appropriate
3620
+ comment syntax for the file format. We also recommend that a
3621
+ file or class name and description of purpose be included on the
3622
+ same "printed page" as the copyright notice for easier
3623
+ identification within third-party archives.
3624
+
3625
+ Copyright [yyyy] [name of copyright owner]
3626
+
3627
+ Licensed under the Apache License, Version 2.0 (the "License");
3628
+ you may not use this file except in compliance with the License.
3629
+ You may obtain a copy of the License at
3630
+
3631
+ http://www.apache.org/licenses/LICENSE-2.0
3632
+
3633
+ Unless required by applicable law or agreed to in writing, software
3634
+ distributed under the License is distributed on an "AS IS" BASIS,
3635
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3636
+ See the License for the specific language governing permissions and
3637
+ limitations under the License.