opera-devtools-mcp 0.2.4 → 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 +232 -1061
  52. package/build/src/third_party/bundled-packages.json +6 -8
  53. package/build/src/third_party/devtools-formatter-worker.js +63 -22
  54. package/build/src/third_party/devtools-heap-snapshot-worker.js +809 -182
  55. package/build/src/third_party/index.js +69558 -74691
  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
@@ -1,30 +1,3 @@
1
- Name: urlpattern-polyfill
2
- URL: https://github.com/kenchris/urlpattern-polyfill
3
- Version: 10.1.0
4
- License: MIT
5
-
6
- Copyright 2020 Intel Corporation
7
-
8
- Permission is hereby granted, free of charge, to any person obtaining a copy
9
- of this software and associated documentation files (the "Software"), to deal
10
- in the Software without restriction, including without limitation the rights
11
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
- copies of the Software, and to permit persons to whom the Software is
13
- furnished to do so, subject to the following conditions:
14
-
15
- The above copyright notice and this permission notice shall be included in
16
- all copies or substantial portions of the Software.
17
-
18
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
- THE SOFTWARE.
25
-
26
- -------------------- DEPENDENCY DIVIDER --------------------
27
-
28
1
  Name: core-js
29
2
  URL: https://core-js.io
30
3
  Version: 3.49.0
@@ -115,7 +88,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
115
88
 
116
89
  Name: get-east-asian-width
117
90
  URL: sindresorhus/get-east-asian-width
118
- Version: 1.4.0
91
+ Version: 1.6.0
119
92
  License: MIT
120
93
 
121
94
  MIT License
@@ -257,7 +230,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
257
230
 
258
231
  Name: yargs
259
232
  URL: https://yargs.js.org/
260
- Version: 18.0.0
233
+ Version: 18.1.0
261
234
  License: MIT
262
235
 
263
236
  MIT License
@@ -324,7 +297,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
324
297
 
325
298
  Name: semver
326
299
  URL: git+https://github.com/npm/node-semver.git
327
- Version: 7.8.0
300
+ Version: 7.8.5
328
301
  License: ISC
329
302
 
330
303
  The ISC License
@@ -344,101 +317,6 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
344
317
  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
345
318
 
346
319
 
347
- -------------------- DEPENDENCY DIVIDER --------------------
348
-
349
- Name: debug
350
- URL: git://github.com/debug-js/debug.git
351
- Version: 4.4.3
352
- License: MIT
353
-
354
- (The MIT License)
355
-
356
- Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
357
- Copyright (c) 2018-2021 Josh Junon
358
-
359
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software
360
- and associated documentation files (the 'Software'), to deal in the Software without restriction,
361
- including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
362
- and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
363
- subject to the following conditions:
364
-
365
- The above copyright notice and this permission notice shall be included in all copies or substantial
366
- portions of the Software.
367
-
368
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
369
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
370
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
371
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
372
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
373
-
374
-
375
-
376
- -------------------- DEPENDENCY DIVIDER --------------------
377
-
378
- Name: ms
379
- URL: vercel/ms
380
- Version: 2.1.3
381
- License: MIT
382
-
383
- The MIT License (MIT)
384
-
385
- Copyright (c) 2020 Vercel, Inc.
386
-
387
- Permission is hereby granted, free of charge, to any person obtaining a copy
388
- of this software and associated documentation files (the "Software"), to deal
389
- in the Software without restriction, including without limitation the rights
390
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
391
- copies of the Software, and to permit persons to whom the Software is
392
- furnished to do so, subject to the following conditions:
393
-
394
- The above copyright notice and this permission notice shall be included in all
395
- copies or substantial portions of the Software.
396
-
397
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
398
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
399
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
400
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
401
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
402
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
403
- SOFTWARE.
404
-
405
-
406
- -------------------- DEPENDENCY DIVIDER --------------------
407
-
408
- Name: has-flag
409
- URL: sindresorhus/has-flag
410
- Version: 4.0.0
411
- License: MIT
412
-
413
- MIT License
414
-
415
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
416
-
417
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
418
-
419
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
420
-
421
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
422
-
423
-
424
- -------------------- DEPENDENCY DIVIDER --------------------
425
-
426
- Name: supports-color
427
- URL: chalk/supports-color
428
- Version: 7.2.0
429
- License: MIT
430
-
431
- MIT License
432
-
433
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
434
-
435
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
436
-
437
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
438
-
439
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
440
-
441
-
442
320
  -------------------- DEPENDENCY DIVIDER --------------------
443
321
 
444
322
  Name: zod
@@ -473,7 +351,7 @@ SOFTWARE.
473
351
 
474
352
  Name: @modelcontextprotocol/sdk
475
353
  URL: https://modelcontextprotocol.io
476
- Version: 1.29.0
354
+ Version: 1.30.0
477
355
  License: MIT
478
356
 
479
357
  MIT License
@@ -617,7 +495,7 @@ SOFTWARE.
617
495
 
618
496
  Name: fast-uri
619
497
  URL: https://github.com/fastify/fast-uri
620
- Version: 3.1.2
498
+ Version: 3.1.5
621
499
  License: BSD-3-Clause
622
500
 
623
501
  Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
@@ -867,117 +745,33 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
867
745
 
868
746
  Name: puppeteer-core
869
747
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
870
- Version: 24.43.0
748
+ Version: 25.6.0
871
749
  License: Apache-2.0
872
750
 
873
751
  -------------------- DEPENDENCY DIVIDER --------------------
874
752
 
875
753
  Name: @puppeteer/browsers
876
754
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
877
- Version: 2.13.1
755
+ Version: 3.2.0
878
756
  License: Apache-2.0
879
757
 
880
758
  -------------------- DEPENDENCY DIVIDER --------------------
881
759
 
882
- Name: proxy-agent
883
- URL: https://github.com/TooTallNate/proxy-agents.git
884
- Version: 6.5.0
885
- License: MIT
886
-
887
- (The MIT License)
888
-
889
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
890
-
891
- Permission is hereby granted, free of charge, to any person obtaining
892
- a copy of this software and associated documentation files (the
893
- 'Software'), to deal in the Software without restriction, including
894
- without limitation the rights to use, copy, modify, merge, publish,
895
- distribute, sublicense, and/or sell copies of the Software, and to
896
- permit persons to whom the Software is furnished to do so, subject to
897
- the following conditions:
898
-
899
- The above copyright notice and this permission notice shall be
900
- included in all copies or substantial portions of the Software.
901
-
902
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
903
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
904
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
905
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
906
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
907
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
908
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
909
-
910
- -------------------- DEPENDENCY DIVIDER --------------------
911
-
912
- Name: lru-cache
913
- URL: git://github.com/isaacs/node-lru-cache.git
914
- Version: 7.18.3
915
- License: ISC
916
-
917
- The ISC License
918
-
919
- Copyright (c) 2010-2023 Isaac Z. Schlueter and Contributors
920
-
921
- Permission to use, copy, modify, and/or distribute this software for any
922
- purpose with or without fee is hereby granted, provided that the above
923
- copyright notice and this permission notice appear in all copies.
924
-
925
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
926
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
927
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
928
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
929
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
930
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
931
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
932
-
933
-
934
- -------------------- DEPENDENCY DIVIDER --------------------
935
-
936
- Name: agent-base
937
- URL: https://github.com/TooTallNate/proxy-agents.git
938
- Version: 7.1.4
939
- License: MIT
940
-
941
- (The MIT License)
942
-
943
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
944
-
945
- Permission is hereby granted, free of charge, to any person obtaining
946
- a copy of this software and associated documentation files (the
947
- 'Software'), to deal in the Software without restriction, including
948
- without limitation the rights to use, copy, modify, merge, publish,
949
- distribute, sublicense, and/or sell copies of the Software, and to
950
- permit persons to whom the Software is furnished to do so, subject to
951
- the following conditions:
952
-
953
- The above copyright notice and this permission notice shall be
954
- included in all copies or substantial portions of the Software.
955
-
956
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
957
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
958
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
959
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
960
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
961
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
962
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
963
-
964
- -------------------- DEPENDENCY DIVIDER --------------------
965
-
966
- Name: proxy-from-env
967
- URL: https://github.com/Rob--W/proxy-from-env#readme
968
- Version: 1.1.0
760
+ Name: ws
761
+ URL: https://github.com/websockets/ws
762
+ Version: 8.21.1
969
763
  License: MIT
970
764
 
971
- The MIT License
972
-
973
- Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
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
974
768
 
975
769
  Permission is hereby granted, free of charge, to any person obtaining a copy of
976
770
  this software and associated documentation files (the "Software"), to deal in
977
771
  the Software without restriction, including without limitation the rights to
978
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
979
- of the Software, and to permit persons to whom the Software is furnished to do
980
- so, subject to the following conditions:
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:
981
775
 
982
776
  The above copyright notice and this permission notice shall be included in all
983
777
  copies or substantial portions of the Software.
@@ -992,673 +786,260 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
992
786
 
993
787
  -------------------- DEPENDENCY DIVIDER --------------------
994
788
 
995
- Name: http-proxy-agent
996
- URL: https://github.com/TooTallNate/proxy-agents.git
997
- Version: 7.0.2
789
+ Name: marked
790
+ URL: https://marked.js.org
791
+ Version: 18.0.4
998
792
  License: MIT
999
793
 
1000
- (The MIT License)
1001
-
1002
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1003
-
1004
- Permission is hereby granted, free of charge, to any person obtaining
1005
- a copy of this software and associated documentation files (the
1006
- 'Software'), to deal in the Software without restriction, including
1007
- without limitation the rights to use, copy, modify, merge, publish,
1008
- distribute, sublicense, and/or sell copies of the Software, and to
1009
- permit persons to whom the Software is furnished to do so, subject to
1010
- the following conditions:
794
+ -------------------- DEPENDENCY DIVIDER --------------------
1011
795
 
1012
- The above copyright notice and this permission notice shall be
1013
- included in all copies or substantial portions of the Software.
796
+ Name: devtools-frontend
797
+ URL: https://github.com/ChromeDevTools/devtools-frontend
798
+ Version: eaad2491924990cb310a4c753b2851e64d515f00
799
+ License: Apache-2.0
1014
800
 
1015
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1016
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1017
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1018
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1019
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1020
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1021
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.
1022
828
 
1023
829
 
1024
830
  -------------------- DEPENDENCY DIVIDER --------------------
1025
831
 
1026
- Name: https-proxy-agent
1027
- URL: https://github.com/TooTallNate/proxy-agents.git
1028
- Version: 7.0.6
1029
- License: MIT
1030
-
1031
- (The MIT License)
832
+ Name: lighthouse
833
+ License: Apache-2.0
1032
834
 
1033
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1034
835
 
1035
- Permission is hereby granted, free of charge, to any person obtaining
1036
- a copy of this software and associated documentation files (the
1037
- 'Software'), to deal in the Software without restriction, including
1038
- without limitation the rights to use, copy, modify, merge, publish,
1039
- distribute, sublicense, and/or sell copies of the Software, and to
1040
- permit persons to whom the Software is furnished to do so, subject to
1041
- the following conditions:
836
+ Apache License
837
+ Version 2.0, January 2004
838
+ http://www.apache.org/licenses/
1042
839
 
1043
- The above copyright notice and this permission notice shall be
1044
- included in all copies or substantial portions of the Software.
840
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1045
841
 
1046
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1047
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1048
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1049
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1050
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1051
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1052
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
842
+ 1. Definitions.
1053
843
 
1054
- -------------------- DEPENDENCY DIVIDER --------------------
844
+ "License" shall mean the terms and conditions for use, reproduction,
845
+ and distribution as defined by Sections 1 through 9 of this document.
1055
846
 
1056
- Name: socks-proxy-agent
1057
- URL: https://github.com/TooTallNate/proxy-agents.git
1058
- Version: 8.0.5
1059
- License: MIT
847
+ "Licensor" shall mean the copyright owner or entity authorized by
848
+ the copyright owner that is granting the License.
1060
849
 
1061
- (The MIT License)
1062
-
1063
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1064
-
1065
- Permission is hereby granted, free of charge, to any person obtaining
1066
- a copy of this software and associated documentation files (the
1067
- 'Software'), to deal in the Software without restriction, including
1068
- without limitation the rights to use, copy, modify, merge, publish,
1069
- distribute, sublicense, and/or sell copies of the Software, and to
1070
- permit persons to whom the Software is furnished to do so, subject to
1071
- the following conditions:
1072
-
1073
- The above copyright notice and this permission notice shall be
1074
- included in all copies or substantial portions of the Software.
1075
-
1076
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1077
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1078
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1079
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1080
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1081
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1082
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1083
-
1084
- -------------------- DEPENDENCY DIVIDER --------------------
1085
-
1086
- Name: socks
1087
- URL: https://github.com/JoshGlazebrook/socks/
1088
- Version: 2.8.7
1089
- License: MIT
1090
-
1091
- The MIT License (MIT)
1092
-
1093
- Copyright (c) 2013 Josh Glazebrook
1094
-
1095
- Permission is hereby granted, free of charge, to any person obtaining a copy of
1096
- this software and associated documentation files (the "Software"), to deal in
1097
- the Software without restriction, including without limitation the rights to
1098
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1099
- the Software, and to permit persons to whom the Software is furnished to do so,
1100
- subject to the following conditions:
1101
-
1102
- The above copyright notice and this permission notice shall be included in all
1103
- copies or substantial portions of the Software.
1104
-
1105
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1106
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1107
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1108
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1109
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1110
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1111
-
1112
-
1113
- -------------------- DEPENDENCY DIVIDER --------------------
1114
-
1115
- Name: smart-buffer
1116
- URL: https://github.com/JoshGlazebrook/smart-buffer/
1117
- Version: 4.2.0
1118
- License: MIT
1119
-
1120
- The MIT License (MIT)
1121
-
1122
- Copyright (c) 2013-2017 Josh Glazebrook
1123
-
1124
- Permission is hereby granted, free of charge, to any person obtaining a copy of
1125
- this software and associated documentation files (the "Software"), to deal in
1126
- the Software without restriction, including without limitation the rights to
1127
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1128
- the Software, and to permit persons to whom the Software is furnished to do so,
1129
- subject to the following conditions:
1130
-
1131
- The above copyright notice and this permission notice shall be included in all
1132
- copies or substantial portions of the Software.
1133
-
1134
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1135
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1136
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1137
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1138
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1139
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1140
-
1141
-
1142
- -------------------- DEPENDENCY DIVIDER --------------------
1143
-
1144
- Name: ip-address
1145
- URL: git://github.com/beaugunderson/ip-address.git
1146
- Version: 10.2.0
1147
- License: MIT
1148
-
1149
- Copyright (C) 2011 by Beau Gunderson
1150
-
1151
- Permission is hereby granted, free of charge, to any person obtaining a copy
1152
- of this software and associated documentation files (the "Software"), to deal
1153
- in the Software without restriction, including without limitation the rights
1154
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1155
- copies of the Software, and to permit persons to whom the Software is
1156
- furnished to do so, subject to the following conditions:
1157
-
1158
- The above copyright notice and this permission notice shall be included in
1159
- all copies or substantial portions of the Software.
1160
-
1161
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1162
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1163
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1164
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1165
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1166
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1167
- THE SOFTWARE.
1168
-
1169
-
1170
- -------------------- DEPENDENCY DIVIDER --------------------
1171
-
1172
- Name: pac-proxy-agent
1173
- URL: https://github.com/TooTallNate/proxy-agents.git
1174
- Version: 7.2.0
1175
- License: MIT
1176
-
1177
- (The MIT License)
1178
-
1179
- Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
1180
-
1181
- Permission is hereby granted, free of charge, to any person obtaining
1182
- a copy of this software and associated documentation files (the
1183
- 'Software'), to deal in the Software without restriction, including
1184
- without limitation the rights to use, copy, modify, merge, publish,
1185
- distribute, sublicense, and/or sell copies of the Software, and to
1186
- permit persons to whom the Software is furnished to do so, subject to
1187
- the following conditions:
1188
-
1189
- The above copyright notice and this permission notice shall be
1190
- included in all copies or substantial portions of the Software.
1191
-
1192
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1193
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1194
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1195
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1196
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1197
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1198
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1199
-
1200
-
1201
- -------------------- DEPENDENCY DIVIDER --------------------
1202
-
1203
- Name: get-uri
1204
- URL: https://github.com/TooTallNate/proxy-agents.git
1205
- Version: 6.0.5
1206
- License: MIT
1207
-
1208
- (The MIT License)
1209
-
1210
- Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
1211
-
1212
- Permission is hereby granted, free of charge, to any person obtaining
1213
- a copy of this software and associated documentation files (the
1214
- 'Software'), to deal in the Software without restriction, including
1215
- without limitation the rights to use, copy, modify, merge, publish,
1216
- distribute, sublicense, and/or sell copies of the Software, and to
1217
- permit persons to whom the Software is furnished to do so, subject to
1218
- the following conditions:
1219
-
1220
- The above copyright notice and this permission notice shall be
1221
- included in all copies or substantial portions of the Software.
1222
-
1223
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1224
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1225
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1226
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1227
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1228
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1229
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1230
-
1231
- -------------------- DEPENDENCY DIVIDER --------------------
1232
-
1233
- Name: data-uri-to-buffer
1234
- URL: https://github.com/TooTallNate/proxy-agents.git
1235
- Version: 6.0.2
1236
- License: MIT
1237
-
1238
- (The MIT License)
1239
-
1240
- Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
1241
-
1242
- Permission is hereby granted, free of charge, to any person obtaining
1243
- a copy of this software and associated documentation files (the
1244
- 'Software'), to deal in the Software without restriction, including
1245
- without limitation the rights to use, copy, modify, merge, publish,
1246
- distribute, sublicense, and/or sell copies of the Software, and to
1247
- permit persons to whom the Software is furnished to do so, subject to
1248
- the following conditions:
1249
-
1250
- The above copyright notice and this permission notice shall be
1251
- included in all copies or substantial portions of the Software.
1252
-
1253
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1254
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1255
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1256
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1257
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1258
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1259
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1260
-
1261
- -------------------- DEPENDENCY DIVIDER --------------------
1262
-
1263
- Name: basic-ftp
1264
- URL: https://github.com/patrickjuchli/basic-ftp.git
1265
- Version: 5.3.1
1266
- License: MIT
1267
-
1268
- Copyright (c) 2019 Patrick Juchli
1269
-
1270
- Permission is hereby granted, free of charge, to any person obtaining a copy
1271
- of this software and associated documentation files (the "Software"), to deal
1272
- in the Software without restriction, including without limitation the rights
1273
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1274
- copies of the Software, and to permit persons to whom the Software is
1275
- furnished to do so, subject to the following conditions:
1276
-
1277
- The above copyright notice and this permission notice shall be included in all
1278
- copies or substantial portions of the Software.
1279
-
1280
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1281
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1282
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1283
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1284
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1285
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1286
- SOFTWARE.
1287
-
1288
- -------------------- DEPENDENCY DIVIDER --------------------
1289
-
1290
- Name: pac-resolver
1291
- URL: https://github.com/TooTallNate/proxy-agents.git
1292
- Version: 7.0.1
1293
- License: MIT
1294
-
1295
- (The MIT License)
1296
-
1297
- Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1298
-
1299
- Permission is hereby granted, free of charge, to any person obtaining
1300
- a copy of this software and associated documentation files (the
1301
- 'Software'), to deal in the Software without restriction, including
1302
- without limitation the rights to use, copy, modify, merge, publish,
1303
- distribute, sublicense, and/or sell copies of the Software, and to
1304
- permit persons to whom the Software is furnished to do so, subject to
1305
- the following conditions:
1306
-
1307
- The above copyright notice and this permission notice shall be
1308
- included in all copies or substantial portions of the Software.
1309
-
1310
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1311
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1312
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1313
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1314
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1315
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1316
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1317
-
1318
- -------------------- DEPENDENCY DIVIDER --------------------
1319
-
1320
- Name: degenerator
1321
- URL: https://github.com/TooTallNate/proxy-agents.git
1322
- Version: 5.0.1
1323
- License: MIT
1324
-
1325
- -------------------- DEPENDENCY DIVIDER --------------------
1326
-
1327
- Name: escodegen
1328
- URL: http://github.com/estools/escodegen
1329
- Version: 2.1.0
1330
- License: BSD-2-Clause
1331
-
1332
- Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.
1333
-
1334
- Redistribution and use in source and binary forms, with or without
1335
- modification, are permitted provided that the following conditions are met:
1336
-
1337
- * Redistributions of source code must retain the above copyright
1338
- notice, this list of conditions and the following disclaimer.
1339
- * Redistributions in binary form must reproduce the above copyright
1340
- notice, this list of conditions and the following disclaimer in the
1341
- documentation and/or other materials provided with the distribution.
1342
-
1343
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1344
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1345
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1346
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1347
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1348
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1349
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1350
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1351
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1352
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1353
-
1354
-
1355
- -------------------- DEPENDENCY DIVIDER --------------------
1356
-
1357
- Name: estraverse
1358
- URL: https://github.com/estools/estraverse
1359
- Version: 5.3.0
1360
- License: BSD-2-Clause
1361
-
1362
- Redistribution and use in source and binary forms, with or without
1363
- modification, are permitted provided that the following conditions are met:
1364
-
1365
- * Redistributions of source code must retain the above copyright
1366
- notice, this list of conditions and the following disclaimer.
1367
- * Redistributions in binary form must reproduce the above copyright
1368
- notice, this list of conditions and the following disclaimer in the
1369
- documentation and/or other materials provided with the distribution.
1370
-
1371
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1372
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1373
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1374
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1375
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1376
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1377
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1378
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1379
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1380
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1381
-
1382
-
1383
- -------------------- DEPENDENCY DIVIDER --------------------
1384
-
1385
- Name: esutils
1386
- URL: https://github.com/estools/esutils
1387
- Version: 2.0.3
1388
- License: BSD-2-Clause
1389
-
1390
- Redistribution and use in source and binary forms, with or without
1391
- modification, are permitted provided that the following conditions are met:
1392
-
1393
- * Redistributions of source code must retain the above copyright
1394
- notice, this list of conditions and the following disclaimer.
1395
- * Redistributions in binary form must reproduce the above copyright
1396
- notice, this list of conditions and the following disclaimer in the
1397
- documentation and/or other materials provided with the distribution.
1398
-
1399
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1400
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1401
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1402
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1403
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1404
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1405
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1406
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1407
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1408
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1409
-
1410
-
1411
- -------------------- DEPENDENCY DIVIDER --------------------
1412
-
1413
- Name: source-map
1414
- URL: https://github.com/mozilla/source-map
1415
- Version: 0.6.1
1416
- License: BSD-3-Clause
1417
-
1418
-
1419
- Copyright (c) 2009-2011, Mozilla Foundation and contributors
1420
- All rights reserved.
1421
-
1422
- Redistribution and use in source and binary forms, with or without
1423
- modification, are permitted provided that the following conditions are met:
1424
-
1425
- * Redistributions of source code must retain the above copyright notice, this
1426
- list of conditions and the following disclaimer.
1427
-
1428
- * Redistributions in binary form must reproduce the above copyright notice,
1429
- this list of conditions and the following disclaimer in the documentation
1430
- and/or other materials provided with the distribution.
1431
-
1432
- * Neither the names of the Mozilla Foundation nor the names of project
1433
- contributors may be used to endorse or promote products derived from this
1434
- software without specific prior written permission.
1435
-
1436
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1437
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1438
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1439
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1440
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1441
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1442
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1443
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1444
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1445
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1446
-
1447
-
1448
- -------------------- DEPENDENCY DIVIDER --------------------
1449
-
1450
- Name: esprima
1451
- URL: http://esprima.org
1452
- Version: 4.0.1
1453
- License: BSD-2-Clause
1454
-
1455
- Copyright JS Foundation and other contributors, https://js.foundation/
1456
-
1457
- Redistribution and use in source and binary forms, with or without
1458
- modification, are permitted provided that the following conditions are met:
1459
-
1460
- * Redistributions of source code must retain the above copyright
1461
- notice, this list of conditions and the following disclaimer.
1462
- * Redistributions in binary form must reproduce the above copyright
1463
- notice, this list of conditions and the following disclaimer in the
1464
- documentation and/or other materials provided with the distribution.
1465
-
1466
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1467
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1468
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1469
- ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1470
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1471
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1472
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1473
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1474
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1475
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1476
-
1477
-
1478
- -------------------- DEPENDENCY DIVIDER --------------------
1479
-
1480
- Name: ast-types
1481
- URL: http://github.com/benjamn/ast-types
1482
- Version: 0.13.4
1483
- License: MIT
1484
-
1485
- Copyright (c) 2013 Ben Newman <bn@cs.stanford.edu>
1486
-
1487
- Permission is hereby granted, free of charge, to any person obtaining
1488
- a copy of this software and associated documentation files (the
1489
- "Software"), to deal in the Software without restriction, including
1490
- without limitation the rights to use, copy, modify, merge, publish,
1491
- distribute, sublicense, and/or sell copies of the Software, and to
1492
- permit persons to whom the Software is furnished to do so, subject to
1493
- the following conditions:
1494
-
1495
- The above copyright notice and this permission notice shall be
1496
- included in all copies or substantial portions of the Software.
1497
-
1498
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1499
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1500
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1501
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1502
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1503
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1504
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1505
-
1506
-
1507
- -------------------- DEPENDENCY DIVIDER --------------------
1508
-
1509
- Name: tslib
1510
- URL: https://www.typescriptlang.org/
1511
- Version: 2.8.1
1512
- License: 0BSD
1513
-
1514
- Copyright (c) Microsoft Corporation.
1515
-
1516
- Permission to use, copy, modify, and/or distribute this software for any
1517
- purpose with or without fee is hereby granted.
1518
-
1519
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1520
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1521
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1522
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1523
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1524
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1525
- PERFORMANCE OF THIS SOFTWARE.
1526
-
1527
- -------------------- DEPENDENCY DIVIDER --------------------
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.
1528
857
 
1529
- Name: netmask
1530
- URL: https://github.com/rs/node-netmask
1531
- Version: 2.0.2
1532
- License: MIT
858
+ "You" (or "Your") shall mean an individual or Legal Entity
859
+ exercising permissions granted by this License.
1533
860
 
1534
- -------------------- DEPENDENCY DIVIDER --------------------
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.
1535
864
 
1536
- Name: @tootallnate/quickjs-emscripten
1537
- URL: https://github.com/justjake/quickjs-emscripten
1538
- Version: 0.23.0
1539
- License: MIT
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.
1540
869
 
1541
- MIT License
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).
1542
874
 
1543
- quickjs-emscripten copyright (c) 2019 Jake Teton-Landis
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.
1544
882
 
1545
- Permission is hereby granted, free of charge, to any person obtaining a copy
1546
- of this software and associated documentation files (the "Software"), to deal
1547
- in the Software without restriction, including without limitation the rights
1548
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1549
- copies of the Software, and to permit persons to whom the Software is
1550
- furnished to do so, subject to the following conditions:
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."
1551
896
 
1552
- The above copyright notice and this permission notice shall be included in all
1553
- copies or substantial portions of the Software.
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.
1554
900
 
1555
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1556
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1557
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1558
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1559
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1560
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1561
- SOFTWARE.
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.
1562
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.
1563
923
 
1564
- -------------------- DEPENDENCY DIVIDER --------------------
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:
1565
928
 
1566
- Name: progress
1567
- URL: git://github.com/visionmedia/node-progress
1568
- Version: 2.0.3
1569
- License: MIT
929
+ (a) You must give any other recipients of the Work or
930
+ Derivative Works a copy of this License; and
1570
931
 
1571
- (The MIT License)
932
+ (b) You must cause any modified files to carry prominent notices
933
+ stating that You changed the files; and
1572
934
 
1573
- Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
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
1574
940
 
1575
- Permission is hereby granted, free of charge, to any person obtaining
1576
- a copy of this software and associated documentation files (the
1577
- 'Software'), to deal in the Software without restriction, including
1578
- without limitation the rights to use, copy, modify, merge, publish,
1579
- distribute, sublicense, and/or sell copies of the Software, and to
1580
- permit persons to whom the Software is furnished to do so, subject to
1581
- the following conditions:
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.
1582
957
 
1583
- The above copyright notice and this permission notice shall be
1584
- included in all copies or substantial portions of the Software.
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.
1585
964
 
1586
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1587
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1588
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1589
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1590
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1591
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1592
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.
1593
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.
1594
977
 
1595
- -------------------- DEPENDENCY DIVIDER --------------------
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.
1596
987
 
1597
- Name: ws
1598
- URL: https://github.com/websockets/ws
1599
- Version: 8.20.0
1600
- License: MIT
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.
1601
999
 
1602
- Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
1603
- Copyright (c) 2013 Arnout Kazemier and contributors
1604
- Copyright (c) 2016 Luigi Pinca and contributors
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.
1605
1010
 
1606
- Permission is hereby granted, free of charge, to any person obtaining a copy of
1607
- this software and associated documentation files (the "Software"), to deal in
1608
- the Software without restriction, including without limitation the rights to
1609
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1610
- the Software, and to permit persons to whom the Software is furnished to do so,
1611
- subject to the following conditions:
1011
+ END OF TERMS AND CONDITIONS
1612
1012
 
1613
- The above copyright notice and this permission notice shall be included in all
1614
- copies or substantial portions of the Software.
1013
+ APPENDIX: How to apply the Apache License to your work.
1615
1014
 
1616
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1617
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1618
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1619
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1620
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1621
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.
1622
1023
 
1024
+ Copyright [yyyy] [name of copyright owner]
1623
1025
 
1624
- -------------------- DEPENDENCY DIVIDER --------------------
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
1625
1029
 
1626
- Name: chrome-devtools-frontend
1627
- License: Apache-2.0
1030
+ http://www.apache.org/licenses/LICENSE-2.0
1628
1031
 
1629
- // Copyright 2014 The Chromium Authors
1630
- //
1631
- // Redistribution and use in source and binary forms, with or without
1632
- // modification, are permitted provided that the following conditions are
1633
- // met:
1634
- //
1635
- // * Redistributions of source code must retain the above copyright
1636
- // notice, this list of conditions and the following disclaimer.
1637
- // * Redistributions in binary form must reproduce the above
1638
- // copyright notice, this list of conditions and the following disclaimer
1639
- // in the documentation and/or other materials provided with the
1640
- // distribution.
1641
- // * Neither the name of Google Inc. nor the names of its
1642
- // contributors may be used to endorse or promote products derived from
1643
- // this software without specific prior written permission.
1644
- //
1645
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1646
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1647
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1648
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1649
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1650
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1651
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1652
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1653
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1654
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1655
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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.
1656
1037
 
1657
1038
 
1658
1039
  -------------------- DEPENDENCY DIVIDER --------------------
1659
1040
 
1660
- Name: lighthouse
1661
- License: Apache-2.0
1041
+ Name: diff
1042
+ License:
1662
1043
 
1663
1044
 
1664
1045
  Apache License
@@ -1863,7 +1244,6 @@ License: Apache-2.0
1863
1244
  See the License for the specific language governing permissions and
1864
1245
  limitations under the License.
1865
1246
 
1866
-
1867
1247
  -------------------- DEPENDENCY DIVIDER --------------------
1868
1248
 
1869
1249
  Name: i18n
@@ -2484,7 +1864,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2484
1864
 
2485
1865
  Name: @paulirish/trace_engine
2486
1866
  URL: N/A
2487
- Version: 0.0.64
1867
+ Version: 0.0.65
2488
1868
  License: BSD-3-Clause
2489
1869
 
2490
1870
  // Copyright 2014 The Chromium Authors
@@ -2520,7 +1900,7 @@ License: BSD-3-Clause
2520
1900
 
2521
1901
  Name: @sentry/node
2522
1902
  URL: https://github.com/getsentry/sentry-javascript/tree/master/packages/node
2523
- Version: 9.28.1
1903
+ Version: 10.58.0
2524
1904
  License: MIT
2525
1905
 
2526
1906
  MIT License
@@ -2550,7 +1930,7 @@ SOFTWARE.
2550
1930
 
2551
1931
  Name: axe-core
2552
1932
  URL: https://www.deque.com/axe/
2553
- Version: 4.11.4
1933
+ Version: 4.12.1
2554
1934
  License: MPL-2.0
2555
1935
 
2556
1936
  Mozilla Public License, version 2.0
@@ -2921,7 +2301,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
2921
2301
 
2922
2302
  Name: csp_evaluator
2923
2303
  URL: https://csp-evaluator.withgoogle.com/
2924
- Version: 1.1.5
2304
+ Version: 1.1.8
2925
2305
  License: Apache-2.0
2926
2306
 
2927
2307
 
@@ -3986,7 +3366,7 @@ SOFTWARE.
3986
3366
 
3987
3367
  Name: puppeteer-core
3988
3368
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
3989
- Version: 24.43.0
3369
+ Version: 25.3.0
3990
3370
  License: Apache-2.0
3991
3371
 
3992
3372
  -------------------- DEPENDENCY DIVIDER --------------------
@@ -4052,7 +3432,7 @@ SOFTWARE.
4052
3432
 
4053
3433
  Name: tldts-core
4054
3434
  URL: https://github.com/remusao/tldts#readme
4055
- Version: 7.0.30
3435
+ Version: 7.4.9
4056
3436
  License: MIT
4057
3437
 
4058
3438
  Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
@@ -4074,7 +3454,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH
4074
3454
 
4075
3455
  Name: tldts-icann
4076
3456
  URL: https://github.com/remusao/tldts#readme
4077
- Version: 7.0.30
3457
+ Version: 7.4.9
4078
3458
  License: MIT
4079
3459
 
4080
3460
  Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
@@ -4110,213 +3490,4 @@ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
4110
3490
  INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
4111
3491
  LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
4112
3492
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
4113
- PERFORMANCE OF THIS SOFTWARE.
4114
-
4115
- -------------------- DEPENDENCY DIVIDER --------------------
4116
-
4117
- Name: web-features
4118
- URL: git+https://github.com/web-platform-dx/web-features.git
4119
- Version: 3.26.0
4120
- License: Apache-2.0
4121
-
4122
- Apache License
4123
- Version 2.0, January 2004
4124
- http://www.apache.org/licenses/
4125
-
4126
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4127
-
4128
- 1. Definitions.
4129
-
4130
- "License" shall mean the terms and conditions for use, reproduction,
4131
- and distribution as defined by Sections 1 through 9 of this document.
4132
-
4133
- "Licensor" shall mean the copyright owner or entity authorized by
4134
- the copyright owner that is granting the License.
4135
-
4136
- "Legal Entity" shall mean the union of the acting entity and all
4137
- other entities that control, are controlled by, or are under common
4138
- control with that entity. For the purposes of this definition,
4139
- "control" means (i) the power, direct or indirect, to cause the
4140
- direction or management of such entity, whether by contract or
4141
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
4142
- outstanding shares, or (iii) beneficial ownership of such entity.
4143
-
4144
- "You" (or "Your") shall mean an individual or Legal Entity
4145
- exercising permissions granted by this License.
4146
-
4147
- "Source" form shall mean the preferred form for making modifications,
4148
- including but not limited to software source code, documentation
4149
- source, and configuration files.
4150
-
4151
- "Object" form shall mean any form resulting from mechanical
4152
- transformation or translation of a Source form, including but
4153
- not limited to compiled object code, generated documentation,
4154
- and conversions to other media types.
4155
-
4156
- "Work" shall mean the work of authorship, whether in Source or
4157
- Object form, made available under the License, as indicated by a
4158
- copyright notice that is included in or attached to the work
4159
- (an example is provided in the Appendix below).
4160
-
4161
- "Derivative Works" shall mean any work, whether in Source or Object
4162
- form, that is based on (or derived from) the Work and for which the
4163
- editorial revisions, annotations, elaborations, or other modifications
4164
- represent, as a whole, an original work of authorship. For the purposes
4165
- of this License, Derivative Works shall not include works that remain
4166
- separable from, or merely link (or bind by name) to the interfaces of,
4167
- the Work and Derivative Works thereof.
4168
-
4169
- "Contribution" shall mean any work of authorship, including
4170
- the original version of the Work and any modifications or additions
4171
- to that Work or Derivative Works thereof, that is intentionally
4172
- submitted to Licensor for inclusion in the Work by the copyright owner
4173
- or by an individual or Legal Entity authorized to submit on behalf of
4174
- the copyright owner. For the purposes of this definition, "submitted"
4175
- means any form of electronic, verbal, or written communication sent
4176
- to the Licensor or its representatives, including but not limited to
4177
- communication on electronic mailing lists, source code control systems,
4178
- and issue tracking systems that are managed by, or on behalf of, the
4179
- Licensor for the purpose of discussing and improving the Work, but
4180
- excluding communication that is conspicuously marked or otherwise
4181
- designated in writing by the copyright owner as "Not a Contribution."
4182
-
4183
- "Contributor" shall mean Licensor and any individual or Legal Entity
4184
- on behalf of whom a Contribution has been received by Licensor and
4185
- subsequently incorporated within the Work.
4186
-
4187
- 2. Grant of Copyright License. Subject to the terms and conditions of
4188
- this License, each Contributor hereby grants to You a perpetual,
4189
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4190
- copyright license to reproduce, prepare Derivative Works of,
4191
- publicly display, publicly perform, sublicense, and distribute the
4192
- Work and such Derivative Works in Source or Object form.
4193
-
4194
- 3. Grant of Patent License. Subject to the terms and conditions of
4195
- this License, each Contributor hereby grants to You a perpetual,
4196
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4197
- (except as stated in this section) patent license to make, have made,
4198
- use, offer to sell, sell, import, and otherwise transfer the Work,
4199
- where such license applies only to those patent claims licensable
4200
- by such Contributor that are necessarily infringed by their
4201
- Contribution(s) alone or by combination of their Contribution(s)
4202
- with the Work to which such Contribution(s) was submitted. If You
4203
- institute patent litigation against any entity (including a
4204
- cross-claim or counterclaim in a lawsuit) alleging that the Work
4205
- or a Contribution incorporated within the Work constitutes direct
4206
- or contributory patent infringement, then any patent licenses
4207
- granted to You under this License for that Work shall terminate
4208
- as of the date such litigation is filed.
4209
-
4210
- 4. Redistribution. You may reproduce and distribute copies of the
4211
- Work or Derivative Works thereof in any medium, with or without
4212
- modifications, and in Source or Object form, provided that You
4213
- meet the following conditions:
4214
-
4215
- (a) You must give any other recipients of the Work or
4216
- Derivative Works a copy of this License; and
4217
-
4218
- (b) You must cause any modified files to carry prominent notices
4219
- stating that You changed the files; and
4220
-
4221
- (c) You must retain, in the Source form of any Derivative Works
4222
- that You distribute, all copyright, patent, trademark, and
4223
- attribution notices from the Source form of the Work,
4224
- excluding those notices that do not pertain to any part of
4225
- the Derivative Works; and
4226
-
4227
- (d) If the Work includes a "NOTICE" text file as part of its
4228
- distribution, then any Derivative Works that You distribute must
4229
- include a readable copy of the attribution notices contained
4230
- within such NOTICE file, excluding those notices that do not
4231
- pertain to any part of the Derivative Works, in at least one
4232
- of the following places: within a NOTICE text file distributed
4233
- as part of the Derivative Works; within the Source form or
4234
- documentation, if provided along with the Derivative Works; or,
4235
- within a display generated by the Derivative Works, if and
4236
- wherever such third-party notices normally appear. The contents
4237
- of the NOTICE file are for informational purposes only and
4238
- do not modify the License. You may add Your own attribution
4239
- notices within Derivative Works that You distribute, alongside
4240
- or as an addendum to the NOTICE text from the Work, provided
4241
- that such additional attribution notices cannot be construed
4242
- as modifying the License.
4243
-
4244
- You may add Your own copyright statement to Your modifications and
4245
- may provide additional or different license terms and conditions
4246
- for use, reproduction, or distribution of Your modifications, or
4247
- for any such Derivative Works as a whole, provided Your use,
4248
- reproduction, and distribution of the Work otherwise complies with
4249
- the conditions stated in this License.
4250
-
4251
- 5. Submission of Contributions. Unless You explicitly state otherwise,
4252
- any Contribution intentionally submitted for inclusion in the Work
4253
- by You to the Licensor shall be under the terms and conditions of
4254
- this License, without any additional terms or conditions.
4255
- Notwithstanding the above, nothing herein shall supersede or modify
4256
- the terms of any separate license agreement you may have executed
4257
- with Licensor regarding such Contributions.
4258
-
4259
- 6. Trademarks. This License does not grant permission to use the trade
4260
- names, trademarks, service marks, or product names of the Licensor,
4261
- except as required for reasonable and customary use in describing the
4262
- origin of the Work and reproducing the content of the NOTICE file.
4263
-
4264
- 7. Disclaimer of Warranty. Unless required by applicable law or
4265
- agreed to in writing, Licensor provides the Work (and each
4266
- Contributor provides its Contributions) on an "AS IS" BASIS,
4267
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
4268
- implied, including, without limitation, any warranties or conditions
4269
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
4270
- PARTICULAR PURPOSE. You are solely responsible for determining the
4271
- appropriateness of using or redistributing the Work and assume any
4272
- risks associated with Your exercise of permissions under this License.
4273
-
4274
- 8. Limitation of Liability. In no event and under no legal theory,
4275
- whether in tort (including negligence), contract, or otherwise,
4276
- unless required by applicable law (such as deliberate and grossly
4277
- negligent acts) or agreed to in writing, shall any Contributor be
4278
- liable to You for damages, including any direct, indirect, special,
4279
- incidental, or consequential damages of any character arising as a
4280
- result of this License or out of the use or inability to use the
4281
- Work (including but not limited to damages for loss of goodwill,
4282
- work stoppage, computer failure or malfunction, or any and all
4283
- other commercial damages or losses), even if such Contributor
4284
- has been advised of the possibility of such damages.
4285
-
4286
- 9. Accepting Warranty or Additional Liability. While redistributing
4287
- the Work or Derivative Works thereof, You may choose to offer,
4288
- and charge a fee for, acceptance of support, warranty, indemnity,
4289
- or other liability obligations and/or rights consistent with this
4290
- License. However, in accepting such obligations, You may act only
4291
- on Your own behalf and on Your sole responsibility, not on behalf
4292
- of any other Contributor, and only if You agree to indemnify,
4293
- defend, and hold each Contributor harmless for any liability
4294
- incurred by, or claims asserted against, such Contributor by reason
4295
- of your accepting any such warranty or additional liability.
4296
-
4297
- END OF TERMS AND CONDITIONS
4298
-
4299
- APPENDIX: How to apply the Apache License to your work.
4300
-
4301
- To apply the Apache License to your work, attach the following
4302
- boilerplate notice, with the fields enclosed by brackets "[]"
4303
- replaced with your own identifying information. (Don't include
4304
- the brackets!) The text should be enclosed in the appropriate
4305
- comment syntax for the file format. We also recommend that a
4306
- file or class name and description of purpose be included on the
4307
- same "printed page" as the copyright notice for easier
4308
- identification within third-party archives.
4309
-
4310
- Copyright [yyyy] [name of copyright owner]
4311
-
4312
- Licensed under the Apache License, Version 2.0 (the "License");
4313
- you may not use this file except in compliance with the License.
4314
- You may obtain a copy of the License at
4315
-
4316
- http://www.apache.org/licenses/LICENSE-2.0
4317
-
4318
- Unless required by applicable law or agreed to in writing, software
4319
- distributed under the License is distributed on an "AS IS" BASIS,
4320
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4321
- See the License for the specific language governing permissions and
4322
- limitations under the License.
3493
+ PERFORMANCE OF THIS SOFTWARE.