@playdrop/playdrop-cli 0.14.8 → 0.15.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 (186) hide show
  1. package/config/client-meta.json +2 -2
  2. package/dist/commands/agents.js +1 -1
  3. package/dist/commands/worker.js +2 -2
  4. package/node_modules/@playdrop/api-client/dist/client.d.ts +3 -1
  5. package/node_modules/@playdrop/api-client/dist/client.d.ts.map +1 -1
  6. package/node_modules/@playdrop/api-client/dist/domains/admin.d.ts +3 -1
  7. package/node_modules/@playdrop/api-client/dist/domains/admin.d.ts.map +1 -1
  8. package/node_modules/@playdrop/api-client/dist/domains/admin.js +46 -2
  9. package/node_modules/@playdrop/config/client-meta.json +2 -2
  10. package/node_modules/@playdrop/types/dist/api.d.ts +96 -1
  11. package/node_modules/@playdrop/types/dist/api.d.ts.map +1 -1
  12. package/node_modules/@playdrop/types/dist/api.js +17 -0
  13. package/node_modules/@playwright/mcp/LICENSE +201 -0
  14. package/node_modules/@playwright/mcp/README.md +1592 -0
  15. package/node_modules/@playwright/mcp/cli.js +32 -0
  16. package/node_modules/@playwright/mcp/config.d.ts +239 -0
  17. package/node_modules/@playwright/mcp/index.d.ts +23 -0
  18. package/node_modules/@playwright/mcp/index.js +19 -0
  19. package/node_modules/@playwright/mcp/node_modules/playwright/LICENSE +202 -0
  20. package/node_modules/@playwright/mcp/node_modules/playwright/NOTICE +5 -0
  21. package/node_modules/@playwright/mcp/node_modules/playwright/README.md +318 -0
  22. package/node_modules/@playwright/mcp/node_modules/playwright/ThirdPartyNotices.txt +14 -0
  23. package/node_modules/@playwright/mcp/node_modules/playwright/cli.js +19 -0
  24. package/node_modules/@playwright/mcp/node_modules/playwright/index.d.ts +17 -0
  25. package/node_modules/@playwright/mcp/node_modules/playwright/index.js +17 -0
  26. package/node_modules/@playwright/mcp/node_modules/playwright/index.mjs +18 -0
  27. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.js +42 -0
  28. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.mjs +21 -0
  29. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/agentParser.js +89 -0
  30. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/copilot-setup-steps.yml +34 -0
  31. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/generateAgents.js +395 -0
  32. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-coverage.prompt.md +31 -0
  33. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generate.prompt.md +8 -0
  34. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generator.agent.md +88 -0
  35. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-heal.prompt.md +6 -0
  36. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-healer.agent.md +56 -0
  37. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-plan.prompt.md +9 -0
  38. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-planner.agent.md +74 -0
  39. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/reportActions.js +78 -0
  40. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/testActions.js +213 -0
  41. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js +2966 -0
  42. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js.txt +34 -0
  43. package/node_modules/@playwright/mcp/node_modules/playwright/lib/errorContext.js +129 -0
  44. package/node_modules/@playwright/mcp/node_modules/playwright/lib/globals.js +58 -0
  45. package/node_modules/@playwright/mcp/node_modules/playwright/lib/index.js +783 -0
  46. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js +260 -0
  47. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js.txt +9 -0
  48. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js +34 -0
  49. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js.txt +9 -0
  50. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js +13480 -0
  51. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.LICENSE +640 -0
  52. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.txt +67 -0
  53. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/browserBackend.js +125 -0
  54. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/generatorTools.js +122 -0
  55. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/plannerTools.js +150 -0
  56. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/seed.js +82 -0
  57. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/streams.js +44 -0
  58. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testBackend.js +99 -0
  59. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testContext.js +306 -0
  60. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTool.js +30 -0
  61. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTools.js +98 -0
  62. package/node_modules/@playwright/mcp/node_modules/playwright/lib/package.js +47 -0
  63. package/node_modules/@playwright/mcp/node_modules/playwright/lib/program.js +237 -0
  64. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js +8154 -0
  65. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js.txt +59 -0
  66. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js +72275 -0
  67. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.LICENSE +2384 -0
  68. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.txt +325 -0
  69. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js +8060 -0
  70. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.LICENSE +355 -0
  71. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.txt +60 -0
  72. package/node_modules/@playwright/mcp/node_modules/playwright/lib/util.js +373 -0
  73. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js +1850 -0
  74. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js.txt +19 -0
  75. package/node_modules/@playwright/mcp/node_modules/playwright/package.json +58 -0
  76. package/node_modules/@playwright/mcp/node_modules/playwright/test.d.ts +18 -0
  77. package/node_modules/@playwright/mcp/node_modules/playwright/test.js +24 -0
  78. package/node_modules/@playwright/mcp/node_modules/playwright/test.mjs +35 -0
  79. package/node_modules/@playwright/mcp/node_modules/playwright/types/test.d.ts +10709 -0
  80. package/node_modules/@playwright/mcp/node_modules/playwright/types/testReporter.d.ts +908 -0
  81. package/node_modules/@playwright/mcp/node_modules/playwright-core/LICENSE +202 -0
  82. package/node_modules/@playwright/mcp/node_modules/playwright-core/NOTICE +5 -0
  83. package/node_modules/@playwright/mcp/node_modules/playwright-core/README.md +3 -0
  84. package/node_modules/@playwright/mcp/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  85. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  86. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  87. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  88. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  89. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  90. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  91. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  92. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  93. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  94. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  95. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  96. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  97. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  98. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  99. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  100. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  101. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  102. package/node_modules/@playwright/mcp/node_modules/playwright-core/browsers.json +81 -0
  103. package/node_modules/@playwright/mcp/node_modules/playwright-core/cli.js +21 -0
  104. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.d.ts +17 -0
  105. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.js +17 -0
  106. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.mjs +28 -0
  107. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/bootstrap.js +88 -0
  108. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/coreBundle.js +74495 -0
  109. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  110. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  111. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  112. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  113. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/package.js +50 -0
  114. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  115. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/electron/loader.js +118 -0
  116. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js +7347 -0
  117. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  118. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  119. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  120. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/help.json +707 -0
  121. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  122. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  123. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/program.js +404 -0
  124. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  125. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/session.js +258 -0
  126. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/SKILL.md +420 -0
  127. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  128. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  129. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  130. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/running-code.md +241 -0
  131. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/session-management.md +225 -0
  132. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  133. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/test-generation.md +433 -0
  134. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/tracing.md +139 -0
  135. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  136. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  137. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/trace/SKILL.md +171 -0
  138. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/extension.js +78 -0
  139. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  140. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  141. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  142. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  143. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  144. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  145. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  146. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-CyWAfh-p.js +11 -0
  147. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-DhC616m4.css +1 -0
  148. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  149. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  150. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  151. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  152. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.css +2 -0
  153. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.js +32 -0
  154. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css +1 -0
  155. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BVGIAA-i.js +32 -0
  156. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  157. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-BQ57a3QC.js +129 -0
  158. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-l_lX622x.css +1 -0
  159. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  160. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  161. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BSEO6m_i.js +32 -0
  162. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-CT5oRh4X.js +181 -0
  163. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-L3liM589.js +1 -0
  164. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-BN2nOuEV.js +7 -0
  165. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css +1 -0
  166. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  167. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css +1 -0
  168. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.B_TqY17P.css +1 -0
  169. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.DLSGjmWZ.js +1 -0
  170. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  171. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  172. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  173. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.B_Jk1wbt.js +1 -0
  174. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  175. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +4 -0
  176. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.C7UW1sC9.css +1 -0
  177. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CZvydVOh.js +5 -0
  178. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  179. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css +1 -0
  180. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/xdg-open +1267 -0
  181. package/node_modules/@playwright/mcp/node_modules/playwright-core/package.json +34 -0
  182. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/protocol.d.ts +24842 -0
  183. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/structs.d.ts +45 -0
  184. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/types.d.ts +26088 -0
  185. package/node_modules/@playwright/mcp/package.json +51 -0
  186. package/package.json +3 -1
@@ -0,0 +1,640 @@
1
+ packages/playwright/lib/matchers/expect.js
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ The following npm packages are inlined into this bundle.
6
+
7
+ - @babel/code-frame@7.29.7 (https://github.com/babel/babel)
8
+ - @babel/helper-validator-identifier@7.29.7 (https://github.com/babel/babel)
9
+ - @jest/diff-sequences@30.4.0 (https://github.com/jestjs/jest)
10
+ - @jest/expect-utils@30.4.1 (https://github.com/jestjs/jest)
11
+ - @jest/get-type@30.1.0 (https://github.com/jestjs/jest)
12
+ - ansi-styles@4.3.0 (https://github.com/chalk/ansi-styles)
13
+ - ansi-styles@5.2.0 (https://github.com/chalk/ansi-styles)
14
+ - chalk@4.1.2 (https://github.com/chalk/chalk)
15
+ - ci-info@4.4.0 (https://github.com/watson/ci-info)
16
+ - color-convert@2.0.1 (https://github.com/Qix-/color-convert)
17
+ - color-name@1.1.4 (https://github.com/colorjs/color-name)
18
+ - escape-string-regexp@2.0.0 (https://github.com/sindresorhus/escape-string-regexp)
19
+ - graceful-fs@4.2.11 (https://github.com/isaacs/node-graceful-fs)
20
+ - has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
21
+ - jest-diff@30.4.1 (https://github.com/jestjs/jest)
22
+ - jest-matcher-utils@30.4.1 (https://github.com/jestjs/jest)
23
+ - jest-message-util@30.4.1 (https://github.com/jestjs/jest)
24
+ - jest-util@30.4.1 (https://github.com/jestjs/jest)
25
+ - js-tokens@4.0.0 (https://github.com/lydell/js-tokens)
26
+ - picocolors@1.1.1 (https://github.com/alexeyraspopov/picocolors)
27
+ - picomatch@4.0.4 (https://github.com/micromatch/picomatch)
28
+ - pretty-format@30.4.1 (https://github.com/jestjs/jest)
29
+ - react-is@18.3.1 (https://github.com/facebook/react)
30
+ - react-is@19.2.7 (https://github.com/facebook/react)
31
+ - slash@3.0.0 (https://github.com/sindresorhus/slash)
32
+ - stack-utils@2.0.6 (https://github.com/tapjs/stack-utils)
33
+ - supports-color@7.2.0 (https://github.com/chalk/supports-color)
34
+
35
+ %% @babel/code-frame@7.29.7 NOTICES AND INFORMATION BEGIN HERE
36
+ =========================================
37
+ MIT License
38
+
39
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
40
+
41
+ Permission is hereby granted, free of charge, to any person obtaining
42
+ a copy of this software and associated documentation files (the
43
+ "Software"), to deal in the Software without restriction, including
44
+ without limitation the rights to use, copy, modify, merge, publish,
45
+ distribute, sublicense, and/or sell copies of the Software, and to
46
+ permit persons to whom the Software is furnished to do so, subject to
47
+ the following conditions:
48
+
49
+ The above copyright notice and this permission notice shall be
50
+ included in all copies or substantial portions of the Software.
51
+
52
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
53
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
54
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
55
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
56
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
57
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
58
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
59
+ =========================================
60
+ END OF @babel/code-frame@7.29.7 NOTICES AND INFORMATION
61
+
62
+ %% @babel/helper-validator-identifier@7.29.7 NOTICES AND INFORMATION BEGIN HERE
63
+ =========================================
64
+ MIT License
65
+
66
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
67
+
68
+ Permission is hereby granted, free of charge, to any person obtaining
69
+ a copy of this software and associated documentation files (the
70
+ "Software"), to deal in the Software without restriction, including
71
+ without limitation the rights to use, copy, modify, merge, publish,
72
+ distribute, sublicense, and/or sell copies of the Software, and to
73
+ permit persons to whom the Software is furnished to do so, subject to
74
+ the following conditions:
75
+
76
+ The above copyright notice and this permission notice shall be
77
+ included in all copies or substantial portions of the Software.
78
+
79
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
80
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
81
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
82
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
83
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
84
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
85
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
86
+ =========================================
87
+ END OF @babel/helper-validator-identifier@7.29.7 NOTICES AND INFORMATION
88
+
89
+ %% @jest/diff-sequences@30.4.0 NOTICES AND INFORMATION BEGIN HERE
90
+ =========================================
91
+ MIT License
92
+
93
+ Copyright (c) Meta Platforms, Inc. and affiliates.
94
+ Copyright Contributors to the Jest project.
95
+
96
+ Permission is hereby granted, free of charge, to any person obtaining a copy
97
+ of this software and associated documentation files (the "Software"), to deal
98
+ in the Software without restriction, including without limitation the rights
99
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
100
+ copies of the Software, and to permit persons to whom the Software is
101
+ furnished to do so, subject to the following conditions:
102
+
103
+ The above copyright notice and this permission notice shall be included in all
104
+ copies or substantial portions of the Software.
105
+
106
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
107
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
108
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
109
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
110
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
111
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
112
+ SOFTWARE.
113
+ =========================================
114
+ END OF @jest/diff-sequences@30.4.0 NOTICES AND INFORMATION
115
+
116
+ %% @jest/expect-utils@30.4.1 NOTICES AND INFORMATION BEGIN HERE
117
+ =========================================
118
+ MIT License
119
+
120
+ Copyright (c) Meta Platforms, Inc. and affiliates.
121
+ Copyright Contributors to the Jest project.
122
+
123
+ Permission is hereby granted, free of charge, to any person obtaining a copy
124
+ of this software and associated documentation files (the "Software"), to deal
125
+ in the Software without restriction, including without limitation the rights
126
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
127
+ copies of the Software, and to permit persons to whom the Software is
128
+ furnished to do so, subject to the following conditions:
129
+
130
+ The above copyright notice and this permission notice shall be included in all
131
+ copies or substantial portions of the Software.
132
+
133
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
134
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
135
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
136
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
137
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
138
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
139
+ SOFTWARE.
140
+ =========================================
141
+ END OF @jest/expect-utils@30.4.1 NOTICES AND INFORMATION
142
+
143
+ %% @jest/get-type@30.1.0 NOTICES AND INFORMATION BEGIN HERE
144
+ =========================================
145
+ MIT License
146
+
147
+ Copyright (c) Meta Platforms, Inc. and affiliates.
148
+ Copyright Contributors to the Jest project.
149
+
150
+ Permission is hereby granted, free of charge, to any person obtaining a copy
151
+ of this software and associated documentation files (the "Software"), to deal
152
+ in the Software without restriction, including without limitation the rights
153
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
154
+ copies of the Software, and to permit persons to whom the Software is
155
+ furnished to do so, subject to the following conditions:
156
+
157
+ The above copyright notice and this permission notice shall be included in all
158
+ copies or substantial portions of the Software.
159
+
160
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
161
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
162
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
163
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
164
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
165
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
166
+ SOFTWARE.
167
+ =========================================
168
+ END OF @jest/get-type@30.1.0 NOTICES AND INFORMATION
169
+
170
+ %% ansi-styles@4.3.0 NOTICES AND INFORMATION BEGIN HERE
171
+ =========================================
172
+ MIT License
173
+
174
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
175
+
176
+ 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:
177
+
178
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
179
+
180
+ 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.
181
+ =========================================
182
+ END OF ansi-styles@4.3.0 NOTICES AND INFORMATION
183
+
184
+ %% ansi-styles@5.2.0 NOTICES AND INFORMATION BEGIN HERE
185
+ =========================================
186
+ MIT License
187
+
188
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
189
+
190
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
191
+
192
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
193
+
194
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
195
+ =========================================
196
+ END OF ansi-styles@5.2.0 NOTICES AND INFORMATION
197
+
198
+ %% chalk@4.1.2 NOTICES AND INFORMATION BEGIN HERE
199
+ =========================================
200
+ MIT License
201
+
202
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
203
+
204
+ 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:
205
+
206
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
207
+
208
+ 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.
209
+ =========================================
210
+ END OF chalk@4.1.2 NOTICES AND INFORMATION
211
+
212
+ %% ci-info@4.4.0 NOTICES AND INFORMATION BEGIN HERE
213
+ =========================================
214
+ The MIT License (MIT)
215
+
216
+ Copyright (c) 2016 Thomas Watson Steen
217
+
218
+ Permission is hereby granted, free of charge, to any person obtaining a copy
219
+ of this software and associated documentation files (the "Software"), to deal
220
+ in the Software without restriction, including without limitation the rights
221
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
222
+ copies of the Software, and to permit persons to whom the Software is
223
+ furnished to do so, subject to the following conditions:
224
+
225
+ The above copyright notice and this permission notice shall be included in all
226
+ copies or substantial portions of the Software.
227
+
228
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
229
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
230
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
231
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
232
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
233
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
234
+ SOFTWARE.
235
+ =========================================
236
+ END OF ci-info@4.4.0 NOTICES AND INFORMATION
237
+
238
+ %% color-convert@2.0.1 NOTICES AND INFORMATION BEGIN HERE
239
+ =========================================
240
+ Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
241
+
242
+ Permission is hereby granted, free of charge, to any person obtaining
243
+ a copy of this software and associated documentation files (the
244
+ "Software"), to deal in the Software without restriction, including
245
+ without limitation the rights to use, copy, modify, merge, publish,
246
+ distribute, sublicense, and/or sell copies of the Software, and to
247
+ permit persons to whom the Software is furnished to do so, subject to
248
+ the following conditions:
249
+
250
+ The above copyright notice and this permission notice shall be
251
+ included in all copies or substantial portions of the Software.
252
+
253
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
254
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
255
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
256
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
257
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
258
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
259
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
260
+ =========================================
261
+ END OF color-convert@2.0.1 NOTICES AND INFORMATION
262
+
263
+ %% color-name@1.1.4 NOTICES AND INFORMATION BEGIN HERE
264
+ =========================================
265
+ The MIT License (MIT)
266
+ Copyright (c) 2015 Dmitry Ivanov
267
+
268
+ 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:
269
+
270
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
271
+
272
+ 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.
273
+ =========================================
274
+ END OF color-name@1.1.4 NOTICES AND INFORMATION
275
+
276
+ %% escape-string-regexp@2.0.0 NOTICES AND INFORMATION BEGIN HERE
277
+ =========================================
278
+ MIT License
279
+
280
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
281
+
282
+ 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:
283
+
284
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
285
+
286
+ 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.
287
+ =========================================
288
+ END OF escape-string-regexp@2.0.0 NOTICES AND INFORMATION
289
+
290
+ %% graceful-fs@4.2.11 NOTICES AND INFORMATION BEGIN HERE
291
+ =========================================
292
+ The ISC License
293
+
294
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
295
+
296
+ Permission to use, copy, modify, and/or distribute this software for any
297
+ purpose with or without fee is hereby granted, provided that the above
298
+ copyright notice and this permission notice appear in all copies.
299
+
300
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
301
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
302
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
303
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
304
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
305
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
306
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
307
+ =========================================
308
+ END OF graceful-fs@4.2.11 NOTICES AND INFORMATION
309
+
310
+ %% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
311
+ =========================================
312
+ MIT License
313
+
314
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
315
+
316
+ 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:
317
+
318
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
319
+
320
+ 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.
321
+ =========================================
322
+ END OF has-flag@4.0.0 NOTICES AND INFORMATION
323
+
324
+ %% jest-diff@30.4.1 NOTICES AND INFORMATION BEGIN HERE
325
+ =========================================
326
+ MIT License
327
+
328
+ Copyright (c) Meta Platforms, Inc. and affiliates.
329
+ Copyright Contributors to the Jest project.
330
+
331
+ Permission is hereby granted, free of charge, to any person obtaining a copy
332
+ of this software and associated documentation files (the "Software"), to deal
333
+ in the Software without restriction, including without limitation the rights
334
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
335
+ copies of the Software, and to permit persons to whom the Software is
336
+ furnished to do so, subject to the following conditions:
337
+
338
+ The above copyright notice and this permission notice shall be included in all
339
+ copies or substantial portions of the Software.
340
+
341
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
342
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
343
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
344
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
345
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
346
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
347
+ SOFTWARE.
348
+ =========================================
349
+ END OF jest-diff@30.4.1 NOTICES AND INFORMATION
350
+
351
+ %% jest-matcher-utils@30.4.1 NOTICES AND INFORMATION BEGIN HERE
352
+ =========================================
353
+ MIT License
354
+
355
+ Copyright (c) Meta Platforms, Inc. and affiliates.
356
+ Copyright Contributors to the Jest project.
357
+
358
+ Permission is hereby granted, free of charge, to any person obtaining a copy
359
+ of this software and associated documentation files (the "Software"), to deal
360
+ in the Software without restriction, including without limitation the rights
361
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
362
+ copies of the Software, and to permit persons to whom the Software is
363
+ furnished to do so, subject to the following conditions:
364
+
365
+ The above copyright notice and this permission notice shall be included in all
366
+ copies or substantial portions of the Software.
367
+
368
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
369
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
370
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
371
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
372
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
373
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
374
+ SOFTWARE.
375
+ =========================================
376
+ END OF jest-matcher-utils@30.4.1 NOTICES AND INFORMATION
377
+
378
+ %% jest-message-util@30.4.1 NOTICES AND INFORMATION BEGIN HERE
379
+ =========================================
380
+ MIT License
381
+
382
+ Copyright (c) Meta Platforms, Inc. and affiliates.
383
+ Copyright Contributors to the Jest project.
384
+
385
+ Permission is hereby granted, free of charge, to any person obtaining a copy
386
+ of this software and associated documentation files (the "Software"), to deal
387
+ in the Software without restriction, including without limitation the rights
388
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
389
+ copies of the Software, and to permit persons to whom the Software is
390
+ furnished to do so, subject to the following conditions:
391
+
392
+ The above copyright notice and this permission notice shall be included in all
393
+ copies or substantial portions of the Software.
394
+
395
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
396
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
397
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
398
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
399
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
400
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
401
+ SOFTWARE.
402
+ =========================================
403
+ END OF jest-message-util@30.4.1 NOTICES AND INFORMATION
404
+
405
+ %% jest-util@30.4.1 NOTICES AND INFORMATION BEGIN HERE
406
+ =========================================
407
+ MIT License
408
+
409
+ Copyright (c) Meta Platforms, Inc. and affiliates.
410
+ Copyright Contributors to the Jest project.
411
+
412
+ Permission is hereby granted, free of charge, to any person obtaining a copy
413
+ of this software and associated documentation files (the "Software"), to deal
414
+ in the Software without restriction, including without limitation the rights
415
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
416
+ copies of the Software, and to permit persons to whom the Software is
417
+ furnished to do so, subject to the following conditions:
418
+
419
+ The above copyright notice and this permission notice shall be included in all
420
+ copies or substantial portions of the Software.
421
+
422
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
423
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
424
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
425
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
426
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
427
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
428
+ SOFTWARE.
429
+ =========================================
430
+ END OF jest-util@30.4.1 NOTICES AND INFORMATION
431
+
432
+ %% js-tokens@4.0.0 NOTICES AND INFORMATION BEGIN HERE
433
+ =========================================
434
+ The MIT License (MIT)
435
+
436
+ Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
437
+
438
+ Permission is hereby granted, free of charge, to any person obtaining a copy
439
+ of this software and associated documentation files (the "Software"), to deal
440
+ in the Software without restriction, including without limitation the rights
441
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
442
+ copies of the Software, and to permit persons to whom the Software is
443
+ furnished to do so, subject to the following conditions:
444
+
445
+ The above copyright notice and this permission notice shall be included in
446
+ all copies or substantial portions of the Software.
447
+
448
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
449
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
450
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
451
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
452
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
453
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
454
+ THE SOFTWARE.
455
+ =========================================
456
+ END OF js-tokens@4.0.0 NOTICES AND INFORMATION
457
+
458
+ %% picocolors@1.1.1 NOTICES AND INFORMATION BEGIN HERE
459
+ =========================================
460
+ ISC License
461
+
462
+ Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
463
+
464
+ Permission to use, copy, modify, and/or distribute this software for any
465
+ purpose with or without fee is hereby granted, provided that the above
466
+ copyright notice and this permission notice appear in all copies.
467
+
468
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
469
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
470
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
471
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
472
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
473
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
474
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
475
+ =========================================
476
+ END OF picocolors@1.1.1 NOTICES AND INFORMATION
477
+
478
+ %% picomatch@4.0.4 NOTICES AND INFORMATION BEGIN HERE
479
+ =========================================
480
+ The MIT License (MIT)
481
+
482
+ Copyright (c) 2017-present, Jon Schlinkert.
483
+
484
+ Permission is hereby granted, free of charge, to any person obtaining a copy
485
+ of this software and associated documentation files (the "Software"), to deal
486
+ in the Software without restriction, including without limitation the rights
487
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
488
+ copies of the Software, and to permit persons to whom the Software is
489
+ furnished to do so, subject to the following conditions:
490
+
491
+ The above copyright notice and this permission notice shall be included in
492
+ all copies or substantial portions of the Software.
493
+
494
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
495
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
496
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
497
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
498
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
499
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
500
+ THE SOFTWARE.
501
+ =========================================
502
+ END OF picomatch@4.0.4 NOTICES AND INFORMATION
503
+
504
+ %% pretty-format@30.4.1 NOTICES AND INFORMATION BEGIN HERE
505
+ =========================================
506
+ MIT License
507
+
508
+ Copyright (c) Meta Platforms, Inc. and affiliates.
509
+ Copyright Contributors to the Jest project.
510
+
511
+ Permission is hereby granted, free of charge, to any person obtaining a copy
512
+ of this software and associated documentation files (the "Software"), to deal
513
+ in the Software without restriction, including without limitation the rights
514
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
515
+ copies of the Software, and to permit persons to whom the Software is
516
+ furnished to do so, subject to the following conditions:
517
+
518
+ The above copyright notice and this permission notice shall be included in all
519
+ copies or substantial portions of the Software.
520
+
521
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
522
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
523
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
524
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
525
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
526
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
527
+ SOFTWARE.
528
+ =========================================
529
+ END OF pretty-format@30.4.1 NOTICES AND INFORMATION
530
+
531
+ %% react-is@18.3.1 NOTICES AND INFORMATION BEGIN HERE
532
+ =========================================
533
+ MIT License
534
+
535
+ Copyright (c) Facebook, Inc. and its affiliates.
536
+
537
+ Permission is hereby granted, free of charge, to any person obtaining a copy
538
+ of this software and associated documentation files (the "Software"), to deal
539
+ in the Software without restriction, including without limitation the rights
540
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
541
+ copies of the Software, and to permit persons to whom the Software is
542
+ furnished to do so, subject to the following conditions:
543
+
544
+ The above copyright notice and this permission notice shall be included in all
545
+ copies or substantial portions of the Software.
546
+
547
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
548
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
549
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
550
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
551
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
552
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
553
+ SOFTWARE.
554
+ =========================================
555
+ END OF react-is@18.3.1 NOTICES AND INFORMATION
556
+
557
+ %% react-is@19.2.7 NOTICES AND INFORMATION BEGIN HERE
558
+ =========================================
559
+ MIT License
560
+
561
+ Copyright (c) Meta Platforms, Inc. and affiliates.
562
+
563
+ Permission is hereby granted, free of charge, to any person obtaining a copy
564
+ of this software and associated documentation files (the "Software"), to deal
565
+ in the Software without restriction, including without limitation the rights
566
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
567
+ copies of the Software, and to permit persons to whom the Software is
568
+ furnished to do so, subject to the following conditions:
569
+
570
+ The above copyright notice and this permission notice shall be included in all
571
+ copies or substantial portions of the Software.
572
+
573
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
574
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
575
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
576
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
577
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
578
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
579
+ SOFTWARE.
580
+ =========================================
581
+ END OF react-is@19.2.7 NOTICES AND INFORMATION
582
+
583
+ %% slash@3.0.0 NOTICES AND INFORMATION BEGIN HERE
584
+ =========================================
585
+ MIT License
586
+
587
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
588
+
589
+ 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:
590
+
591
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
592
+
593
+ 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.
594
+ =========================================
595
+ END OF slash@3.0.0 NOTICES AND INFORMATION
596
+
597
+ %% stack-utils@2.0.6 NOTICES AND INFORMATION BEGIN HERE
598
+ =========================================
599
+ The MIT License (MIT)
600
+
601
+ Copyright (c) 2016-2022 Isaac Z. Schlueter <i@izs.me>, James Talmage <james@talmage.io> (github.com/jamestalmage), and Contributors
602
+
603
+ Permission is hereby granted, free of charge, to any person obtaining a copy
604
+ of this software and associated documentation files (the "Software"), to deal
605
+ in the Software without restriction, including without limitation the rights
606
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
607
+ copies of the Software, and to permit persons to whom the Software is
608
+ furnished to do so, subject to the following conditions:
609
+
610
+ The above copyright notice and this permission notice shall be included in
611
+ all copies or substantial portions of the Software.
612
+
613
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
614
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
615
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
616
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
617
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
618
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
619
+ THE SOFTWARE.
620
+ =========================================
621
+ END OF stack-utils@2.0.6 NOTICES AND INFORMATION
622
+
623
+ %% supports-color@7.2.0 NOTICES AND INFORMATION BEGIN HERE
624
+ =========================================
625
+ MIT License
626
+
627
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
628
+
629
+ 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:
630
+
631
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
632
+
633
+ 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.
634
+ =========================================
635
+ END OF supports-color@7.2.0 NOTICES AND INFORMATION
636
+
637
+ SUMMARY
638
+ =========================================
639
+ Total Packages: 27
640
+ =========================================