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