chrome-devtools-mcp 0.10.1 → 0.11.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 (377) hide show
  1. package/README.md +77 -9
  2. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Debouncer.js +2 -2
  3. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Gzip.js +1 -1
  4. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Revealer.js +5 -0
  5. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Settings.js +106 -98
  6. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Throttler.js +2 -2
  7. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/common.js +1 -4
  8. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/AidaClient.js +3 -3
  9. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/DispatchHttpRequestClient.js +15 -3
  10. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/GdpClient.js +4 -0
  11. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/InspectorFrontendHost.js +31 -452
  12. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/InspectorFrontendHostStub.js +430 -0
  13. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/ResourceLoader.js +10 -22
  14. package/build/node_modules/chrome-devtools-frontend/front_end/core/host/UserMetrics.js +5 -5
  15. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/ByteUtilities.js +72 -0
  16. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/DevToolsLocale.js +64 -0
  17. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/NumberFormatter.js +67 -0
  18. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/collect-ui-strings.js +73 -0
  19. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/generate-locales-js.js +51 -0
  20. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/i18n.js +9 -60
  21. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/i18nImpl.js +135 -0
  22. package/build/node_modules/chrome-devtools-frontend/front_end/core/{common/QueryParamHandler.js → i18n/i18nTypes.js} +1 -1
  23. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/locales.js +14 -0
  24. package/build/node_modules/chrome-devtools-frontend/front_end/core/i18n/time-utilities.js +148 -0
  25. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/HostRuntime.js +19 -0
  26. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/StringUtilities.js +1 -1
  27. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/api/HostRuntime.js +4 -0
  28. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/api/api.js +5 -0
  29. package/build/node_modules/chrome-devtools-frontend/front_end/core/{common/Worker.js → platform/browser/HostRuntime.js} +18 -7
  30. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/browser/browser.js +5 -0
  31. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/node/HostRuntime.js +72 -0
  32. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/node/node.js +5 -0
  33. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/platform.js +2 -2
  34. package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/DevToolsCDPConnection.js +138 -0
  35. package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/InspectorBackend.js +19 -150
  36. package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/protocol_client.js +2 -2
  37. package/build/node_modules/chrome-devtools-frontend/front_end/core/root/DevToolsContext.js +54 -0
  38. package/build/node_modules/chrome-devtools-frontend/front_end/core/root/Runtime.js +7 -0
  39. package/build/node_modules/chrome-devtools-frontend/front_end/core/root/root.js +2 -1
  40. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/AnimationModel.js +1 -1
  41. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CPUThrottlingManager.js +0 -3
  42. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSMatchedStyles.js +8 -9
  43. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSMetadata.js +17 -5
  44. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSModel.js +4 -4
  45. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSProperty.js +1 -1
  46. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSPropertyParserMatchers.js +10 -10
  47. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/CSSRule.js +14 -4
  48. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/ChildTargetManager.js +1 -2
  49. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/ConsoleModel.js +1 -1
  50. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/Cookie.js +1 -1
  51. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/DOMModel.js +5 -2
  52. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/DebuggerModel.js +2 -17
  53. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/IOModel.js +1 -4
  54. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/NetworkManager.js +64 -43
  55. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/NetworkRequest.js +3 -8
  56. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/PageResourceLoader.js +43 -33
  57. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/PreloadingModel.js +1 -1
  58. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/RemoteObject.js +4 -1
  59. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/ResourceTreeModel.js +1 -1
  60. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/Script.js +26 -1
  61. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/ServerSentEventsProtocol.js +3 -0
  62. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/SourceMap.js +4 -0
  63. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/SourceMapCache.js +16 -0
  64. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/SourceMapManager.js +11 -5
  65. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/SourceMapScopesInfo.js +129 -20
  66. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/Target.js +5 -16
  67. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/TargetManager.js +38 -8
  68. package/build/node_modules/chrome-devtools-frontend/front_end/core/sdk/sdk-meta.js +72 -30
  69. package/build/node_modules/chrome-devtools-frontend/front_end/foundation/Universe.js +34 -0
  70. package/build/node_modules/chrome-devtools-frontend/front_end/foundation/foundation.js +5 -0
  71. package/build/node_modules/chrome-devtools-frontend/front_end/generated/Deprecation.js +56 -18
  72. package/build/node_modules/chrome-devtools-frontend/front_end/generated/InspectorBackendCommands.js +50 -44
  73. package/build/node_modules/chrome-devtools-frontend/front_end/generated/SupportedCSSProperties.js +117 -84
  74. package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.js +107 -57
  75. package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/performance/AICallTree.js +9 -3
  76. package/build/node_modules/chrome-devtools-frontend/front_end/models/ai_assistance/performance/AIQueries.js +46 -2
  77. package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/CSSWorkspaceBinding.js +10 -8
  78. package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/CompilerScriptMapping.js +37 -1
  79. package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/DebuggerWorkspaceBinding.js +32 -14
  80. package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/ResourceMapping.js +105 -14
  81. package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/ResourceScriptMapping.js +38 -0
  82. package/build/node_modules/chrome-devtools-frontend/front_end/models/bindings/SASSSourceMapping.js +5 -4
  83. package/build/node_modules/chrome-devtools-frontend/front_end/models/cpu_profile/CPUProfileDataModel.js +9 -7
  84. package/build/node_modules/chrome-devtools-frontend/front_end/models/crux-manager/CrUXManager.js +5 -3
  85. package/build/node_modules/chrome-devtools-frontend/front_end/models/formatter/FormatterWorkerPool.js +2 -2
  86. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/AttributionReportingIssue.js +201 -0
  87. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/BounceTrackingIssue.js +49 -0
  88. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CheckFormsIssuesTrigger.js +31 -0
  89. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ClientHintIssue.js +71 -0
  90. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ContentSecurityPolicyIssue.js +135 -0
  91. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ContrastCheckTrigger.js +59 -0
  92. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CookieDeprecationMetadataIssue.js +58 -0
  93. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CookieIssue.js +514 -0
  94. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CorsIssue.js +244 -0
  95. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.js +110 -0
  96. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/DeprecationIssue.js +90 -0
  97. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/ElementAccessibilityIssue.js +95 -0
  98. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/FederatedAuthRequestIssue.js +231 -0
  99. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.js +141 -0
  100. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/GenericIssue.js +212 -0
  101. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/HeavyAdIssue.js +52 -0
  102. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/Issue.js +152 -0
  103. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssueAggregator.js +314 -0
  104. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssueResolver.js +40 -0
  105. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssuesManager.js +416 -0
  106. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/IssuesManagerEvents.js +4 -0
  107. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/LowTextContrastIssue.js +48 -0
  108. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/MarkdownIssueDescription.js +104 -0
  109. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/MixedContentIssue.js +55 -0
  110. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/PartitioningBlobURLIssue.js +58 -0
  111. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/PropertyRuleIssue.js +58 -0
  112. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/QuirksModeIssue.js +48 -0
  113. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/RelatedIssue.js +70 -0
  114. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SRIMessageSignatureIssue.js +87 -0
  115. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SharedArrayBufferIssue.js +49 -0
  116. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SharedDictionaryIssue.js +292 -0
  117. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/SourceFrameIssuesManager.js +81 -0
  118. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/StylesheetLoadingIssue.js +59 -0
  119. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/UnencodedDigestIssue.js +62 -0
  120. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCoopSandboxedIframeCannotNavigateToCoopPage.md +4 -0
  121. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCorpNotSameOrigin.md +8 -0
  122. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md +18 -0
  123. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepCorpNotSameSite.md +7 -0
  124. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CoepFrameResourceNeedsCoepHeader.md +10 -0
  125. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CompatibilityModeQuirks.md +5 -0
  126. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/CookieAttributeValueExceedsMaxSize.md +5 -0
  127. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/LowTextContrast.md +5 -0
  128. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeRead.md +8 -0
  129. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeSet.md +8 -0
  130. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteExcludeNavigationContextDowngrade.md +8 -0
  131. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteInvalidSameParty.md +8 -0
  132. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureErrorRead.md +8 -0
  133. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureErrorSet.md +8 -0
  134. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureWarnRead.md +8 -0
  135. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureWarnSet.md +8 -0
  136. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteSamePartyCrossPartyContextSet.md +10 -0
  137. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteUnspecifiedLaxAllowUnsafeRead.md +9 -0
  138. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteUnspecifiedLaxAllowUnsafeSet.md +9 -0
  139. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteWarnCrossDowngradeRead.md +8 -0
  140. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteWarnCrossDowngradeSet.md +8 -0
  141. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/SameSiteWarnStrictLaxDowngradeStrict.md +8 -0
  142. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInsecureContext.md +7 -0
  143. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +5 -0
  144. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterOsSourceHeader.md +5 -0
  145. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterOsTriggerHeader.md +5 -0
  146. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterSourceHeader.md +5 -0
  147. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arInvalidRegisterTriggerHeader.md +5 -0
  148. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
  149. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +6 -0
  150. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +5 -0
  151. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +5 -0
  152. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +5 -0
  153. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +5 -0
  154. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +4 -0
  155. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arOsSourceIgnored.md +18 -0
  156. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arOsTriggerIgnored.md +19 -0
  157. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md +8 -0
  158. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arSourceAndTriggerHeaders.md +9 -0
  159. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arSourceIgnored.md +13 -0
  160. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arTriggerIgnored.md +12 -0
  161. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arUntrustworthyReportingOrigin.md +10 -0
  162. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/arWebAndOsHeaders.md +11 -0
  163. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/bounceTrackingMitigations.md +3 -0
  164. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md +4 -0
  165. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md +4 -0
  166. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieCrossSiteRedirectDowngrade.md +12 -0
  167. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md +4 -0
  168. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeDomainNonAscii.md +11 -0
  169. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludePortMismatch.md +8 -0
  170. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeSchemeMismatch.md +7 -0
  171. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeThirdPartyPhaseoutRead.md +6 -0
  172. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieExcludeThirdPartyPhaseoutSet.md +6 -0
  173. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnDomainNonAscii.md +11 -0
  174. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnMetadataGrantRead.md +4 -0
  175. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnMetadataGrantSet.md +4 -0
  176. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnThirdPartyPhaseoutRead.md +6 -0
  177. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cookieWarnThirdPartyPhaseoutSet.md +6 -0
  178. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsAllowCredentialsRequired.md +6 -0
  179. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsDisabledScheme.md +7 -0
  180. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsDisallowedByMode.md +7 -0
  181. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsHeaderDisallowedByPreflightResponse.md +5 -0
  182. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsInsecurePrivateNetwork.md +10 -0
  183. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsInvalidHeaderValues.md +7 -0
  184. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsLocalNetworkAccessPermissionDenied.md +19 -0
  185. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsMethodDisallowedByPreflightResponse.md +5 -0
  186. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsNoCorsRedirectModeNotFollow.md +5 -0
  187. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsOriginMismatch.md +6 -0
  188. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsPreflightAllowPrivateNetworkError.md +10 -0
  189. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsPreflightResponseInvalid.md +5 -0
  190. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsPrivateNetworkPermissionDenied.md +10 -0
  191. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsRedirectContainsCredentials.md +5 -0
  192. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/corsWildcardOriginNotAllowed.md +8 -0
  193. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspEvalViolation.md +9 -0
  194. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspInlineViolation.md +10 -0
  195. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspTrustedTypesPolicyViolation.md +5 -0
  196. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspTrustedTypesSinkViolation.md +8 -0
  197. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/cspURLViolation.md +10 -0
  198. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/deprecation.md +3 -0
  199. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsHttpNotFound.md +1 -0
  200. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsInvalidResponse.md +1 -0
  201. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsNoResponse.md +1 -0
  202. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestApprovalDeclined.md +1 -0
  203. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestCanceled.md +1 -0
  204. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataHttpNotFound.md +1 -0
  205. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataInvalidResponse.md +1 -0
  206. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestClientMetadataNoResponse.md +1 -0
  207. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorFetchingSignin.md +1 -0
  208. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorIdToken.md +1 -0
  209. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenHttpNotFound.md +1 -0
  210. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidRequest.md +1 -0
  211. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidResponse.md +1 -0
  212. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenNoResponse.md +1 -0
  213. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestInvalidSigninResponse.md +1 -0
  214. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestHttpNotFound.md +1 -0
  215. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestInvalidResponse.md +1 -0
  216. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestNoResponse.md +1 -0
  217. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthRequestTooManyRequests.md +1 -0
  218. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md +1 -0
  219. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md +1 -0
  220. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md +1 -0
  221. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoApiPermission.md +1 -0
  222. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md +1 -0
  223. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotIframe.md +1 -0
  224. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md +1 -0
  225. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSameOrigin.md +1 -0
  226. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md +1 -0
  227. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/fetchingPartitionedBlobURL.md +7 -0
  228. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormAriaLabelledByToNonExistingIdError.md +8 -0
  229. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormAutocompleteAttributeEmptyError.md +5 -0
  230. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormDuplicateIdForInputError.md +5 -0
  231. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormEmptyIdAndNameAttributesForInputError.md +5 -0
  232. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md +5 -0
  233. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormInputHasWrongButWellIntendedAutocompleteValueError.md +5 -0
  234. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormInputWithNoLabelError.md +5 -0
  235. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormLabelForMatchesNonExistingIdError.md +5 -0
  236. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormLabelForNameError.md +5 -0
  237. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericFormLabelHasNeitherForNorNestedInputError.md +5 -0
  238. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericNavigationEntryMarkedSkippable.md +7 -0
  239. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/genericResponseWasBlockedByORB.md +4 -0
  240. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/heavyAd.md +10 -0
  241. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/mixedContent.md +5 -0
  242. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/navigatingPartitionedBlobURL.md +5 -0
  243. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
  244. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/propertyRuleInvalidNameIssue.md +3 -0
  245. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/propertyRuleIssue.md +7 -0
  246. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
  247. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
  248. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
  249. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
  250. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
  251. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
  252. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedArrayBuffer.md +7 -0
  253. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +1 -0
  254. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorDictionaryLoadFailure.md +3 -0
  255. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorMatchingDictionaryNotUsed.md +3 -0
  256. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorUnexpectedContentDictionaryHeader.md +1 -0
  257. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorCossOriginNoCorsRequest.md +1 -0
  258. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md +1 -0
  259. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorExpiredResponse.md +3 -0
  260. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorFeatureDisabled.md +3 -0
  261. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInsufficientResources.md +1 -0
  262. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidMatchField.md +1 -0
  263. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidStructuredHeader.md +1 -0
  264. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidTTLField.md +1 -0
  265. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNavigationRequest.md +3 -0
  266. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNoMatchField.md +1 -0
  267. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonIntegerTTLField.md +1 -0
  268. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonListMatchDestField.md +1 -0
  269. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonSecureContext.md +3 -0
  270. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonStringIdField.md +1 -0
  271. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonStringInMatchDestList.md +1 -0
  272. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonStringMatchField.md +1 -0
  273. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNonTokenTypeField.md +1 -0
  274. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorRequestAborted.md +1 -0
  275. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorShuttingDown.md +1 -0
  276. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorTooLongIdField.md +3 -0
  277. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorUnsupportedType.md +3 -0
  278. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriInvalidSignatureHeader.md +14 -0
  279. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriInvalidSignatureInputHeader.md +15 -0
  280. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriMissingSignatureHeader.md +8 -0
  281. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriMissingSignatureInputHeader.md +7 -0
  282. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsIncorrectLength.md +11 -0
  283. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsNotByteSequence.md +14 -0
  284. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsParameterized.md +15 -0
  285. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidComponentName.md +8 -0
  286. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidComponentType.md +13 -0
  287. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidDerivedComponentParameter.md +4 -0
  288. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidHeaderComponentParameter.md +5 -0
  289. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidParameter.md +11 -0
  290. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderKeyIdLength.md +12 -0
  291. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderMissingLabel.md +6 -0
  292. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderMissingRequiredParameters.md +8 -0
  293. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueMissingComponents.md +11 -0
  294. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueNotInnerList.md +11 -0
  295. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedIntegrityMismatch.md +10 -0
  296. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedInvalidLength.md +5 -0
  297. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedSignatureExpired.md +6 -0
  298. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/sriValidationFailedSignatureMismatch.md +11 -0
  299. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/stylesheetLateImport.md +4 -0
  300. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/stylesheetRequestFailed.md +3 -0
  301. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +3 -0
  302. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestLength.md +12 -0
  303. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestType.md +17 -0
  304. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestMalformedDictionary.md +14 -0
  305. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/descriptions/unencodedDigestUnknownAlgorithm.md +15 -0
  306. package/build/node_modules/chrome-devtools-frontend/front_end/models/issues_manager/issues_manager.js +35 -0
  307. package/build/node_modules/chrome-devtools-frontend/front_end/models/source_map_scopes/FunctionCodeResolver.js +192 -0
  308. package/build/node_modules/chrome-devtools-frontend/front_end/models/source_map_scopes/source_map_scopes.js +2 -1
  309. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/Processor.js +4 -4
  310. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/Styles.js +1 -1
  311. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/handlers/SamplesHandler.js +59 -6
  312. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/handlers/ScriptsHandler.js +24 -0
  313. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/helpers/Trace.js +10 -0
  314. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace/types/TraceEvents.js +1 -0
  315. package/build/node_modules/chrome-devtools-frontend/front_end/models/trace_source_maps_resolver/SourceMapsResolver.js +23 -0
  316. package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/IgnoreListManager.js +41 -48
  317. package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/UISourceCode.js +38 -0
  318. package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/WorkspaceImpl.js +5 -8
  319. package/build/node_modules/chrome-devtools-frontend/front_end/models/workspace/workspace-meta.js +34 -0
  320. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/LICENSE +202 -0
  321. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/i18n-impl.js +46 -0
  322. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/i18n.js +6 -0
  323. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/i18n/localized-string-set.js +122 -0
  324. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/LICENSE +33 -0
  325. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/intl-messageformat.js +5 -0
  326. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/index.js +13 -0
  327. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +1725 -0
  328. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/intl-messageformat.iife.js +1840 -0
  329. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/index.js +10 -0
  330. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/src/core.js +233 -0
  331. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/src/error.js +48 -0
  332. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/lib/src/formatters.js +177 -0
  333. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/src/core.js +236 -0
  334. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/src/error.js +51 -0
  335. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/intl-messageformat/package/src/formatters.js +182 -0
  336. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/LICENSE +39 -0
  337. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/marked.js +2 -0
  338. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/bin/main.js +255 -0
  339. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/bin/marked.js +11 -0
  340. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/lib/marked.esm.js +2695 -0
  341. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/lib/marked.js +2233 -0
  342. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/lib/marked.umd.js +2719 -0
  343. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Lexer.js +453 -0
  344. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Parser.js +233 -0
  345. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Renderer.js +137 -0
  346. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Slugger.js +46 -0
  347. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/TextRenderer.js +34 -0
  348. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/Tokenizer.js +683 -0
  349. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/defaults.js +27 -0
  350. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/helpers.js +240 -0
  351. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/marked.js +318 -0
  352. package/build/node_modules/chrome-devtools-frontend/front_end/third_party/marked/package/src/rules.js +243 -0
  353. package/build/node_modules/chrome-devtools-frontend/mcp/HostBindings.js +222 -0
  354. package/build/node_modules/chrome-devtools-frontend/mcp/mcp.js +21 -0
  355. package/build/src/DevToolsConnectionAdapter.js +56 -20
  356. package/build/src/DevtoolsUtils.js +162 -0
  357. package/build/src/McpContext.js +42 -13
  358. package/build/src/McpResponse.js +34 -6
  359. package/build/src/PageCollector.js +131 -23
  360. package/build/src/browser.js +4 -0
  361. package/build/src/cli.js +11 -3
  362. package/build/src/formatters/consoleFormatter.js +84 -3
  363. package/build/src/formatters/snapshotFormatter.js +18 -4
  364. package/build/src/issue-descriptions.js +39 -0
  365. package/build/src/main.js +21 -45
  366. package/build/src/third_party/THIRD_PARTY_NOTICES +1974 -28
  367. package/build/src/third_party/index.js +58935 -19367
  368. package/build/src/tools/console.js +1 -0
  369. package/build/src/tools/emulation.js +29 -6
  370. package/build/src/tools/screenshot.js +4 -2
  371. package/build/src/tools/snapshot.js +1 -1
  372. package/build/src/tools/tools.js +29 -0
  373. package/build/src/utils/keyboard.js +5 -0
  374. package/package.json +7 -7
  375. package/build/node_modules/chrome-devtools-frontend/front_end/core/common/Linkifier.js +0 -34
  376. package/build/node_modules/chrome-devtools-frontend/front_end/core/platform/DOMUtilities.js +0 -122
  377. package/build/node_modules/chrome-devtools-frontend/front_end/core/protocol_client/NodeURL.js +0 -31
@@ -1,6 +1,6 @@
1
1
  Name: core-js
2
2
  URL: https://core-js.io
3
- Version: 3.46.0
3
+ Version: 3.47.0
4
4
  License: MIT
5
5
 
6
6
  Copyright (c) 2014-2025 Denis Pushkarev, 2025 CoreJS Company
@@ -387,6 +387,1952 @@ The above copyright notice and this permission notice shall be included in all c
387
387
  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.
388
388
 
389
389
 
390
+ -------------------- DEPENDENCY DIVIDER --------------------
391
+
392
+ Name: express
393
+ URL: https://expressjs.com/
394
+ Version: 5.2.1
395
+ License: MIT
396
+
397
+ (The MIT License)
398
+
399
+ Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
400
+ Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
401
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
402
+
403
+ Permission is hereby granted, free of charge, to any person obtaining
404
+ a copy of this software and associated documentation files (the
405
+ 'Software'), to deal in the Software without restriction, including
406
+ without limitation the rights to use, copy, modify, merge, publish,
407
+ distribute, sublicense, and/or sell copies of the Software, and to
408
+ permit persons to whom the Software is furnished to do so, subject to
409
+ the following conditions:
410
+
411
+ The above copyright notice and this permission notice shall be
412
+ included in all copies or substantial portions of the Software.
413
+
414
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
415
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
416
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
417
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
418
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
419
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
420
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
421
+
422
+
423
+ -------------------- DEPENDENCY DIVIDER --------------------
424
+
425
+ Name: body-parser
426
+ URL: expressjs/body-parser
427
+ Version: 2.2.1
428
+ License: MIT
429
+
430
+ (The MIT License)
431
+
432
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
433
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
434
+
435
+ Permission is hereby granted, free of charge, to any person obtaining
436
+ a copy of this software and associated documentation files (the
437
+ 'Software'), to deal in the Software without restriction, including
438
+ without limitation the rights to use, copy, modify, merge, publish,
439
+ distribute, sublicense, and/or sell copies of the Software, and to
440
+ permit persons to whom the Software is furnished to do so, subject to
441
+ the following conditions:
442
+
443
+ The above copyright notice and this permission notice shall be
444
+ included in all copies or substantial portions of the Software.
445
+
446
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
447
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
448
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
449
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
450
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
451
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
452
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
453
+
454
+
455
+ -------------------- DEPENDENCY DIVIDER --------------------
456
+
457
+ Name: http-errors
458
+ URL: jshttp/http-errors
459
+ Version: 2.0.0
460
+ License: MIT
461
+
462
+
463
+ The MIT License (MIT)
464
+
465
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
466
+ Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
467
+
468
+ Permission is hereby granted, free of charge, to any person obtaining a copy
469
+ of this software and associated documentation files (the "Software"), to deal
470
+ in the Software without restriction, including without limitation the rights
471
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
472
+ copies of the Software, and to permit persons to whom the Software is
473
+ furnished to do so, subject to the following conditions:
474
+
475
+ The above copyright notice and this permission notice shall be included in
476
+ all copies or substantial portions of the Software.
477
+
478
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
479
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
480
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
481
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
482
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
483
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
484
+ THE SOFTWARE.
485
+
486
+
487
+ -------------------- DEPENDENCY DIVIDER --------------------
488
+
489
+ Name: depd
490
+ URL: dougwilson/nodejs-depd
491
+ Version: 2.0.0
492
+ License: MIT
493
+
494
+ (The MIT License)
495
+
496
+ Copyright (c) 2014-2018 Douglas Christopher Wilson
497
+
498
+ Permission is hereby granted, free of charge, to any person obtaining
499
+ a copy of this software and associated documentation files (the
500
+ 'Software'), to deal in the Software without restriction, including
501
+ without limitation the rights to use, copy, modify, merge, publish,
502
+ distribute, sublicense, and/or sell copies of the Software, and to
503
+ permit persons to whom the Software is furnished to do so, subject to
504
+ the following conditions:
505
+
506
+ The above copyright notice and this permission notice shall be
507
+ included in all copies or substantial portions of the Software.
508
+
509
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
510
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
511
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
512
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
513
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
514
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
515
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
516
+
517
+
518
+ -------------------- DEPENDENCY DIVIDER --------------------
519
+
520
+ Name: setprototypeof
521
+ URL: https://github.com/wesleytodd/setprototypeof
522
+ Version: 1.2.0
523
+ License: ISC
524
+
525
+ Copyright (c) 2015, Wes Todd
526
+
527
+ Permission to use, copy, modify, and/or distribute this software for any
528
+ purpose with or without fee is hereby granted, provided that the above
529
+ copyright notice and this permission notice appear in all copies.
530
+
531
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
532
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
533
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
534
+ SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
535
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
536
+ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
537
+ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
538
+
539
+
540
+ -------------------- DEPENDENCY DIVIDER --------------------
541
+
542
+ Name: statuses
543
+ URL: jshttp/statuses
544
+ Version: 2.0.1
545
+ License: MIT
546
+
547
+
548
+ The MIT License (MIT)
549
+
550
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
551
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
552
+
553
+ Permission is hereby granted, free of charge, to any person obtaining a copy
554
+ of this software and associated documentation files (the "Software"), to deal
555
+ in the Software without restriction, including without limitation the rights
556
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
557
+ copies of the Software, and to permit persons to whom the Software is
558
+ furnished to do so, subject to the following conditions:
559
+
560
+ The above copyright notice and this permission notice shall be included in
561
+ all copies or substantial portions of the Software.
562
+
563
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
564
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
565
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
566
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
567
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
568
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
569
+ THE SOFTWARE.
570
+
571
+
572
+ -------------------- DEPENDENCY DIVIDER --------------------
573
+
574
+ Name: inherits
575
+ URL: git://github.com/isaacs/inherits
576
+ Version: 2.0.4
577
+ License: ISC
578
+
579
+ The ISC License
580
+
581
+ Copyright (c) Isaac Z. Schlueter
582
+
583
+ Permission to use, copy, modify, and/or distribute this software for any
584
+ purpose with or without fee is hereby granted, provided that the above
585
+ copyright notice and this permission notice appear in all copies.
586
+
587
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
588
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
589
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
590
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
591
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
592
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
593
+ PERFORMANCE OF THIS SOFTWARE.
594
+
595
+
596
+
597
+ -------------------- DEPENDENCY DIVIDER --------------------
598
+
599
+ Name: toidentifier
600
+ URL: component/toidentifier
601
+ Version: 1.0.1
602
+ License: MIT
603
+
604
+ MIT License
605
+
606
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
607
+
608
+ Permission is hereby granted, free of charge, to any person obtaining a copy
609
+ of this software and associated documentation files (the "Software"), to deal
610
+ in the Software without restriction, including without limitation the rights
611
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
612
+ copies of the Software, and to permit persons to whom the Software is
613
+ furnished to do so, subject to the following conditions:
614
+
615
+ The above copyright notice and this permission notice shall be included in all
616
+ copies or substantial portions of the Software.
617
+
618
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
619
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
620
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
621
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
622
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
623
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
624
+ SOFTWARE.
625
+
626
+
627
+ -------------------- DEPENDENCY DIVIDER --------------------
628
+
629
+ Name: bytes
630
+ URL: visionmedia/bytes.js
631
+ Version: 3.1.2
632
+ License: MIT
633
+
634
+ (The MIT License)
635
+
636
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
637
+ Copyright (c) 2015 Jed Watson <jed.watson@me.com>
638
+
639
+ Permission is hereby granted, free of charge, to any person obtaining
640
+ a copy of this software and associated documentation files (the
641
+ 'Software'), to deal in the Software without restriction, including
642
+ without limitation the rights to use, copy, modify, merge, publish,
643
+ distribute, sublicense, and/or sell copies of the Software, and to
644
+ permit persons to whom the Software is furnished to do so, subject to
645
+ the following conditions:
646
+
647
+ The above copyright notice and this permission notice shall be
648
+ included in all copies or substantial portions of the Software.
649
+
650
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
651
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
652
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
653
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
654
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
655
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
656
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
657
+
658
+
659
+ -------------------- DEPENDENCY DIVIDER --------------------
660
+
661
+ Name: iconv-lite
662
+ URL: https://github.com/pillarjs/iconv-lite
663
+ Version: 0.7.0
664
+ License: MIT
665
+
666
+ Copyright (c) 2011 Alexander Shtuchkin
667
+
668
+ Permission is hereby granted, free of charge, to any person obtaining
669
+ a copy of this software and associated documentation files (the
670
+ "Software"), to deal in the Software without restriction, including
671
+ without limitation the rights to use, copy, modify, merge, publish,
672
+ distribute, sublicense, and/or sell copies of the Software, and to
673
+ permit persons to whom the Software is furnished to do so, subject to
674
+ the following conditions:
675
+
676
+ The above copyright notice and this permission notice shall be
677
+ included in all copies or substantial portions of the Software.
678
+
679
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
680
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
681
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
682
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
683
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
684
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
685
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
686
+
687
+
688
+
689
+ -------------------- DEPENDENCY DIVIDER --------------------
690
+
691
+ Name: safer-buffer
692
+ URL: git+https://github.com/ChALkeR/safer-buffer.git
693
+ Version: 2.1.2
694
+ License: MIT
695
+
696
+ MIT License
697
+
698
+ Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
699
+
700
+ Permission is hereby granted, free of charge, to any person obtaining a copy
701
+ of this software and associated documentation files (the "Software"), to deal
702
+ in the Software without restriction, including without limitation the rights
703
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
704
+ copies of the Software, and to permit persons to whom the Software is
705
+ furnished to do so, subject to the following conditions:
706
+
707
+ The above copyright notice and this permission notice shall be included in all
708
+ copies or substantial portions of the Software.
709
+
710
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
711
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
712
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
713
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
714
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
715
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
716
+ SOFTWARE.
717
+
718
+
719
+ -------------------- DEPENDENCY DIVIDER --------------------
720
+
721
+ Name: unpipe
722
+ URL: stream-utils/unpipe
723
+ Version: 1.0.0
724
+ License: MIT
725
+
726
+ (The MIT License)
727
+
728
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
729
+
730
+ Permission is hereby granted, free of charge, to any person obtaining
731
+ a copy of this software and associated documentation files (the
732
+ 'Software'), to deal in the Software without restriction, including
733
+ without limitation the rights to use, copy, modify, merge, publish,
734
+ distribute, sublicense, and/or sell copies of the Software, and to
735
+ permit persons to whom the Software is furnished to do so, subject to
736
+ the following conditions:
737
+
738
+ The above copyright notice and this permission notice shall be
739
+ included in all copies or substantial portions of the Software.
740
+
741
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
742
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
743
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
744
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
745
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
746
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
747
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
748
+
749
+
750
+ -------------------- DEPENDENCY DIVIDER --------------------
751
+
752
+ Name: raw-body
753
+ URL: stream-utils/raw-body
754
+ Version: 3.0.1
755
+ License: MIT
756
+
757
+ The MIT License (MIT)
758
+
759
+ Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
760
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
761
+
762
+ Permission is hereby granted, free of charge, to any person obtaining a copy
763
+ of this software and associated documentation files (the "Software"), to deal
764
+ in the Software without restriction, including without limitation the rights
765
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
766
+ copies of the Software, and to permit persons to whom the Software is
767
+ furnished to do so, subject to the following conditions:
768
+
769
+ The above copyright notice and this permission notice shall be included in
770
+ all copies or substantial portions of the Software.
771
+
772
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
773
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
774
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
775
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
776
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
777
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
778
+ THE SOFTWARE.
779
+
780
+
781
+ -------------------- DEPENDENCY DIVIDER --------------------
782
+
783
+ Name: on-finished
784
+ URL: jshttp/on-finished
785
+ Version: 2.4.1
786
+ License: MIT
787
+
788
+ (The MIT License)
789
+
790
+ Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
791
+ Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
792
+
793
+ Permission is hereby granted, free of charge, to any person obtaining
794
+ a copy of this software and associated documentation files (the
795
+ 'Software'), to deal in the Software without restriction, including
796
+ without limitation the rights to use, copy, modify, merge, publish,
797
+ distribute, sublicense, and/or sell copies of the Software, and to
798
+ permit persons to whom the Software is furnished to do so, subject to
799
+ the following conditions:
800
+
801
+ The above copyright notice and this permission notice shall be
802
+ included in all copies or substantial portions of the Software.
803
+
804
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
805
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
806
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
807
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
808
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
809
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
810
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
811
+
812
+
813
+ -------------------- DEPENDENCY DIVIDER --------------------
814
+
815
+ Name: ee-first
816
+ URL: jonathanong/ee-first
817
+ Version: 1.1.1
818
+ License: MIT
819
+
820
+
821
+ The MIT License (MIT)
822
+
823
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
824
+
825
+ Permission is hereby granted, free of charge, to any person obtaining a copy
826
+ of this software and associated documentation files (the "Software"), to deal
827
+ in the Software without restriction, including without limitation the rights
828
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
829
+ copies of the Software, and to permit persons to whom the Software is
830
+ furnished to do so, subject to the following conditions:
831
+
832
+ The above copyright notice and this permission notice shall be included in
833
+ all copies or substantial portions of the Software.
834
+
835
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
836
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
837
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
838
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
839
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
840
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
841
+ THE SOFTWARE.
842
+
843
+
844
+ -------------------- DEPENDENCY DIVIDER --------------------
845
+
846
+ Name: type-is
847
+ URL: jshttp/type-is
848
+ Version: 2.0.1
849
+ License: MIT
850
+
851
+ (The MIT License)
852
+
853
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
854
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
855
+
856
+ Permission is hereby granted, free of charge, to any person obtaining
857
+ a copy of this software and associated documentation files (the
858
+ 'Software'), to deal in the Software without restriction, including
859
+ without limitation the rights to use, copy, modify, merge, publish,
860
+ distribute, sublicense, and/or sell copies of the Software, and to
861
+ permit persons to whom the Software is furnished to do so, subject to
862
+ the following conditions:
863
+
864
+ The above copyright notice and this permission notice shall be
865
+ included in all copies or substantial portions of the Software.
866
+
867
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
868
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
869
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
870
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
871
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
872
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
873
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
874
+
875
+
876
+ -------------------- DEPENDENCY DIVIDER --------------------
877
+
878
+ Name: content-type
879
+ URL: jshttp/content-type
880
+ Version: 1.0.5
881
+ License: MIT
882
+
883
+ (The MIT License)
884
+
885
+ Copyright (c) 2015 Douglas Christopher Wilson
886
+
887
+ Permission is hereby granted, free of charge, to any person obtaining
888
+ a copy of this software and associated documentation files (the
889
+ 'Software'), to deal in the Software without restriction, including
890
+ without limitation the rights to use, copy, modify, merge, publish,
891
+ distribute, sublicense, and/or sell copies of the Software, and to
892
+ permit persons to whom the Software is furnished to do so, subject to
893
+ the following conditions:
894
+
895
+ The above copyright notice and this permission notice shall be
896
+ included in all copies or substantial portions of the Software.
897
+
898
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
899
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
900
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
901
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
902
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
903
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
904
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
905
+
906
+
907
+ -------------------- DEPENDENCY DIVIDER --------------------
908
+
909
+ Name: mime-types
910
+ URL: jshttp/mime-types
911
+ Version: 3.0.1
912
+ License: MIT
913
+
914
+ (The MIT License)
915
+
916
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
917
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
918
+
919
+ Permission is hereby granted, free of charge, to any person obtaining
920
+ a copy of this software and associated documentation files (the
921
+ 'Software'), to deal in the Software without restriction, including
922
+ without limitation the rights to use, copy, modify, merge, publish,
923
+ distribute, sublicense, and/or sell copies of the Software, and to
924
+ permit persons to whom the Software is furnished to do so, subject to
925
+ the following conditions:
926
+
927
+ The above copyright notice and this permission notice shall be
928
+ included in all copies or substantial portions of the Software.
929
+
930
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
931
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
932
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
933
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
934
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
935
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
936
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
937
+
938
+
939
+ -------------------- DEPENDENCY DIVIDER --------------------
940
+
941
+ Name: mime-db
942
+ URL: jshttp/mime-db
943
+ Version: 1.54.0
944
+ License: MIT
945
+
946
+ (The MIT License)
947
+
948
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
949
+ Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
950
+
951
+ Permission is hereby granted, free of charge, to any person obtaining
952
+ a copy of this software and associated documentation files (the
953
+ 'Software'), to deal in the Software without restriction, including
954
+ without limitation the rights to use, copy, modify, merge, publish,
955
+ distribute, sublicense, and/or sell copies of the Software, and to
956
+ permit persons to whom the Software is furnished to do so, subject to
957
+ the following conditions:
958
+
959
+ The above copyright notice and this permission notice shall be
960
+ included in all copies or substantial portions of the Software.
961
+
962
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
963
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
964
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
965
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
966
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
967
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
968
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
969
+
970
+
971
+ -------------------- DEPENDENCY DIVIDER --------------------
972
+
973
+ Name: media-typer
974
+ URL: jshttp/media-typer
975
+ Version: 1.1.0
976
+ License: MIT
977
+
978
+ (The MIT License)
979
+
980
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
981
+
982
+ Permission is hereby granted, free of charge, to any person obtaining
983
+ a copy of this software and associated documentation files (the
984
+ 'Software'), to deal in the Software without restriction, including
985
+ without limitation the rights to use, copy, modify, merge, publish,
986
+ distribute, sublicense, and/or sell copies of the Software, and to
987
+ permit persons to whom the Software is furnished to do so, subject to
988
+ the following conditions:
989
+
990
+ The above copyright notice and this permission notice shall be
991
+ included in all copies or substantial portions of the Software.
992
+
993
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
994
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
995
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
996
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
997
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
998
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
999
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1000
+
1001
+
1002
+ -------------------- DEPENDENCY DIVIDER --------------------
1003
+
1004
+ Name: es-errors
1005
+ URL: https://github.com/ljharb/es-errors#readme
1006
+ Version: 1.3.0
1007
+ License: MIT
1008
+
1009
+ MIT License
1010
+
1011
+ Copyright (c) 2024 Jordan Harband
1012
+
1013
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1014
+ of this software and associated documentation files (the "Software"), to deal
1015
+ in the Software without restriction, including without limitation the rights
1016
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1017
+ copies of the Software, and to permit persons to whom the Software is
1018
+ furnished to do so, subject to the following conditions:
1019
+
1020
+ The above copyright notice and this permission notice shall be included in all
1021
+ copies or substantial portions of the Software.
1022
+
1023
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1024
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1025
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1026
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1027
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1028
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1029
+ SOFTWARE.
1030
+
1031
+
1032
+ -------------------- DEPENDENCY DIVIDER --------------------
1033
+
1034
+ Name: object-inspect
1035
+ URL: https://github.com/inspect-js/object-inspect
1036
+ Version: 1.13.4
1037
+ License: MIT
1038
+
1039
+ MIT License
1040
+
1041
+ Copyright (c) 2013 James Halliday
1042
+
1043
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1044
+ of this software and associated documentation files (the "Software"), to deal
1045
+ in the Software without restriction, including without limitation the rights
1046
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1047
+ copies of the Software, and to permit persons to whom the Software is
1048
+ furnished to do so, subject to the following conditions:
1049
+
1050
+ The above copyright notice and this permission notice shall be included in all
1051
+ copies or substantial portions of the Software.
1052
+
1053
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1054
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1055
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1056
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1057
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1058
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1059
+ SOFTWARE.
1060
+
1061
+
1062
+ -------------------- DEPENDENCY DIVIDER --------------------
1063
+
1064
+ Name: side-channel-list
1065
+ URL: https://github.com/ljharb/side-channel-list#readme
1066
+ Version: 1.0.0
1067
+ License: MIT
1068
+
1069
+ MIT License
1070
+
1071
+ Copyright (c) 2024 Jordan Harband
1072
+
1073
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1074
+ of this software and associated documentation files (the "Software"), to deal
1075
+ in the Software without restriction, including without limitation the rights
1076
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1077
+ copies of the Software, and to permit persons to whom the Software is
1078
+ furnished to do so, subject to the following conditions:
1079
+
1080
+ The above copyright notice and this permission notice shall be included in all
1081
+ copies or substantial portions of the Software.
1082
+
1083
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1084
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1085
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1086
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1087
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1088
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1089
+ SOFTWARE.
1090
+
1091
+
1092
+ -------------------- DEPENDENCY DIVIDER --------------------
1093
+
1094
+ Name: es-object-atoms
1095
+ URL: https://github.com/ljharb/es-object-atoms#readme
1096
+ Version: 1.1.1
1097
+ License: MIT
1098
+
1099
+ MIT License
1100
+
1101
+ Copyright (c) 2024 Jordan Harband
1102
+
1103
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1104
+ of this software and associated documentation files (the "Software"), to deal
1105
+ in the Software without restriction, including without limitation the rights
1106
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1107
+ copies of the Software, and to permit persons to whom the Software is
1108
+ furnished to do so, subject to the following conditions:
1109
+
1110
+ The above copyright notice and this permission notice shall be included in all
1111
+ copies or substantial portions of the Software.
1112
+
1113
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1114
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1115
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1116
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1117
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1118
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1119
+ SOFTWARE.
1120
+
1121
+
1122
+ -------------------- DEPENDENCY DIVIDER --------------------
1123
+
1124
+ Name: math-intrinsics
1125
+ URL: https://github.com/es-shims/math-intrinsics#readme
1126
+ Version: 1.1.0
1127
+ License: MIT
1128
+
1129
+ MIT License
1130
+
1131
+ Copyright (c) 2024 ECMAScript Shims
1132
+
1133
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1134
+ of this software and associated documentation files (the "Software"), to deal
1135
+ in the Software without restriction, including without limitation the rights
1136
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1137
+ copies of the Software, and to permit persons to whom the Software is
1138
+ furnished to do so, subject to the following conditions:
1139
+
1140
+ The above copyright notice and this permission notice shall be included in all
1141
+ copies or substantial portions of the Software.
1142
+
1143
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1144
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1145
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1146
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1147
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1148
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1149
+ SOFTWARE.
1150
+
1151
+
1152
+ -------------------- DEPENDENCY DIVIDER --------------------
1153
+
1154
+ Name: gopd
1155
+ URL: https://github.com/ljharb/gopd#readme
1156
+ Version: 1.2.0
1157
+ License: MIT
1158
+
1159
+ MIT License
1160
+
1161
+ Copyright (c) 2022 Jordan Harband
1162
+
1163
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1164
+ of this software and associated documentation files (the "Software"), to deal
1165
+ in the Software without restriction, including without limitation the rights
1166
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1167
+ copies of the Software, and to permit persons to whom the Software is
1168
+ furnished to do so, subject to the following conditions:
1169
+
1170
+ The above copyright notice and this permission notice shall be included in all
1171
+ copies or substantial portions of the Software.
1172
+
1173
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1174
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1175
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1176
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1177
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1178
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1179
+ SOFTWARE.
1180
+
1181
+
1182
+ -------------------- DEPENDENCY DIVIDER --------------------
1183
+
1184
+ Name: es-define-property
1185
+ URL: https://github.com/ljharb/es-define-property#readme
1186
+ Version: 1.0.1
1187
+ License: MIT
1188
+
1189
+ MIT License
1190
+
1191
+ Copyright (c) 2024 Jordan Harband
1192
+
1193
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1194
+ of this software and associated documentation files (the "Software"), to deal
1195
+ in the Software without restriction, including without limitation the rights
1196
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1197
+ copies of the Software, and to permit persons to whom the Software is
1198
+ furnished to do so, subject to the following conditions:
1199
+
1200
+ The above copyright notice and this permission notice shall be included in all
1201
+ copies or substantial portions of the Software.
1202
+
1203
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1204
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1205
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1206
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1207
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1208
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1209
+ SOFTWARE.
1210
+
1211
+
1212
+ -------------------- DEPENDENCY DIVIDER --------------------
1213
+
1214
+ Name: has-symbols
1215
+ URL: https://github.com/ljharb/has-symbols#readme
1216
+ Version: 1.1.0
1217
+ License: MIT
1218
+
1219
+ MIT License
1220
+
1221
+ Copyright (c) 2016 Jordan Harband
1222
+
1223
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1224
+ of this software and associated documentation files (the "Software"), to deal
1225
+ in the Software without restriction, including without limitation the rights
1226
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1227
+ copies of the Software, and to permit persons to whom the Software is
1228
+ furnished to do so, subject to the following conditions:
1229
+
1230
+ The above copyright notice and this permission notice shall be included in all
1231
+ copies or substantial portions of the Software.
1232
+
1233
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1234
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1235
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1236
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1237
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1238
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1239
+ SOFTWARE.
1240
+
1241
+
1242
+ -------------------- DEPENDENCY DIVIDER --------------------
1243
+
1244
+ Name: get-proto
1245
+ URL: https://github.com/ljharb/get-proto#readme
1246
+ Version: 1.0.1
1247
+ License: MIT
1248
+
1249
+ MIT License
1250
+
1251
+ Copyright (c) 2025 Jordan Harband
1252
+
1253
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1254
+ of this software and associated documentation files (the "Software"), to deal
1255
+ in the Software without restriction, including without limitation the rights
1256
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1257
+ copies of the Software, and to permit persons to whom the Software is
1258
+ furnished to do so, subject to the following conditions:
1259
+
1260
+ The above copyright notice and this permission notice shall be included in all
1261
+ copies or substantial portions of the Software.
1262
+
1263
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1264
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1265
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1266
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1267
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1268
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1269
+ SOFTWARE.
1270
+
1271
+
1272
+ -------------------- DEPENDENCY DIVIDER --------------------
1273
+
1274
+ Name: function-bind
1275
+ URL: https://github.com/Raynos/function-bind
1276
+ Version: 1.1.2
1277
+ License: MIT
1278
+
1279
+ Copyright (c) 2013 Raynos.
1280
+
1281
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1282
+ of this software and associated documentation files (the "Software"), to deal
1283
+ in the Software without restriction, including without limitation the rights
1284
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1285
+ copies of the Software, and to permit persons to whom the Software is
1286
+ furnished to do so, subject to the following conditions:
1287
+
1288
+ The above copyright notice and this permission notice shall be included in
1289
+ all copies or substantial portions of the Software.
1290
+
1291
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1292
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1293
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1294
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1295
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1296
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1297
+ THE SOFTWARE.
1298
+
1299
+
1300
+
1301
+ -------------------- DEPENDENCY DIVIDER --------------------
1302
+
1303
+ Name: call-bind-apply-helpers
1304
+ URL: https://github.com/ljharb/call-bind-apply-helpers#readme
1305
+ Version: 1.0.2
1306
+ License: MIT
1307
+
1308
+ MIT License
1309
+
1310
+ Copyright (c) 2024 Jordan Harband
1311
+
1312
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1313
+ of this software and associated documentation files (the "Software"), to deal
1314
+ in the Software without restriction, including without limitation the rights
1315
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1316
+ copies of the Software, and to permit persons to whom the Software is
1317
+ furnished to do so, subject to the following conditions:
1318
+
1319
+ The above copyright notice and this permission notice shall be included in all
1320
+ copies or substantial portions of the Software.
1321
+
1322
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1323
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1324
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1325
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1326
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1327
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1328
+ SOFTWARE.
1329
+
1330
+
1331
+ -------------------- DEPENDENCY DIVIDER --------------------
1332
+
1333
+ Name: dunder-proto
1334
+ URL: https://github.com/es-shims/dunder-proto#readme
1335
+ Version: 1.0.1
1336
+ License: MIT
1337
+
1338
+ MIT License
1339
+
1340
+ Copyright (c) 2024 ECMAScript Shims
1341
+
1342
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1343
+ of this software and associated documentation files (the "Software"), to deal
1344
+ in the Software without restriction, including without limitation the rights
1345
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1346
+ copies of the Software, and to permit persons to whom the Software is
1347
+ furnished to do so, subject to the following conditions:
1348
+
1349
+ The above copyright notice and this permission notice shall be included in all
1350
+ copies or substantial portions of the Software.
1351
+
1352
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1353
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1354
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1355
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1356
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1357
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1358
+ SOFTWARE.
1359
+
1360
+
1361
+ -------------------- DEPENDENCY DIVIDER --------------------
1362
+
1363
+ Name: hasown
1364
+ URL: https://github.com/inspect-js/hasOwn#readme
1365
+ Version: 2.0.2
1366
+ License: MIT
1367
+
1368
+ MIT License
1369
+
1370
+ Copyright (c) Jordan Harband and contributors
1371
+
1372
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1373
+ of this software and associated documentation files (the "Software"), to deal
1374
+ in the Software without restriction, including without limitation the rights
1375
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1376
+ copies of the Software, and to permit persons to whom the Software is
1377
+ furnished to do so, subject to the following conditions:
1378
+
1379
+ The above copyright notice and this permission notice shall be included in all
1380
+ copies or substantial portions of the Software.
1381
+
1382
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1383
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1384
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1385
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1386
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1387
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1388
+ SOFTWARE.
1389
+
1390
+
1391
+ -------------------- DEPENDENCY DIVIDER --------------------
1392
+
1393
+ Name: get-intrinsic
1394
+ URL: https://github.com/ljharb/get-intrinsic#readme
1395
+ Version: 1.3.0
1396
+ License: MIT
1397
+
1398
+ MIT License
1399
+
1400
+ Copyright (c) 2020 Jordan Harband
1401
+
1402
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1403
+ of this software and associated documentation files (the "Software"), to deal
1404
+ in the Software without restriction, including without limitation the rights
1405
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1406
+ copies of the Software, and to permit persons to whom the Software is
1407
+ furnished to do so, subject to the following conditions:
1408
+
1409
+ The above copyright notice and this permission notice shall be included in all
1410
+ copies or substantial portions of the Software.
1411
+
1412
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1413
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1414
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1415
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1416
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1417
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1418
+ SOFTWARE.
1419
+
1420
+
1421
+ -------------------- DEPENDENCY DIVIDER --------------------
1422
+
1423
+ Name: call-bound
1424
+ URL: https://github.com/ljharb/call-bound#readme
1425
+ Version: 1.0.4
1426
+ License: MIT
1427
+
1428
+ MIT License
1429
+
1430
+ Copyright (c) 2024 Jordan Harband
1431
+
1432
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1433
+ of this software and associated documentation files (the "Software"), to deal
1434
+ in the Software without restriction, including without limitation the rights
1435
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1436
+ copies of the Software, and to permit persons to whom the Software is
1437
+ furnished to do so, subject to the following conditions:
1438
+
1439
+ The above copyright notice and this permission notice shall be included in all
1440
+ copies or substantial portions of the Software.
1441
+
1442
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1443
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1444
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1445
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1446
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1447
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1448
+ SOFTWARE.
1449
+
1450
+
1451
+ -------------------- DEPENDENCY DIVIDER --------------------
1452
+
1453
+ Name: side-channel-map
1454
+ URL: https://github.com/ljharb/side-channel-map#readme
1455
+ Version: 1.0.1
1456
+ License: MIT
1457
+
1458
+ MIT License
1459
+
1460
+ Copyright (c) 2024 Jordan Harband
1461
+
1462
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1463
+ of this software and associated documentation files (the "Software"), to deal
1464
+ in the Software without restriction, including without limitation the rights
1465
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1466
+ copies of the Software, and to permit persons to whom the Software is
1467
+ furnished to do so, subject to the following conditions:
1468
+
1469
+ The above copyright notice and this permission notice shall be included in all
1470
+ copies or substantial portions of the Software.
1471
+
1472
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1473
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1474
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1475
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1476
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1477
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1478
+ SOFTWARE.
1479
+
1480
+
1481
+ -------------------- DEPENDENCY DIVIDER --------------------
1482
+
1483
+ Name: side-channel-weakmap
1484
+ URL: https://github.com/ljharb/side-channel-weakmap#readme
1485
+ Version: 1.0.2
1486
+ License: MIT
1487
+
1488
+ MIT License
1489
+
1490
+ Copyright (c) 2019 Jordan Harband
1491
+
1492
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1493
+ of this software and associated documentation files (the "Software"), to deal
1494
+ in the Software without restriction, including without limitation the rights
1495
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1496
+ copies of the Software, and to permit persons to whom the Software is
1497
+ furnished to do so, subject to the following conditions:
1498
+
1499
+ The above copyright notice and this permission notice shall be included in all
1500
+ copies or substantial portions of the Software.
1501
+
1502
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1503
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1504
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1505
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1506
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1507
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1508
+ SOFTWARE.
1509
+
1510
+
1511
+ -------------------- DEPENDENCY DIVIDER --------------------
1512
+
1513
+ Name: side-channel
1514
+ URL: https://github.com/ljharb/side-channel#readme
1515
+ Version: 1.1.0
1516
+ License: MIT
1517
+
1518
+ MIT License
1519
+
1520
+ Copyright (c) 2019 Jordan Harband
1521
+
1522
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1523
+ of this software and associated documentation files (the "Software"), to deal
1524
+ in the Software without restriction, including without limitation the rights
1525
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1526
+ copies of the Software, and to permit persons to whom the Software is
1527
+ furnished to do so, subject to the following conditions:
1528
+
1529
+ The above copyright notice and this permission notice shall be included in all
1530
+ copies or substantial portions of the Software.
1531
+
1532
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1533
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1534
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1535
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1536
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1537
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1538
+ SOFTWARE.
1539
+
1540
+
1541
+ -------------------- DEPENDENCY DIVIDER --------------------
1542
+
1543
+ Name: qs
1544
+ URL: https://github.com/ljharb/qs
1545
+ Version: 6.14.0
1546
+ License: BSD-3-Clause
1547
+
1548
+ BSD 3-Clause License
1549
+
1550
+ Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
1551
+ All rights reserved.
1552
+
1553
+ Redistribution and use in source and binary forms, with or without
1554
+ modification, are permitted provided that the following conditions are met:
1555
+
1556
+ 1. Redistributions of source code must retain the above copyright notice, this
1557
+ list of conditions and the following disclaimer.
1558
+
1559
+ 2. Redistributions in binary form must reproduce the above copyright notice,
1560
+ this list of conditions and the following disclaimer in the documentation
1561
+ and/or other materials provided with the distribution.
1562
+
1563
+ 3. Neither the name of the copyright holder nor the names of its
1564
+ contributors may be used to endorse or promote products derived from
1565
+ this software without specific prior written permission.
1566
+
1567
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1568
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1569
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1570
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1571
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1572
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1573
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1574
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1575
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1576
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1577
+
1578
+
1579
+ -------------------- DEPENDENCY DIVIDER --------------------
1580
+
1581
+ Name: merge-descriptors
1582
+ URL: sindresorhus/merge-descriptors
1583
+ Version: 2.0.0
1584
+ License: MIT
1585
+
1586
+ MIT License
1587
+
1588
+ Copyright (c) Jonathan Ong <me@jongleberry.com>
1589
+ Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
1590
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1591
+
1592
+ 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:
1593
+
1594
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1595
+
1596
+ 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.
1597
+
1598
+
1599
+ -------------------- DEPENDENCY DIVIDER --------------------
1600
+
1601
+ Name: encodeurl
1602
+ URL: pillarjs/encodeurl
1603
+ Version: 2.0.0
1604
+ License: MIT
1605
+
1606
+ (The MIT License)
1607
+
1608
+ Copyright (c) 2016 Douglas Christopher Wilson
1609
+
1610
+ Permission is hereby granted, free of charge, to any person obtaining
1611
+ a copy of this software and associated documentation files (the
1612
+ 'Software'), to deal in the Software without restriction, including
1613
+ without limitation the rights to use, copy, modify, merge, publish,
1614
+ distribute, sublicense, and/or sell copies of the Software, and to
1615
+ permit persons to whom the Software is furnished to do so, subject to
1616
+ the following conditions:
1617
+
1618
+ The above copyright notice and this permission notice shall be
1619
+ included in all copies or substantial portions of the Software.
1620
+
1621
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1622
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1623
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1624
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1625
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1626
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1627
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1628
+
1629
+
1630
+ -------------------- DEPENDENCY DIVIDER --------------------
1631
+
1632
+ Name: escape-html
1633
+ URL: component/escape-html
1634
+ Version: 1.0.3
1635
+ License: MIT
1636
+
1637
+ (The MIT License)
1638
+
1639
+ Copyright (c) 2012-2013 TJ Holowaychuk
1640
+ Copyright (c) 2015 Andreas Lubbe
1641
+ Copyright (c) 2015 Tiancheng "Timothy" Gu
1642
+
1643
+ Permission is hereby granted, free of charge, to any person obtaining
1644
+ a copy of this software and associated documentation files (the
1645
+ 'Software'), to deal in the Software without restriction, including
1646
+ without limitation the rights to use, copy, modify, merge, publish,
1647
+ distribute, sublicense, and/or sell copies of the Software, and to
1648
+ permit persons to whom the Software is furnished to do so, subject to
1649
+ the following conditions:
1650
+
1651
+ The above copyright notice and this permission notice shall be
1652
+ included in all copies or substantial portions of the Software.
1653
+
1654
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1655
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1656
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1657
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1658
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1659
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1660
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1661
+
1662
+
1663
+ -------------------- DEPENDENCY DIVIDER --------------------
1664
+
1665
+ Name: parseurl
1666
+ URL: pillarjs/parseurl
1667
+ Version: 1.3.3
1668
+ License: MIT
1669
+
1670
+
1671
+ (The MIT License)
1672
+
1673
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
1674
+ Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
1675
+
1676
+ Permission is hereby granted, free of charge, to any person obtaining
1677
+ a copy of this software and associated documentation files (the
1678
+ 'Software'), to deal in the Software without restriction, including
1679
+ without limitation the rights to use, copy, modify, merge, publish,
1680
+ distribute, sublicense, and/or sell copies of the Software, and to
1681
+ permit persons to whom the Software is furnished to do so, subject to
1682
+ the following conditions:
1683
+
1684
+ The above copyright notice and this permission notice shall be
1685
+ included in all copies or substantial portions of the Software.
1686
+
1687
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1688
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1689
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1690
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1691
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1692
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1693
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1694
+
1695
+
1696
+ -------------------- DEPENDENCY DIVIDER --------------------
1697
+
1698
+ Name: finalhandler
1699
+ URL: pillarjs/finalhandler
1700
+ Version: 2.1.0
1701
+ License: MIT
1702
+
1703
+ (The MIT License)
1704
+
1705
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
1706
+
1707
+ Permission is hereby granted, free of charge, to any person obtaining
1708
+ a copy of this software and associated documentation files (the
1709
+ 'Software'), to deal in the Software without restriction, including
1710
+ without limitation the rights to use, copy, modify, merge, publish,
1711
+ distribute, sublicense, and/or sell copies of the Software, and to
1712
+ permit persons to whom the Software is furnished to do so, subject to
1713
+ the following conditions:
1714
+
1715
+ The above copyright notice and this permission notice shall be
1716
+ included in all copies or substantial portions of the Software.
1717
+
1718
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1719
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1720
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1721
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1722
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1723
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1724
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1725
+
1726
+
1727
+ -------------------- DEPENDENCY DIVIDER --------------------
1728
+
1729
+ Name: etag
1730
+ URL: jshttp/etag
1731
+ Version: 1.8.1
1732
+ License: MIT
1733
+
1734
+ (The MIT License)
1735
+
1736
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
1737
+
1738
+ Permission is hereby granted, free of charge, to any person obtaining
1739
+ a copy of this software and associated documentation files (the
1740
+ 'Software'), to deal in the Software without restriction, including
1741
+ without limitation the rights to use, copy, modify, merge, publish,
1742
+ distribute, sublicense, and/or sell copies of the Software, and to
1743
+ permit persons to whom the Software is furnished to do so, subject to
1744
+ the following conditions:
1745
+
1746
+ The above copyright notice and this permission notice shall be
1747
+ included in all copies or substantial portions of the Software.
1748
+
1749
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1750
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1751
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1752
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1753
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1754
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1755
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1756
+
1757
+
1758
+ -------------------- DEPENDENCY DIVIDER --------------------
1759
+
1760
+ Name: proxy-addr
1761
+ URL: jshttp/proxy-addr
1762
+ Version: 2.0.7
1763
+ License: MIT
1764
+
1765
+ (The MIT License)
1766
+
1767
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
1768
+
1769
+ Permission is hereby granted, free of charge, to any person obtaining
1770
+ a copy of this software and associated documentation files (the
1771
+ 'Software'), to deal in the Software without restriction, including
1772
+ without limitation the rights to use, copy, modify, merge, publish,
1773
+ distribute, sublicense, and/or sell copies of the Software, and to
1774
+ permit persons to whom the Software is furnished to do so, subject to
1775
+ the following conditions:
1776
+
1777
+ The above copyright notice and this permission notice shall be
1778
+ included in all copies or substantial portions of the Software.
1779
+
1780
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1781
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1782
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1783
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1784
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1785
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1786
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1787
+
1788
+
1789
+ -------------------- DEPENDENCY DIVIDER --------------------
1790
+
1791
+ Name: forwarded
1792
+ URL: jshttp/forwarded
1793
+ Version: 0.2.0
1794
+ License: MIT
1795
+
1796
+ (The MIT License)
1797
+
1798
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
1799
+
1800
+ Permission is hereby granted, free of charge, to any person obtaining
1801
+ a copy of this software and associated documentation files (the
1802
+ 'Software'), to deal in the Software without restriction, including
1803
+ without limitation the rights to use, copy, modify, merge, publish,
1804
+ distribute, sublicense, and/or sell copies of the Software, and to
1805
+ permit persons to whom the Software is furnished to do so, subject to
1806
+ the following conditions:
1807
+
1808
+ The above copyright notice and this permission notice shall be
1809
+ included in all copies or substantial portions of the Software.
1810
+
1811
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1812
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1813
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1814
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1815
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1816
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1817
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818
+
1819
+
1820
+ -------------------- DEPENDENCY DIVIDER --------------------
1821
+
1822
+ Name: ipaddr.js
1823
+ URL: git://github.com/whitequark/ipaddr.js
1824
+ Version: 1.9.1
1825
+ License: MIT
1826
+
1827
+ Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
1828
+
1829
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1830
+ of this software and associated documentation files (the "Software"), to deal
1831
+ in the Software without restriction, including without limitation the rights
1832
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1833
+ copies of the Software, and to permit persons to whom the Software is
1834
+ furnished to do so, subject to the following conditions:
1835
+
1836
+ The above copyright notice and this permission notice shall be included in
1837
+ all copies or substantial portions of the Software.
1838
+
1839
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1840
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1841
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1842
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1843
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1844
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1845
+ THE SOFTWARE.
1846
+
1847
+
1848
+ -------------------- DEPENDENCY DIVIDER --------------------
1849
+
1850
+ Name: once
1851
+ URL: git://github.com/isaacs/once
1852
+ Version: 1.4.0
1853
+ License: ISC
1854
+
1855
+ The ISC License
1856
+
1857
+ Copyright (c) Isaac Z. Schlueter and Contributors
1858
+
1859
+ Permission to use, copy, modify, and/or distribute this software for any
1860
+ purpose with or without fee is hereby granted, provided that the above
1861
+ copyright notice and this permission notice appear in all copies.
1862
+
1863
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1864
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1865
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1866
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1867
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1868
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1869
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1870
+
1871
+
1872
+ -------------------- DEPENDENCY DIVIDER --------------------
1873
+
1874
+ Name: wrappy
1875
+ URL: https://github.com/npm/wrappy
1876
+ Version: 1.0.2
1877
+ License: ISC
1878
+
1879
+ The ISC License
1880
+
1881
+ Copyright (c) Isaac Z. Schlueter and Contributors
1882
+
1883
+ Permission to use, copy, modify, and/or distribute this software for any
1884
+ purpose with or without fee is hereby granted, provided that the above
1885
+ copyright notice and this permission notice appear in all copies.
1886
+
1887
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1888
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1889
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1890
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1891
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1892
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1893
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1894
+
1895
+
1896
+ -------------------- DEPENDENCY DIVIDER --------------------
1897
+
1898
+ Name: router
1899
+ URL: pillarjs/router
1900
+ Version: 2.2.0
1901
+ License: MIT
1902
+
1903
+ (The MIT License)
1904
+
1905
+ Copyright (c) 2013 Roman Shtylman
1906
+ Copyright (c) 2014-2022 Douglas Christopher Wilson
1907
+
1908
+ Permission is hereby granted, free of charge, to any person obtaining
1909
+ a copy of this software and associated documentation files (the
1910
+ 'Software'), to deal in the Software without restriction, including
1911
+ without limitation the rights to use, copy, modify, merge, publish,
1912
+ distribute, sublicense, and/or sell copies of the Software, and to
1913
+ permit persons to whom the Software is furnished to do so, subject to
1914
+ the following conditions:
1915
+
1916
+ The above copyright notice and this permission notice shall be
1917
+ included in all copies or substantial portions of the Software.
1918
+
1919
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1920
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1921
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1922
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1923
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1924
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1925
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1926
+
1927
+
1928
+ -------------------- DEPENDENCY DIVIDER --------------------
1929
+
1930
+ Name: is-promise
1931
+ URL: https://github.com/then/is-promise.git
1932
+ Version: 4.0.0
1933
+ License: MIT
1934
+
1935
+ Copyright (c) 2014 Forbes Lindesay
1936
+
1937
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1938
+ of this software and associated documentation files (the "Software"), to deal
1939
+ in the Software without restriction, including without limitation the rights
1940
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1941
+ copies of the Software, and to permit persons to whom the Software is
1942
+ furnished to do so, subject to the following conditions:
1943
+
1944
+ The above copyright notice and this permission notice shall be included in
1945
+ all copies or substantial portions of the Software.
1946
+
1947
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1948
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1949
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1950
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1951
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1952
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1953
+ THE SOFTWARE.
1954
+
1955
+ -------------------- DEPENDENCY DIVIDER --------------------
1956
+
1957
+ Name: path-to-regexp
1958
+ URL: https://github.com/pillarjs/path-to-regexp.git
1959
+ Version: 8.3.0
1960
+ License: MIT
1961
+
1962
+ The MIT License (MIT)
1963
+
1964
+ Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
1965
+
1966
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1967
+ of this software and associated documentation files (the "Software"), to deal
1968
+ in the Software without restriction, including without limitation the rights
1969
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1970
+ copies of the Software, and to permit persons to whom the Software is
1971
+ furnished to do so, subject to the following conditions:
1972
+
1973
+ The above copyright notice and this permission notice shall be included in
1974
+ all copies or substantial portions of the Software.
1975
+
1976
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1977
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1978
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1979
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1980
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1981
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1982
+ THE SOFTWARE.
1983
+
1984
+
1985
+ -------------------- DEPENDENCY DIVIDER --------------------
1986
+
1987
+ Name: negotiator
1988
+ URL: jshttp/negotiator
1989
+ Version: 1.0.0
1990
+ License: MIT
1991
+
1992
+ (The MIT License)
1993
+
1994
+ Copyright (c) 2012-2014 Federico Romero
1995
+ Copyright (c) 2012-2014 Isaac Z. Schlueter
1996
+ Copyright (c) 2014-2015 Douglas Christopher Wilson
1997
+
1998
+ Permission is hereby granted, free of charge, to any person obtaining
1999
+ a copy of this software and associated documentation files (the
2000
+ 'Software'), to deal in the Software without restriction, including
2001
+ without limitation the rights to use, copy, modify, merge, publish,
2002
+ distribute, sublicense, and/or sell copies of the Software, and to
2003
+ permit persons to whom the Software is furnished to do so, subject to
2004
+ the following conditions:
2005
+
2006
+ The above copyright notice and this permission notice shall be
2007
+ included in all copies or substantial portions of the Software.
2008
+
2009
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2010
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2011
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2012
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2013
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2014
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2015
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2016
+
2017
+
2018
+ -------------------- DEPENDENCY DIVIDER --------------------
2019
+
2020
+ Name: accepts
2021
+ URL: jshttp/accepts
2022
+ Version: 2.0.0
2023
+ License: MIT
2024
+
2025
+ (The MIT License)
2026
+
2027
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2028
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
2029
+
2030
+ Permission is hereby granted, free of charge, to any person obtaining
2031
+ a copy of this software and associated documentation files (the
2032
+ 'Software'), to deal in the Software without restriction, including
2033
+ without limitation the rights to use, copy, modify, merge, publish,
2034
+ distribute, sublicense, and/or sell copies of the Software, and to
2035
+ permit persons to whom the Software is furnished to do so, subject to
2036
+ the following conditions:
2037
+
2038
+ The above copyright notice and this permission notice shall be
2039
+ included in all copies or substantial portions of the Software.
2040
+
2041
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2042
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2043
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2044
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2045
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2046
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2047
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2048
+
2049
+
2050
+ -------------------- DEPENDENCY DIVIDER --------------------
2051
+
2052
+ Name: fresh
2053
+ URL: jshttp/fresh
2054
+ Version: 2.0.0
2055
+ License: MIT
2056
+
2057
+ (The MIT License)
2058
+
2059
+ Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
2060
+ Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
2061
+
2062
+ Permission is hereby granted, free of charge, to any person obtaining
2063
+ a copy of this software and associated documentation files (the
2064
+ 'Software'), to deal in the Software without restriction, including
2065
+ without limitation the rights to use, copy, modify, merge, publish,
2066
+ distribute, sublicense, and/or sell copies of the Software, and to
2067
+ permit persons to whom the Software is furnished to do so, subject to
2068
+ the following conditions:
2069
+
2070
+ The above copyright notice and this permission notice shall be
2071
+ included in all copies or substantial portions of the Software.
2072
+
2073
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2074
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2075
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2076
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2077
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2078
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2079
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2080
+
2081
+
2082
+ -------------------- DEPENDENCY DIVIDER --------------------
2083
+
2084
+ Name: range-parser
2085
+ URL: jshttp/range-parser
2086
+ Version: 1.2.1
2087
+ License: MIT
2088
+
2089
+ (The MIT License)
2090
+
2091
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
2092
+ Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
2093
+
2094
+ Permission is hereby granted, free of charge, to any person obtaining
2095
+ a copy of this software and associated documentation files (the
2096
+ 'Software'), to deal in the Software without restriction, including
2097
+ without limitation the rights to use, copy, modify, merge, publish,
2098
+ distribute, sublicense, and/or sell copies of the Software, and to
2099
+ permit persons to whom the Software is furnished to do so, subject to
2100
+ the following conditions:
2101
+
2102
+ The above copyright notice and this permission notice shall be
2103
+ included in all copies or substantial portions of the Software.
2104
+
2105
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2106
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2107
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2108
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2109
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2110
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2111
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2112
+
2113
+
2114
+ -------------------- DEPENDENCY DIVIDER --------------------
2115
+
2116
+ Name: content-disposition
2117
+ URL: jshttp/content-disposition
2118
+ Version: 1.0.0
2119
+ License: MIT
2120
+
2121
+ (The MIT License)
2122
+
2123
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
2124
+
2125
+ Permission is hereby granted, free of charge, to any person obtaining
2126
+ a copy of this software and associated documentation files (the
2127
+ 'Software'), to deal in the Software without restriction, including
2128
+ without limitation the rights to use, copy, modify, merge, publish,
2129
+ distribute, sublicense, and/or sell copies of the Software, and to
2130
+ permit persons to whom the Software is furnished to do so, subject to
2131
+ the following conditions:
2132
+
2133
+ The above copyright notice and this permission notice shall be
2134
+ included in all copies or substantial portions of the Software.
2135
+
2136
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2137
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2138
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2139
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2140
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2141
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2142
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2143
+
2144
+
2145
+ -------------------- DEPENDENCY DIVIDER --------------------
2146
+
2147
+ Name: safe-buffer
2148
+ URL: https://github.com/feross/safe-buffer
2149
+ Version: 5.2.1
2150
+ License: MIT
2151
+
2152
+ The MIT License (MIT)
2153
+
2154
+ Copyright (c) Feross Aboukhadijeh
2155
+
2156
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2157
+ of this software and associated documentation files (the "Software"), to deal
2158
+ in the Software without restriction, including without limitation the rights
2159
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2160
+ copies of the Software, and to permit persons to whom the Software is
2161
+ furnished to do so, subject to the following conditions:
2162
+
2163
+ The above copyright notice and this permission notice shall be included in
2164
+ all copies or substantial portions of the Software.
2165
+
2166
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2167
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2168
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2169
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2170
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2171
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2172
+ THE SOFTWARE.
2173
+
2174
+
2175
+ -------------------- DEPENDENCY DIVIDER --------------------
2176
+
2177
+ Name: cookie-signature
2178
+ URL: https://github.com/visionmedia/node-cookie-signature.git
2179
+ Version: 1.2.2
2180
+ License: MIT
2181
+
2182
+ (The MIT License)
2183
+
2184
+ Copyright (c) 2012–2024 LearnBoost <tj@learnboost.com> and other contributors;
2185
+
2186
+ Permission is hereby granted, free of charge, to any person obtaining
2187
+ a copy of this software and associated documentation files (the
2188
+ 'Software'), to deal in the Software without restriction, including
2189
+ without limitation the rights to use, copy, modify, merge, publish,
2190
+ distribute, sublicense, and/or sell copies of the Software, and to
2191
+ permit persons to whom the Software is furnished to do so, subject to
2192
+ the following conditions:
2193
+
2194
+ The above copyright notice and this permission notice shall be
2195
+ included in all copies or substantial portions of the Software.
2196
+
2197
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2198
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2199
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2200
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2201
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2202
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2203
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2204
+
2205
+
2206
+ -------------------- DEPENDENCY DIVIDER --------------------
2207
+
2208
+ Name: cookie
2209
+ URL: jshttp/cookie
2210
+ Version: 0.7.2
2211
+ License: MIT
2212
+
2213
+ (The MIT License)
2214
+
2215
+ Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
2216
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
2217
+
2218
+ Permission is hereby granted, free of charge, to any person obtaining
2219
+ a copy of this software and associated documentation files (the
2220
+ 'Software'), to deal in the Software without restriction, including
2221
+ without limitation the rights to use, copy, modify, merge, publish,
2222
+ distribute, sublicense, and/or sell copies of the Software, and to
2223
+ permit persons to whom the Software is furnished to do so, subject to
2224
+ the following conditions:
2225
+
2226
+ The above copyright notice and this permission notice shall be
2227
+ included in all copies or substantial portions of the Software.
2228
+
2229
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2230
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2231
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2232
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2233
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2234
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2235
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2236
+
2237
+
2238
+
2239
+ -------------------- DEPENDENCY DIVIDER --------------------
2240
+
2241
+ Name: send
2242
+ URL: pillarjs/send
2243
+ Version: 1.2.0
2244
+ License: MIT
2245
+
2246
+ (The MIT License)
2247
+
2248
+ Copyright (c) 2012 TJ Holowaychuk
2249
+ Copyright (c) 2014-2022 Douglas Christopher Wilson
2250
+
2251
+ Permission is hereby granted, free of charge, to any person obtaining
2252
+ a copy of this software and associated documentation files (the
2253
+ 'Software'), to deal in the Software without restriction, including
2254
+ without limitation the rights to use, copy, modify, merge, publish,
2255
+ distribute, sublicense, and/or sell copies of the Software, and to
2256
+ permit persons to whom the Software is furnished to do so, subject to
2257
+ the following conditions:
2258
+
2259
+ The above copyright notice and this permission notice shall be
2260
+ included in all copies or substantial portions of the Software.
2261
+
2262
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2263
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2264
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2265
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2266
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2267
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2268
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2269
+
2270
+
2271
+ -------------------- DEPENDENCY DIVIDER --------------------
2272
+
2273
+ Name: vary
2274
+ URL: jshttp/vary
2275
+ Version: 1.1.2
2276
+ License: MIT
2277
+
2278
+ (The MIT License)
2279
+
2280
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
2281
+
2282
+ Permission is hereby granted, free of charge, to any person obtaining
2283
+ a copy of this software and associated documentation files (the
2284
+ 'Software'), to deal in the Software without restriction, including
2285
+ without limitation the rights to use, copy, modify, merge, publish,
2286
+ distribute, sublicense, and/or sell copies of the Software, and to
2287
+ permit persons to whom the Software is furnished to do so, subject to
2288
+ the following conditions:
2289
+
2290
+ The above copyright notice and this permission notice shall be
2291
+ included in all copies or substantial portions of the Software.
2292
+
2293
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2294
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2295
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2296
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2297
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2298
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2299
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2300
+
2301
+
2302
+ -------------------- DEPENDENCY DIVIDER --------------------
2303
+
2304
+ Name: serve-static
2305
+ URL: expressjs/serve-static
2306
+ Version: 2.2.0
2307
+ License: MIT
2308
+
2309
+ (The MIT License)
2310
+
2311
+ Copyright (c) 2010 Sencha Inc.
2312
+ Copyright (c) 2011 LearnBoost
2313
+ Copyright (c) 2011 TJ Holowaychuk
2314
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
2315
+
2316
+ Permission is hereby granted, free of charge, to any person obtaining
2317
+ a copy of this software and associated documentation files (the
2318
+ 'Software'), to deal in the Software without restriction, including
2319
+ without limitation the rights to use, copy, modify, merge, publish,
2320
+ distribute, sublicense, and/or sell copies of the Software, and to
2321
+ permit persons to whom the Software is furnished to do so, subject to
2322
+ the following conditions:
2323
+
2324
+ The above copyright notice and this permission notice shall be
2325
+ included in all copies or substantial portions of the Software.
2326
+
2327
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2328
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2329
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2330
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2331
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2332
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2333
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2334
+
2335
+
390
2336
  -------------------- DEPENDENCY DIVIDER --------------------
391
2337
 
392
2338
  Name: zod
@@ -421,7 +2367,7 @@ SOFTWARE.
421
2367
 
422
2368
  Name: @modelcontextprotocol/sdk
423
2369
  URL: https://modelcontextprotocol.io
424
- Version: 1.21.0
2370
+ Version: 1.24.1
425
2371
  License: MIT
426
2372
 
427
2373
  MIT License
@@ -447,6 +2393,29 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
447
2393
  SOFTWARE.
448
2394
 
449
2395
 
2396
+ -------------------- DEPENDENCY DIVIDER --------------------
2397
+
2398
+ Name: zod-to-json-schema
2399
+ URL: https://github.com/StefanTerdell/zod-to-json-schema
2400
+ Version: 3.25.0
2401
+ License: ISC
2402
+
2403
+ ISC License
2404
+
2405
+ Copyright (c) 2020, Stefan Terdell
2406
+
2407
+ Permission to use, copy, modify, and/or distribute this software for any
2408
+ purpose with or without fee is hereby granted, provided that the above
2409
+ copyright notice and this permission notice appear in all copies.
2410
+
2411
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2412
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2413
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2414
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2415
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2416
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2417
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2418
+
450
2419
  -------------------- DEPENDENCY DIVIDER --------------------
451
2420
 
452
2421
  Name: ajv
@@ -608,41 +2577,18 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
608
2577
  SOFTWARE.
609
2578
 
610
2579
 
611
- -------------------- DEPENDENCY DIVIDER --------------------
612
-
613
- Name: zod-to-json-schema
614
- URL: https://github.com/StefanTerdell/zod-to-json-schema
615
- Version: 3.24.6
616
- License: ISC
617
-
618
- ISC License
619
-
620
- Copyright (c) 2020, Stefan Terdell
621
-
622
- Permission to use, copy, modify, and/or distribute this software for any
623
- purpose with or without fee is hereby granted, provided that the above
624
- copyright notice and this permission notice appear in all copies.
625
-
626
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
627
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
628
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
629
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
630
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
631
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
632
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
633
-
634
2580
  -------------------- DEPENDENCY DIVIDER --------------------
635
2581
 
636
2582
  Name: puppeteer-core
637
2583
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
638
- Version: 24.29.1
2584
+ Version: 24.32.0
639
2585
  License: Apache-2.0
640
2586
 
641
2587
  -------------------- DEPENDENCY DIVIDER --------------------
642
2588
 
643
2589
  Name: @puppeteer/browsers
644
2590
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/browsers
645
- Version: 2.10.13
2591
+ Version: 2.11.0
646
2592
  License: Apache-2.0
647
2593
 
648
2594
  -------------------- DEPENDENCY DIVIDER --------------------
@@ -935,7 +2881,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
935
2881
 
936
2882
  Name: ip-address
937
2883
  URL: git://github.com/beaugunderson/ip-address.git
938
- Version: 10.0.1
2884
+ Version: 10.1.0
939
2885
  License: MIT
940
2886
 
941
2887
  Copyright (C) 2011 by Beau Gunderson