shell-mirror 1.5.23 → 1.5.25

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 (2460) hide show
  1. package/lib/auto-start.js +63 -56
  2. package/mac-agent/.env +9 -0
  3. package/mac-agent/.env.example +24 -0
  4. package/mac-agent/README.md +167 -0
  5. package/mac-agent/agent-debug.log +94 -0
  6. package/mac-agent/agent.js +396 -0
  7. package/mac-agent/authorized-users.json +35 -0
  8. package/mac-agent/http-agent.js +675 -0
  9. package/mac-agent/interactive-setup.js +183 -0
  10. package/mac-agent/logs/http-agent.log +823 -0
  11. package/mac-agent/manual-setup.js +140 -0
  12. package/mac-agent/node +0 -0
  13. package/mac-agent/node_modules/.package-lock.json +2255 -0
  14. package/mac-agent/node_modules/@colors/colors/LICENSE +26 -0
  15. package/mac-agent/node_modules/@colors/colors/README.md +219 -0
  16. package/mac-agent/node_modules/@colors/colors/examples/normal-usage.js +83 -0
  17. package/mac-agent/node_modules/@colors/colors/examples/safe-string.js +80 -0
  18. package/mac-agent/node_modules/@colors/colors/index.d.ts +184 -0
  19. package/mac-agent/node_modules/@colors/colors/lib/colors.js +211 -0
  20. package/mac-agent/node_modules/@colors/colors/lib/custom/trap.js +46 -0
  21. package/mac-agent/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
  22. package/mac-agent/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
  23. package/mac-agent/node_modules/@colors/colors/lib/index.js +13 -0
  24. package/mac-agent/node_modules/@colors/colors/lib/maps/america.js +10 -0
  25. package/mac-agent/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
  26. package/mac-agent/node_modules/@colors/colors/lib/maps/random.js +11 -0
  27. package/mac-agent/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
  28. package/mac-agent/node_modules/@colors/colors/lib/styles.js +95 -0
  29. package/mac-agent/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
  30. package/mac-agent/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
  31. package/mac-agent/node_modules/@colors/colors/package.json +45 -0
  32. package/mac-agent/node_modules/@colors/colors/safe.d.ts +64 -0
  33. package/mac-agent/node_modules/@colors/colors/safe.js +10 -0
  34. package/mac-agent/node_modules/@colors/colors/themes/generic-logging.js +12 -0
  35. package/mac-agent/node_modules/@dabh/diagnostics/CHANGELOG.md +26 -0
  36. package/mac-agent/node_modules/@dabh/diagnostics/LICENSE +20 -0
  37. package/mac-agent/node_modules/@dabh/diagnostics/README.md +473 -0
  38. package/mac-agent/node_modules/@dabh/diagnostics/adapters/hash.js +11 -0
  39. package/mac-agent/node_modules/@dabh/diagnostics/adapters/index.js +18 -0
  40. package/mac-agent/node_modules/@dabh/diagnostics/adapters/localstorage.js +11 -0
  41. package/mac-agent/node_modules/@dabh/diagnostics/adapters/process.env.js +11 -0
  42. package/mac-agent/node_modules/@dabh/diagnostics/browser/development.js +35 -0
  43. package/mac-agent/node_modules/@dabh/diagnostics/browser/index.js +8 -0
  44. package/mac-agent/node_modules/@dabh/diagnostics/browser/override.js +6 -0
  45. package/mac-agent/node_modules/@dabh/diagnostics/browser/production.js +24 -0
  46. package/mac-agent/node_modules/@dabh/diagnostics/diagnostics.js +212 -0
  47. package/mac-agent/node_modules/@dabh/diagnostics/logger/console.js +19 -0
  48. package/mac-agent/node_modules/@dabh/diagnostics/modifiers/namespace-ansi.js +20 -0
  49. package/mac-agent/node_modules/@dabh/diagnostics/modifiers/namespace.js +32 -0
  50. package/mac-agent/node_modules/@dabh/diagnostics/node/development.js +36 -0
  51. package/mac-agent/node_modules/@dabh/diagnostics/node/index.js +8 -0
  52. package/mac-agent/node_modules/@dabh/diagnostics/node/override.js +21 -0
  53. package/mac-agent/node_modules/@dabh/diagnostics/node/production.js +24 -0
  54. package/mac-agent/node_modules/@dabh/diagnostics/package.json +64 -0
  55. package/mac-agent/node_modules/@koush/wrtc/CMakeLists.txt +664 -0
  56. package/mac-agent/node_modules/@koush/wrtc/LICENSE.md +30 -0
  57. package/mac-agent/node_modules/@koush/wrtc/NodeJS.cmake +638 -0
  58. package/mac-agent/node_modules/@koush/wrtc/README.md +120 -0
  59. package/mac-agent/node_modules/@koush/wrtc/THIRD_PARTY_LICENSES.md +1314 -0
  60. package/mac-agent/node_modules/@koush/wrtc/build/Release/wrtc.node +0 -0
  61. package/mac-agent/node_modules/@koush/wrtc/build-linux-variants.sh +10 -0
  62. package/mac-agent/node_modules/@koush/wrtc/build-mac-variants.sh +14 -0
  63. package/mac-agent/node_modules/@koush/wrtc/clean.sh +2 -0
  64. package/mac-agent/node_modules/@koush/wrtc/lib/binding.js +7 -0
  65. package/mac-agent/node_modules/@koush/wrtc/lib/browser.js +18 -0
  66. package/mac-agent/node_modules/@koush/wrtc/lib/datachannelevent.js +26 -0
  67. package/mac-agent/node_modules/@koush/wrtc/lib/datachannelmessageevent.js +9 -0
  68. package/mac-agent/node_modules/@koush/wrtc/lib/error.js +20 -0
  69. package/mac-agent/node_modules/@koush/wrtc/lib/eventtarget.js +50 -0
  70. package/mac-agent/node_modules/@koush/wrtc/lib/icecandidate.js +28 -0
  71. package/mac-agent/node_modules/@koush/wrtc/lib/index.js +81 -0
  72. package/mac-agent/node_modules/@koush/wrtc/lib/mediadevices.js +24 -0
  73. package/mac-agent/node_modules/@koush/wrtc/lib/peerconnection.js +313 -0
  74. package/mac-agent/node_modules/@koush/wrtc/lib/rtcpeerconnectioniceerrorevent.js +36 -0
  75. package/mac-agent/node_modules/@koush/wrtc/lib/rtcpeerconnectioniceevent.js +20 -0
  76. package/mac-agent/node_modules/@koush/wrtc/lib/sessiondescription.js +10 -0
  77. package/mac-agent/node_modules/@koush/wrtc/package.json +95 -0
  78. package/mac-agent/node_modules/@koush/wrtc/scripts/build-appveyor.bat +73 -0
  79. package/mac-agent/node_modules/@koush/wrtc/scripts/build-from-source.js +45 -0
  80. package/mac-agent/node_modules/@koush/wrtc/scripts/build-webrtc.bat +20 -0
  81. package/mac-agent/node_modules/@koush/wrtc/scripts/build-webrtc.sh +23 -0
  82. package/mac-agent/node_modules/@koush/wrtc/scripts/configure-webrtc.bat +28 -0
  83. package/mac-agent/node_modules/@koush/wrtc/scripts/configure-webrtc.sh +25 -0
  84. package/mac-agent/node_modules/@koush/wrtc/scripts/download-prebuilt-or-build-from-source.js +25 -0
  85. package/mac-agent/node_modules/@koush/wrtc/scripts/download-prebuilt.js +35 -0
  86. package/mac-agent/node_modules/@koush/wrtc/scripts/download-webrtc.bat +47 -0
  87. package/mac-agent/node_modules/@koush/wrtc/scripts/download-webrtc.sh +21 -0
  88. package/mac-agent/node_modules/@koush/wrtc/scripts/install-example.js +80 -0
  89. package/mac-agent/node_modules/@koush/wrtc/scripts/karma.js +70 -0
  90. package/mac-agent/node_modules/@koush/wrtc/scripts/pack-webrtc.bat +1 -0
  91. package/mac-agent/node_modules/@koush/wrtc/scripts/pack-webrtc.js +93 -0
  92. package/mac-agent/node_modules/@koush/wrtc/scripts/pack-webrtc.sh +38 -0
  93. package/mac-agent/node_modules/@koush/wrtc/scripts/publish-to-npm.js +98 -0
  94. package/mac-agent/node_modules/@koush/wrtc/scripts/publish.js +26 -0
  95. package/mac-agent/node_modules/@koush/wrtc/scripts/run-tests.bat +25 -0
  96. package/mac-agent/node_modules/@koush/wrtc/scripts/unpack-webrtc.bat +1 -0
  97. package/mac-agent/node_modules/@koush/wrtc/scripts/unpack-webrtc.js +36 -0
  98. package/mac-agent/node_modules/@koush/wrtc/scripts/unpack-webrtc.sh +28 -0
  99. package/mac-agent/node_modules/@mapbox/node-pre-gyp/.github/workflows/codeql.yml +74 -0
  100. package/mac-agent/node_modules/@mapbox/node-pre-gyp/CHANGELOG.md +510 -0
  101. package/mac-agent/node_modules/@mapbox/node-pre-gyp/LICENSE +27 -0
  102. package/mac-agent/node_modules/@mapbox/node-pre-gyp/README.md +742 -0
  103. package/mac-agent/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp +4 -0
  104. package/mac-agent/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp.cmd +2 -0
  105. package/mac-agent/node_modules/@mapbox/node-pre-gyp/contributing.md +10 -0
  106. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/build.js +51 -0
  107. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/clean.js +31 -0
  108. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/configure.js +52 -0
  109. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/info.js +38 -0
  110. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/install.js +235 -0
  111. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/main.js +125 -0
  112. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/node-pre-gyp.js +309 -0
  113. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/package.js +73 -0
  114. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/pre-binding.js +34 -0
  115. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/publish.js +81 -0
  116. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/rebuild.js +20 -0
  117. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/reinstall.js +19 -0
  118. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/reveal.js +32 -0
  119. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/testbinary.js +79 -0
  120. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/testpackage.js +53 -0
  121. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/unpublish.js +41 -0
  122. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/abi_crosswalk.json +2602 -0
  123. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/compile.js +93 -0
  124. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/handle_gyp_opts.js +102 -0
  125. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/napi.js +205 -0
  126. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/index.html +26 -0
  127. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/package.json +9 -0
  128. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/s3_setup.js +163 -0
  129. package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/versioning.js +335 -0
  130. package/mac-agent/node_modules/@mapbox/node-pre-gyp/package.json +62 -0
  131. package/mac-agent/node_modules/@types/triple-beam/LICENSE +21 -0
  132. package/mac-agent/node_modules/@types/triple-beam/README.md +36 -0
  133. package/mac-agent/node_modules/@types/triple-beam/index.d.ts +17 -0
  134. package/mac-agent/node_modules/@types/triple-beam/package.json +25 -0
  135. package/mac-agent/node_modules/abbrev/LICENSE +46 -0
  136. package/mac-agent/node_modules/abbrev/README.md +23 -0
  137. package/mac-agent/node_modules/abbrev/abbrev.js +61 -0
  138. package/mac-agent/node_modules/abbrev/package.json +21 -0
  139. package/mac-agent/node_modules/agent-base/README.md +145 -0
  140. package/mac-agent/node_modules/agent-base/dist/src/index.d.ts +78 -0
  141. package/mac-agent/node_modules/agent-base/dist/src/index.js +203 -0
  142. package/mac-agent/node_modules/agent-base/dist/src/index.js.map +1 -0
  143. package/mac-agent/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
  144. package/mac-agent/node_modules/agent-base/dist/src/promisify.js +18 -0
  145. package/mac-agent/node_modules/agent-base/dist/src/promisify.js.map +1 -0
  146. package/mac-agent/node_modules/agent-base/package.json +64 -0
  147. package/mac-agent/node_modules/agent-base/src/index.ts +345 -0
  148. package/mac-agent/node_modules/agent-base/src/promisify.ts +33 -0
  149. package/mac-agent/node_modules/ansi-regex/index.d.ts +37 -0
  150. package/mac-agent/node_modules/ansi-regex/index.js +10 -0
  151. package/mac-agent/node_modules/ansi-regex/license +9 -0
  152. package/mac-agent/node_modules/ansi-regex/package.json +55 -0
  153. package/mac-agent/node_modules/ansi-regex/readme.md +78 -0
  154. package/mac-agent/node_modules/anymatch/LICENSE +15 -0
  155. package/mac-agent/node_modules/anymatch/README.md +87 -0
  156. package/mac-agent/node_modules/anymatch/index.d.ts +20 -0
  157. package/mac-agent/node_modules/anymatch/index.js +104 -0
  158. package/mac-agent/node_modules/anymatch/package.json +48 -0
  159. package/mac-agent/node_modules/aproba/LICENSE +14 -0
  160. package/mac-agent/node_modules/aproba/README.md +94 -0
  161. package/mac-agent/node_modules/aproba/index.js +105 -0
  162. package/mac-agent/node_modules/aproba/package.json +35 -0
  163. package/mac-agent/node_modules/are-we-there-yet/LICENSE.md +18 -0
  164. package/mac-agent/node_modules/are-we-there-yet/README.md +208 -0
  165. package/mac-agent/node_modules/are-we-there-yet/lib/index.js +4 -0
  166. package/mac-agent/node_modules/are-we-there-yet/lib/tracker-base.js +11 -0
  167. package/mac-agent/node_modules/are-we-there-yet/lib/tracker-group.js +116 -0
  168. package/mac-agent/node_modules/are-we-there-yet/lib/tracker-stream.js +36 -0
  169. package/mac-agent/node_modules/are-we-there-yet/lib/tracker.js +32 -0
  170. package/mac-agent/node_modules/are-we-there-yet/package.json +53 -0
  171. package/mac-agent/node_modules/async/CHANGELOG.md +351 -0
  172. package/mac-agent/node_modules/async/LICENSE +19 -0
  173. package/mac-agent/node_modules/async/README.md +59 -0
  174. package/mac-agent/node_modules/async/all.js +119 -0
  175. package/mac-agent/node_modules/async/allLimit.js +46 -0
  176. package/mac-agent/node_modules/async/allSeries.js +45 -0
  177. package/mac-agent/node_modules/async/any.js +122 -0
  178. package/mac-agent/node_modules/async/anyLimit.js +47 -0
  179. package/mac-agent/node_modules/async/anySeries.js +46 -0
  180. package/mac-agent/node_modules/async/apply.js +11 -0
  181. package/mac-agent/node_modules/async/applyEach.js +57 -0
  182. package/mac-agent/node_modules/async/applyEachSeries.js +37 -0
  183. package/mac-agent/node_modules/async/asyncify.js +118 -0
  184. package/mac-agent/node_modules/async/auto.js +333 -0
  185. package/mac-agent/node_modules/async/autoInject.js +182 -0
  186. package/mac-agent/node_modules/async/bower.json +17 -0
  187. package/mac-agent/node_modules/async/cargo.js +63 -0
  188. package/mac-agent/node_modules/async/cargoQueue.js +71 -0
  189. package/mac-agent/node_modules/async/compose.js +55 -0
  190. package/mac-agent/node_modules/async/concat.js +115 -0
  191. package/mac-agent/node_modules/async/concatLimit.js +60 -0
  192. package/mac-agent/node_modules/async/concatSeries.js +41 -0
  193. package/mac-agent/node_modules/async/constant.js +14 -0
  194. package/mac-agent/node_modules/async/detect.js +96 -0
  195. package/mac-agent/node_modules/async/detectLimit.js +48 -0
  196. package/mac-agent/node_modules/async/detectSeries.js +47 -0
  197. package/mac-agent/node_modules/async/dir.js +43 -0
  198. package/mac-agent/node_modules/async/dist/async.js +6061 -0
  199. package/mac-agent/node_modules/async/dist/async.min.js +1 -0
  200. package/mac-agent/node_modules/async/dist/async.mjs +5948 -0
  201. package/mac-agent/node_modules/async/doDuring.js +68 -0
  202. package/mac-agent/node_modules/async/doUntil.js +46 -0
  203. package/mac-agent/node_modules/async/doWhilst.js +68 -0
  204. package/mac-agent/node_modules/async/during.js +78 -0
  205. package/mac-agent/node_modules/async/each.js +129 -0
  206. package/mac-agent/node_modules/async/eachLimit.js +50 -0
  207. package/mac-agent/node_modules/async/eachOf.js +185 -0
  208. package/mac-agent/node_modules/async/eachOfLimit.js +47 -0
  209. package/mac-agent/node_modules/async/eachOfSeries.js +39 -0
  210. package/mac-agent/node_modules/async/eachSeries.js +44 -0
  211. package/mac-agent/node_modules/async/ensureAsync.js +67 -0
  212. package/mac-agent/node_modules/async/every.js +119 -0
  213. package/mac-agent/node_modules/async/everyLimit.js +46 -0
  214. package/mac-agent/node_modules/async/everySeries.js +45 -0
  215. package/mac-agent/node_modules/async/filter.js +93 -0
  216. package/mac-agent/node_modules/async/filterLimit.js +45 -0
  217. package/mac-agent/node_modules/async/filterSeries.js +43 -0
  218. package/mac-agent/node_modules/async/find.js +96 -0
  219. package/mac-agent/node_modules/async/findLimit.js +48 -0
  220. package/mac-agent/node_modules/async/findSeries.js +47 -0
  221. package/mac-agent/node_modules/async/flatMap.js +115 -0
  222. package/mac-agent/node_modules/async/flatMapLimit.js +60 -0
  223. package/mac-agent/node_modules/async/flatMapSeries.js +41 -0
  224. package/mac-agent/node_modules/async/foldl.js +153 -0
  225. package/mac-agent/node_modules/async/foldr.js +41 -0
  226. package/mac-agent/node_modules/async/forEach.js +129 -0
  227. package/mac-agent/node_modules/async/forEachLimit.js +50 -0
  228. package/mac-agent/node_modules/async/forEachOf.js +185 -0
  229. package/mac-agent/node_modules/async/forEachOfLimit.js +47 -0
  230. package/mac-agent/node_modules/async/forEachOfSeries.js +39 -0
  231. package/mac-agent/node_modules/async/forEachSeries.js +44 -0
  232. package/mac-agent/node_modules/async/forever.js +68 -0
  233. package/mac-agent/node_modules/async/groupBy.js +108 -0
  234. package/mac-agent/node_modules/async/groupByLimit.js +71 -0
  235. package/mac-agent/node_modules/async/groupBySeries.js +36 -0
  236. package/mac-agent/node_modules/async/index.js +588 -0
  237. package/mac-agent/node_modules/async/inject.js +153 -0
  238. package/mac-agent/node_modules/async/internal/DoublyLinkedList.js +92 -0
  239. package/mac-agent/node_modules/async/internal/Heap.js +120 -0
  240. package/mac-agent/node_modules/async/internal/applyEach.js +29 -0
  241. package/mac-agent/node_modules/async/internal/asyncEachOfLimit.js +75 -0
  242. package/mac-agent/node_modules/async/internal/awaitify.js +28 -0
  243. package/mac-agent/node_modules/async/internal/breakLoop.js +10 -0
  244. package/mac-agent/node_modules/async/internal/consoleFunc.js +31 -0
  245. package/mac-agent/node_modules/async/internal/createTester.js +40 -0
  246. package/mac-agent/node_modules/async/internal/eachOfLimit.js +90 -0
  247. package/mac-agent/node_modules/async/internal/filter.js +55 -0
  248. package/mac-agent/node_modules/async/internal/getIterator.js +11 -0
  249. package/mac-agent/node_modules/async/internal/initialParams.js +14 -0
  250. package/mac-agent/node_modules/async/internal/isArrayLike.js +10 -0
  251. package/mac-agent/node_modules/async/internal/iterator.js +57 -0
  252. package/mac-agent/node_modules/async/internal/map.js +30 -0
  253. package/mac-agent/node_modules/async/internal/once.js +17 -0
  254. package/mac-agent/node_modules/async/internal/onlyOnce.js +15 -0
  255. package/mac-agent/node_modules/async/internal/parallel.js +34 -0
  256. package/mac-agent/node_modules/async/internal/promiseCallback.js +23 -0
  257. package/mac-agent/node_modules/async/internal/queue.js +294 -0
  258. package/mac-agent/node_modules/async/internal/range.js +14 -0
  259. package/mac-agent/node_modules/async/internal/reject.js +26 -0
  260. package/mac-agent/node_modules/async/internal/setImmediate.js +34 -0
  261. package/mac-agent/node_modules/async/internal/withoutIndex.js +10 -0
  262. package/mac-agent/node_modules/async/internal/wrapAsync.js +34 -0
  263. package/mac-agent/node_modules/async/log.js +41 -0
  264. package/mac-agent/node_modules/async/map.js +142 -0
  265. package/mac-agent/node_modules/async/mapLimit.js +45 -0
  266. package/mac-agent/node_modules/async/mapSeries.js +44 -0
  267. package/mac-agent/node_modules/async/mapValues.js +152 -0
  268. package/mac-agent/node_modules/async/mapValuesLimit.js +61 -0
  269. package/mac-agent/node_modules/async/mapValuesSeries.js +37 -0
  270. package/mac-agent/node_modules/async/memoize.js +91 -0
  271. package/mac-agent/node_modules/async/nextTick.js +52 -0
  272. package/mac-agent/node_modules/async/package.json +75 -0
  273. package/mac-agent/node_modules/async/parallel.js +180 -0
  274. package/mac-agent/node_modules/async/parallelLimit.js +41 -0
  275. package/mac-agent/node_modules/async/priorityQueue.js +60 -0
  276. package/mac-agent/node_modules/async/queue.js +24 -0
  277. package/mac-agent/node_modules/async/race.js +67 -0
  278. package/mac-agent/node_modules/async/reduce.js +153 -0
  279. package/mac-agent/node_modules/async/reduceRight.js +41 -0
  280. package/mac-agent/node_modules/async/reflect.js +78 -0
  281. package/mac-agent/node_modules/async/reflectAll.js +93 -0
  282. package/mac-agent/node_modules/async/reject.js +87 -0
  283. package/mac-agent/node_modules/async/rejectLimit.js +45 -0
  284. package/mac-agent/node_modules/async/rejectSeries.js +43 -0
  285. package/mac-agent/node_modules/async/retry.js +159 -0
  286. package/mac-agent/node_modules/async/retryable.js +77 -0
  287. package/mac-agent/node_modules/async/select.js +93 -0
  288. package/mac-agent/node_modules/async/selectLimit.js +45 -0
  289. package/mac-agent/node_modules/async/selectSeries.js +43 -0
  290. package/mac-agent/node_modules/async/seq.js +79 -0
  291. package/mac-agent/node_modules/async/series.js +186 -0
  292. package/mac-agent/node_modules/async/setImmediate.js +45 -0
  293. package/mac-agent/node_modules/async/some.js +122 -0
  294. package/mac-agent/node_modules/async/someLimit.js +47 -0
  295. package/mac-agent/node_modules/async/someSeries.js +46 -0
  296. package/mac-agent/node_modules/async/sortBy.js +190 -0
  297. package/mac-agent/node_modules/async/timeout.js +89 -0
  298. package/mac-agent/node_modules/async/times.js +50 -0
  299. package/mac-agent/node_modules/async/timesLimit.js +43 -0
  300. package/mac-agent/node_modules/async/timesSeries.js +32 -0
  301. package/mac-agent/node_modules/async/transform.js +173 -0
  302. package/mac-agent/node_modules/async/tryEach.js +78 -0
  303. package/mac-agent/node_modules/async/unmemoize.js +25 -0
  304. package/mac-agent/node_modules/async/until.js +61 -0
  305. package/mac-agent/node_modules/async/waterfall.js +105 -0
  306. package/mac-agent/node_modules/async/whilst.js +78 -0
  307. package/mac-agent/node_modules/async/wrapSync.js +118 -0
  308. package/mac-agent/node_modules/asynckit/LICENSE +21 -0
  309. package/mac-agent/node_modules/asynckit/README.md +233 -0
  310. package/mac-agent/node_modules/asynckit/bench.js +76 -0
  311. package/mac-agent/node_modules/asynckit/index.js +6 -0
  312. package/mac-agent/node_modules/asynckit/lib/abort.js +29 -0
  313. package/mac-agent/node_modules/asynckit/lib/async.js +34 -0
  314. package/mac-agent/node_modules/asynckit/lib/defer.js +26 -0
  315. package/mac-agent/node_modules/asynckit/lib/iterate.js +75 -0
  316. package/mac-agent/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  317. package/mac-agent/node_modules/asynckit/lib/readable_parallel.js +25 -0
  318. package/mac-agent/node_modules/asynckit/lib/readable_serial.js +25 -0
  319. package/mac-agent/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  320. package/mac-agent/node_modules/asynckit/lib/state.js +37 -0
  321. package/mac-agent/node_modules/asynckit/lib/streamify.js +141 -0
  322. package/mac-agent/node_modules/asynckit/lib/terminator.js +29 -0
  323. package/mac-agent/node_modules/asynckit/package.json +63 -0
  324. package/mac-agent/node_modules/asynckit/parallel.js +43 -0
  325. package/mac-agent/node_modules/asynckit/serial.js +17 -0
  326. package/mac-agent/node_modules/asynckit/serialOrdered.js +75 -0
  327. package/mac-agent/node_modules/asynckit/stream.js +21 -0
  328. package/mac-agent/node_modules/axios/CHANGELOG.md +1220 -0
  329. package/mac-agent/node_modules/axios/LICENSE +7 -0
  330. package/mac-agent/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  331. package/mac-agent/node_modules/axios/README.md +1682 -0
  332. package/mac-agent/node_modules/axios/dist/axios.js +4296 -0
  333. package/mac-agent/node_modules/axios/dist/axios.js.map +1 -0
  334. package/mac-agent/node_modules/axios/dist/axios.min.js +3 -0
  335. package/mac-agent/node_modules/axios/dist/axios.min.js.map +1 -0
  336. package/mac-agent/node_modules/axios/dist/browser/axios.cjs +3730 -0
  337. package/mac-agent/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  338. package/mac-agent/node_modules/axios/dist/esm/axios.js +3753 -0
  339. package/mac-agent/node_modules/axios/dist/esm/axios.js.map +1 -0
  340. package/mac-agent/node_modules/axios/dist/esm/axios.min.js +3 -0
  341. package/mac-agent/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  342. package/mac-agent/node_modules/axios/dist/node/axios.cjs +4787 -0
  343. package/mac-agent/node_modules/axios/dist/node/axios.cjs.map +1 -0
  344. package/mac-agent/node_modules/axios/index.d.cts +550 -0
  345. package/mac-agent/node_modules/axios/index.d.ts +572 -0
  346. package/mac-agent/node_modules/axios/index.js +43 -0
  347. package/mac-agent/node_modules/axios/lib/adapters/README.md +37 -0
  348. package/mac-agent/node_modules/axios/lib/adapters/adapters.js +79 -0
  349. package/mac-agent/node_modules/axios/lib/adapters/fetch.js +229 -0
  350. package/mac-agent/node_modules/axios/lib/adapters/http.js +695 -0
  351. package/mac-agent/node_modules/axios/lib/adapters/xhr.js +197 -0
  352. package/mac-agent/node_modules/axios/lib/axios.js +89 -0
  353. package/mac-agent/node_modules/axios/lib/cancel/CancelToken.js +135 -0
  354. package/mac-agent/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  355. package/mac-agent/node_modules/axios/lib/cancel/isCancel.js +5 -0
  356. package/mac-agent/node_modules/axios/lib/core/Axios.js +242 -0
  357. package/mac-agent/node_modules/axios/lib/core/AxiosError.js +103 -0
  358. package/mac-agent/node_modules/axios/lib/core/AxiosHeaders.js +314 -0
  359. package/mac-agent/node_modules/axios/lib/core/InterceptorManager.js +71 -0
  360. package/mac-agent/node_modules/axios/lib/core/README.md +8 -0
  361. package/mac-agent/node_modules/axios/lib/core/buildFullPath.js +22 -0
  362. package/mac-agent/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  363. package/mac-agent/node_modules/axios/lib/core/mergeConfig.js +106 -0
  364. package/mac-agent/node_modules/axios/lib/core/settle.js +27 -0
  365. package/mac-agent/node_modules/axios/lib/core/transformData.js +28 -0
  366. package/mac-agent/node_modules/axios/lib/defaults/index.js +161 -0
  367. package/mac-agent/node_modules/axios/lib/defaults/transitional.js +7 -0
  368. package/mac-agent/node_modules/axios/lib/env/README.md +3 -0
  369. package/mac-agent/node_modules/axios/lib/env/classes/FormData.js +2 -0
  370. package/mac-agent/node_modules/axios/lib/env/data.js +1 -0
  371. package/mac-agent/node_modules/axios/lib/helpers/AxiosTransformStream.js +143 -0
  372. package/mac-agent/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  373. package/mac-agent/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  374. package/mac-agent/node_modules/axios/lib/helpers/README.md +7 -0
  375. package/mac-agent/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
  376. package/mac-agent/node_modules/axios/lib/helpers/bind.js +7 -0
  377. package/mac-agent/node_modules/axios/lib/helpers/buildURL.js +69 -0
  378. package/mac-agent/node_modules/axios/lib/helpers/callbackify.js +16 -0
  379. package/mac-agent/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  380. package/mac-agent/node_modules/axios/lib/helpers/composeSignals.js +48 -0
  381. package/mac-agent/node_modules/axios/lib/helpers/cookies.js +42 -0
  382. package/mac-agent/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
  383. package/mac-agent/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
  384. package/mac-agent/node_modules/axios/lib/helpers/formDataToStream.js +112 -0
  385. package/mac-agent/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  386. package/mac-agent/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  387. package/mac-agent/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  388. package/mac-agent/node_modules/axios/lib/helpers/isURLSameOrigin.js +14 -0
  389. package/mac-agent/node_modules/axios/lib/helpers/null.js +2 -0
  390. package/mac-agent/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  391. package/mac-agent/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  392. package/mac-agent/node_modules/axios/lib/helpers/progressEventReducer.js +44 -0
  393. package/mac-agent/node_modules/axios/lib/helpers/readBlob.js +15 -0
  394. package/mac-agent/node_modules/axios/lib/helpers/resolveConfig.js +57 -0
  395. package/mac-agent/node_modules/axios/lib/helpers/speedometer.js +55 -0
  396. package/mac-agent/node_modules/axios/lib/helpers/spread.js +28 -0
  397. package/mac-agent/node_modules/axios/lib/helpers/throttle.js +44 -0
  398. package/mac-agent/node_modules/axios/lib/helpers/toFormData.js +223 -0
  399. package/mac-agent/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  400. package/mac-agent/node_modules/axios/lib/helpers/trackStream.js +87 -0
  401. package/mac-agent/node_modules/axios/lib/helpers/validator.js +99 -0
  402. package/mac-agent/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  403. package/mac-agent/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  404. package/mac-agent/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  405. package/mac-agent/node_modules/axios/lib/platform/browser/index.js +13 -0
  406. package/mac-agent/node_modules/axios/lib/platform/common/utils.js +51 -0
  407. package/mac-agent/node_modules/axios/lib/platform/index.js +7 -0
  408. package/mac-agent/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  409. package/mac-agent/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  410. package/mac-agent/node_modules/axios/lib/platform/node/index.js +38 -0
  411. package/mac-agent/node_modules/axios/lib/utils.js +744 -0
  412. package/mac-agent/node_modules/axios/package.json +228 -0
  413. package/mac-agent/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  414. package/mac-agent/node_modules/balanced-match/LICENSE.md +21 -0
  415. package/mac-agent/node_modules/balanced-match/README.md +97 -0
  416. package/mac-agent/node_modules/balanced-match/index.js +62 -0
  417. package/mac-agent/node_modules/balanced-match/package.json +48 -0
  418. package/mac-agent/node_modules/binary-extensions/binary-extensions.json +263 -0
  419. package/mac-agent/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  420. package/mac-agent/node_modules/binary-extensions/index.d.ts +14 -0
  421. package/mac-agent/node_modules/binary-extensions/index.js +1 -0
  422. package/mac-agent/node_modules/binary-extensions/license +10 -0
  423. package/mac-agent/node_modules/binary-extensions/package.json +40 -0
  424. package/mac-agent/node_modules/binary-extensions/readme.md +25 -0
  425. package/mac-agent/node_modules/brace-expansion/LICENSE +21 -0
  426. package/mac-agent/node_modules/brace-expansion/README.md +129 -0
  427. package/mac-agent/node_modules/brace-expansion/index.js +201 -0
  428. package/mac-agent/node_modules/brace-expansion/package.json +50 -0
  429. package/mac-agent/node_modules/braces/LICENSE +21 -0
  430. package/mac-agent/node_modules/braces/README.md +586 -0
  431. package/mac-agent/node_modules/braces/index.js +170 -0
  432. package/mac-agent/node_modules/braces/lib/compile.js +60 -0
  433. package/mac-agent/node_modules/braces/lib/constants.js +57 -0
  434. package/mac-agent/node_modules/braces/lib/expand.js +113 -0
  435. package/mac-agent/node_modules/braces/lib/parse.js +331 -0
  436. package/mac-agent/node_modules/braces/lib/stringify.js +32 -0
  437. package/mac-agent/node_modules/braces/lib/utils.js +122 -0
  438. package/mac-agent/node_modules/braces/package.json +77 -0
  439. package/mac-agent/node_modules/call-bind/.eslintignore +1 -0
  440. package/mac-agent/node_modules/call-bind/.eslintrc +16 -0
  441. package/mac-agent/node_modules/call-bind/.github/FUNDING.yml +12 -0
  442. package/mac-agent/node_modules/call-bind/.nycrc +9 -0
  443. package/mac-agent/node_modules/call-bind/CHANGELOG.md +106 -0
  444. package/mac-agent/node_modules/call-bind/LICENSE +21 -0
  445. package/mac-agent/node_modules/call-bind/README.md +64 -0
  446. package/mac-agent/node_modules/call-bind/callBound.js +15 -0
  447. package/mac-agent/node_modules/call-bind/index.js +24 -0
  448. package/mac-agent/node_modules/call-bind/package.json +93 -0
  449. package/mac-agent/node_modules/call-bind/test/callBound.js +54 -0
  450. package/mac-agent/node_modules/call-bind/test/index.js +74 -0
  451. package/mac-agent/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  452. package/mac-agent/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  453. package/mac-agent/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  454. package/mac-agent/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  455. package/mac-agent/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  456. package/mac-agent/node_modules/call-bind-apply-helpers/README.md +62 -0
  457. package/mac-agent/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  458. package/mac-agent/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  459. package/mac-agent/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  460. package/mac-agent/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  461. package/mac-agent/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  462. package/mac-agent/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  463. package/mac-agent/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  464. package/mac-agent/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  465. package/mac-agent/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  466. package/mac-agent/node_modules/call-bind-apply-helpers/index.js +15 -0
  467. package/mac-agent/node_modules/call-bind-apply-helpers/package.json +85 -0
  468. package/mac-agent/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  469. package/mac-agent/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  470. package/mac-agent/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  471. package/mac-agent/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  472. package/mac-agent/node_modules/call-bound/.eslintrc +13 -0
  473. package/mac-agent/node_modules/call-bound/.github/FUNDING.yml +12 -0
  474. package/mac-agent/node_modules/call-bound/.nycrc +9 -0
  475. package/mac-agent/node_modules/call-bound/CHANGELOG.md +42 -0
  476. package/mac-agent/node_modules/call-bound/LICENSE +21 -0
  477. package/mac-agent/node_modules/call-bound/README.md +53 -0
  478. package/mac-agent/node_modules/call-bound/index.d.ts +94 -0
  479. package/mac-agent/node_modules/call-bound/index.js +19 -0
  480. package/mac-agent/node_modules/call-bound/package.json +99 -0
  481. package/mac-agent/node_modules/call-bound/test/index.js +61 -0
  482. package/mac-agent/node_modules/call-bound/tsconfig.json +10 -0
  483. package/mac-agent/node_modules/camelcase/index.js +56 -0
  484. package/mac-agent/node_modules/camelcase/license +21 -0
  485. package/mac-agent/node_modules/camelcase/package.json +39 -0
  486. package/mac-agent/node_modules/camelcase/readme.md +57 -0
  487. package/mac-agent/node_modules/chokidar/LICENSE +21 -0
  488. package/mac-agent/node_modules/chokidar/README.md +308 -0
  489. package/mac-agent/node_modules/chokidar/index.js +973 -0
  490. package/mac-agent/node_modules/chokidar/lib/constants.js +66 -0
  491. package/mac-agent/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  492. package/mac-agent/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  493. package/mac-agent/node_modules/chokidar/package.json +70 -0
  494. package/mac-agent/node_modules/chokidar/types/index.d.ts +192 -0
  495. package/mac-agent/node_modules/chownr/LICENSE +15 -0
  496. package/mac-agent/node_modules/chownr/README.md +3 -0
  497. package/mac-agent/node_modules/chownr/chownr.js +167 -0
  498. package/mac-agent/node_modules/chownr/package.json +32 -0
  499. package/mac-agent/node_modules/cliui/CHANGELOG.md +15 -0
  500. package/mac-agent/node_modules/cliui/LICENSE.txt +14 -0
  501. package/mac-agent/node_modules/cliui/README.md +110 -0
  502. package/mac-agent/node_modules/cliui/index.js +316 -0
  503. package/mac-agent/node_modules/cliui/node_modules/ansi-regex/index.js +4 -0
  504. package/mac-agent/node_modules/cliui/node_modules/ansi-regex/license +21 -0
  505. package/mac-agent/node_modules/cliui/node_modules/ansi-regex/package.json +64 -0
  506. package/mac-agent/node_modules/cliui/node_modules/ansi-regex/readme.md +39 -0
  507. package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/index.js +46 -0
  508. package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/license +21 -0
  509. package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/package.json +45 -0
  510. package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/readme.md +39 -0
  511. package/mac-agent/node_modules/cliui/node_modules/string-width/index.js +37 -0
  512. package/mac-agent/node_modules/cliui/node_modules/string-width/license +21 -0
  513. package/mac-agent/node_modules/cliui/node_modules/string-width/package.json +56 -0
  514. package/mac-agent/node_modules/cliui/node_modules/string-width/readme.md +42 -0
  515. package/mac-agent/node_modules/cliui/node_modules/strip-ansi/index.js +6 -0
  516. package/mac-agent/node_modules/cliui/node_modules/strip-ansi/license +21 -0
  517. package/mac-agent/node_modules/cliui/node_modules/strip-ansi/package.json +57 -0
  518. package/mac-agent/node_modules/cliui/node_modules/strip-ansi/readme.md +33 -0
  519. package/mac-agent/node_modules/cliui/package.json +64 -0
  520. package/mac-agent/node_modules/code-point-at/index.js +32 -0
  521. package/mac-agent/node_modules/code-point-at/license +21 -0
  522. package/mac-agent/node_modules/code-point-at/package.json +38 -0
  523. package/mac-agent/node_modules/code-point-at/readme.md +32 -0
  524. package/mac-agent/node_modules/color/LICENSE +21 -0
  525. package/mac-agent/node_modules/color/README.md +123 -0
  526. package/mac-agent/node_modules/color/index.js +482 -0
  527. package/mac-agent/node_modules/color/package.json +40 -0
  528. package/mac-agent/node_modules/color-convert/CHANGELOG.md +54 -0
  529. package/mac-agent/node_modules/color-convert/LICENSE +21 -0
  530. package/mac-agent/node_modules/color-convert/README.md +68 -0
  531. package/mac-agent/node_modules/color-convert/conversions.js +868 -0
  532. package/mac-agent/node_modules/color-convert/index.js +78 -0
  533. package/mac-agent/node_modules/color-convert/package.json +46 -0
  534. package/mac-agent/node_modules/color-convert/route.js +97 -0
  535. package/mac-agent/node_modules/color-name/.eslintrc.json +43 -0
  536. package/mac-agent/node_modules/color-name/LICENSE +8 -0
  537. package/mac-agent/node_modules/color-name/README.md +11 -0
  538. package/mac-agent/node_modules/color-name/index.js +152 -0
  539. package/mac-agent/node_modules/color-name/package.json +25 -0
  540. package/mac-agent/node_modules/color-name/test.js +7 -0
  541. package/mac-agent/node_modules/color-string/LICENSE +21 -0
  542. package/mac-agent/node_modules/color-string/README.md +62 -0
  543. package/mac-agent/node_modules/color-string/index.js +242 -0
  544. package/mac-agent/node_modules/color-string/package.json +39 -0
  545. package/mac-agent/node_modules/color-support/LICENSE +15 -0
  546. package/mac-agent/node_modules/color-support/README.md +129 -0
  547. package/mac-agent/node_modules/color-support/bin.js +3 -0
  548. package/mac-agent/node_modules/color-support/browser.js +14 -0
  549. package/mac-agent/node_modules/color-support/index.js +134 -0
  550. package/mac-agent/node_modules/color-support/package.json +36 -0
  551. package/mac-agent/node_modules/colorspace/LICENSE.md +20 -0
  552. package/mac-agent/node_modules/colorspace/README.md +43 -0
  553. package/mac-agent/node_modules/colorspace/index.js +29 -0
  554. package/mac-agent/node_modules/colorspace/package.json +37 -0
  555. package/mac-agent/node_modules/combined-stream/License +19 -0
  556. package/mac-agent/node_modules/combined-stream/Readme.md +138 -0
  557. package/mac-agent/node_modules/combined-stream/lib/combined_stream.js +208 -0
  558. package/mac-agent/node_modules/combined-stream/package.json +25 -0
  559. package/mac-agent/node_modules/combined-stream/yarn.lock +17 -0
  560. package/mac-agent/node_modules/concat-map/.travis.yml +4 -0
  561. package/mac-agent/node_modules/concat-map/LICENSE +18 -0
  562. package/mac-agent/node_modules/concat-map/README.markdown +62 -0
  563. package/mac-agent/node_modules/concat-map/example/map.js +6 -0
  564. package/mac-agent/node_modules/concat-map/index.js +13 -0
  565. package/mac-agent/node_modules/concat-map/package.json +43 -0
  566. package/mac-agent/node_modules/concat-map/test/map.js +39 -0
  567. package/mac-agent/node_modules/console-control-strings/LICENSE +13 -0
  568. package/mac-agent/node_modules/console-control-strings/README.md +145 -0
  569. package/mac-agent/node_modules/console-control-strings/README.md~ +140 -0
  570. package/mac-agent/node_modules/console-control-strings/index.js +125 -0
  571. package/mac-agent/node_modules/console-control-strings/package.json +27 -0
  572. package/mac-agent/node_modules/debug/LICENSE +20 -0
  573. package/mac-agent/node_modules/debug/README.md +481 -0
  574. package/mac-agent/node_modules/debug/package.json +64 -0
  575. package/mac-agent/node_modules/debug/src/browser.js +272 -0
  576. package/mac-agent/node_modules/debug/src/common.js +292 -0
  577. package/mac-agent/node_modules/debug/src/index.js +10 -0
  578. package/mac-agent/node_modules/debug/src/node.js +263 -0
  579. package/mac-agent/node_modules/decamelize/index.js +13 -0
  580. package/mac-agent/node_modules/decamelize/license +21 -0
  581. package/mac-agent/node_modules/decamelize/package.json +38 -0
  582. package/mac-agent/node_modules/decamelize/readme.md +48 -0
  583. package/mac-agent/node_modules/define-data-property/.eslintrc +24 -0
  584. package/mac-agent/node_modules/define-data-property/.github/FUNDING.yml +12 -0
  585. package/mac-agent/node_modules/define-data-property/.nycrc +13 -0
  586. package/mac-agent/node_modules/define-data-property/CHANGELOG.md +70 -0
  587. package/mac-agent/node_modules/define-data-property/LICENSE +21 -0
  588. package/mac-agent/node_modules/define-data-property/README.md +67 -0
  589. package/mac-agent/node_modules/define-data-property/index.d.ts +12 -0
  590. package/mac-agent/node_modules/define-data-property/index.js +56 -0
  591. package/mac-agent/node_modules/define-data-property/package.json +106 -0
  592. package/mac-agent/node_modules/define-data-property/test/index.js +392 -0
  593. package/mac-agent/node_modules/define-data-property/tsconfig.json +59 -0
  594. package/mac-agent/node_modules/define-properties/.editorconfig +13 -0
  595. package/mac-agent/node_modules/define-properties/.eslintrc +19 -0
  596. package/mac-agent/node_modules/define-properties/.github/FUNDING.yml +12 -0
  597. package/mac-agent/node_modules/define-properties/.nycrc +9 -0
  598. package/mac-agent/node_modules/define-properties/CHANGELOG.md +91 -0
  599. package/mac-agent/node_modules/define-properties/LICENSE +21 -0
  600. package/mac-agent/node_modules/define-properties/README.md +84 -0
  601. package/mac-agent/node_modules/define-properties/index.js +47 -0
  602. package/mac-agent/node_modules/define-properties/package.json +88 -0
  603. package/mac-agent/node_modules/delayed-stream/License +19 -0
  604. package/mac-agent/node_modules/delayed-stream/Makefile +7 -0
  605. package/mac-agent/node_modules/delayed-stream/Readme.md +141 -0
  606. package/mac-agent/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  607. package/mac-agent/node_modules/delayed-stream/package.json +27 -0
  608. package/mac-agent/node_modules/delegates/History.md +22 -0
  609. package/mac-agent/node_modules/delegates/License +20 -0
  610. package/mac-agent/node_modules/delegates/Makefile +8 -0
  611. package/mac-agent/node_modules/delegates/Readme.md +94 -0
  612. package/mac-agent/node_modules/delegates/index.js +121 -0
  613. package/mac-agent/node_modules/delegates/package.json +13 -0
  614. package/mac-agent/node_modules/delegates/test/index.js +94 -0
  615. package/mac-agent/node_modules/detect-libc/LICENSE +201 -0
  616. package/mac-agent/node_modules/detect-libc/README.md +163 -0
  617. package/mac-agent/node_modules/detect-libc/index.d.ts +14 -0
  618. package/mac-agent/node_modules/detect-libc/lib/detect-libc.js +267 -0
  619. package/mac-agent/node_modules/detect-libc/lib/filesystem.js +41 -0
  620. package/mac-agent/node_modules/detect-libc/lib/process.js +24 -0
  621. package/mac-agent/node_modules/detect-libc/package.json +41 -0
  622. package/mac-agent/node_modules/domexception/LICENSE.txt +21 -0
  623. package/mac-agent/node_modules/domexception/README.md +19 -0
  624. package/mac-agent/node_modules/domexception/lib/DOMException-impl.js +22 -0
  625. package/mac-agent/node_modules/domexception/lib/DOMException.js +368 -0
  626. package/mac-agent/node_modules/domexception/lib/legacy-error-codes.json +27 -0
  627. package/mac-agent/node_modules/domexception/lib/public-api.js +5 -0
  628. package/mac-agent/node_modules/domexception/lib/utils.js +86 -0
  629. package/mac-agent/node_modules/domexception/package.json +36 -0
  630. package/mac-agent/node_modules/dotenv/CHANGELOG.md +520 -0
  631. package/mac-agent/node_modules/dotenv/LICENSE +23 -0
  632. package/mac-agent/node_modules/dotenv/README-es.md +411 -0
  633. package/mac-agent/node_modules/dotenv/README.md +645 -0
  634. package/mac-agent/node_modules/dotenv/SECURITY.md +1 -0
  635. package/mac-agent/node_modules/dotenv/config.d.ts +1 -0
  636. package/mac-agent/node_modules/dotenv/config.js +9 -0
  637. package/mac-agent/node_modules/dotenv/lib/cli-options.js +17 -0
  638. package/mac-agent/node_modules/dotenv/lib/env-options.js +28 -0
  639. package/mac-agent/node_modules/dotenv/lib/main.d.ts +162 -0
  640. package/mac-agent/node_modules/dotenv/lib/main.js +386 -0
  641. package/mac-agent/node_modules/dotenv/package.json +62 -0
  642. package/mac-agent/node_modules/dunder-proto/.eslintrc +5 -0
  643. package/mac-agent/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  644. package/mac-agent/node_modules/dunder-proto/.nycrc +13 -0
  645. package/mac-agent/node_modules/dunder-proto/CHANGELOG.md +24 -0
  646. package/mac-agent/node_modules/dunder-proto/LICENSE +21 -0
  647. package/mac-agent/node_modules/dunder-proto/README.md +54 -0
  648. package/mac-agent/node_modules/dunder-proto/get.d.ts +5 -0
  649. package/mac-agent/node_modules/dunder-proto/get.js +30 -0
  650. package/mac-agent/node_modules/dunder-proto/package.json +76 -0
  651. package/mac-agent/node_modules/dunder-proto/set.d.ts +5 -0
  652. package/mac-agent/node_modules/dunder-proto/set.js +35 -0
  653. package/mac-agent/node_modules/dunder-proto/test/get.js +34 -0
  654. package/mac-agent/node_modules/dunder-proto/test/index.js +4 -0
  655. package/mac-agent/node_modules/dunder-proto/test/set.js +50 -0
  656. package/mac-agent/node_modules/dunder-proto/tsconfig.json +9 -0
  657. package/mac-agent/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  658. package/mac-agent/node_modules/emoji-regex/README.md +73 -0
  659. package/mac-agent/node_modules/emoji-regex/es2015/index.js +6 -0
  660. package/mac-agent/node_modules/emoji-regex/es2015/text.js +6 -0
  661. package/mac-agent/node_modules/emoji-regex/index.d.ts +23 -0
  662. package/mac-agent/node_modules/emoji-regex/index.js +6 -0
  663. package/mac-agent/node_modules/emoji-regex/package.json +50 -0
  664. package/mac-agent/node_modules/emoji-regex/text.js +6 -0
  665. package/mac-agent/node_modules/enabled/.travis.yml +9 -0
  666. package/mac-agent/node_modules/enabled/LICENSE +20 -0
  667. package/mac-agent/node_modules/enabled/README.md +68 -0
  668. package/mac-agent/node_modules/enabled/index.js +34 -0
  669. package/mac-agent/node_modules/enabled/package.json +33 -0
  670. package/mac-agent/node_modules/enabled/test.js +39 -0
  671. package/mac-agent/node_modules/error-ex/LICENSE +21 -0
  672. package/mac-agent/node_modules/error-ex/README.md +144 -0
  673. package/mac-agent/node_modules/error-ex/index.js +141 -0
  674. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/.editorconfig +18 -0
  675. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/.istanbul.yml +4 -0
  676. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/.travis.yml +17 -0
  677. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/LICENSE +21 -0
  678. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/README.md +16 -0
  679. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/index.js +10 -0
  680. package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/package.json +34 -0
  681. package/mac-agent/node_modules/error-ex/package.json +46 -0
  682. package/mac-agent/node_modules/es-define-property/.eslintrc +13 -0
  683. package/mac-agent/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  684. package/mac-agent/node_modules/es-define-property/.nycrc +9 -0
  685. package/mac-agent/node_modules/es-define-property/CHANGELOG.md +29 -0
  686. package/mac-agent/node_modules/es-define-property/LICENSE +21 -0
  687. package/mac-agent/node_modules/es-define-property/README.md +49 -0
  688. package/mac-agent/node_modules/es-define-property/index.d.ts +3 -0
  689. package/mac-agent/node_modules/es-define-property/index.js +14 -0
  690. package/mac-agent/node_modules/es-define-property/package.json +81 -0
  691. package/mac-agent/node_modules/es-define-property/test/index.js +56 -0
  692. package/mac-agent/node_modules/es-define-property/tsconfig.json +10 -0
  693. package/mac-agent/node_modules/es-errors/.eslintrc +5 -0
  694. package/mac-agent/node_modules/es-errors/.github/FUNDING.yml +12 -0
  695. package/mac-agent/node_modules/es-errors/CHANGELOG.md +40 -0
  696. package/mac-agent/node_modules/es-errors/LICENSE +21 -0
  697. package/mac-agent/node_modules/es-errors/README.md +55 -0
  698. package/mac-agent/node_modules/es-errors/eval.d.ts +3 -0
  699. package/mac-agent/node_modules/es-errors/eval.js +4 -0
  700. package/mac-agent/node_modules/es-errors/index.d.ts +3 -0
  701. package/mac-agent/node_modules/es-errors/index.js +4 -0
  702. package/mac-agent/node_modules/es-errors/package.json +80 -0
  703. package/mac-agent/node_modules/es-errors/range.d.ts +3 -0
  704. package/mac-agent/node_modules/es-errors/range.js +4 -0
  705. package/mac-agent/node_modules/es-errors/ref.d.ts +3 -0
  706. package/mac-agent/node_modules/es-errors/ref.js +4 -0
  707. package/mac-agent/node_modules/es-errors/syntax.d.ts +3 -0
  708. package/mac-agent/node_modules/es-errors/syntax.js +4 -0
  709. package/mac-agent/node_modules/es-errors/test/index.js +19 -0
  710. package/mac-agent/node_modules/es-errors/tsconfig.json +49 -0
  711. package/mac-agent/node_modules/es-errors/type.d.ts +3 -0
  712. package/mac-agent/node_modules/es-errors/type.js +4 -0
  713. package/mac-agent/node_modules/es-errors/uri.d.ts +3 -0
  714. package/mac-agent/node_modules/es-errors/uri.js +4 -0
  715. package/mac-agent/node_modules/es-object-atoms/.eslintrc +16 -0
  716. package/mac-agent/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  717. package/mac-agent/node_modules/es-object-atoms/CHANGELOG.md +37 -0
  718. package/mac-agent/node_modules/es-object-atoms/LICENSE +21 -0
  719. package/mac-agent/node_modules/es-object-atoms/README.md +63 -0
  720. package/mac-agent/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  721. package/mac-agent/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  722. package/mac-agent/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  723. package/mac-agent/node_modules/es-object-atoms/ToObject.js +10 -0
  724. package/mac-agent/node_modules/es-object-atoms/index.d.ts +3 -0
  725. package/mac-agent/node_modules/es-object-atoms/index.js +4 -0
  726. package/mac-agent/node_modules/es-object-atoms/isObject.d.ts +3 -0
  727. package/mac-agent/node_modules/es-object-atoms/isObject.js +6 -0
  728. package/mac-agent/node_modules/es-object-atoms/package.json +80 -0
  729. package/mac-agent/node_modules/es-object-atoms/test/index.js +38 -0
  730. package/mac-agent/node_modules/es-object-atoms/tsconfig.json +6 -0
  731. package/mac-agent/node_modules/es-set-tostringtag/.eslintrc +13 -0
  732. package/mac-agent/node_modules/es-set-tostringtag/.nycrc +9 -0
  733. package/mac-agent/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
  734. package/mac-agent/node_modules/es-set-tostringtag/LICENSE +21 -0
  735. package/mac-agent/node_modules/es-set-tostringtag/README.md +53 -0
  736. package/mac-agent/node_modules/es-set-tostringtag/index.d.ts +10 -0
  737. package/mac-agent/node_modules/es-set-tostringtag/index.js +35 -0
  738. package/mac-agent/node_modules/es-set-tostringtag/package.json +78 -0
  739. package/mac-agent/node_modules/es-set-tostringtag/test/index.js +85 -0
  740. package/mac-agent/node_modules/es-set-tostringtag/tsconfig.json +9 -0
  741. package/mac-agent/node_modules/fecha/LICENSE +22 -0
  742. package/mac-agent/node_modules/fecha/README.md +320 -0
  743. package/mac-agent/node_modules/fecha/dist/fecha.min.js +2 -0
  744. package/mac-agent/node_modules/fecha/dist/fecha.min.js.map +1 -0
  745. package/mac-agent/node_modules/fecha/lib/fecha.d.ts +52 -0
  746. package/mac-agent/node_modules/fecha/lib/fecha.js +403 -0
  747. package/mac-agent/node_modules/fecha/lib/fecha.js.map +1 -0
  748. package/mac-agent/node_modules/fecha/lib/fecha.umd.js +418 -0
  749. package/mac-agent/node_modules/fecha/lib/fecha.umd.js.map +1 -0
  750. package/mac-agent/node_modules/fecha/package.json +55 -0
  751. package/mac-agent/node_modules/fecha/src/fecha.ts +524 -0
  752. package/mac-agent/node_modules/fill-range/LICENSE +21 -0
  753. package/mac-agent/node_modules/fill-range/README.md +237 -0
  754. package/mac-agent/node_modules/fill-range/index.js +248 -0
  755. package/mac-agent/node_modules/fill-range/package.json +74 -0
  756. package/mac-agent/node_modules/find-up/index.js +53 -0
  757. package/mac-agent/node_modules/find-up/license +21 -0
  758. package/mac-agent/node_modules/find-up/package.json +51 -0
  759. package/mac-agent/node_modules/find-up/readme.md +72 -0
  760. package/mac-agent/node_modules/fn.name/.gitattributes +1 -0
  761. package/mac-agent/node_modules/fn.name/.travis.yml +10 -0
  762. package/mac-agent/node_modules/fn.name/LICENSE +22 -0
  763. package/mac-agent/node_modules/fn.name/README.md +42 -0
  764. package/mac-agent/node_modules/fn.name/index.js +42 -0
  765. package/mac-agent/node_modules/fn.name/package.json +37 -0
  766. package/mac-agent/node_modules/fn.name/test.js +73 -0
  767. package/mac-agent/node_modules/follow-redirects/LICENSE +18 -0
  768. package/mac-agent/node_modules/follow-redirects/README.md +155 -0
  769. package/mac-agent/node_modules/follow-redirects/debug.js +15 -0
  770. package/mac-agent/node_modules/follow-redirects/http.js +1 -0
  771. package/mac-agent/node_modules/follow-redirects/https.js +1 -0
  772. package/mac-agent/node_modules/follow-redirects/index.js +686 -0
  773. package/mac-agent/node_modules/follow-redirects/package.json +58 -0
  774. package/mac-agent/node_modules/form-data/License +19 -0
  775. package/mac-agent/node_modules/form-data/README.md.bak +355 -0
  776. package/mac-agent/node_modules/form-data/Readme.md +355 -0
  777. package/mac-agent/node_modules/form-data/index.d.ts +62 -0
  778. package/mac-agent/node_modules/form-data/lib/browser.js +4 -0
  779. package/mac-agent/node_modules/form-data/lib/form_data.js +498 -0
  780. package/mac-agent/node_modules/form-data/lib/populate.js +10 -0
  781. package/mac-agent/node_modules/form-data/package.json +66 -0
  782. package/mac-agent/node_modules/fs-minipass/LICENSE +15 -0
  783. package/mac-agent/node_modules/fs-minipass/README.md +70 -0
  784. package/mac-agent/node_modules/fs-minipass/index.js +422 -0
  785. package/mac-agent/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
  786. package/mac-agent/node_modules/fs-minipass/node_modules/minipass/README.md +728 -0
  787. package/mac-agent/node_modules/fs-minipass/node_modules/minipass/index.d.ts +155 -0
  788. package/mac-agent/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
  789. package/mac-agent/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
  790. package/mac-agent/node_modules/fs-minipass/package.json +39 -0
  791. package/mac-agent/node_modules/fs.realpath/LICENSE +43 -0
  792. package/mac-agent/node_modules/fs.realpath/README.md +33 -0
  793. package/mac-agent/node_modules/fs.realpath/index.js +66 -0
  794. package/mac-agent/node_modules/fs.realpath/old.js +303 -0
  795. package/mac-agent/node_modules/fs.realpath/package.json +26 -0
  796. package/mac-agent/node_modules/fsevents/LICENSE +22 -0
  797. package/mac-agent/node_modules/fsevents/README.md +89 -0
  798. package/mac-agent/node_modules/fsevents/fsevents.d.ts +46 -0
  799. package/mac-agent/node_modules/fsevents/fsevents.js +83 -0
  800. package/mac-agent/node_modules/fsevents/fsevents.node +0 -0
  801. package/mac-agent/node_modules/fsevents/package.json +62 -0
  802. package/mac-agent/node_modules/function-bind/.eslintrc +21 -0
  803. package/mac-agent/node_modules/function-bind/.github/FUNDING.yml +12 -0
  804. package/mac-agent/node_modules/function-bind/.github/SECURITY.md +3 -0
  805. package/mac-agent/node_modules/function-bind/.nycrc +13 -0
  806. package/mac-agent/node_modules/function-bind/CHANGELOG.md +136 -0
  807. package/mac-agent/node_modules/function-bind/LICENSE +20 -0
  808. package/mac-agent/node_modules/function-bind/README.md +46 -0
  809. package/mac-agent/node_modules/function-bind/implementation.js +84 -0
  810. package/mac-agent/node_modules/function-bind/index.js +5 -0
  811. package/mac-agent/node_modules/function-bind/package.json +87 -0
  812. package/mac-agent/node_modules/function-bind/test/.eslintrc +9 -0
  813. package/mac-agent/node_modules/function-bind/test/index.js +252 -0
  814. package/mac-agent/node_modules/gauge/CHANGELOG.md +163 -0
  815. package/mac-agent/node_modules/gauge/LICENSE +13 -0
  816. package/mac-agent/node_modules/gauge/README.md +402 -0
  817. package/mac-agent/node_modules/gauge/base-theme.js +14 -0
  818. package/mac-agent/node_modules/gauge/error.js +24 -0
  819. package/mac-agent/node_modules/gauge/has-color.js +4 -0
  820. package/mac-agent/node_modules/gauge/index.js +233 -0
  821. package/mac-agent/node_modules/gauge/package.json +66 -0
  822. package/mac-agent/node_modules/gauge/plumbing.js +48 -0
  823. package/mac-agent/node_modules/gauge/process.js +3 -0
  824. package/mac-agent/node_modules/gauge/progress-bar.js +35 -0
  825. package/mac-agent/node_modules/gauge/render-template.js +178 -0
  826. package/mac-agent/node_modules/gauge/set-immediate.js +7 -0
  827. package/mac-agent/node_modules/gauge/set-interval.js +3 -0
  828. package/mac-agent/node_modules/gauge/spin.js +5 -0
  829. package/mac-agent/node_modules/gauge/template-item.js +72 -0
  830. package/mac-agent/node_modules/gauge/theme-set.js +114 -0
  831. package/mac-agent/node_modules/gauge/themes.js +56 -0
  832. package/mac-agent/node_modules/gauge/wide-truncate.js +25 -0
  833. package/mac-agent/node_modules/get-caller-file/LICENSE.md +6 -0
  834. package/mac-agent/node_modules/get-caller-file/README.md +4 -0
  835. package/mac-agent/node_modules/get-caller-file/index.js +20 -0
  836. package/mac-agent/node_modules/get-caller-file/package.json +31 -0
  837. package/mac-agent/node_modules/get-intrinsic/.eslintrc +42 -0
  838. package/mac-agent/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  839. package/mac-agent/node_modules/get-intrinsic/.nycrc +9 -0
  840. package/mac-agent/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  841. package/mac-agent/node_modules/get-intrinsic/LICENSE +21 -0
  842. package/mac-agent/node_modules/get-intrinsic/README.md +71 -0
  843. package/mac-agent/node_modules/get-intrinsic/index.js +378 -0
  844. package/mac-agent/node_modules/get-intrinsic/package.json +97 -0
  845. package/mac-agent/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  846. package/mac-agent/node_modules/get-proto/.eslintrc +10 -0
  847. package/mac-agent/node_modules/get-proto/.github/FUNDING.yml +12 -0
  848. package/mac-agent/node_modules/get-proto/.nycrc +9 -0
  849. package/mac-agent/node_modules/get-proto/CHANGELOG.md +21 -0
  850. package/mac-agent/node_modules/get-proto/LICENSE +21 -0
  851. package/mac-agent/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  852. package/mac-agent/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  853. package/mac-agent/node_modules/get-proto/README.md +50 -0
  854. package/mac-agent/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  855. package/mac-agent/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  856. package/mac-agent/node_modules/get-proto/index.d.ts +5 -0
  857. package/mac-agent/node_modules/get-proto/index.js +27 -0
  858. package/mac-agent/node_modules/get-proto/package.json +81 -0
  859. package/mac-agent/node_modules/get-proto/test/index.js +68 -0
  860. package/mac-agent/node_modules/get-proto/tsconfig.json +9 -0
  861. package/mac-agent/node_modules/glob/LICENSE +21 -0
  862. package/mac-agent/node_modules/glob/README.md +378 -0
  863. package/mac-agent/node_modules/glob/common.js +238 -0
  864. package/mac-agent/node_modules/glob/glob.js +790 -0
  865. package/mac-agent/node_modules/glob/package.json +55 -0
  866. package/mac-agent/node_modules/glob/sync.js +486 -0
  867. package/mac-agent/node_modules/glob-parent/CHANGELOG.md +110 -0
  868. package/mac-agent/node_modules/glob-parent/LICENSE +15 -0
  869. package/mac-agent/node_modules/glob-parent/README.md +137 -0
  870. package/mac-agent/node_modules/glob-parent/index.js +42 -0
  871. package/mac-agent/node_modules/glob-parent/package.json +48 -0
  872. package/mac-agent/node_modules/gopd/.eslintrc +16 -0
  873. package/mac-agent/node_modules/gopd/.github/FUNDING.yml +12 -0
  874. package/mac-agent/node_modules/gopd/CHANGELOG.md +45 -0
  875. package/mac-agent/node_modules/gopd/LICENSE +21 -0
  876. package/mac-agent/node_modules/gopd/README.md +40 -0
  877. package/mac-agent/node_modules/gopd/gOPD.d.ts +1 -0
  878. package/mac-agent/node_modules/gopd/gOPD.js +4 -0
  879. package/mac-agent/node_modules/gopd/index.d.ts +5 -0
  880. package/mac-agent/node_modules/gopd/index.js +15 -0
  881. package/mac-agent/node_modules/gopd/package.json +77 -0
  882. package/mac-agent/node_modules/gopd/test/index.js +36 -0
  883. package/mac-agent/node_modules/gopd/tsconfig.json +9 -0
  884. package/mac-agent/node_modules/graceful-fs/LICENSE +15 -0
  885. package/mac-agent/node_modules/graceful-fs/README.md +143 -0
  886. package/mac-agent/node_modules/graceful-fs/clone.js +23 -0
  887. package/mac-agent/node_modules/graceful-fs/graceful-fs.js +448 -0
  888. package/mac-agent/node_modules/graceful-fs/legacy-streams.js +118 -0
  889. package/mac-agent/node_modules/graceful-fs/package.json +53 -0
  890. package/mac-agent/node_modules/graceful-fs/polyfills.js +355 -0
  891. package/mac-agent/node_modules/has-flag/index.js +8 -0
  892. package/mac-agent/node_modules/has-flag/license +9 -0
  893. package/mac-agent/node_modules/has-flag/package.json +44 -0
  894. package/mac-agent/node_modules/has-flag/readme.md +70 -0
  895. package/mac-agent/node_modules/has-property-descriptors/.eslintrc +13 -0
  896. package/mac-agent/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
  897. package/mac-agent/node_modules/has-property-descriptors/.nycrc +9 -0
  898. package/mac-agent/node_modules/has-property-descriptors/CHANGELOG.md +35 -0
  899. package/mac-agent/node_modules/has-property-descriptors/LICENSE +21 -0
  900. package/mac-agent/node_modules/has-property-descriptors/README.md +43 -0
  901. package/mac-agent/node_modules/has-property-descriptors/index.js +22 -0
  902. package/mac-agent/node_modules/has-property-descriptors/package.json +77 -0
  903. package/mac-agent/node_modules/has-property-descriptors/test/index.js +57 -0
  904. package/mac-agent/node_modules/has-symbols/.eslintrc +11 -0
  905. package/mac-agent/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  906. package/mac-agent/node_modules/has-symbols/.nycrc +9 -0
  907. package/mac-agent/node_modules/has-symbols/CHANGELOG.md +91 -0
  908. package/mac-agent/node_modules/has-symbols/LICENSE +21 -0
  909. package/mac-agent/node_modules/has-symbols/README.md +46 -0
  910. package/mac-agent/node_modules/has-symbols/index.d.ts +3 -0
  911. package/mac-agent/node_modules/has-symbols/index.js +14 -0
  912. package/mac-agent/node_modules/has-symbols/package.json +111 -0
  913. package/mac-agent/node_modules/has-symbols/shams.d.ts +3 -0
  914. package/mac-agent/node_modules/has-symbols/shams.js +45 -0
  915. package/mac-agent/node_modules/has-symbols/test/index.js +22 -0
  916. package/mac-agent/node_modules/has-symbols/test/shams/core-js.js +29 -0
  917. package/mac-agent/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  918. package/mac-agent/node_modules/has-symbols/test/tests.js +58 -0
  919. package/mac-agent/node_modules/has-symbols/tsconfig.json +10 -0
  920. package/mac-agent/node_modules/has-tostringtag/.eslintrc +5 -0
  921. package/mac-agent/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
  922. package/mac-agent/node_modules/has-tostringtag/.nycrc +13 -0
  923. package/mac-agent/node_modules/has-tostringtag/CHANGELOG.md +42 -0
  924. package/mac-agent/node_modules/has-tostringtag/LICENSE +21 -0
  925. package/mac-agent/node_modules/has-tostringtag/README.md +46 -0
  926. package/mac-agent/node_modules/has-tostringtag/index.d.ts +3 -0
  927. package/mac-agent/node_modules/has-tostringtag/index.js +8 -0
  928. package/mac-agent/node_modules/has-tostringtag/package.json +108 -0
  929. package/mac-agent/node_modules/has-tostringtag/shams.d.ts +3 -0
  930. package/mac-agent/node_modules/has-tostringtag/shams.js +8 -0
  931. package/mac-agent/node_modules/has-tostringtag/test/index.js +21 -0
  932. package/mac-agent/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
  933. package/mac-agent/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
  934. package/mac-agent/node_modules/has-tostringtag/test/tests.js +15 -0
  935. package/mac-agent/node_modules/has-tostringtag/tsconfig.json +49 -0
  936. package/mac-agent/node_modules/has-unicode/LICENSE +14 -0
  937. package/mac-agent/node_modules/has-unicode/README.md +43 -0
  938. package/mac-agent/node_modules/has-unicode/index.js +16 -0
  939. package/mac-agent/node_modules/has-unicode/package.json +30 -0
  940. package/mac-agent/node_modules/hasown/.eslintrc +5 -0
  941. package/mac-agent/node_modules/hasown/.github/FUNDING.yml +12 -0
  942. package/mac-agent/node_modules/hasown/.nycrc +13 -0
  943. package/mac-agent/node_modules/hasown/CHANGELOG.md +40 -0
  944. package/mac-agent/node_modules/hasown/LICENSE +21 -0
  945. package/mac-agent/node_modules/hasown/README.md +40 -0
  946. package/mac-agent/node_modules/hasown/index.d.ts +3 -0
  947. package/mac-agent/node_modules/hasown/index.js +8 -0
  948. package/mac-agent/node_modules/hasown/package.json +92 -0
  949. package/mac-agent/node_modules/hasown/tsconfig.json +6 -0
  950. package/mac-agent/node_modules/hosted-git-info/CHANGELOG.md +151 -0
  951. package/mac-agent/node_modules/hosted-git-info/LICENSE +13 -0
  952. package/mac-agent/node_modules/hosted-git-info/README.md +133 -0
  953. package/mac-agent/node_modules/hosted-git-info/git-host-info.js +79 -0
  954. package/mac-agent/node_modules/hosted-git-info/git-host.js +156 -0
  955. package/mac-agent/node_modules/hosted-git-info/index.js +148 -0
  956. package/mac-agent/node_modules/hosted-git-info/package.json +40 -0
  957. package/mac-agent/node_modules/https-proxy-agent/README.md +137 -0
  958. package/mac-agent/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
  959. package/mac-agent/node_modules/https-proxy-agent/dist/agent.js +177 -0
  960. package/mac-agent/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
  961. package/mac-agent/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
  962. package/mac-agent/node_modules/https-proxy-agent/dist/index.js +14 -0
  963. package/mac-agent/node_modules/https-proxy-agent/dist/index.js.map +1 -0
  964. package/mac-agent/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
  965. package/mac-agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
  966. package/mac-agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
  967. package/mac-agent/node_modules/https-proxy-agent/package.json +56 -0
  968. package/mac-agent/node_modules/ignore-by-default/LICENSE +14 -0
  969. package/mac-agent/node_modules/ignore-by-default/README.md +26 -0
  970. package/mac-agent/node_modules/ignore-by-default/index.js +12 -0
  971. package/mac-agent/node_modules/ignore-by-default/package.json +34 -0
  972. package/mac-agent/node_modules/inflight/LICENSE +15 -0
  973. package/mac-agent/node_modules/inflight/README.md +37 -0
  974. package/mac-agent/node_modules/inflight/inflight.js +54 -0
  975. package/mac-agent/node_modules/inflight/package.json +29 -0
  976. package/mac-agent/node_modules/inherits/LICENSE +16 -0
  977. package/mac-agent/node_modules/inherits/README.md +42 -0
  978. package/mac-agent/node_modules/inherits/inherits.js +9 -0
  979. package/mac-agent/node_modules/inherits/inherits_browser.js +27 -0
  980. package/mac-agent/node_modules/inherits/package.json +29 -0
  981. package/mac-agent/node_modules/invert-kv/index.js +15 -0
  982. package/mac-agent/node_modules/invert-kv/package.json +33 -0
  983. package/mac-agent/node_modules/invert-kv/readme.md +25 -0
  984. package/mac-agent/node_modules/is-arrayish/LICENSE +21 -0
  985. package/mac-agent/node_modules/is-arrayish/README.md +16 -0
  986. package/mac-agent/node_modules/is-arrayish/index.js +9 -0
  987. package/mac-agent/node_modules/is-arrayish/package.json +45 -0
  988. package/mac-agent/node_modules/is-arrayish/yarn-error.log +1443 -0
  989. package/mac-agent/node_modules/is-binary-path/index.d.ts +17 -0
  990. package/mac-agent/node_modules/is-binary-path/index.js +7 -0
  991. package/mac-agent/node_modules/is-binary-path/license +9 -0
  992. package/mac-agent/node_modules/is-binary-path/package.json +40 -0
  993. package/mac-agent/node_modules/is-binary-path/readme.md +34 -0
  994. package/mac-agent/node_modules/is-core-module/.eslintrc +18 -0
  995. package/mac-agent/node_modules/is-core-module/.nycrc +9 -0
  996. package/mac-agent/node_modules/is-core-module/CHANGELOG.md +218 -0
  997. package/mac-agent/node_modules/is-core-module/LICENSE +20 -0
  998. package/mac-agent/node_modules/is-core-module/README.md +40 -0
  999. package/mac-agent/node_modules/is-core-module/core.json +162 -0
  1000. package/mac-agent/node_modules/is-core-module/index.js +69 -0
  1001. package/mac-agent/node_modules/is-core-module/package.json +76 -0
  1002. package/mac-agent/node_modules/is-core-module/test/index.js +157 -0
  1003. package/mac-agent/node_modules/is-extglob/LICENSE +21 -0
  1004. package/mac-agent/node_modules/is-extglob/README.md +107 -0
  1005. package/mac-agent/node_modules/is-extglob/index.js +20 -0
  1006. package/mac-agent/node_modules/is-extglob/package.json +69 -0
  1007. package/mac-agent/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  1008. package/mac-agent/node_modules/is-fullwidth-code-point/index.js +50 -0
  1009. package/mac-agent/node_modules/is-fullwidth-code-point/license +9 -0
  1010. package/mac-agent/node_modules/is-fullwidth-code-point/package.json +42 -0
  1011. package/mac-agent/node_modules/is-fullwidth-code-point/readme.md +39 -0
  1012. package/mac-agent/node_modules/is-glob/LICENSE +21 -0
  1013. package/mac-agent/node_modules/is-glob/README.md +206 -0
  1014. package/mac-agent/node_modules/is-glob/index.js +150 -0
  1015. package/mac-agent/node_modules/is-glob/package.json +81 -0
  1016. package/mac-agent/node_modules/is-number/LICENSE +21 -0
  1017. package/mac-agent/node_modules/is-number/README.md +187 -0
  1018. package/mac-agent/node_modules/is-number/index.js +18 -0
  1019. package/mac-agent/node_modules/is-number/package.json +82 -0
  1020. package/mac-agent/node_modules/is-stream/index.d.ts +79 -0
  1021. package/mac-agent/node_modules/is-stream/index.js +28 -0
  1022. package/mac-agent/node_modules/is-stream/license +9 -0
  1023. package/mac-agent/node_modules/is-stream/package.json +42 -0
  1024. package/mac-agent/node_modules/is-stream/readme.md +60 -0
  1025. package/mac-agent/node_modules/is-utf8/LICENSE +9 -0
  1026. package/mac-agent/node_modules/is-utf8/README.md +16 -0
  1027. package/mac-agent/node_modules/is-utf8/is-utf8.js +76 -0
  1028. package/mac-agent/node_modules/is-utf8/package.json +19 -0
  1029. package/mac-agent/node_modules/isexe/LICENSE +15 -0
  1030. package/mac-agent/node_modules/isexe/README.md +51 -0
  1031. package/mac-agent/node_modules/isexe/index.js +57 -0
  1032. package/mac-agent/node_modules/isexe/mode.js +41 -0
  1033. package/mac-agent/node_modules/isexe/package.json +31 -0
  1034. package/mac-agent/node_modules/isexe/test/basic.js +221 -0
  1035. package/mac-agent/node_modules/isexe/windows.js +42 -0
  1036. package/mac-agent/node_modules/kuler/.travis.yml +5 -0
  1037. package/mac-agent/node_modules/kuler/LICENSE +7 -0
  1038. package/mac-agent/node_modules/kuler/README.md +40 -0
  1039. package/mac-agent/node_modules/kuler/index.js +118 -0
  1040. package/mac-agent/node_modules/kuler/package.json +34 -0
  1041. package/mac-agent/node_modules/kuler/test.js +23 -0
  1042. package/mac-agent/node_modules/lcid/index.js +22 -0
  1043. package/mac-agent/node_modules/lcid/lcid.json +203 -0
  1044. package/mac-agent/node_modules/lcid/license +21 -0
  1045. package/mac-agent/node_modules/lcid/package.json +46 -0
  1046. package/mac-agent/node_modules/lcid/readme.md +35 -0
  1047. package/mac-agent/node_modules/load-json-file/index.js +21 -0
  1048. package/mac-agent/node_modules/load-json-file/license +21 -0
  1049. package/mac-agent/node_modules/load-json-file/package.json +46 -0
  1050. package/mac-agent/node_modules/load-json-file/readme.md +45 -0
  1051. package/mac-agent/node_modules/logform/.babelrc +3 -0
  1052. package/mac-agent/node_modules/logform/.eslintrc +7 -0
  1053. package/mac-agent/node_modules/logform/.gitattributes +1 -0
  1054. package/mac-agent/node_modules/logform/CHANGELOG.md +309 -0
  1055. package/mac-agent/node_modules/logform/LICENSE +21 -0
  1056. package/mac-agent/node_modules/logform/README.md +653 -0
  1057. package/mac-agent/node_modules/logform/align.js +14 -0
  1058. package/mac-agent/node_modules/logform/browser.js +38 -0
  1059. package/mac-agent/node_modules/logform/cli.js +52 -0
  1060. package/mac-agent/node_modules/logform/colorize.js +122 -0
  1061. package/mac-agent/node_modules/logform/combine.js +66 -0
  1062. package/mac-agent/node_modules/logform/dist/align.js +14 -0
  1063. package/mac-agent/node_modules/logform/dist/browser.js +72 -0
  1064. package/mac-agent/node_modules/logform/dist/cli.js +62 -0
  1065. package/mac-agent/node_modules/logform/dist/colorize.js +131 -0
  1066. package/mac-agent/node_modules/logform/dist/combine.js +62 -0
  1067. package/mac-agent/node_modules/logform/dist/errors.js +44 -0
  1068. package/mac-agent/node_modules/logform/dist/format.js +70 -0
  1069. package/mac-agent/node_modules/logform/dist/index.js +86 -0
  1070. package/mac-agent/node_modules/logform/dist/json.js +30 -0
  1071. package/mac-agent/node_modules/logform/dist/label.js +18 -0
  1072. package/mac-agent/node_modules/logform/dist/levels.js +13 -0
  1073. package/mac-agent/node_modules/logform/dist/logstash.js +28 -0
  1074. package/mac-agent/node_modules/logform/dist/metadata.js +56 -0
  1075. package/mac-agent/node_modules/logform/dist/ms.js +18 -0
  1076. package/mac-agent/node_modules/logform/dist/pad-levels.js +110 -0
  1077. package/mac-agent/node_modules/logform/dist/pretty-print.js +32 -0
  1078. package/mac-agent/node_modules/logform/dist/printf.js +33 -0
  1079. package/mac-agent/node_modules/logform/dist/simple.js +32 -0
  1080. package/mac-agent/node_modules/logform/dist/splat.js +143 -0
  1081. package/mac-agent/node_modules/logform/dist/timestamp.js +26 -0
  1082. package/mac-agent/node_modules/logform/dist/uncolorize.js +25 -0
  1083. package/mac-agent/node_modules/logform/errors.js +41 -0
  1084. package/mac-agent/node_modules/logform/format.js +52 -0
  1085. package/mac-agent/node_modules/logform/index.d.ts +201 -0
  1086. package/mac-agent/node_modules/logform/index.js +52 -0
  1087. package/mac-agent/node_modules/logform/json.js +30 -0
  1088. package/mac-agent/node_modules/logform/label.js +19 -0
  1089. package/mac-agent/node_modules/logform/levels.js +12 -0
  1090. package/mac-agent/node_modules/logform/logstash.js +29 -0
  1091. package/mac-agent/node_modules/logform/metadata.js +61 -0
  1092. package/mac-agent/node_modules/logform/ms.js +18 -0
  1093. package/mac-agent/node_modules/logform/package.json +53 -0
  1094. package/mac-agent/node_modules/logform/pad-levels.js +83 -0
  1095. package/mac-agent/node_modules/logform/pretty-print.js +29 -0
  1096. package/mac-agent/node_modules/logform/printf.js +26 -0
  1097. package/mac-agent/node_modules/logform/simple.js +33 -0
  1098. package/mac-agent/node_modules/logform/splat.js +132 -0
  1099. package/mac-agent/node_modules/logform/timestamp.js +30 -0
  1100. package/mac-agent/node_modules/logform/tsconfig.json +22 -0
  1101. package/mac-agent/node_modules/logform/uncolorize.js +27 -0
  1102. package/mac-agent/node_modules/make-dir/index.d.ts +66 -0
  1103. package/mac-agent/node_modules/make-dir/index.js +156 -0
  1104. package/mac-agent/node_modules/make-dir/license +9 -0
  1105. package/mac-agent/node_modules/make-dir/node_modules/semver/LICENSE +15 -0
  1106. package/mac-agent/node_modules/make-dir/node_modules/semver/README.md +443 -0
  1107. package/mac-agent/node_modules/make-dir/node_modules/semver/bin/semver.js +174 -0
  1108. package/mac-agent/node_modules/make-dir/node_modules/semver/package.json +38 -0
  1109. package/mac-agent/node_modules/make-dir/node_modules/semver/range.bnf +16 -0
  1110. package/mac-agent/node_modules/make-dir/node_modules/semver/semver.js +1643 -0
  1111. package/mac-agent/node_modules/make-dir/package.json +59 -0
  1112. package/mac-agent/node_modules/make-dir/readme.md +125 -0
  1113. package/mac-agent/node_modules/math-intrinsics/.eslintrc +16 -0
  1114. package/mac-agent/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  1115. package/mac-agent/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  1116. package/mac-agent/node_modules/math-intrinsics/LICENSE +21 -0
  1117. package/mac-agent/node_modules/math-intrinsics/README.md +50 -0
  1118. package/mac-agent/node_modules/math-intrinsics/abs.d.ts +1 -0
  1119. package/mac-agent/node_modules/math-intrinsics/abs.js +4 -0
  1120. package/mac-agent/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  1121. package/mac-agent/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  1122. package/mac-agent/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  1123. package/mac-agent/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  1124. package/mac-agent/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  1125. package/mac-agent/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  1126. package/mac-agent/node_modules/math-intrinsics/floor.d.ts +1 -0
  1127. package/mac-agent/node_modules/math-intrinsics/floor.js +4 -0
  1128. package/mac-agent/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  1129. package/mac-agent/node_modules/math-intrinsics/isFinite.js +12 -0
  1130. package/mac-agent/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  1131. package/mac-agent/node_modules/math-intrinsics/isInteger.js +16 -0
  1132. package/mac-agent/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  1133. package/mac-agent/node_modules/math-intrinsics/isNaN.js +6 -0
  1134. package/mac-agent/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  1135. package/mac-agent/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  1136. package/mac-agent/node_modules/math-intrinsics/max.d.ts +1 -0
  1137. package/mac-agent/node_modules/math-intrinsics/max.js +4 -0
  1138. package/mac-agent/node_modules/math-intrinsics/min.d.ts +1 -0
  1139. package/mac-agent/node_modules/math-intrinsics/min.js +4 -0
  1140. package/mac-agent/node_modules/math-intrinsics/mod.d.ts +3 -0
  1141. package/mac-agent/node_modules/math-intrinsics/mod.js +9 -0
  1142. package/mac-agent/node_modules/math-intrinsics/package.json +86 -0
  1143. package/mac-agent/node_modules/math-intrinsics/pow.d.ts +1 -0
  1144. package/mac-agent/node_modules/math-intrinsics/pow.js +4 -0
  1145. package/mac-agent/node_modules/math-intrinsics/round.d.ts +1 -0
  1146. package/mac-agent/node_modules/math-intrinsics/round.js +4 -0
  1147. package/mac-agent/node_modules/math-intrinsics/sign.d.ts +3 -0
  1148. package/mac-agent/node_modules/math-intrinsics/sign.js +11 -0
  1149. package/mac-agent/node_modules/math-intrinsics/test/index.js +192 -0
  1150. package/mac-agent/node_modules/math-intrinsics/tsconfig.json +3 -0
  1151. package/mac-agent/node_modules/mime-db/HISTORY.md +507 -0
  1152. package/mac-agent/node_modules/mime-db/LICENSE +23 -0
  1153. package/mac-agent/node_modules/mime-db/README.md +100 -0
  1154. package/mac-agent/node_modules/mime-db/db.json +8519 -0
  1155. package/mac-agent/node_modules/mime-db/index.js +12 -0
  1156. package/mac-agent/node_modules/mime-db/package.json +60 -0
  1157. package/mac-agent/node_modules/mime-types/HISTORY.md +397 -0
  1158. package/mac-agent/node_modules/mime-types/LICENSE +23 -0
  1159. package/mac-agent/node_modules/mime-types/README.md +113 -0
  1160. package/mac-agent/node_modules/mime-types/index.js +188 -0
  1161. package/mac-agent/node_modules/mime-types/package.json +44 -0
  1162. package/mac-agent/node_modules/minimatch/LICENSE +15 -0
  1163. package/mac-agent/node_modules/minimatch/README.md +230 -0
  1164. package/mac-agent/node_modules/minimatch/minimatch.js +947 -0
  1165. package/mac-agent/node_modules/minimatch/package.json +33 -0
  1166. package/mac-agent/node_modules/minipass/LICENSE +15 -0
  1167. package/mac-agent/node_modules/minipass/README.md +769 -0
  1168. package/mac-agent/node_modules/minipass/index.d.ts +152 -0
  1169. package/mac-agent/node_modules/minipass/index.js +702 -0
  1170. package/mac-agent/node_modules/minipass/index.mjs +702 -0
  1171. package/mac-agent/node_modules/minipass/package.json +76 -0
  1172. package/mac-agent/node_modules/minizlib/LICENSE +26 -0
  1173. package/mac-agent/node_modules/minizlib/README.md +60 -0
  1174. package/mac-agent/node_modules/minizlib/constants.js +115 -0
  1175. package/mac-agent/node_modules/minizlib/index.js +348 -0
  1176. package/mac-agent/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
  1177. package/mac-agent/node_modules/minizlib/node_modules/minipass/README.md +728 -0
  1178. package/mac-agent/node_modules/minizlib/node_modules/minipass/index.d.ts +155 -0
  1179. package/mac-agent/node_modules/minizlib/node_modules/minipass/index.js +649 -0
  1180. package/mac-agent/node_modules/minizlib/node_modules/minipass/package.json +56 -0
  1181. package/mac-agent/node_modules/minizlib/package.json +42 -0
  1182. package/mac-agent/node_modules/mkdirp/CHANGELOG.md +15 -0
  1183. package/mac-agent/node_modules/mkdirp/LICENSE +21 -0
  1184. package/mac-agent/node_modules/mkdirp/bin/cmd.js +68 -0
  1185. package/mac-agent/node_modules/mkdirp/index.js +31 -0
  1186. package/mac-agent/node_modules/mkdirp/lib/find-made.js +29 -0
  1187. package/mac-agent/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
  1188. package/mac-agent/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
  1189. package/mac-agent/node_modules/mkdirp/lib/opts-arg.js +23 -0
  1190. package/mac-agent/node_modules/mkdirp/lib/path-arg.js +29 -0
  1191. package/mac-agent/node_modules/mkdirp/lib/use-native.js +10 -0
  1192. package/mac-agent/node_modules/mkdirp/package.json +44 -0
  1193. package/mac-agent/node_modules/mkdirp/readme.markdown +266 -0
  1194. package/mac-agent/node_modules/ms/index.js +162 -0
  1195. package/mac-agent/node_modules/ms/license.md +21 -0
  1196. package/mac-agent/node_modules/ms/package.json +38 -0
  1197. package/mac-agent/node_modules/ms/readme.md +59 -0
  1198. package/mac-agent/node_modules/nan/.github/workflows/ci.yml +52 -0
  1199. package/mac-agent/node_modules/nan/CHANGELOG.md +577 -0
  1200. package/mac-agent/node_modules/nan/CMakeLists.txt +138 -0
  1201. package/mac-agent/node_modules/nan/LICENSE.md +9 -0
  1202. package/mac-agent/node_modules/nan/README.md +455 -0
  1203. package/mac-agent/node_modules/nan/doc/asyncworker.md +146 -0
  1204. package/mac-agent/node_modules/nan/doc/buffers.md +54 -0
  1205. package/mac-agent/node_modules/nan/doc/callback.md +76 -0
  1206. package/mac-agent/node_modules/nan/doc/converters.md +41 -0
  1207. package/mac-agent/node_modules/nan/doc/errors.md +226 -0
  1208. package/mac-agent/node_modules/nan/doc/json.md +62 -0
  1209. package/mac-agent/node_modules/nan/doc/maybe_types.md +583 -0
  1210. package/mac-agent/node_modules/nan/doc/methods.md +672 -0
  1211. package/mac-agent/node_modules/nan/doc/new.md +147 -0
  1212. package/mac-agent/node_modules/nan/doc/node_misc.md +123 -0
  1213. package/mac-agent/node_modules/nan/doc/object_wrappers.md +263 -0
  1214. package/mac-agent/node_modules/nan/doc/persistent.md +296 -0
  1215. package/mac-agent/node_modules/nan/doc/scopes.md +73 -0
  1216. package/mac-agent/node_modules/nan/doc/script.md +58 -0
  1217. package/mac-agent/node_modules/nan/doc/string_bytes.md +62 -0
  1218. package/mac-agent/node_modules/nan/doc/v8_internals.md +199 -0
  1219. package/mac-agent/node_modules/nan/doc/v8_misc.md +85 -0
  1220. package/mac-agent/node_modules/nan/include_dirs.js +1 -0
  1221. package/mac-agent/node_modules/nan/nan.h +3049 -0
  1222. package/mac-agent/node_modules/nan/nan_callbacks.h +128 -0
  1223. package/mac-agent/node_modules/nan/nan_callbacks_12_inl.h +676 -0
  1224. package/mac-agent/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
  1225. package/mac-agent/node_modules/nan/nan_converters.h +72 -0
  1226. package/mac-agent/node_modules/nan/nan_converters_43_inl.h +68 -0
  1227. package/mac-agent/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  1228. package/mac-agent/node_modules/nan/nan_define_own_property_helper.h +29 -0
  1229. package/mac-agent/node_modules/nan/nan_implementation_12_inl.h +430 -0
  1230. package/mac-agent/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
  1231. package/mac-agent/node_modules/nan/nan_json.h +166 -0
  1232. package/mac-agent/node_modules/nan/nan_maybe_43_inl.h +356 -0
  1233. package/mac-agent/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
  1234. package/mac-agent/node_modules/nan/nan_new.h +340 -0
  1235. package/mac-agent/node_modules/nan/nan_object_wrap.h +156 -0
  1236. package/mac-agent/node_modules/nan/nan_persistent_12_inl.h +132 -0
  1237. package/mac-agent/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  1238. package/mac-agent/node_modules/nan/nan_private.h +73 -0
  1239. package/mac-agent/node_modules/nan/nan_scriptorigin.h +95 -0
  1240. package/mac-agent/node_modules/nan/nan_string_bytes.h +305 -0
  1241. package/mac-agent/node_modules/nan/nan_typedarray_contents.h +96 -0
  1242. package/mac-agent/node_modules/nan/nan_weak.h +437 -0
  1243. package/mac-agent/node_modules/nan/package.json +38 -0
  1244. package/mac-agent/node_modules/nan/tools/1to2.js +412 -0
  1245. package/mac-agent/node_modules/nan/tools/README.md +14 -0
  1246. package/mac-agent/node_modules/nan/tools/package.json +19 -0
  1247. package/mac-agent/node_modules/node-addon-api/.editorconfig +8 -0
  1248. package/mac-agent/node_modules/node-addon-api/.travis.yml +65 -0
  1249. package/mac-agent/node_modules/node-addon-api/CHANGELOG.md +325 -0
  1250. package/mac-agent/node_modules/node-addon-api/CODE_OF_CONDUCT.md +4 -0
  1251. package/mac-agent/node_modules/node-addon-api/CONTRIBUTING.md +66 -0
  1252. package/mac-agent/node_modules/node-addon-api/LICENSE.md +13 -0
  1253. package/mac-agent/node_modules/node-addon-api/README.md +200 -0
  1254. package/mac-agent/node_modules/node-addon-api/appveyor.yml +48 -0
  1255. package/mac-agent/node_modules/node-addon-api/doc/Doxyfile +2450 -0
  1256. package/mac-agent/node_modules/node-addon-api/doc/array_buffer.md +129 -0
  1257. package/mac-agent/node_modules/node-addon-api/doc/async_context.md +76 -0
  1258. package/mac-agent/node_modules/node-addon-api/doc/async_operations.md +31 -0
  1259. package/mac-agent/node_modules/node-addon-api/doc/async_worker.md +397 -0
  1260. package/mac-agent/node_modules/node-addon-api/doc/basic_types.md +415 -0
  1261. package/mac-agent/node_modules/node-addon-api/doc/bigint.md +92 -0
  1262. package/mac-agent/node_modules/node-addon-api/doc/boolean.md +64 -0
  1263. package/mac-agent/node_modules/node-addon-api/doc/buffer.md +140 -0
  1264. package/mac-agent/node_modules/node-addon-api/doc/callback_scope.md +54 -0
  1265. package/mac-agent/node_modules/node-addon-api/doc/callbackinfo.md +97 -0
  1266. package/mac-agent/node_modules/node-addon-api/doc/checker-tool.md +32 -0
  1267. package/mac-agent/node_modules/node-addon-api/doc/class_property_descriptor.md +118 -0
  1268. package/mac-agent/node_modules/node-addon-api/doc/cmake-js.md +19 -0
  1269. package/mac-agent/node_modules/node-addon-api/doc/conversion-tool.md +28 -0
  1270. package/mac-agent/node_modules/node-addon-api/doc/creating_a_release.md +62 -0
  1271. package/mac-agent/node_modules/node-addon-api/doc/dataview.md +244 -0
  1272. package/mac-agent/node_modules/node-addon-api/doc/env.md +63 -0
  1273. package/mac-agent/node_modules/node-addon-api/doc/error.md +115 -0
  1274. package/mac-agent/node_modules/node-addon-api/doc/error_handling.md +186 -0
  1275. package/mac-agent/node_modules/node-addon-api/doc/escapable_handle_scope.md +82 -0
  1276. package/mac-agent/node_modules/node-addon-api/doc/external.md +59 -0
  1277. package/mac-agent/node_modules/node-addon-api/doc/function.md +294 -0
  1278. package/mac-agent/node_modules/node-addon-api/doc/function_reference.md +238 -0
  1279. package/mac-agent/node_modules/node-addon-api/doc/generator.md +13 -0
  1280. package/mac-agent/node_modules/node-addon-api/doc/handle_scope.md +65 -0
  1281. package/mac-agent/node_modules/node-addon-api/doc/memory_management.md +27 -0
  1282. package/mac-agent/node_modules/node-addon-api/doc/node-gyp.md +82 -0
  1283. package/mac-agent/node_modules/node-addon-api/doc/number.md +163 -0
  1284. package/mac-agent/node_modules/node-addon-api/doc/object.md +202 -0
  1285. package/mac-agent/node_modules/node-addon-api/doc/object_lifetime_management.md +83 -0
  1286. package/mac-agent/node_modules/node-addon-api/doc/object_reference.md +117 -0
  1287. package/mac-agent/node_modules/node-addon-api/doc/object_wrap.md +546 -0
  1288. package/mac-agent/node_modules/node-addon-api/doc/prebuild_tools.md +16 -0
  1289. package/mac-agent/node_modules/node-addon-api/doc/promises.md +74 -0
  1290. package/mac-agent/node_modules/node-addon-api/doc/property_descriptor.md +231 -0
  1291. package/mac-agent/node_modules/node-addon-api/doc/range_error.md +59 -0
  1292. package/mac-agent/node_modules/node-addon-api/doc/reference.md +111 -0
  1293. package/mac-agent/node_modules/node-addon-api/doc/setup.md +82 -0
  1294. package/mac-agent/node_modules/node-addon-api/doc/string.md +89 -0
  1295. package/mac-agent/node_modules/node-addon-api/doc/symbol.md +44 -0
  1296. package/mac-agent/node_modules/node-addon-api/doc/threadsafe_function.md +303 -0
  1297. package/mac-agent/node_modules/node-addon-api/doc/type_error.md +59 -0
  1298. package/mac-agent/node_modules/node-addon-api/doc/typed_array.md +74 -0
  1299. package/mac-agent/node_modules/node-addon-api/doc/typed_array_of.md +133 -0
  1300. package/mac-agent/node_modules/node-addon-api/doc/value.md +269 -0
  1301. package/mac-agent/node_modules/node-addon-api/doc/version_management.md +43 -0
  1302. package/mac-agent/node_modules/node-addon-api/doc/working_with_javascript_values.md +14 -0
  1303. package/mac-agent/node_modules/node-addon-api/external-napi/node_api.h +7 -0
  1304. package/mac-agent/node_modules/node-addon-api/index.js +45 -0
  1305. package/mac-agent/node_modules/node-addon-api/napi-inl.deprecated.h +192 -0
  1306. package/mac-agent/node_modules/node-addon-api/napi-inl.h +4097 -0
  1307. package/mac-agent/node_modules/node-addon-api/napi.h +2053 -0
  1308. package/mac-agent/node_modules/node-addon-api/package.json +79 -0
  1309. package/mac-agent/node_modules/node-addon-api/src/node_api.cc +3655 -0
  1310. package/mac-agent/node_modules/node-addon-api/src/node_api.gyp +21 -0
  1311. package/mac-agent/node_modules/node-addon-api/src/node_api.h +588 -0
  1312. package/mac-agent/node_modules/node-addon-api/src/node_api_types.h +115 -0
  1313. package/mac-agent/node_modules/node-addon-api/src/node_internals.cc +142 -0
  1314. package/mac-agent/node_modules/node-addon-api/src/node_internals.h +157 -0
  1315. package/mac-agent/node_modules/node-addon-api/src/nothing.c +0 -0
  1316. package/mac-agent/node_modules/node-addon-api/src/util-inl.h +38 -0
  1317. package/mac-agent/node_modules/node-addon-api/src/util.h +7 -0
  1318. package/mac-agent/node_modules/node-addon-api/tools/README.md +67 -0
  1319. package/mac-agent/node_modules/node-addon-api/tools/check-napi.js +100 -0
  1320. package/mac-agent/node_modules/node-addon-api/tools/conversion.js +313 -0
  1321. package/mac-agent/node_modules/node-cmake/.jshintrc +20 -0
  1322. package/mac-agent/node_modules/node-cmake/LICENSE.txt +15 -0
  1323. package/mac-agent/node_modules/node-cmake/NodeJS.cmake +637 -0
  1324. package/mac-agent/node_modules/node-cmake/README.md +93 -0
  1325. package/mac-agent/node_modules/node-cmake/docs/Nan.md +9 -0
  1326. package/mac-agent/node_modules/node-cmake/docs/NcmakeManual.md +83 -0
  1327. package/mac-agent/node_modules/node-cmake/docs/NodeJSCmakeManual.md +107 -0
  1328. package/mac-agent/node_modules/node-cmake/example/CMakeLists.txt +8 -0
  1329. package/mac-agent/node_modules/node-cmake/example/README.md +28 -0
  1330. package/mac-agent/node_modules/node-cmake/example/index.js +2 -0
  1331. package/mac-agent/node_modules/node-cmake/example/package.json +20 -0
  1332. package/mac-agent/node_modules/node-cmake/example/src/hello.cc +16 -0
  1333. package/mac-agent/node_modules/node-cmake/index.js +44 -0
  1334. package/mac-agent/node_modules/node-cmake/lib/embed.js +17 -0
  1335. package/mac-agent/node_modules/node-cmake/lib/ncmake.js +284 -0
  1336. package/mac-agent/node_modules/node-cmake/package.json +34 -0
  1337. package/mac-agent/node_modules/node-cmake/src/win_delay_load_hook.c +68 -0
  1338. package/mac-agent/node_modules/node-fetch/LICENSE.md +22 -0
  1339. package/mac-agent/node_modules/node-fetch/README.md +634 -0
  1340. package/mac-agent/node_modules/node-fetch/browser.js +25 -0
  1341. package/mac-agent/node_modules/node-fetch/lib/index.es.js +1777 -0
  1342. package/mac-agent/node_modules/node-fetch/lib/index.js +1787 -0
  1343. package/mac-agent/node_modules/node-fetch/lib/index.mjs +1775 -0
  1344. package/mac-agent/node_modules/node-fetch/package.json +89 -0
  1345. package/mac-agent/node_modules/node-pty/LICENSE +69 -0
  1346. package/mac-agent/node_modules/node-pty/README.md +163 -0
  1347. package/mac-agent/node_modules/node-pty/binding.gyp +117 -0
  1348. package/mac-agent/node_modules/node-pty/build/Makefile +352 -0
  1349. package/mac-agent/node_modules/node-pty/build/Release/pty.node +0 -0
  1350. package/mac-agent/node_modules/node-pty/build/Release/spawn-helper +0 -0
  1351. package/mac-agent/node_modules/node-pty/build/binding.Makefile +6 -0
  1352. package/mac-agent/node_modules/node-pty/build/gyp-mac-tool +768 -0
  1353. package/mac-agent/node_modules/node-pty/build/pty.target.mk +183 -0
  1354. package/mac-agent/node_modules/node-pty/build/spawn-helper.target.mk +172 -0
  1355. package/mac-agent/node_modules/node-pty/deps/.editorconfig +2 -0
  1356. package/mac-agent/node_modules/node-pty/deps/winpty/.drone.yml +17 -0
  1357. package/mac-agent/node_modules/node-pty/deps/winpty/.gitattributes +19 -0
  1358. package/mac-agent/node_modules/node-pty/deps/winpty/LICENSE +21 -0
  1359. package/mac-agent/node_modules/node-pty/deps/winpty/Makefile +166 -0
  1360. package/mac-agent/node_modules/node-pty/deps/winpty/README.md +151 -0
  1361. package/mac-agent/node_modules/node-pty/deps/winpty/RELEASES.md +280 -0
  1362. package/mac-agent/node_modules/node-pty/deps/winpty/VERSION.txt +1 -0
  1363. package/mac-agent/node_modules/node-pty/deps/winpty/configure +167 -0
  1364. package/mac-agent/node_modules/node-pty/deps/winpty/misc/BufferResizeTests.cc +90 -0
  1365. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ChangeScreenBuffer.cc +53 -0
  1366. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ClearConsole.cc +72 -0
  1367. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ConinMode.cc +117 -0
  1368. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ConinMode.ps1 +116 -0
  1369. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ConoutMode.cc +113 -0
  1370. package/mac-agent/node_modules/node-pty/deps/winpty/misc/DebugClient.py +42 -0
  1371. package/mac-agent/node_modules/node-pty/deps/winpty/misc/DebugServer.py +63 -0
  1372. package/mac-agent/node_modules/node-pty/deps/winpty/misc/DumpLines.py +5 -0
  1373. package/mac-agent/node_modules/node-pty/deps/winpty/misc/EnableExtendedFlags.txt +46 -0
  1374. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP437-Consolas.txt +528 -0
  1375. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP437-Lucida.txt +633 -0
  1376. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP932.txt +630 -0
  1377. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP936.txt +630 -0
  1378. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP949.txt +630 -0
  1379. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP950.txt +630 -0
  1380. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/MinimumWindowWidths.txt +16 -0
  1381. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/Results.txt +4 -0
  1382. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/Windows10SetFontBugginess.txt +144 -0
  1383. package/mac-agent/node_modules/node-pty/deps/winpty/misc/FontSurvey.cc +100 -0
  1384. package/mac-agent/node_modules/node-pty/deps/winpty/misc/FormatChar.h +21 -0
  1385. package/mac-agent/node_modules/node-pty/deps/winpty/misc/FreezePerfTest.cc +62 -0
  1386. package/mac-agent/node_modules/node-pty/deps/winpty/misc/GetCh.cc +20 -0
  1387. package/mac-agent/node_modules/node-pty/deps/winpty/misc/GetConsolePos.cc +41 -0
  1388. package/mac-agent/node_modules/node-pty/deps/winpty/misc/GetFont.cc +261 -0
  1389. package/mac-agent/node_modules/node-pty/deps/winpty/misc/IdentifyConsoleWindow.ps1 +51 -0
  1390. package/mac-agent/node_modules/node-pty/deps/winpty/misc/IsNewConsole.cc +87 -0
  1391. package/mac-agent/node_modules/node-pty/deps/winpty/misc/MouseInputNotes.txt +90 -0
  1392. package/mac-agent/node_modules/node-pty/deps/winpty/misc/MoveConsoleWindow.cc +34 -0
  1393. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Notes.txt +219 -0
  1394. package/mac-agent/node_modules/node-pty/deps/winpty/misc/OSVersion.cc +27 -0
  1395. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ScreenBufferFreezeInactive.cc +101 -0
  1396. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ScreenBufferTest.cc +671 -0
  1397. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ScreenBufferTest2.cc +151 -0
  1398. package/mac-agent/node_modules/node-pty/deps/winpty/misc/SelectAllTest.cc +45 -0
  1399. package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetBufferSize.cc +32 -0
  1400. package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetCursorPos.cc +10 -0
  1401. package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetFont.cc +145 -0
  1402. package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetWindowRect.cc +36 -0
  1403. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ShowArgv.cc +12 -0
  1404. package/mac-agent/node_modules/node-pty/deps/winpty/misc/ShowConsoleInput.cc +40 -0
  1405. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Spew.py +5 -0
  1406. package/mac-agent/node_modules/node-pty/deps/winpty/misc/TestUtil.cc +172 -0
  1407. package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnicodeDoubleWidthTest.cc +102 -0
  1408. package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnicodeWideTest1.cc +246 -0
  1409. package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnicodeWideTest2.cc +130 -0
  1410. package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnixEcho.cc +89 -0
  1411. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Utf16Echo.cc +46 -0
  1412. package/mac-agent/node_modules/node-pty/deps/winpty/misc/VeryLargeRead.cc +122 -0
  1413. package/mac-agent/node_modules/node-pty/deps/winpty/misc/VkEscapeTest.cc +56 -0
  1414. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win10ResizeWhileFrozen.cc +52 -0
  1415. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win10WrapTest1.cc +57 -0
  1416. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win10WrapTest2.cc +30 -0
  1417. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Echo1.cc +26 -0
  1418. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Echo2.cc +19 -0
  1419. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Test1.cc +46 -0
  1420. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Test2.cc +70 -0
  1421. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Test3.cc +78 -0
  1422. package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Write1.cc +44 -0
  1423. package/mac-agent/node_modules/node-pty/deps/winpty/misc/WindowsBugCrashReader.cc +27 -0
  1424. package/mac-agent/node_modules/node-pty/deps/winpty/misc/WriteConsole.cc +106 -0
  1425. package/mac-agent/node_modules/node-pty/deps/winpty/misc/build32.sh +9 -0
  1426. package/mac-agent/node_modules/node-pty/deps/winpty/misc/build64.sh +9 -0
  1427. package/mac-agent/node_modules/node-pty/deps/winpty/misc/color-test.sh +212 -0
  1428. package/mac-agent/node_modules/node-pty/deps/winpty/misc/font-notes.txt +300 -0
  1429. package/mac-agent/node_modules/node-pty/deps/winpty/misc/winbug-15048.cc +201 -0
  1430. package/mac-agent/node_modules/node-pty/deps/winpty/ship/build-pty4j-libpty.bat +36 -0
  1431. package/mac-agent/node_modules/node-pty/deps/winpty/ship/common_ship.py +53 -0
  1432. package/mac-agent/node_modules/node-pty/deps/winpty/ship/make_msvc_package.py +165 -0
  1433. package/mac-agent/node_modules/node-pty/deps/winpty/ship/ship.py +108 -0
  1434. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Agent.cc +605 -0
  1435. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Agent.h +103 -0
  1436. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/AgentCreateDesktop.cc +84 -0
  1437. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/AgentCreateDesktop.h +28 -0
  1438. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleFont.cc +632 -0
  1439. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleFont.h +28 -0
  1440. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInput.cc +852 -0
  1441. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInput.h +109 -0
  1442. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInputReencoding.cc +121 -0
  1443. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInputReencoding.h +36 -0
  1444. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleLine.cc +152 -0
  1445. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleLine.h +41 -0
  1446. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Coord.h +87 -0
  1447. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DebugShowInput.cc +239 -0
  1448. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DebugShowInput.h +32 -0
  1449. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DefaultInputMap.cc +422 -0
  1450. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DefaultInputMap.h +28 -0
  1451. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DsrSender.h +30 -0
  1452. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/EventLoop.cc +99 -0
  1453. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/EventLoop.h +47 -0
  1454. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/InputMap.cc +246 -0
  1455. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/InputMap.h +114 -0
  1456. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/LargeConsoleRead.cc +71 -0
  1457. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/LargeConsoleRead.h +68 -0
  1458. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/NamedPipe.cc +378 -0
  1459. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/NamedPipe.h +125 -0
  1460. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Scraper.cc +699 -0
  1461. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Scraper.h +103 -0
  1462. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/SimplePool.h +75 -0
  1463. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/SmallRect.h +143 -0
  1464. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Terminal.cc +535 -0
  1465. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Terminal.h +69 -0
  1466. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/UnicodeEncoding.h +157 -0
  1467. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/UnicodeEncodingTest.cc +189 -0
  1468. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32Console.cc +107 -0
  1469. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32Console.h +67 -0
  1470. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32ConsoleBuffer.cc +193 -0
  1471. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32ConsoleBuffer.h +99 -0
  1472. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/main.cc +114 -0
  1473. package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/subdir.mk +61 -0
  1474. package/mac-agent/node_modules/node-pty/deps/winpty/src/configurations.gypi +60 -0
  1475. package/mac-agent/node_modules/node-pty/deps/winpty/src/debugserver/DebugServer.cc +117 -0
  1476. package/mac-agent/node_modules/node-pty/deps/winpty/src/debugserver/subdir.mk +41 -0
  1477. package/mac-agent/node_modules/node-pty/deps/winpty/src/include/winpty.h +242 -0
  1478. package/mac-agent/node_modules/node-pty/deps/winpty/src/include/winpty_constants.h +131 -0
  1479. package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/AgentLocation.cc +75 -0
  1480. package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/AgentLocation.h +28 -0
  1481. package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/LibWinptyException.h +54 -0
  1482. package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/WinptyInternal.h +72 -0
  1483. package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/subdir.mk +46 -0
  1484. package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/winpty.cc +970 -0
  1485. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/AgentMsg.h +38 -0
  1486. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/BackgroundDesktop.cc +122 -0
  1487. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/BackgroundDesktop.h +73 -0
  1488. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/Buffer.cc +103 -0
  1489. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/Buffer.h +102 -0
  1490. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/DebugClient.cc +187 -0
  1491. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/DebugClient.h +38 -0
  1492. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/GenRandom.cc +138 -0
  1493. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/GenRandom.h +55 -0
  1494. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/GetCommitHash.bat +13 -0
  1495. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/Mutex.h +54 -0
  1496. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/OsModule.h +63 -0
  1497. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/OwnedHandle.cc +36 -0
  1498. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/OwnedHandle.h +45 -0
  1499. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/PrecompiledHeader.h +43 -0
  1500. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringBuilder.h +227 -0
  1501. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringBuilderTest.cc +114 -0
  1502. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringUtil.cc +55 -0
  1503. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringUtil.h +80 -0
  1504. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/TimeMeasurement.h +63 -0
  1505. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/UnixCtrlChars.h +45 -0
  1506. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/UpdateGenVersion.bat +20 -0
  1507. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsSecurity.cc +460 -0
  1508. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsSecurity.h +104 -0
  1509. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsVersion.cc +252 -0
  1510. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsVersion.h +29 -0
  1511. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyAssert.cc +55 -0
  1512. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyAssert.h +64 -0
  1513. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyException.cc +57 -0
  1514. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyException.h +43 -0
  1515. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyVersion.cc +42 -0
  1516. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyVersion.h +27 -0
  1517. package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/winpty_snprintf.h +99 -0
  1518. package/mac-agent/node_modules/node-pty/deps/winpty/src/subdir.mk +5 -0
  1519. package/mac-agent/node_modules/node-pty/deps/winpty/src/tests/subdir.mk +28 -0
  1520. package/mac-agent/node_modules/node-pty/deps/winpty/src/tests/trivial_test.cc +158 -0
  1521. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/InputHandler.cc +114 -0
  1522. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/InputHandler.h +56 -0
  1523. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/OutputHandler.cc +80 -0
  1524. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/OutputHandler.h +53 -0
  1525. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/Util.cc +86 -0
  1526. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/Util.h +31 -0
  1527. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/WakeupFd.cc +70 -0
  1528. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/WakeupFd.h +42 -0
  1529. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/main.cc +729 -0
  1530. package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/subdir.mk +41 -0
  1531. package/mac-agent/node_modules/node-pty/deps/winpty/src/winpty.gyp +206 -0
  1532. package/mac-agent/node_modules/node-pty/deps/winpty/vcbuild.bat +83 -0
  1533. package/mac-agent/node_modules/node-pty/lib/conpty_console_list_agent.js +20 -0
  1534. package/mac-agent/node_modules/node-pty/lib/conpty_console_list_agent.js.map +1 -0
  1535. package/mac-agent/node_modules/node-pty/lib/eventEmitter2.js +47 -0
  1536. package/mac-agent/node_modules/node-pty/lib/eventEmitter2.js.map +1 -0
  1537. package/mac-agent/node_modules/node-pty/lib/eventEmitter2.test.js +30 -0
  1538. package/mac-agent/node_modules/node-pty/lib/eventEmitter2.test.js.map +1 -0
  1539. package/mac-agent/node_modules/node-pty/lib/index.js +51 -0
  1540. package/mac-agent/node_modules/node-pty/lib/index.js.map +1 -0
  1541. package/mac-agent/node_modules/node-pty/lib/interfaces.js +7 -0
  1542. package/mac-agent/node_modules/node-pty/lib/interfaces.js.map +1 -0
  1543. package/mac-agent/node_modules/node-pty/lib/shared/conout.js +11 -0
  1544. package/mac-agent/node_modules/node-pty/lib/shared/conout.js.map +1 -0
  1545. package/mac-agent/node_modules/node-pty/lib/terminal.js +190 -0
  1546. package/mac-agent/node_modules/node-pty/lib/terminal.js.map +1 -0
  1547. package/mac-agent/node_modules/node-pty/lib/terminal.test.js +139 -0
  1548. package/mac-agent/node_modules/node-pty/lib/terminal.test.js.map +1 -0
  1549. package/mac-agent/node_modules/node-pty/lib/testUtils.test.js +28 -0
  1550. package/mac-agent/node_modules/node-pty/lib/testUtils.test.js.map +1 -0
  1551. package/mac-agent/node_modules/node-pty/lib/types.js +7 -0
  1552. package/mac-agent/node_modules/node-pty/lib/types.js.map +1 -0
  1553. package/mac-agent/node_modules/node-pty/lib/unixTerminal.js +304 -0
  1554. package/mac-agent/node_modules/node-pty/lib/unixTerminal.js.map +1 -0
  1555. package/mac-agent/node_modules/node-pty/lib/unixTerminal.test.js +330 -0
  1556. package/mac-agent/node_modules/node-pty/lib/unixTerminal.test.js.map +1 -0
  1557. package/mac-agent/node_modules/node-pty/lib/utils.js +17 -0
  1558. package/mac-agent/node_modules/node-pty/lib/utils.js.map +1 -0
  1559. package/mac-agent/node_modules/node-pty/lib/windowsConoutConnection.js +122 -0
  1560. package/mac-agent/node_modules/node-pty/lib/windowsConoutConnection.js.map +1 -0
  1561. package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.js +324 -0
  1562. package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.js.map +1 -0
  1563. package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.test.js +90 -0
  1564. package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.test.js.map +1 -0
  1565. package/mac-agent/node_modules/node-pty/lib/windowsTerminal.js +201 -0
  1566. package/mac-agent/node_modules/node-pty/lib/windowsTerminal.js.map +1 -0
  1567. package/mac-agent/node_modules/node-pty/lib/windowsTerminal.test.js +203 -0
  1568. package/mac-agent/node_modules/node-pty/lib/windowsTerminal.test.js.map +1 -0
  1569. package/mac-agent/node_modules/node-pty/lib/worker/conoutSocketWorker.js +22 -0
  1570. package/mac-agent/node_modules/node-pty/lib/worker/conoutSocketWorker.js.map +1 -0
  1571. package/mac-agent/node_modules/node-pty/package.json +59 -0
  1572. package/mac-agent/node_modules/node-pty/scripts/post-install.js +42 -0
  1573. package/mac-agent/node_modules/node-pty/scripts/publish.js +62 -0
  1574. package/mac-agent/node_modules/node-pty/src/conpty_console_list_agent.ts +19 -0
  1575. package/mac-agent/node_modules/node-pty/src/eventEmitter2.test.ts +30 -0
  1576. package/mac-agent/node_modules/node-pty/src/eventEmitter2.ts +48 -0
  1577. package/mac-agent/node_modules/node-pty/src/index.ts +51 -0
  1578. package/mac-agent/node_modules/node-pty/src/interfaces.ts +129 -0
  1579. package/mac-agent/node_modules/node-pty/src/native.d.ts +56 -0
  1580. package/mac-agent/node_modules/node-pty/src/shared/conout.ts +15 -0
  1581. package/mac-agent/node_modules/node-pty/src/terminal.test.ts +119 -0
  1582. package/mac-agent/node_modules/node-pty/src/terminal.ts +211 -0
  1583. package/mac-agent/node_modules/node-pty/src/testUtils.test.ts +23 -0
  1584. package/mac-agent/node_modules/node-pty/src/tsconfig.json +22 -0
  1585. package/mac-agent/node_modules/node-pty/src/types.ts +15 -0
  1586. package/mac-agent/node_modules/node-pty/src/unix/pty.cc +826 -0
  1587. package/mac-agent/node_modules/node-pty/src/unix/spawn-helper.cc +23 -0
  1588. package/mac-agent/node_modules/node-pty/src/unixTerminal.test.ts +335 -0
  1589. package/mac-agent/node_modules/node-pty/src/unixTerminal.ts +320 -0
  1590. package/mac-agent/node_modules/node-pty/src/utils.ts +9 -0
  1591. package/mac-agent/node_modules/node-pty/src/win/conpty.cc +498 -0
  1592. package/mac-agent/node_modules/node-pty/src/win/conpty_console_list.cc +43 -0
  1593. package/mac-agent/node_modules/node-pty/src/win/path_util.cc +73 -0
  1594. package/mac-agent/node_modules/node-pty/src/win/path_util.h +22 -0
  1595. package/mac-agent/node_modules/node-pty/src/win/winpty.cc +312 -0
  1596. package/mac-agent/node_modules/node-pty/src/windowsConoutConnection.ts +79 -0
  1597. package/mac-agent/node_modules/node-pty/src/windowsPtyAgent.test.ts +94 -0
  1598. package/mac-agent/node_modules/node-pty/src/windowsPtyAgent.ts +323 -0
  1599. package/mac-agent/node_modules/node-pty/src/windowsTerminal.test.ts +214 -0
  1600. package/mac-agent/node_modules/node-pty/src/windowsTerminal.ts +208 -0
  1601. package/mac-agent/node_modules/node-pty/src/worker/conoutSocketWorker.ts +22 -0
  1602. package/mac-agent/node_modules/node-pty/typings/node-pty.d.ts +203 -0
  1603. package/mac-agent/node_modules/nodemon/.prettierrc.json +3 -0
  1604. package/mac-agent/node_modules/nodemon/LICENSE +21 -0
  1605. package/mac-agent/node_modules/nodemon/README.md +441 -0
  1606. package/mac-agent/node_modules/nodemon/bin/nodemon.js +16 -0
  1607. package/mac-agent/node_modules/nodemon/bin/windows-kill.exe +0 -0
  1608. package/mac-agent/node_modules/nodemon/doc/cli/authors.txt +8 -0
  1609. package/mac-agent/node_modules/nodemon/doc/cli/config.txt +44 -0
  1610. package/mac-agent/node_modules/nodemon/doc/cli/help.txt +29 -0
  1611. package/mac-agent/node_modules/nodemon/doc/cli/logo.txt +20 -0
  1612. package/mac-agent/node_modules/nodemon/doc/cli/options.txt +36 -0
  1613. package/mac-agent/node_modules/nodemon/doc/cli/topics.txt +8 -0
  1614. package/mac-agent/node_modules/nodemon/doc/cli/usage.txt +3 -0
  1615. package/mac-agent/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  1616. package/mac-agent/node_modules/nodemon/index.d.ts +125 -0
  1617. package/mac-agent/node_modules/nodemon/jsconfig.json +7 -0
  1618. package/mac-agent/node_modules/nodemon/lib/cli/index.js +49 -0
  1619. package/mac-agent/node_modules/nodemon/lib/cli/parse.js +230 -0
  1620. package/mac-agent/node_modules/nodemon/lib/config/command.js +43 -0
  1621. package/mac-agent/node_modules/nodemon/lib/config/defaults.js +34 -0
  1622. package/mac-agent/node_modules/nodemon/lib/config/exec.js +234 -0
  1623. package/mac-agent/node_modules/nodemon/lib/config/index.js +93 -0
  1624. package/mac-agent/node_modules/nodemon/lib/config/load.js +225 -0
  1625. package/mac-agent/node_modules/nodemon/lib/help/index.js +27 -0
  1626. package/mac-agent/node_modules/nodemon/lib/index.js +1 -0
  1627. package/mac-agent/node_modules/nodemon/lib/monitor/index.js +4 -0
  1628. package/mac-agent/node_modules/nodemon/lib/monitor/match.js +287 -0
  1629. package/mac-agent/node_modules/nodemon/lib/monitor/run.js +562 -0
  1630. package/mac-agent/node_modules/nodemon/lib/monitor/signals.js +34 -0
  1631. package/mac-agent/node_modules/nodemon/lib/monitor/watch.js +244 -0
  1632. package/mac-agent/node_modules/nodemon/lib/nodemon.js +317 -0
  1633. package/mac-agent/node_modules/nodemon/lib/rules/add.js +89 -0
  1634. package/mac-agent/node_modules/nodemon/lib/rules/index.js +53 -0
  1635. package/mac-agent/node_modules/nodemon/lib/rules/parse.js +43 -0
  1636. package/mac-agent/node_modules/nodemon/lib/spawn.js +74 -0
  1637. package/mac-agent/node_modules/nodemon/lib/utils/bus.js +44 -0
  1638. package/mac-agent/node_modules/nodemon/lib/utils/clone.js +40 -0
  1639. package/mac-agent/node_modules/nodemon/lib/utils/colour.js +26 -0
  1640. package/mac-agent/node_modules/nodemon/lib/utils/index.js +103 -0
  1641. package/mac-agent/node_modules/nodemon/lib/utils/log.js +82 -0
  1642. package/mac-agent/node_modules/nodemon/lib/utils/merge.js +47 -0
  1643. package/mac-agent/node_modules/nodemon/lib/version.js +100 -0
  1644. package/mac-agent/node_modules/nodemon/package.json +75 -0
  1645. package/mac-agent/node_modules/nopt/CHANGELOG.md +58 -0
  1646. package/mac-agent/node_modules/nopt/LICENSE +15 -0
  1647. package/mac-agent/node_modules/nopt/README.md +213 -0
  1648. package/mac-agent/node_modules/nopt/bin/nopt.js +54 -0
  1649. package/mac-agent/node_modules/nopt/lib/nopt.js +441 -0
  1650. package/mac-agent/node_modules/nopt/package.json +34 -0
  1651. package/mac-agent/node_modules/normalize-package-data/AUTHORS +4 -0
  1652. package/mac-agent/node_modules/normalize-package-data/LICENSE +30 -0
  1653. package/mac-agent/node_modules/normalize-package-data/README.md +106 -0
  1654. package/mac-agent/node_modules/normalize-package-data/lib/extract_description.js +14 -0
  1655. package/mac-agent/node_modules/normalize-package-data/lib/fixer.js +418 -0
  1656. package/mac-agent/node_modules/normalize-package-data/lib/make_warning.js +23 -0
  1657. package/mac-agent/node_modules/normalize-package-data/lib/normalize.js +39 -0
  1658. package/mac-agent/node_modules/normalize-package-data/lib/safe_format.js +9 -0
  1659. package/mac-agent/node_modules/normalize-package-data/lib/typos.json +25 -0
  1660. package/mac-agent/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
  1661. package/mac-agent/node_modules/normalize-package-data/node_modules/semver/LICENSE +15 -0
  1662. package/mac-agent/node_modules/normalize-package-data/node_modules/semver/README.md +412 -0
  1663. package/mac-agent/node_modules/normalize-package-data/node_modules/semver/bin/semver +160 -0
  1664. package/mac-agent/node_modules/normalize-package-data/node_modules/semver/package.json +38 -0
  1665. package/mac-agent/node_modules/normalize-package-data/node_modules/semver/range.bnf +16 -0
  1666. package/mac-agent/node_modules/normalize-package-data/node_modules/semver/semver.js +1525 -0
  1667. package/mac-agent/node_modules/normalize-package-data/package.json +31 -0
  1668. package/mac-agent/node_modules/normalize-path/LICENSE +21 -0
  1669. package/mac-agent/node_modules/normalize-path/README.md +127 -0
  1670. package/mac-agent/node_modules/normalize-path/index.js +35 -0
  1671. package/mac-agent/node_modules/normalize-path/package.json +77 -0
  1672. package/mac-agent/node_modules/npmlog/LICENSE +15 -0
  1673. package/mac-agent/node_modules/npmlog/README.md +216 -0
  1674. package/mac-agent/node_modules/npmlog/log.js +403 -0
  1675. package/mac-agent/node_modules/npmlog/package.json +33 -0
  1676. package/mac-agent/node_modules/number-is-nan/index.js +4 -0
  1677. package/mac-agent/node_modules/number-is-nan/license +21 -0
  1678. package/mac-agent/node_modules/number-is-nan/package.json +35 -0
  1679. package/mac-agent/node_modules/number-is-nan/readme.md +28 -0
  1680. package/mac-agent/node_modules/object-assign/index.js +90 -0
  1681. package/mac-agent/node_modules/object-assign/license +21 -0
  1682. package/mac-agent/node_modules/object-assign/package.json +42 -0
  1683. package/mac-agent/node_modules/object-assign/readme.md +61 -0
  1684. package/mac-agent/node_modules/object-keys/.editorconfig +13 -0
  1685. package/mac-agent/node_modules/object-keys/.eslintrc +17 -0
  1686. package/mac-agent/node_modules/object-keys/.travis.yml +277 -0
  1687. package/mac-agent/node_modules/object-keys/CHANGELOG.md +232 -0
  1688. package/mac-agent/node_modules/object-keys/LICENSE +21 -0
  1689. package/mac-agent/node_modules/object-keys/README.md +76 -0
  1690. package/mac-agent/node_modules/object-keys/implementation.js +122 -0
  1691. package/mac-agent/node_modules/object-keys/index.js +32 -0
  1692. package/mac-agent/node_modules/object-keys/isArguments.js +17 -0
  1693. package/mac-agent/node_modules/object-keys/package.json +88 -0
  1694. package/mac-agent/node_modules/object-keys/test/index.js +5 -0
  1695. package/mac-agent/node_modules/object.assign/.editorconfig +20 -0
  1696. package/mac-agent/node_modules/object.assign/.eslintrc +28 -0
  1697. package/mac-agent/node_modules/object.assign/.github/FUNDING.yml +12 -0
  1698. package/mac-agent/node_modules/object.assign/.nycrc +9 -0
  1699. package/mac-agent/node_modules/object.assign/CHANGELOG.md +246 -0
  1700. package/mac-agent/node_modules/object.assign/LICENSE +21 -0
  1701. package/mac-agent/node_modules/object.assign/README.md +136 -0
  1702. package/mac-agent/node_modules/object.assign/auto.js +3 -0
  1703. package/mac-agent/node_modules/object.assign/dist/browser.js +1304 -0
  1704. package/mac-agent/node_modules/object.assign/hasSymbols.js +43 -0
  1705. package/mac-agent/node_modules/object.assign/implementation.js +46 -0
  1706. package/mac-agent/node_modules/object.assign/index.js +22 -0
  1707. package/mac-agent/node_modules/object.assign/package.json +96 -0
  1708. package/mac-agent/node_modules/object.assign/polyfill.js +55 -0
  1709. package/mac-agent/node_modules/object.assign/shim.js +14 -0
  1710. package/mac-agent/node_modules/object.assign/test/implementation.js +19 -0
  1711. package/mac-agent/node_modules/object.assign/test/index.js +17 -0
  1712. package/mac-agent/node_modules/object.assign/test/native.js +49 -0
  1713. package/mac-agent/node_modules/object.assign/test/ses-compat.js +12 -0
  1714. package/mac-agent/node_modules/object.assign/test/shimmed.js +52 -0
  1715. package/mac-agent/node_modules/object.assign/test/tests.js +232 -0
  1716. package/mac-agent/node_modules/once/LICENSE +15 -0
  1717. package/mac-agent/node_modules/once/README.md +79 -0
  1718. package/mac-agent/node_modules/once/once.js +42 -0
  1719. package/mac-agent/node_modules/once/package.json +33 -0
  1720. package/mac-agent/node_modules/one-time/LICENSE +22 -0
  1721. package/mac-agent/node_modules/one-time/README.md +88 -0
  1722. package/mac-agent/node_modules/one-time/async.js +43 -0
  1723. package/mac-agent/node_modules/one-time/index.js +42 -0
  1724. package/mac-agent/node_modules/one-time/package.json +34 -0
  1725. package/mac-agent/node_modules/os-locale/index.js +127 -0
  1726. package/mac-agent/node_modules/os-locale/license +21 -0
  1727. package/mac-agent/node_modules/os-locale/package.json +43 -0
  1728. package/mac-agent/node_modules/os-locale/readme.md +47 -0
  1729. package/mac-agent/node_modules/parse-json/index.js +35 -0
  1730. package/mac-agent/node_modules/parse-json/license +21 -0
  1731. package/mac-agent/node_modules/parse-json/package.json +46 -0
  1732. package/mac-agent/node_modules/parse-json/readme.md +83 -0
  1733. package/mac-agent/node_modules/parse-json/vendor/parse.js +752 -0
  1734. package/mac-agent/node_modules/parse-json/vendor/unicode.js +71 -0
  1735. package/mac-agent/node_modules/path-exists/index.js +24 -0
  1736. package/mac-agent/node_modules/path-exists/license +21 -0
  1737. package/mac-agent/node_modules/path-exists/package.json +40 -0
  1738. package/mac-agent/node_modules/path-exists/readme.md +45 -0
  1739. package/mac-agent/node_modules/path-is-absolute/index.js +20 -0
  1740. package/mac-agent/node_modules/path-is-absolute/license +21 -0
  1741. package/mac-agent/node_modules/path-is-absolute/package.json +43 -0
  1742. package/mac-agent/node_modules/path-is-absolute/readme.md +59 -0
  1743. package/mac-agent/node_modules/path-parse/LICENSE +21 -0
  1744. package/mac-agent/node_modules/path-parse/README.md +42 -0
  1745. package/mac-agent/node_modules/path-parse/index.js +75 -0
  1746. package/mac-agent/node_modules/path-parse/package.json +33 -0
  1747. package/mac-agent/node_modules/path-type/index.js +29 -0
  1748. package/mac-agent/node_modules/path-type/license +21 -0
  1749. package/mac-agent/node_modules/path-type/package.json +52 -0
  1750. package/mac-agent/node_modules/path-type/readme.md +42 -0
  1751. package/mac-agent/node_modules/picomatch/CHANGELOG.md +136 -0
  1752. package/mac-agent/node_modules/picomatch/LICENSE +21 -0
  1753. package/mac-agent/node_modules/picomatch/README.md +708 -0
  1754. package/mac-agent/node_modules/picomatch/index.js +3 -0
  1755. package/mac-agent/node_modules/picomatch/lib/constants.js +179 -0
  1756. package/mac-agent/node_modules/picomatch/lib/parse.js +1091 -0
  1757. package/mac-agent/node_modules/picomatch/lib/picomatch.js +342 -0
  1758. package/mac-agent/node_modules/picomatch/lib/scan.js +391 -0
  1759. package/mac-agent/node_modules/picomatch/lib/utils.js +64 -0
  1760. package/mac-agent/node_modules/picomatch/package.json +81 -0
  1761. package/mac-agent/node_modules/pify/index.js +68 -0
  1762. package/mac-agent/node_modules/pify/license +21 -0
  1763. package/mac-agent/node_modules/pify/package.json +48 -0
  1764. package/mac-agent/node_modules/pify/readme.md +119 -0
  1765. package/mac-agent/node_modules/pinkie/index.js +292 -0
  1766. package/mac-agent/node_modules/pinkie/license +21 -0
  1767. package/mac-agent/node_modules/pinkie/package.json +36 -0
  1768. package/mac-agent/node_modules/pinkie/readme.md +83 -0
  1769. package/mac-agent/node_modules/pinkie-promise/index.js +3 -0
  1770. package/mac-agent/node_modules/pinkie-promise/license +21 -0
  1771. package/mac-agent/node_modules/pinkie-promise/package.json +35 -0
  1772. package/mac-agent/node_modules/pinkie-promise/readme.md +28 -0
  1773. package/mac-agent/node_modules/proxy-from-env/.eslintrc +29 -0
  1774. package/mac-agent/node_modules/proxy-from-env/.travis.yml +10 -0
  1775. package/mac-agent/node_modules/proxy-from-env/LICENSE +20 -0
  1776. package/mac-agent/node_modules/proxy-from-env/README.md +131 -0
  1777. package/mac-agent/node_modules/proxy-from-env/index.js +108 -0
  1778. package/mac-agent/node_modules/proxy-from-env/package.json +34 -0
  1779. package/mac-agent/node_modules/proxy-from-env/test.js +483 -0
  1780. package/mac-agent/node_modules/pstree.remy/.travis.yml +8 -0
  1781. package/mac-agent/node_modules/pstree.remy/LICENSE +7 -0
  1782. package/mac-agent/node_modules/pstree.remy/README.md +26 -0
  1783. package/mac-agent/node_modules/pstree.remy/lib/index.js +37 -0
  1784. package/mac-agent/node_modules/pstree.remy/lib/tree.js +37 -0
  1785. package/mac-agent/node_modules/pstree.remy/lib/utils.js +53 -0
  1786. package/mac-agent/node_modules/pstree.remy/package.json +33 -0
  1787. package/mac-agent/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  1788. package/mac-agent/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  1789. package/mac-agent/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  1790. package/mac-agent/node_modules/pstree.remy/tests/index.test.js +51 -0
  1791. package/mac-agent/node_modules/read-pkg/index.js +48 -0
  1792. package/mac-agent/node_modules/read-pkg/license +21 -0
  1793. package/mac-agent/node_modules/read-pkg/package.json +42 -0
  1794. package/mac-agent/node_modules/read-pkg/readme.md +79 -0
  1795. package/mac-agent/node_modules/read-pkg-up/index.js +31 -0
  1796. package/mac-agent/node_modules/read-pkg-up/license +21 -0
  1797. package/mac-agent/node_modules/read-pkg-up/package.json +59 -0
  1798. package/mac-agent/node_modules/read-pkg-up/readme.md +79 -0
  1799. package/mac-agent/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  1800. package/mac-agent/node_modules/readable-stream/GOVERNANCE.md +136 -0
  1801. package/mac-agent/node_modules/readable-stream/LICENSE +47 -0
  1802. package/mac-agent/node_modules/readable-stream/README.md +106 -0
  1803. package/mac-agent/node_modules/readable-stream/errors-browser.js +127 -0
  1804. package/mac-agent/node_modules/readable-stream/errors.js +116 -0
  1805. package/mac-agent/node_modules/readable-stream/experimentalWarning.js +17 -0
  1806. package/mac-agent/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
  1807. package/mac-agent/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
  1808. package/mac-agent/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
  1809. package/mac-agent/node_modules/readable-stream/lib/_stream_transform.js +190 -0
  1810. package/mac-agent/node_modules/readable-stream/lib/_stream_writable.js +641 -0
  1811. package/mac-agent/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
  1812. package/mac-agent/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
  1813. package/mac-agent/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
  1814. package/mac-agent/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
  1815. package/mac-agent/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
  1816. package/mac-agent/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
  1817. package/mac-agent/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
  1818. package/mac-agent/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
  1819. package/mac-agent/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  1820. package/mac-agent/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  1821. package/mac-agent/node_modules/readable-stream/package.json +68 -0
  1822. package/mac-agent/node_modules/readable-stream/readable-browser.js +9 -0
  1823. package/mac-agent/node_modules/readable-stream/readable.js +16 -0
  1824. package/mac-agent/node_modules/readdirp/LICENSE +21 -0
  1825. package/mac-agent/node_modules/readdirp/README.md +122 -0
  1826. package/mac-agent/node_modules/readdirp/index.d.ts +43 -0
  1827. package/mac-agent/node_modules/readdirp/index.js +287 -0
  1828. package/mac-agent/node_modules/readdirp/package.json +122 -0
  1829. package/mac-agent/node_modules/require-directory/.jshintrc +67 -0
  1830. package/mac-agent/node_modules/require-directory/.travis.yml +3 -0
  1831. package/mac-agent/node_modules/require-directory/LICENSE +22 -0
  1832. package/mac-agent/node_modules/require-directory/README.markdown +184 -0
  1833. package/mac-agent/node_modules/require-directory/index.js +86 -0
  1834. package/mac-agent/node_modules/require-directory/package.json +40 -0
  1835. package/mac-agent/node_modules/require-main-filename/.travis.yml +8 -0
  1836. package/mac-agent/node_modules/require-main-filename/LICENSE.txt +14 -0
  1837. package/mac-agent/node_modules/require-main-filename/README.md +26 -0
  1838. package/mac-agent/node_modules/require-main-filename/index.js +18 -0
  1839. package/mac-agent/node_modules/require-main-filename/package.json +30 -0
  1840. package/mac-agent/node_modules/require-main-filename/test.js +36 -0
  1841. package/mac-agent/node_modules/resolve/.editorconfig +37 -0
  1842. package/mac-agent/node_modules/resolve/.eslintrc +65 -0
  1843. package/mac-agent/node_modules/resolve/.github/FUNDING.yml +12 -0
  1844. package/mac-agent/node_modules/resolve/LICENSE +21 -0
  1845. package/mac-agent/node_modules/resolve/SECURITY.md +3 -0
  1846. package/mac-agent/node_modules/resolve/async.js +3 -0
  1847. package/mac-agent/node_modules/resolve/bin/resolve +50 -0
  1848. package/mac-agent/node_modules/resolve/example/async.js +5 -0
  1849. package/mac-agent/node_modules/resolve/example/sync.js +3 -0
  1850. package/mac-agent/node_modules/resolve/index.js +6 -0
  1851. package/mac-agent/node_modules/resolve/lib/async.js +329 -0
  1852. package/mac-agent/node_modules/resolve/lib/caller.js +8 -0
  1853. package/mac-agent/node_modules/resolve/lib/core.js +12 -0
  1854. package/mac-agent/node_modules/resolve/lib/core.json +162 -0
  1855. package/mac-agent/node_modules/resolve/lib/homedir.js +24 -0
  1856. package/mac-agent/node_modules/resolve/lib/is-core.js +5 -0
  1857. package/mac-agent/node_modules/resolve/lib/node-modules-paths.js +42 -0
  1858. package/mac-agent/node_modules/resolve/lib/normalize-options.js +10 -0
  1859. package/mac-agent/node_modules/resolve/lib/sync.js +208 -0
  1860. package/mac-agent/node_modules/resolve/package.json +75 -0
  1861. package/mac-agent/node_modules/resolve/readme.markdown +301 -0
  1862. package/mac-agent/node_modules/resolve/sync.js +3 -0
  1863. package/mac-agent/node_modules/resolve/test/core.js +88 -0
  1864. package/mac-agent/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  1865. package/mac-agent/node_modules/resolve/test/dotdot/index.js +1 -0
  1866. package/mac-agent/node_modules/resolve/test/dotdot.js +29 -0
  1867. package/mac-agent/node_modules/resolve/test/faulty_basedir.js +29 -0
  1868. package/mac-agent/node_modules/resolve/test/filter.js +34 -0
  1869. package/mac-agent/node_modules/resolve/test/filter_sync.js +33 -0
  1870. package/mac-agent/node_modules/resolve/test/home_paths.js +127 -0
  1871. package/mac-agent/node_modules/resolve/test/home_paths_sync.js +114 -0
  1872. package/mac-agent/node_modules/resolve/test/mock.js +315 -0
  1873. package/mac-agent/node_modules/resolve/test/mock_sync.js +214 -0
  1874. package/mac-agent/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  1875. package/mac-agent/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  1876. package/mac-agent/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  1877. package/mac-agent/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  1878. package/mac-agent/node_modules/resolve/test/module_dir.js +56 -0
  1879. package/mac-agent/node_modules/resolve/test/node-modules-paths.js +143 -0
  1880. package/mac-agent/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  1881. package/mac-agent/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  1882. package/mac-agent/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  1883. package/mac-agent/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  1884. package/mac-agent/node_modules/resolve/test/node_path.js +70 -0
  1885. package/mac-agent/node_modules/resolve/test/nonstring.js +9 -0
  1886. package/mac-agent/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  1887. package/mac-agent/node_modules/resolve/test/pathfilter.js +75 -0
  1888. package/mac-agent/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  1889. package/mac-agent/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  1890. package/mac-agent/node_modules/resolve/test/precedence/aaa.js +1 -0
  1891. package/mac-agent/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  1892. package/mac-agent/node_modules/resolve/test/precedence/bbb.js +1 -0
  1893. package/mac-agent/node_modules/resolve/test/precedence.js +23 -0
  1894. package/mac-agent/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  1895. package/mac-agent/node_modules/resolve/test/resolver/baz/package.json +4 -0
  1896. package/mac-agent/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  1897. package/mac-agent/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  1898. package/mac-agent/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  1899. package/mac-agent/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
  1900. package/mac-agent/node_modules/resolve/test/resolver/cup.coffee +1 -0
  1901. package/mac-agent/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
  1902. package/mac-agent/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
  1903. package/mac-agent/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
  1904. package/mac-agent/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
  1905. package/mac-agent/node_modules/resolve/test/resolver/false_main/index.js +0 -0
  1906. package/mac-agent/node_modules/resolve/test/resolver/false_main/package.json +4 -0
  1907. package/mac-agent/node_modules/resolve/test/resolver/foo.js +1 -0
  1908. package/mac-agent/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  1909. package/mac-agent/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  1910. package/mac-agent/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
  1911. package/mac-agent/node_modules/resolve/test/resolver/mug.coffee +0 -0
  1912. package/mac-agent/node_modules/resolve/test/resolver/mug.js +0 -0
  1913. package/mac-agent/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
  1914. package/mac-agent/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
  1915. package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
  1916. package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
  1917. package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  1918. package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
  1919. package/mac-agent/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
  1920. package/mac-agent/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
  1921. package/mac-agent/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
  1922. package/mac-agent/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  1923. package/mac-agent/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  1924. package/mac-agent/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  1925. package/mac-agent/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
  1926. package/mac-agent/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
  1927. package/mac-agent/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  1928. package/mac-agent/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  1929. package/mac-agent/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
  1930. package/mac-agent/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
  1931. package/mac-agent/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
  1932. package/mac-agent/node_modules/resolve/test/resolver.js +597 -0
  1933. package/mac-agent/node_modules/resolve/test/resolver_sync.js +730 -0
  1934. package/mac-agent/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  1935. package/mac-agent/node_modules/resolve/test/shadowed_core.js +54 -0
  1936. package/mac-agent/node_modules/resolve/test/subdirs.js +13 -0
  1937. package/mac-agent/node_modules/resolve/test/symlinks.js +176 -0
  1938. package/mac-agent/node_modules/rimraf/CHANGELOG.md +65 -0
  1939. package/mac-agent/node_modules/rimraf/LICENSE +15 -0
  1940. package/mac-agent/node_modules/rimraf/README.md +101 -0
  1941. package/mac-agent/node_modules/rimraf/bin.js +68 -0
  1942. package/mac-agent/node_modules/rimraf/package.json +32 -0
  1943. package/mac-agent/node_modules/rimraf/rimraf.js +360 -0
  1944. package/mac-agent/node_modules/safe-buffer/LICENSE +21 -0
  1945. package/mac-agent/node_modules/safe-buffer/README.md +584 -0
  1946. package/mac-agent/node_modules/safe-buffer/index.d.ts +187 -0
  1947. package/mac-agent/node_modules/safe-buffer/index.js +65 -0
  1948. package/mac-agent/node_modules/safe-buffer/package.json +51 -0
  1949. package/mac-agent/node_modules/safe-stable-stringify/LICENSE +21 -0
  1950. package/mac-agent/node_modules/safe-stable-stringify/esm/package.json +4 -0
  1951. package/mac-agent/node_modules/safe-stable-stringify/esm/wrapper.d.ts +4 -0
  1952. package/mac-agent/node_modules/safe-stable-stringify/esm/wrapper.js +6 -0
  1953. package/mac-agent/node_modules/safe-stable-stringify/index.d.ts +22 -0
  1954. package/mac-agent/node_modules/safe-stable-stringify/index.js +625 -0
  1955. package/mac-agent/node_modules/safe-stable-stringify/package.json +65 -0
  1956. package/mac-agent/node_modules/safe-stable-stringify/readme.md +179 -0
  1957. package/mac-agent/node_modules/semver/LICENSE +15 -0
  1958. package/mac-agent/node_modules/semver/README.md +664 -0
  1959. package/mac-agent/node_modules/semver/bin/semver.js +191 -0
  1960. package/mac-agent/node_modules/semver/classes/comparator.js +143 -0
  1961. package/mac-agent/node_modules/semver/classes/index.js +7 -0
  1962. package/mac-agent/node_modules/semver/classes/range.js +556 -0
  1963. package/mac-agent/node_modules/semver/classes/semver.js +319 -0
  1964. package/mac-agent/node_modules/semver/functions/clean.js +8 -0
  1965. package/mac-agent/node_modules/semver/functions/cmp.js +54 -0
  1966. package/mac-agent/node_modules/semver/functions/coerce.js +62 -0
  1967. package/mac-agent/node_modules/semver/functions/compare-build.js +9 -0
  1968. package/mac-agent/node_modules/semver/functions/compare-loose.js +5 -0
  1969. package/mac-agent/node_modules/semver/functions/compare.js +7 -0
  1970. package/mac-agent/node_modules/semver/functions/diff.js +60 -0
  1971. package/mac-agent/node_modules/semver/functions/eq.js +5 -0
  1972. package/mac-agent/node_modules/semver/functions/gt.js +5 -0
  1973. package/mac-agent/node_modules/semver/functions/gte.js +5 -0
  1974. package/mac-agent/node_modules/semver/functions/inc.js +21 -0
  1975. package/mac-agent/node_modules/semver/functions/lt.js +5 -0
  1976. package/mac-agent/node_modules/semver/functions/lte.js +5 -0
  1977. package/mac-agent/node_modules/semver/functions/major.js +5 -0
  1978. package/mac-agent/node_modules/semver/functions/minor.js +5 -0
  1979. package/mac-agent/node_modules/semver/functions/neq.js +5 -0
  1980. package/mac-agent/node_modules/semver/functions/parse.js +18 -0
  1981. package/mac-agent/node_modules/semver/functions/patch.js +5 -0
  1982. package/mac-agent/node_modules/semver/functions/prerelease.js +8 -0
  1983. package/mac-agent/node_modules/semver/functions/rcompare.js +5 -0
  1984. package/mac-agent/node_modules/semver/functions/rsort.js +5 -0
  1985. package/mac-agent/node_modules/semver/functions/satisfies.js +12 -0
  1986. package/mac-agent/node_modules/semver/functions/sort.js +5 -0
  1987. package/mac-agent/node_modules/semver/functions/valid.js +8 -0
  1988. package/mac-agent/node_modules/semver/index.js +91 -0
  1989. package/mac-agent/node_modules/semver/internal/constants.js +37 -0
  1990. package/mac-agent/node_modules/semver/internal/debug.js +11 -0
  1991. package/mac-agent/node_modules/semver/internal/identifiers.js +25 -0
  1992. package/mac-agent/node_modules/semver/internal/lrucache.js +42 -0
  1993. package/mac-agent/node_modules/semver/internal/parse-options.js +17 -0
  1994. package/mac-agent/node_modules/semver/internal/re.js +223 -0
  1995. package/mac-agent/node_modules/semver/package.json +78 -0
  1996. package/mac-agent/node_modules/semver/preload.js +4 -0
  1997. package/mac-agent/node_modules/semver/range.bnf +16 -0
  1998. package/mac-agent/node_modules/semver/ranges/gtr.js +6 -0
  1999. package/mac-agent/node_modules/semver/ranges/intersects.js +9 -0
  2000. package/mac-agent/node_modules/semver/ranges/ltr.js +6 -0
  2001. package/mac-agent/node_modules/semver/ranges/max-satisfying.js +27 -0
  2002. package/mac-agent/node_modules/semver/ranges/min-satisfying.js +26 -0
  2003. package/mac-agent/node_modules/semver/ranges/min-version.js +63 -0
  2004. package/mac-agent/node_modules/semver/ranges/outside.js +82 -0
  2005. package/mac-agent/node_modules/semver/ranges/simplify.js +49 -0
  2006. package/mac-agent/node_modules/semver/ranges/subset.js +249 -0
  2007. package/mac-agent/node_modules/semver/ranges/to-comparators.js +10 -0
  2008. package/mac-agent/node_modules/semver/ranges/valid.js +13 -0
  2009. package/mac-agent/node_modules/set-blocking/CHANGELOG.md +26 -0
  2010. package/mac-agent/node_modules/set-blocking/LICENSE.txt +14 -0
  2011. package/mac-agent/node_modules/set-blocking/README.md +31 -0
  2012. package/mac-agent/node_modules/set-blocking/index.js +7 -0
  2013. package/mac-agent/node_modules/set-blocking/package.json +42 -0
  2014. package/mac-agent/node_modules/set-function-length/.eslintrc +27 -0
  2015. package/mac-agent/node_modules/set-function-length/.github/FUNDING.yml +12 -0
  2016. package/mac-agent/node_modules/set-function-length/.nycrc +13 -0
  2017. package/mac-agent/node_modules/set-function-length/CHANGELOG.md +70 -0
  2018. package/mac-agent/node_modules/set-function-length/LICENSE +21 -0
  2019. package/mac-agent/node_modules/set-function-length/README.md +56 -0
  2020. package/mac-agent/node_modules/set-function-length/env.d.ts +9 -0
  2021. package/mac-agent/node_modules/set-function-length/env.js +25 -0
  2022. package/mac-agent/node_modules/set-function-length/index.d.ts +7 -0
  2023. package/mac-agent/node_modules/set-function-length/index.js +42 -0
  2024. package/mac-agent/node_modules/set-function-length/package.json +102 -0
  2025. package/mac-agent/node_modules/set-function-length/tsconfig.json +9 -0
  2026. package/mac-agent/node_modules/signal-exit/LICENSE.txt +16 -0
  2027. package/mac-agent/node_modules/signal-exit/README.md +39 -0
  2028. package/mac-agent/node_modules/signal-exit/index.js +202 -0
  2029. package/mac-agent/node_modules/signal-exit/package.json +38 -0
  2030. package/mac-agent/node_modules/signal-exit/signals.js +53 -0
  2031. package/mac-agent/node_modules/simple-swizzle/LICENSE +21 -0
  2032. package/mac-agent/node_modules/simple-swizzle/README.md +39 -0
  2033. package/mac-agent/node_modules/simple-swizzle/index.js +29 -0
  2034. package/mac-agent/node_modules/simple-swizzle/package.json +36 -0
  2035. package/mac-agent/node_modules/simple-update-notifier/LICENSE +21 -0
  2036. package/mac-agent/node_modules/simple-update-notifier/README.md +82 -0
  2037. package/mac-agent/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  2038. package/mac-agent/node_modules/simple-update-notifier/build/index.js +210 -0
  2039. package/mac-agent/node_modules/simple-update-notifier/package.json +100 -0
  2040. package/mac-agent/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  2041. package/mac-agent/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  2042. package/mac-agent/node_modules/simple-update-notifier/src/cache.ts +44 -0
  2043. package/mac-agent/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  2044. package/mac-agent/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  2045. package/mac-agent/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  2046. package/mac-agent/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  2047. package/mac-agent/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  2048. package/mac-agent/node_modules/simple-update-notifier/src/index.ts +34 -0
  2049. package/mac-agent/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  2050. package/mac-agent/node_modules/simple-update-notifier/src/types.ts +8 -0
  2051. package/mac-agent/node_modules/spdx-correct/LICENSE +202 -0
  2052. package/mac-agent/node_modules/spdx-correct/README.md +22 -0
  2053. package/mac-agent/node_modules/spdx-correct/index.js +386 -0
  2054. package/mac-agent/node_modules/spdx-correct/package.json +32 -0
  2055. package/mac-agent/node_modules/spdx-exceptions/README.md +36 -0
  2056. package/mac-agent/node_modules/spdx-exceptions/deprecated.json +3 -0
  2057. package/mac-agent/node_modules/spdx-exceptions/index.json +68 -0
  2058. package/mac-agent/node_modules/spdx-exceptions/package.json +19 -0
  2059. package/mac-agent/node_modules/spdx-expression-parse/AUTHORS +4 -0
  2060. package/mac-agent/node_modules/spdx-expression-parse/LICENSE +22 -0
  2061. package/mac-agent/node_modules/spdx-expression-parse/README.md +91 -0
  2062. package/mac-agent/node_modules/spdx-expression-parse/index.js +8 -0
  2063. package/mac-agent/node_modules/spdx-expression-parse/package.json +39 -0
  2064. package/mac-agent/node_modules/spdx-expression-parse/parse.js +138 -0
  2065. package/mac-agent/node_modules/spdx-expression-parse/scan.js +131 -0
  2066. package/mac-agent/node_modules/spdx-license-ids/README.md +51 -0
  2067. package/mac-agent/node_modules/spdx-license-ids/deprecated.json +28 -0
  2068. package/mac-agent/node_modules/spdx-license-ids/index.json +650 -0
  2069. package/mac-agent/node_modules/spdx-license-ids/package.json +29 -0
  2070. package/mac-agent/node_modules/stack-trace/License +19 -0
  2071. package/mac-agent/node_modules/stack-trace/Makefile +11 -0
  2072. package/mac-agent/node_modules/stack-trace/Readme.md +98 -0
  2073. package/mac-agent/node_modules/stack-trace/lib/stack-trace.js +136 -0
  2074. package/mac-agent/node_modules/stack-trace/package.json +21 -0
  2075. package/mac-agent/node_modules/string-width/index.d.ts +29 -0
  2076. package/mac-agent/node_modules/string-width/index.js +47 -0
  2077. package/mac-agent/node_modules/string-width/license +9 -0
  2078. package/mac-agent/node_modules/string-width/package.json +56 -0
  2079. package/mac-agent/node_modules/string-width/readme.md +50 -0
  2080. package/mac-agent/node_modules/string_decoder/LICENSE +48 -0
  2081. package/mac-agent/node_modules/string_decoder/README.md +47 -0
  2082. package/mac-agent/node_modules/string_decoder/lib/string_decoder.js +296 -0
  2083. package/mac-agent/node_modules/string_decoder/package.json +34 -0
  2084. package/mac-agent/node_modules/strip-ansi/index.d.ts +17 -0
  2085. package/mac-agent/node_modules/strip-ansi/index.js +4 -0
  2086. package/mac-agent/node_modules/strip-ansi/license +9 -0
  2087. package/mac-agent/node_modules/strip-ansi/package.json +54 -0
  2088. package/mac-agent/node_modules/strip-ansi/readme.md +46 -0
  2089. package/mac-agent/node_modules/strip-bom/index.js +17 -0
  2090. package/mac-agent/node_modules/strip-bom/license +21 -0
  2091. package/mac-agent/node_modules/strip-bom/package.json +42 -0
  2092. package/mac-agent/node_modules/strip-bom/readme.md +39 -0
  2093. package/mac-agent/node_modules/supports-color/browser.js +5 -0
  2094. package/mac-agent/node_modules/supports-color/index.js +131 -0
  2095. package/mac-agent/node_modules/supports-color/license +9 -0
  2096. package/mac-agent/node_modules/supports-color/package.json +53 -0
  2097. package/mac-agent/node_modules/supports-color/readme.md +66 -0
  2098. package/mac-agent/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
  2099. package/mac-agent/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
  2100. package/mac-agent/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
  2101. package/mac-agent/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
  2102. package/mac-agent/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
  2103. package/mac-agent/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
  2104. package/mac-agent/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
  2105. package/mac-agent/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
  2106. package/mac-agent/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
  2107. package/mac-agent/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
  2108. package/mac-agent/node_modules/tar/LICENSE +15 -0
  2109. package/mac-agent/node_modules/tar/README.md +1080 -0
  2110. package/mac-agent/node_modules/tar/index.js +18 -0
  2111. package/mac-agent/node_modules/tar/lib/create.js +111 -0
  2112. package/mac-agent/node_modules/tar/lib/extract.js +113 -0
  2113. package/mac-agent/node_modules/tar/lib/get-write-flag.js +20 -0
  2114. package/mac-agent/node_modules/tar/lib/header.js +304 -0
  2115. package/mac-agent/node_modules/tar/lib/high-level-opt.js +29 -0
  2116. package/mac-agent/node_modules/tar/lib/large-numbers.js +104 -0
  2117. package/mac-agent/node_modules/tar/lib/list.js +139 -0
  2118. package/mac-agent/node_modules/tar/lib/mkdir.js +229 -0
  2119. package/mac-agent/node_modules/tar/lib/mode-fix.js +27 -0
  2120. package/mac-agent/node_modules/tar/lib/normalize-unicode.js +12 -0
  2121. package/mac-agent/node_modules/tar/lib/normalize-windows-path.js +8 -0
  2122. package/mac-agent/node_modules/tar/lib/pack.js +432 -0
  2123. package/mac-agent/node_modules/tar/lib/parse.js +552 -0
  2124. package/mac-agent/node_modules/tar/lib/path-reservations.js +156 -0
  2125. package/mac-agent/node_modules/tar/lib/pax.js +150 -0
  2126. package/mac-agent/node_modules/tar/lib/read-entry.js +107 -0
  2127. package/mac-agent/node_modules/tar/lib/replace.js +246 -0
  2128. package/mac-agent/node_modules/tar/lib/strip-absolute-path.js +24 -0
  2129. package/mac-agent/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
  2130. package/mac-agent/node_modules/tar/lib/types.js +44 -0
  2131. package/mac-agent/node_modules/tar/lib/unpack.js +923 -0
  2132. package/mac-agent/node_modules/tar/lib/update.js +40 -0
  2133. package/mac-agent/node_modules/tar/lib/warn-mixin.js +24 -0
  2134. package/mac-agent/node_modules/tar/lib/winchars.js +23 -0
  2135. package/mac-agent/node_modules/tar/lib/write-entry.js +546 -0
  2136. package/mac-agent/node_modules/tar/package.json +70 -0
  2137. package/mac-agent/node_modules/text-hex/LICENSE +21 -0
  2138. package/mac-agent/node_modules/text-hex/README.md +20 -0
  2139. package/mac-agent/node_modules/text-hex/index.js +24 -0
  2140. package/mac-agent/node_modules/text-hex/package.json +30 -0
  2141. package/mac-agent/node_modules/text-hex/test.js +11 -0
  2142. package/mac-agent/node_modules/to-regex-range/LICENSE +21 -0
  2143. package/mac-agent/node_modules/to-regex-range/README.md +305 -0
  2144. package/mac-agent/node_modules/to-regex-range/index.js +288 -0
  2145. package/mac-agent/node_modules/to-regex-range/package.json +88 -0
  2146. package/mac-agent/node_modules/touch/LICENSE +15 -0
  2147. package/mac-agent/node_modules/touch/README.md +52 -0
  2148. package/mac-agent/node_modules/touch/bin/nodetouch.js +112 -0
  2149. package/mac-agent/node_modules/touch/index.js +224 -0
  2150. package/mac-agent/node_modules/touch/package.json +25 -0
  2151. package/mac-agent/node_modules/tr46/index.js +193 -0
  2152. package/mac-agent/node_modules/tr46/lib/.gitkeep +0 -0
  2153. package/mac-agent/node_modules/tr46/lib/mappingTable.json +1 -0
  2154. package/mac-agent/node_modules/tr46/package.json +31 -0
  2155. package/mac-agent/node_modules/triple-beam/.nyc_output/c579bf8f-6820-47a5-b2da-a11267eb8435.json +1 -0
  2156. package/mac-agent/node_modules/triple-beam/.nyc_output/processinfo/c579bf8f-6820-47a5-b2da-a11267eb8435.json +1 -0
  2157. package/mac-agent/node_modules/triple-beam/.nyc_output/processinfo/index.json +1 -0
  2158. package/mac-agent/node_modules/triple-beam/CHANGELOG.md +22 -0
  2159. package/mac-agent/node_modules/triple-beam/LICENSE +21 -0
  2160. package/mac-agent/node_modules/triple-beam/README.md +34 -0
  2161. package/mac-agent/node_modules/triple-beam/config/cli.js +42 -0
  2162. package/mac-agent/node_modules/triple-beam/config/index.js +32 -0
  2163. package/mac-agent/node_modules/triple-beam/config/npm.js +36 -0
  2164. package/mac-agent/node_modules/triple-beam/config/syslog.js +38 -0
  2165. package/mac-agent/node_modules/triple-beam/index.js +46 -0
  2166. package/mac-agent/node_modules/triple-beam/package.json +40 -0
  2167. package/mac-agent/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  2168. package/mac-agent/node_modules/undefsafe/.jscsrc +13 -0
  2169. package/mac-agent/node_modules/undefsafe/.jshintrc +16 -0
  2170. package/mac-agent/node_modules/undefsafe/.travis.yml +18 -0
  2171. package/mac-agent/node_modules/undefsafe/LICENSE +22 -0
  2172. package/mac-agent/node_modules/undefsafe/README.md +63 -0
  2173. package/mac-agent/node_modules/undefsafe/example.js +14 -0
  2174. package/mac-agent/node_modules/undefsafe/lib/undefsafe.js +125 -0
  2175. package/mac-agent/node_modules/undefsafe/package.json +34 -0
  2176. package/mac-agent/node_modules/util-deprecate/History.md +16 -0
  2177. package/mac-agent/node_modules/util-deprecate/LICENSE +24 -0
  2178. package/mac-agent/node_modules/util-deprecate/README.md +53 -0
  2179. package/mac-agent/node_modules/util-deprecate/browser.js +67 -0
  2180. package/mac-agent/node_modules/util-deprecate/node.js +6 -0
  2181. package/mac-agent/node_modules/util-deprecate/package.json +27 -0
  2182. package/mac-agent/node_modules/uuid/CHANGELOG.md +229 -0
  2183. package/mac-agent/node_modules/uuid/CONTRIBUTING.md +18 -0
  2184. package/mac-agent/node_modules/uuid/LICENSE.md +9 -0
  2185. package/mac-agent/node_modules/uuid/README.md +505 -0
  2186. package/mac-agent/node_modules/uuid/dist/bin/uuid +2 -0
  2187. package/mac-agent/node_modules/uuid/dist/esm-browser/index.js +9 -0
  2188. package/mac-agent/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  2189. package/mac-agent/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  2190. package/mac-agent/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  2191. package/mac-agent/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  2192. package/mac-agent/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  2193. package/mac-agent/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  2194. package/mac-agent/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  2195. package/mac-agent/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  2196. package/mac-agent/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  2197. package/mac-agent/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  2198. package/mac-agent/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  2199. package/mac-agent/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  2200. package/mac-agent/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  2201. package/mac-agent/node_modules/uuid/dist/esm-browser/version.js +11 -0
  2202. package/mac-agent/node_modules/uuid/dist/esm-node/index.js +9 -0
  2203. package/mac-agent/node_modules/uuid/dist/esm-node/md5.js +13 -0
  2204. package/mac-agent/node_modules/uuid/dist/esm-node/nil.js +1 -0
  2205. package/mac-agent/node_modules/uuid/dist/esm-node/parse.js +35 -0
  2206. package/mac-agent/node_modules/uuid/dist/esm-node/regex.js +1 -0
  2207. package/mac-agent/node_modules/uuid/dist/esm-node/rng.js +12 -0
  2208. package/mac-agent/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  2209. package/mac-agent/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  2210. package/mac-agent/node_modules/uuid/dist/esm-node/v1.js +95 -0
  2211. package/mac-agent/node_modules/uuid/dist/esm-node/v3.js +4 -0
  2212. package/mac-agent/node_modules/uuid/dist/esm-node/v35.js +64 -0
  2213. package/mac-agent/node_modules/uuid/dist/esm-node/v4.js +24 -0
  2214. package/mac-agent/node_modules/uuid/dist/esm-node/v5.js +4 -0
  2215. package/mac-agent/node_modules/uuid/dist/esm-node/validate.js +7 -0
  2216. package/mac-agent/node_modules/uuid/dist/esm-node/version.js +11 -0
  2217. package/mac-agent/node_modules/uuid/dist/index.js +79 -0
  2218. package/mac-agent/node_modules/uuid/dist/md5-browser.js +223 -0
  2219. package/mac-agent/node_modules/uuid/dist/md5.js +23 -0
  2220. package/mac-agent/node_modules/uuid/dist/nil.js +8 -0
  2221. package/mac-agent/node_modules/uuid/dist/parse.js +45 -0
  2222. package/mac-agent/node_modules/uuid/dist/regex.js +8 -0
  2223. package/mac-agent/node_modules/uuid/dist/rng-browser.js +26 -0
  2224. package/mac-agent/node_modules/uuid/dist/rng.js +24 -0
  2225. package/mac-agent/node_modules/uuid/dist/sha1-browser.js +104 -0
  2226. package/mac-agent/node_modules/uuid/dist/sha1.js +23 -0
  2227. package/mac-agent/node_modules/uuid/dist/stringify.js +39 -0
  2228. package/mac-agent/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  2229. package/mac-agent/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  2230. package/mac-agent/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  2231. package/mac-agent/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  2232. package/mac-agent/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  2233. package/mac-agent/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  2234. package/mac-agent/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  2235. package/mac-agent/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  2236. package/mac-agent/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  2237. package/mac-agent/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  2238. package/mac-agent/node_modules/uuid/dist/uuid-bin.js +85 -0
  2239. package/mac-agent/node_modules/uuid/dist/v1.js +107 -0
  2240. package/mac-agent/node_modules/uuid/dist/v3.js +16 -0
  2241. package/mac-agent/node_modules/uuid/dist/v35.js +78 -0
  2242. package/mac-agent/node_modules/uuid/dist/v4.js +37 -0
  2243. package/mac-agent/node_modules/uuid/dist/v5.js +16 -0
  2244. package/mac-agent/node_modules/uuid/dist/validate.js +17 -0
  2245. package/mac-agent/node_modules/uuid/dist/version.js +21 -0
  2246. package/mac-agent/node_modules/uuid/package.json +135 -0
  2247. package/mac-agent/node_modules/uuid/wrapper.mjs +10 -0
  2248. package/mac-agent/node_modules/validate-npm-package-license/LICENSE +202 -0
  2249. package/mac-agent/node_modules/validate-npm-package-license/README.md +113 -0
  2250. package/mac-agent/node_modules/validate-npm-package-license/index.js +86 -0
  2251. package/mac-agent/node_modules/validate-npm-package-license/package.json +28 -0
  2252. package/mac-agent/node_modules/webidl-conversions/LICENSE.md +12 -0
  2253. package/mac-agent/node_modules/webidl-conversions/README.md +80 -0
  2254. package/mac-agent/node_modules/webidl-conversions/lib/index.js +332 -0
  2255. package/mac-agent/node_modules/webidl-conversions/package.json +27 -0
  2256. package/mac-agent/node_modules/whatwg-url/LICENSE.txt +21 -0
  2257. package/mac-agent/node_modules/whatwg-url/README.md +67 -0
  2258. package/mac-agent/node_modules/whatwg-url/lib/URL-impl.js +200 -0
  2259. package/mac-agent/node_modules/whatwg-url/lib/URL.js +196 -0
  2260. package/mac-agent/node_modules/whatwg-url/lib/public-api.js +11 -0
  2261. package/mac-agent/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
  2262. package/mac-agent/node_modules/whatwg-url/lib/utils.js +20 -0
  2263. package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/LICENSE.md +12 -0
  2264. package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/README.md +53 -0
  2265. package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/lib/index.js +189 -0
  2266. package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/package.json +23 -0
  2267. package/mac-agent/node_modules/whatwg-url/package.json +32 -0
  2268. package/mac-agent/node_modules/which/CHANGELOG.md +152 -0
  2269. package/mac-agent/node_modules/which/LICENSE +15 -0
  2270. package/mac-agent/node_modules/which/README.md +51 -0
  2271. package/mac-agent/node_modules/which/bin/which +52 -0
  2272. package/mac-agent/node_modules/which/package.json +30 -0
  2273. package/mac-agent/node_modules/which/which.js +135 -0
  2274. package/mac-agent/node_modules/which-module/CHANGELOG.md +11 -0
  2275. package/mac-agent/node_modules/which-module/LICENSE +13 -0
  2276. package/mac-agent/node_modules/which-module/README.md +55 -0
  2277. package/mac-agent/node_modules/which-module/index.js +9 -0
  2278. package/mac-agent/node_modules/which-module/package.json +41 -0
  2279. package/mac-agent/node_modules/wide-align/LICENSE +14 -0
  2280. package/mac-agent/node_modules/wide-align/README.md +47 -0
  2281. package/mac-agent/node_modules/wide-align/align.js +65 -0
  2282. package/mac-agent/node_modules/wide-align/package.json +33 -0
  2283. package/mac-agent/node_modules/winston/LICENSE +19 -0
  2284. package/mac-agent/node_modules/winston/README.md +1271 -0
  2285. package/mac-agent/node_modules/winston/dist/winston/common.js +44 -0
  2286. package/mac-agent/node_modules/winston/dist/winston/config/index.js +36 -0
  2287. package/mac-agent/node_modules/winston/dist/winston/container.js +141 -0
  2288. package/mac-agent/node_modules/winston/dist/winston/create-logger.js +123 -0
  2289. package/mac-agent/node_modules/winston/dist/winston/exception-handler.js +265 -0
  2290. package/mac-agent/node_modules/winston/dist/winston/exception-stream.js +75 -0
  2291. package/mac-agent/node_modules/winston/dist/winston/logger.js +672 -0
  2292. package/mac-agent/node_modules/winston/dist/winston/profiler.js +65 -0
  2293. package/mac-agent/node_modules/winston/dist/winston/rejection-handler.js +265 -0
  2294. package/mac-agent/node_modules/winston/dist/winston/rejection-stream.js +72 -0
  2295. package/mac-agent/node_modules/winston/dist/winston/tail-file.js +113 -0
  2296. package/mac-agent/node_modules/winston/dist/winston/transports/console.js +143 -0
  2297. package/mac-agent/node_modules/winston/dist/winston/transports/file.js +788 -0
  2298. package/mac-agent/node_modules/winston/dist/winston/transports/http.js +288 -0
  2299. package/mac-agent/node_modules/winston/dist/winston/transports/index.js +56 -0
  2300. package/mac-agent/node_modules/winston/dist/winston/transports/stream.js +86 -0
  2301. package/mac-agent/node_modules/winston/dist/winston.js +171 -0
  2302. package/mac-agent/node_modules/winston/index.d.ts +208 -0
  2303. package/mac-agent/node_modules/winston/lib/winston/common.js +46 -0
  2304. package/mac-agent/node_modules/winston/lib/winston/config/index.d.ts +99 -0
  2305. package/mac-agent/node_modules/winston/lib/winston/config/index.js +35 -0
  2306. package/mac-agent/node_modules/winston/lib/winston/container.js +118 -0
  2307. package/mac-agent/node_modules/winston/lib/winston/create-logger.js +104 -0
  2308. package/mac-agent/node_modules/winston/lib/winston/exception-handler.js +245 -0
  2309. package/mac-agent/node_modules/winston/lib/winston/exception-stream.js +54 -0
  2310. package/mac-agent/node_modules/winston/lib/winston/logger.js +677 -0
  2311. package/mac-agent/node_modules/winston/lib/winston/profiler.js +53 -0
  2312. package/mac-agent/node_modules/winston/lib/winston/rejection-handler.js +251 -0
  2313. package/mac-agent/node_modules/winston/lib/winston/rejection-stream.js +52 -0
  2314. package/mac-agent/node_modules/winston/lib/winston/tail-file.js +124 -0
  2315. package/mac-agent/node_modules/winston/lib/winston/transports/console.js +125 -0
  2316. package/mac-agent/node_modules/winston/lib/winston/transports/file.js +763 -0
  2317. package/mac-agent/node_modules/winston/lib/winston/transports/http.js +262 -0
  2318. package/mac-agent/node_modules/winston/lib/winston/transports/index.d.ts +117 -0
  2319. package/mac-agent/node_modules/winston/lib/winston/transports/index.js +56 -0
  2320. package/mac-agent/node_modules/winston/lib/winston/transports/stream.js +63 -0
  2321. package/mac-agent/node_modules/winston/lib/winston.js +191 -0
  2322. package/mac-agent/node_modules/winston/package.json +74 -0
  2323. package/mac-agent/node_modules/winston-transport/.babelrc +3 -0
  2324. package/mac-agent/node_modules/winston-transport/.eslintrc +7 -0
  2325. package/mac-agent/node_modules/winston-transport/.gitattributes +1 -0
  2326. package/mac-agent/node_modules/winston-transport/.nyc_output/68e78020-c804-4f37-a68a-a967c6380da9.json +1 -0
  2327. package/mac-agent/node_modules/winston-transport/.nyc_output/processinfo/68e78020-c804-4f37-a68a-a967c6380da9.json +1 -0
  2328. package/mac-agent/node_modules/winston-transport/.nyc_output/processinfo/index.json +1 -0
  2329. package/mac-agent/node_modules/winston-transport/CHANGELOG.md +126 -0
  2330. package/mac-agent/node_modules/winston-transport/LICENSE +22 -0
  2331. package/mac-agent/node_modules/winston-transport/README.md +50 -0
  2332. package/mac-agent/node_modules/winston-transport/dist/index.js +8 -0
  2333. package/mac-agent/node_modules/winston-transport/dist/legacy.js +116 -0
  2334. package/mac-agent/node_modules/winston-transport/dist/modern.js +212 -0
  2335. package/mac-agent/node_modules/winston-transport/index.d.ts +39 -0
  2336. package/mac-agent/node_modules/winston-transport/index.js +7 -0
  2337. package/mac-agent/node_modules/winston-transport/legacy.js +119 -0
  2338. package/mac-agent/node_modules/winston-transport/modern.js +211 -0
  2339. package/mac-agent/node_modules/winston-transport/package.json +52 -0
  2340. package/mac-agent/node_modules/wrap-ansi/index.js +168 -0
  2341. package/mac-agent/node_modules/wrap-ansi/license +21 -0
  2342. package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +4 -0
  2343. package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/license +21 -0
  2344. package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +64 -0
  2345. package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +39 -0
  2346. package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/index.js +46 -0
  2347. package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/license +21 -0
  2348. package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json +45 -0
  2349. package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/readme.md +39 -0
  2350. package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/index.js +37 -0
  2351. package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/license +21 -0
  2352. package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/package.json +56 -0
  2353. package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/readme.md +42 -0
  2354. package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +6 -0
  2355. package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/license +21 -0
  2356. package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +57 -0
  2357. package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +33 -0
  2358. package/mac-agent/node_modules/wrap-ansi/package.json +68 -0
  2359. package/mac-agent/node_modules/wrap-ansi/readme.md +73 -0
  2360. package/mac-agent/node_modules/wrappy/LICENSE +15 -0
  2361. package/mac-agent/node_modules/wrappy/README.md +36 -0
  2362. package/mac-agent/node_modules/wrappy/package.json +29 -0
  2363. package/mac-agent/node_modules/wrappy/wrappy.js +33 -0
  2364. package/mac-agent/node_modules/ws/LICENSE +20 -0
  2365. package/mac-agent/node_modules/ws/README.md +548 -0
  2366. package/mac-agent/node_modules/ws/browser.js +8 -0
  2367. package/mac-agent/node_modules/ws/index.js +13 -0
  2368. package/mac-agent/node_modules/ws/lib/buffer-util.js +131 -0
  2369. package/mac-agent/node_modules/ws/lib/constants.js +18 -0
  2370. package/mac-agent/node_modules/ws/lib/event-target.js +292 -0
  2371. package/mac-agent/node_modules/ws/lib/extension.js +203 -0
  2372. package/mac-agent/node_modules/ws/lib/limiter.js +55 -0
  2373. package/mac-agent/node_modules/ws/lib/permessage-deflate.js +528 -0
  2374. package/mac-agent/node_modules/ws/lib/receiver.js +706 -0
  2375. package/mac-agent/node_modules/ws/lib/sender.js +602 -0
  2376. package/mac-agent/node_modules/ws/lib/stream.js +161 -0
  2377. package/mac-agent/node_modules/ws/lib/subprotocol.js +62 -0
  2378. package/mac-agent/node_modules/ws/lib/validation.js +152 -0
  2379. package/mac-agent/node_modules/ws/lib/websocket-server.js +550 -0
  2380. package/mac-agent/node_modules/ws/lib/websocket.js +1388 -0
  2381. package/mac-agent/node_modules/ws/package.json +69 -0
  2382. package/mac-agent/node_modules/ws/wrapper.mjs +8 -0
  2383. package/mac-agent/node_modules/y18n/CHANGELOG.md +6 -0
  2384. package/mac-agent/node_modules/y18n/LICENSE +13 -0
  2385. package/mac-agent/node_modules/y18n/README.md +91 -0
  2386. package/mac-agent/node_modules/y18n/index.js +172 -0
  2387. package/mac-agent/node_modules/y18n/package.json +37 -0
  2388. package/mac-agent/node_modules/yallist/LICENSE +15 -0
  2389. package/mac-agent/node_modules/yallist/README.md +204 -0
  2390. package/mac-agent/node_modules/yallist/iterator.js +8 -0
  2391. package/mac-agent/node_modules/yallist/package.json +29 -0
  2392. package/mac-agent/node_modules/yallist/yallist.js +426 -0
  2393. package/mac-agent/node_modules/yargs/CHANGELOG.md +928 -0
  2394. package/mac-agent/node_modules/yargs/LICENSE +22 -0
  2395. package/mac-agent/node_modules/yargs/README.md +2017 -0
  2396. package/mac-agent/node_modules/yargs/completion.sh.hbs +28 -0
  2397. package/mac-agent/node_modules/yargs/index.js +31 -0
  2398. package/mac-agent/node_modules/yargs/lib/apply-extends.js +41 -0
  2399. package/mac-agent/node_modules/yargs/lib/argsert.js +72 -0
  2400. package/mac-agent/node_modules/yargs/lib/assign.js +15 -0
  2401. package/mac-agent/node_modules/yargs/lib/command.js +334 -0
  2402. package/mac-agent/node_modules/yargs/lib/completion.js +104 -0
  2403. package/mac-agent/node_modules/yargs/lib/levenshtein.js +47 -0
  2404. package/mac-agent/node_modules/yargs/lib/obj-filter.js +10 -0
  2405. package/mac-agent/node_modules/yargs/lib/usage.js +489 -0
  2406. package/mac-agent/node_modules/yargs/lib/validation.js +363 -0
  2407. package/mac-agent/node_modules/yargs/lib/yerror.js +10 -0
  2408. package/mac-agent/node_modules/yargs/locales/be.json +39 -0
  2409. package/mac-agent/node_modules/yargs/locales/de.json +39 -0
  2410. package/mac-agent/node_modules/yargs/locales/en.json +40 -0
  2411. package/mac-agent/node_modules/yargs/locales/es.json +39 -0
  2412. package/mac-agent/node_modules/yargs/locales/fr.json +37 -0
  2413. package/mac-agent/node_modules/yargs/locales/hi.json +39 -0
  2414. package/mac-agent/node_modules/yargs/locales/hu.json +39 -0
  2415. package/mac-agent/node_modules/yargs/locales/id.json +40 -0
  2416. package/mac-agent/node_modules/yargs/locales/it.json +39 -0
  2417. package/mac-agent/node_modules/yargs/locales/ja.json +39 -0
  2418. package/mac-agent/node_modules/yargs/locales/ko.json +39 -0
  2419. package/mac-agent/node_modules/yargs/locales/nb.json +37 -0
  2420. package/mac-agent/node_modules/yargs/locales/nl.json +39 -0
  2421. package/mac-agent/node_modules/yargs/locales/pirate.json +12 -0
  2422. package/mac-agent/node_modules/yargs/locales/pl.json +39 -0
  2423. package/mac-agent/node_modules/yargs/locales/pt.json +38 -0
  2424. package/mac-agent/node_modules/yargs/locales/pt_BR.json +40 -0
  2425. package/mac-agent/node_modules/yargs/locales/ru.json +39 -0
  2426. package/mac-agent/node_modules/yargs/locales/th.json +39 -0
  2427. package/mac-agent/node_modules/yargs/locales/tr.json +39 -0
  2428. package/mac-agent/node_modules/yargs/locales/zh_CN.json +37 -0
  2429. package/mac-agent/node_modules/yargs/locales/zh_TW.json +40 -0
  2430. package/mac-agent/node_modules/yargs/node_modules/ansi-regex/index.js +4 -0
  2431. package/mac-agent/node_modules/yargs/node_modules/ansi-regex/license +21 -0
  2432. package/mac-agent/node_modules/yargs/node_modules/ansi-regex/package.json +64 -0
  2433. package/mac-agent/node_modules/yargs/node_modules/ansi-regex/readme.md +39 -0
  2434. package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/index.js +46 -0
  2435. package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/license +21 -0
  2436. package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/package.json +45 -0
  2437. package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/readme.md +39 -0
  2438. package/mac-agent/node_modules/yargs/node_modules/string-width/index.js +37 -0
  2439. package/mac-agent/node_modules/yargs/node_modules/string-width/license +21 -0
  2440. package/mac-agent/node_modules/yargs/node_modules/string-width/package.json +56 -0
  2441. package/mac-agent/node_modules/yargs/node_modules/string-width/readme.md +42 -0
  2442. package/mac-agent/node_modules/yargs/node_modules/strip-ansi/index.js +6 -0
  2443. package/mac-agent/node_modules/yargs/node_modules/strip-ansi/license +21 -0
  2444. package/mac-agent/node_modules/yargs/node_modules/strip-ansi/package.json +57 -0
  2445. package/mac-agent/node_modules/yargs/node_modules/strip-ansi/readme.md +33 -0
  2446. package/mac-agent/node_modules/yargs/package.json +80 -0
  2447. package/mac-agent/node_modules/yargs/yargs.js +1126 -0
  2448. package/mac-agent/node_modules/yargs-parser/CHANGELOG.md +176 -0
  2449. package/mac-agent/node_modules/yargs-parser/LICENSE.txt +14 -0
  2450. package/mac-agent/node_modules/yargs-parser/README.md +257 -0
  2451. package/mac-agent/node_modules/yargs-parser/index.js +753 -0
  2452. package/mac-agent/node_modules/yargs-parser/lib/tokenize-arg-string.js +34 -0
  2453. package/mac-agent/node_modules/yargs-parser/package.json +44 -0
  2454. package/mac-agent/package-lock.json +2272 -0
  2455. package/mac-agent/package.json +31 -0
  2456. package/mac-agent/setup.js +120 -0
  2457. package/mac-agent/shell-mirror@1.5.7 +0 -0
  2458. package/mac-agent/web-setup.js +145 -0
  2459. package/package.json +2 -1
  2460. package/public/app/terminal.js +3 -40
@@ -0,0 +1,2272 @@
1
+ {
2
+ "name": "terminal-mirror-mac-agent",
3
+ "version": "2.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "terminal-mirror-mac-agent",
9
+ "version": "2.0.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@koush/wrtc": "^0.5.3",
13
+ "axios": "^1.6.2",
14
+ "dotenv": "^16.3.1",
15
+ "node-pty": "^1.0.0",
16
+ "uuid": "^8.3.2",
17
+ "winston": "^3.11.0",
18
+ "ws": "^8.14.2"
19
+ },
20
+ "devDependencies": {
21
+ "nodemon": "^3.0.2"
22
+ }
23
+ },
24
+ "node_modules/@colors/colors": {
25
+ "version": "1.6.0",
26
+ "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
27
+ "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
28
+ "license": "MIT",
29
+ "engines": {
30
+ "node": ">=0.1.90"
31
+ }
32
+ },
33
+ "node_modules/@dabh/diagnostics": {
34
+ "version": "2.0.3",
35
+ "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz",
36
+ "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==",
37
+ "license": "MIT",
38
+ "dependencies": {
39
+ "colorspace": "1.1.x",
40
+ "enabled": "2.0.x",
41
+ "kuler": "^2.0.0"
42
+ }
43
+ },
44
+ "node_modules/@koush/wrtc": {
45
+ "version": "0.5.3",
46
+ "resolved": "https://registry.npmjs.org/@koush/wrtc/-/wrtc-0.5.3.tgz",
47
+ "integrity": "sha512-hQqoSZS3/1pUJo3v91oXqFPRQZnqVxiGbEvYE4QsCGUv1hoqGyvr9Kj47RUP9xdYkHMra9HSWFqPj61U8PdSRQ==",
48
+ "hasInstallScript": true,
49
+ "license": "BSD-2-Clause",
50
+ "dependencies": {
51
+ "@mapbox/node-pre-gyp": "^1.0.8",
52
+ "nan": "^2.3.2",
53
+ "node-addon-api": "^1.6.2",
54
+ "node-cmake": "2.3.2"
55
+ },
56
+ "engines": {
57
+ "node": "^8.11.2 || >=10.0.0"
58
+ },
59
+ "optionalDependencies": {
60
+ "domexception": "^1.0.1"
61
+ }
62
+ },
63
+ "node_modules/@mapbox/node-pre-gyp": {
64
+ "version": "1.0.11",
65
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz",
66
+ "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==",
67
+ "license": "BSD-3-Clause",
68
+ "dependencies": {
69
+ "detect-libc": "^2.0.0",
70
+ "https-proxy-agent": "^5.0.0",
71
+ "make-dir": "^3.1.0",
72
+ "node-fetch": "^2.6.7",
73
+ "nopt": "^5.0.0",
74
+ "npmlog": "^5.0.1",
75
+ "rimraf": "^3.0.2",
76
+ "semver": "^7.3.5",
77
+ "tar": "^6.1.11"
78
+ },
79
+ "bin": {
80
+ "node-pre-gyp": "bin/node-pre-gyp"
81
+ }
82
+ },
83
+ "node_modules/@types/triple-beam": {
84
+ "version": "1.3.5",
85
+ "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz",
86
+ "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==",
87
+ "license": "MIT"
88
+ },
89
+ "node_modules/abbrev": {
90
+ "version": "1.1.1",
91
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
92
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
93
+ "license": "ISC"
94
+ },
95
+ "node_modules/agent-base": {
96
+ "version": "6.0.2",
97
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
98
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
99
+ "license": "MIT",
100
+ "dependencies": {
101
+ "debug": "4"
102
+ },
103
+ "engines": {
104
+ "node": ">= 6.0.0"
105
+ }
106
+ },
107
+ "node_modules/ansi-regex": {
108
+ "version": "5.0.1",
109
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
110
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
111
+ "license": "MIT",
112
+ "engines": {
113
+ "node": ">=8"
114
+ }
115
+ },
116
+ "node_modules/anymatch": {
117
+ "version": "3.1.3",
118
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
119
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
120
+ "dev": true,
121
+ "license": "ISC",
122
+ "dependencies": {
123
+ "normalize-path": "^3.0.0",
124
+ "picomatch": "^2.0.4"
125
+ },
126
+ "engines": {
127
+ "node": ">= 8"
128
+ }
129
+ },
130
+ "node_modules/aproba": {
131
+ "version": "2.1.0",
132
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.1.0.tgz",
133
+ "integrity": "sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==",
134
+ "license": "ISC"
135
+ },
136
+ "node_modules/are-we-there-yet": {
137
+ "version": "2.0.0",
138
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
139
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
140
+ "deprecated": "This package is no longer supported.",
141
+ "license": "ISC",
142
+ "dependencies": {
143
+ "delegates": "^1.0.0",
144
+ "readable-stream": "^3.6.0"
145
+ },
146
+ "engines": {
147
+ "node": ">=10"
148
+ }
149
+ },
150
+ "node_modules/async": {
151
+ "version": "3.2.6",
152
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
153
+ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
154
+ "license": "MIT"
155
+ },
156
+ "node_modules/asynckit": {
157
+ "version": "0.4.0",
158
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
159
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
160
+ "license": "MIT"
161
+ },
162
+ "node_modules/axios": {
163
+ "version": "1.10.0",
164
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz",
165
+ "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==",
166
+ "license": "MIT",
167
+ "dependencies": {
168
+ "follow-redirects": "^1.15.6",
169
+ "form-data": "^4.0.0",
170
+ "proxy-from-env": "^1.1.0"
171
+ }
172
+ },
173
+ "node_modules/balanced-match": {
174
+ "version": "1.0.2",
175
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
176
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
177
+ "license": "MIT"
178
+ },
179
+ "node_modules/binary-extensions": {
180
+ "version": "2.3.0",
181
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
182
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
183
+ "dev": true,
184
+ "license": "MIT",
185
+ "engines": {
186
+ "node": ">=8"
187
+ },
188
+ "funding": {
189
+ "url": "https://github.com/sponsors/sindresorhus"
190
+ }
191
+ },
192
+ "node_modules/brace-expansion": {
193
+ "version": "1.1.12",
194
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
195
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
196
+ "license": "MIT",
197
+ "dependencies": {
198
+ "balanced-match": "^1.0.0",
199
+ "concat-map": "0.0.1"
200
+ }
201
+ },
202
+ "node_modules/braces": {
203
+ "version": "3.0.3",
204
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
205
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
206
+ "dev": true,
207
+ "license": "MIT",
208
+ "dependencies": {
209
+ "fill-range": "^7.1.1"
210
+ },
211
+ "engines": {
212
+ "node": ">=8"
213
+ }
214
+ },
215
+ "node_modules/call-bind": {
216
+ "version": "1.0.8",
217
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
218
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
219
+ "license": "MIT",
220
+ "dependencies": {
221
+ "call-bind-apply-helpers": "^1.0.0",
222
+ "es-define-property": "^1.0.0",
223
+ "get-intrinsic": "^1.2.4",
224
+ "set-function-length": "^1.2.2"
225
+ },
226
+ "engines": {
227
+ "node": ">= 0.4"
228
+ },
229
+ "funding": {
230
+ "url": "https://github.com/sponsors/ljharb"
231
+ }
232
+ },
233
+ "node_modules/call-bind-apply-helpers": {
234
+ "version": "1.0.2",
235
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
236
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
237
+ "license": "MIT",
238
+ "dependencies": {
239
+ "es-errors": "^1.3.0",
240
+ "function-bind": "^1.1.2"
241
+ },
242
+ "engines": {
243
+ "node": ">= 0.4"
244
+ }
245
+ },
246
+ "node_modules/call-bound": {
247
+ "version": "1.0.4",
248
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
249
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
250
+ "license": "MIT",
251
+ "dependencies": {
252
+ "call-bind-apply-helpers": "^1.0.2",
253
+ "get-intrinsic": "^1.3.0"
254
+ },
255
+ "engines": {
256
+ "node": ">= 0.4"
257
+ },
258
+ "funding": {
259
+ "url": "https://github.com/sponsors/ljharb"
260
+ }
261
+ },
262
+ "node_modules/camelcase": {
263
+ "version": "3.0.0",
264
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
265
+ "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==",
266
+ "license": "MIT",
267
+ "engines": {
268
+ "node": ">=0.10.0"
269
+ }
270
+ },
271
+ "node_modules/chokidar": {
272
+ "version": "3.6.0",
273
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
274
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
275
+ "dev": true,
276
+ "license": "MIT",
277
+ "dependencies": {
278
+ "anymatch": "~3.1.2",
279
+ "braces": "~3.0.2",
280
+ "glob-parent": "~5.1.2",
281
+ "is-binary-path": "~2.1.0",
282
+ "is-glob": "~4.0.1",
283
+ "normalize-path": "~3.0.0",
284
+ "readdirp": "~3.6.0"
285
+ },
286
+ "engines": {
287
+ "node": ">= 8.10.0"
288
+ },
289
+ "funding": {
290
+ "url": "https://paulmillr.com/funding/"
291
+ },
292
+ "optionalDependencies": {
293
+ "fsevents": "~2.3.2"
294
+ }
295
+ },
296
+ "node_modules/chownr": {
297
+ "version": "2.0.0",
298
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
299
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
300
+ "license": "ISC",
301
+ "engines": {
302
+ "node": ">=10"
303
+ }
304
+ },
305
+ "node_modules/cliui": {
306
+ "version": "3.2.0",
307
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
308
+ "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==",
309
+ "license": "ISC",
310
+ "dependencies": {
311
+ "string-width": "^1.0.1",
312
+ "strip-ansi": "^3.0.1",
313
+ "wrap-ansi": "^2.0.0"
314
+ }
315
+ },
316
+ "node_modules/cliui/node_modules/ansi-regex": {
317
+ "version": "2.1.1",
318
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
319
+ "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
320
+ "license": "MIT",
321
+ "engines": {
322
+ "node": ">=0.10.0"
323
+ }
324
+ },
325
+ "node_modules/cliui/node_modules/is-fullwidth-code-point": {
326
+ "version": "1.0.0",
327
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
328
+ "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==",
329
+ "license": "MIT",
330
+ "dependencies": {
331
+ "number-is-nan": "^1.0.0"
332
+ },
333
+ "engines": {
334
+ "node": ">=0.10.0"
335
+ }
336
+ },
337
+ "node_modules/cliui/node_modules/string-width": {
338
+ "version": "1.0.2",
339
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
340
+ "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==",
341
+ "license": "MIT",
342
+ "dependencies": {
343
+ "code-point-at": "^1.0.0",
344
+ "is-fullwidth-code-point": "^1.0.0",
345
+ "strip-ansi": "^3.0.0"
346
+ },
347
+ "engines": {
348
+ "node": ">=0.10.0"
349
+ }
350
+ },
351
+ "node_modules/cliui/node_modules/strip-ansi": {
352
+ "version": "3.0.1",
353
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
354
+ "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==",
355
+ "license": "MIT",
356
+ "dependencies": {
357
+ "ansi-regex": "^2.0.0"
358
+ },
359
+ "engines": {
360
+ "node": ">=0.10.0"
361
+ }
362
+ },
363
+ "node_modules/code-point-at": {
364
+ "version": "1.1.0",
365
+ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
366
+ "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==",
367
+ "license": "MIT",
368
+ "engines": {
369
+ "node": ">=0.10.0"
370
+ }
371
+ },
372
+ "node_modules/color": {
373
+ "version": "3.2.1",
374
+ "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz",
375
+ "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==",
376
+ "license": "MIT",
377
+ "dependencies": {
378
+ "color-convert": "^1.9.3",
379
+ "color-string": "^1.6.0"
380
+ }
381
+ },
382
+ "node_modules/color-convert": {
383
+ "version": "1.9.3",
384
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
385
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
386
+ "license": "MIT",
387
+ "dependencies": {
388
+ "color-name": "1.1.3"
389
+ }
390
+ },
391
+ "node_modules/color-name": {
392
+ "version": "1.1.3",
393
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
394
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
395
+ "license": "MIT"
396
+ },
397
+ "node_modules/color-string": {
398
+ "version": "1.9.1",
399
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
400
+ "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
401
+ "license": "MIT",
402
+ "dependencies": {
403
+ "color-name": "^1.0.0",
404
+ "simple-swizzle": "^0.2.2"
405
+ }
406
+ },
407
+ "node_modules/color-support": {
408
+ "version": "1.1.3",
409
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
410
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
411
+ "license": "ISC",
412
+ "bin": {
413
+ "color-support": "bin.js"
414
+ }
415
+ },
416
+ "node_modules/colorspace": {
417
+ "version": "1.1.4",
418
+ "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz",
419
+ "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==",
420
+ "license": "MIT",
421
+ "dependencies": {
422
+ "color": "^3.1.3",
423
+ "text-hex": "1.0.x"
424
+ }
425
+ },
426
+ "node_modules/combined-stream": {
427
+ "version": "1.0.8",
428
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
429
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
430
+ "license": "MIT",
431
+ "dependencies": {
432
+ "delayed-stream": "~1.0.0"
433
+ },
434
+ "engines": {
435
+ "node": ">= 0.8"
436
+ }
437
+ },
438
+ "node_modules/concat-map": {
439
+ "version": "0.0.1",
440
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
441
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
442
+ "license": "MIT"
443
+ },
444
+ "node_modules/console-control-strings": {
445
+ "version": "1.1.0",
446
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
447
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
448
+ "license": "ISC"
449
+ },
450
+ "node_modules/debug": {
451
+ "version": "4.4.1",
452
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
453
+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
454
+ "license": "MIT",
455
+ "dependencies": {
456
+ "ms": "^2.1.3"
457
+ },
458
+ "engines": {
459
+ "node": ">=6.0"
460
+ },
461
+ "peerDependenciesMeta": {
462
+ "supports-color": {
463
+ "optional": true
464
+ }
465
+ }
466
+ },
467
+ "node_modules/decamelize": {
468
+ "version": "1.2.0",
469
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
470
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
471
+ "license": "MIT",
472
+ "engines": {
473
+ "node": ">=0.10.0"
474
+ }
475
+ },
476
+ "node_modules/define-data-property": {
477
+ "version": "1.1.4",
478
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
479
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
480
+ "license": "MIT",
481
+ "dependencies": {
482
+ "es-define-property": "^1.0.0",
483
+ "es-errors": "^1.3.0",
484
+ "gopd": "^1.0.1"
485
+ },
486
+ "engines": {
487
+ "node": ">= 0.4"
488
+ },
489
+ "funding": {
490
+ "url": "https://github.com/sponsors/ljharb"
491
+ }
492
+ },
493
+ "node_modules/define-properties": {
494
+ "version": "1.2.1",
495
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
496
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
497
+ "license": "MIT",
498
+ "dependencies": {
499
+ "define-data-property": "^1.0.1",
500
+ "has-property-descriptors": "^1.0.0",
501
+ "object-keys": "^1.1.1"
502
+ },
503
+ "engines": {
504
+ "node": ">= 0.4"
505
+ },
506
+ "funding": {
507
+ "url": "https://github.com/sponsors/ljharb"
508
+ }
509
+ },
510
+ "node_modules/delayed-stream": {
511
+ "version": "1.0.0",
512
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
513
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
514
+ "license": "MIT",
515
+ "engines": {
516
+ "node": ">=0.4.0"
517
+ }
518
+ },
519
+ "node_modules/delegates": {
520
+ "version": "1.0.0",
521
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
522
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
523
+ "license": "MIT"
524
+ },
525
+ "node_modules/detect-libc": {
526
+ "version": "2.0.4",
527
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
528
+ "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
529
+ "license": "Apache-2.0",
530
+ "engines": {
531
+ "node": ">=8"
532
+ }
533
+ },
534
+ "node_modules/domexception": {
535
+ "version": "1.0.1",
536
+ "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz",
537
+ "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==",
538
+ "deprecated": "Use your platform's native DOMException instead",
539
+ "license": "MIT",
540
+ "optional": true,
541
+ "dependencies": {
542
+ "webidl-conversions": "^4.0.2"
543
+ }
544
+ },
545
+ "node_modules/dotenv": {
546
+ "version": "16.6.1",
547
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
548
+ "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
549
+ "license": "BSD-2-Clause",
550
+ "engines": {
551
+ "node": ">=12"
552
+ },
553
+ "funding": {
554
+ "url": "https://dotenvx.com"
555
+ }
556
+ },
557
+ "node_modules/dunder-proto": {
558
+ "version": "1.0.1",
559
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
560
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
561
+ "license": "MIT",
562
+ "dependencies": {
563
+ "call-bind-apply-helpers": "^1.0.1",
564
+ "es-errors": "^1.3.0",
565
+ "gopd": "^1.2.0"
566
+ },
567
+ "engines": {
568
+ "node": ">= 0.4"
569
+ }
570
+ },
571
+ "node_modules/emoji-regex": {
572
+ "version": "8.0.0",
573
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
574
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
575
+ "license": "MIT"
576
+ },
577
+ "node_modules/enabled": {
578
+ "version": "2.0.0",
579
+ "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz",
580
+ "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==",
581
+ "license": "MIT"
582
+ },
583
+ "node_modules/error-ex": {
584
+ "version": "1.3.2",
585
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
586
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
587
+ "license": "MIT",
588
+ "dependencies": {
589
+ "is-arrayish": "^0.2.1"
590
+ }
591
+ },
592
+ "node_modules/error-ex/node_modules/is-arrayish": {
593
+ "version": "0.2.1",
594
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
595
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
596
+ "license": "MIT"
597
+ },
598
+ "node_modules/es-define-property": {
599
+ "version": "1.0.1",
600
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
601
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
602
+ "license": "MIT",
603
+ "engines": {
604
+ "node": ">= 0.4"
605
+ }
606
+ },
607
+ "node_modules/es-errors": {
608
+ "version": "1.3.0",
609
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
610
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
611
+ "license": "MIT",
612
+ "engines": {
613
+ "node": ">= 0.4"
614
+ }
615
+ },
616
+ "node_modules/es-object-atoms": {
617
+ "version": "1.1.1",
618
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
619
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
620
+ "license": "MIT",
621
+ "dependencies": {
622
+ "es-errors": "^1.3.0"
623
+ },
624
+ "engines": {
625
+ "node": ">= 0.4"
626
+ }
627
+ },
628
+ "node_modules/es-set-tostringtag": {
629
+ "version": "2.1.0",
630
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
631
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
632
+ "license": "MIT",
633
+ "dependencies": {
634
+ "es-errors": "^1.3.0",
635
+ "get-intrinsic": "^1.2.6",
636
+ "has-tostringtag": "^1.0.2",
637
+ "hasown": "^2.0.2"
638
+ },
639
+ "engines": {
640
+ "node": ">= 0.4"
641
+ }
642
+ },
643
+ "node_modules/fecha": {
644
+ "version": "4.2.3",
645
+ "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz",
646
+ "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==",
647
+ "license": "MIT"
648
+ },
649
+ "node_modules/fill-range": {
650
+ "version": "7.1.1",
651
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
652
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
653
+ "dev": true,
654
+ "license": "MIT",
655
+ "dependencies": {
656
+ "to-regex-range": "^5.0.1"
657
+ },
658
+ "engines": {
659
+ "node": ">=8"
660
+ }
661
+ },
662
+ "node_modules/find-up": {
663
+ "version": "1.1.2",
664
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
665
+ "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==",
666
+ "license": "MIT",
667
+ "dependencies": {
668
+ "path-exists": "^2.0.0",
669
+ "pinkie-promise": "^2.0.0"
670
+ },
671
+ "engines": {
672
+ "node": ">=0.10.0"
673
+ }
674
+ },
675
+ "node_modules/fn.name": {
676
+ "version": "1.1.0",
677
+ "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz",
678
+ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==",
679
+ "license": "MIT"
680
+ },
681
+ "node_modules/follow-redirects": {
682
+ "version": "1.15.9",
683
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
684
+ "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
685
+ "funding": [
686
+ {
687
+ "type": "individual",
688
+ "url": "https://github.com/sponsors/RubenVerborgh"
689
+ }
690
+ ],
691
+ "license": "MIT",
692
+ "engines": {
693
+ "node": ">=4.0"
694
+ },
695
+ "peerDependenciesMeta": {
696
+ "debug": {
697
+ "optional": true
698
+ }
699
+ }
700
+ },
701
+ "node_modules/form-data": {
702
+ "version": "4.0.3",
703
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz",
704
+ "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==",
705
+ "license": "MIT",
706
+ "dependencies": {
707
+ "asynckit": "^0.4.0",
708
+ "combined-stream": "^1.0.8",
709
+ "es-set-tostringtag": "^2.1.0",
710
+ "hasown": "^2.0.2",
711
+ "mime-types": "^2.1.12"
712
+ },
713
+ "engines": {
714
+ "node": ">= 6"
715
+ }
716
+ },
717
+ "node_modules/fs-minipass": {
718
+ "version": "2.1.0",
719
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
720
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
721
+ "license": "ISC",
722
+ "dependencies": {
723
+ "minipass": "^3.0.0"
724
+ },
725
+ "engines": {
726
+ "node": ">= 8"
727
+ }
728
+ },
729
+ "node_modules/fs-minipass/node_modules/minipass": {
730
+ "version": "3.3.6",
731
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
732
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
733
+ "license": "ISC",
734
+ "dependencies": {
735
+ "yallist": "^4.0.0"
736
+ },
737
+ "engines": {
738
+ "node": ">=8"
739
+ }
740
+ },
741
+ "node_modules/fs.realpath": {
742
+ "version": "1.0.0",
743
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
744
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
745
+ "license": "ISC"
746
+ },
747
+ "node_modules/fsevents": {
748
+ "version": "2.3.3",
749
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
750
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
751
+ "dev": true,
752
+ "hasInstallScript": true,
753
+ "license": "MIT",
754
+ "optional": true,
755
+ "os": [
756
+ "darwin"
757
+ ],
758
+ "engines": {
759
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
760
+ }
761
+ },
762
+ "node_modules/function-bind": {
763
+ "version": "1.1.2",
764
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
765
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
766
+ "license": "MIT",
767
+ "funding": {
768
+ "url": "https://github.com/sponsors/ljharb"
769
+ }
770
+ },
771
+ "node_modules/gauge": {
772
+ "version": "3.0.2",
773
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
774
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
775
+ "deprecated": "This package is no longer supported.",
776
+ "license": "ISC",
777
+ "dependencies": {
778
+ "aproba": "^1.0.3 || ^2.0.0",
779
+ "color-support": "^1.1.2",
780
+ "console-control-strings": "^1.0.0",
781
+ "has-unicode": "^2.0.1",
782
+ "object-assign": "^4.1.1",
783
+ "signal-exit": "^3.0.0",
784
+ "string-width": "^4.2.3",
785
+ "strip-ansi": "^6.0.1",
786
+ "wide-align": "^1.1.2"
787
+ },
788
+ "engines": {
789
+ "node": ">=10"
790
+ }
791
+ },
792
+ "node_modules/get-caller-file": {
793
+ "version": "1.0.3",
794
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
795
+ "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==",
796
+ "license": "ISC"
797
+ },
798
+ "node_modules/get-intrinsic": {
799
+ "version": "1.3.0",
800
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
801
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
802
+ "license": "MIT",
803
+ "dependencies": {
804
+ "call-bind-apply-helpers": "^1.0.2",
805
+ "es-define-property": "^1.0.1",
806
+ "es-errors": "^1.3.0",
807
+ "es-object-atoms": "^1.1.1",
808
+ "function-bind": "^1.1.2",
809
+ "get-proto": "^1.0.1",
810
+ "gopd": "^1.2.0",
811
+ "has-symbols": "^1.1.0",
812
+ "hasown": "^2.0.2",
813
+ "math-intrinsics": "^1.1.0"
814
+ },
815
+ "engines": {
816
+ "node": ">= 0.4"
817
+ },
818
+ "funding": {
819
+ "url": "https://github.com/sponsors/ljharb"
820
+ }
821
+ },
822
+ "node_modules/get-proto": {
823
+ "version": "1.0.1",
824
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
825
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
826
+ "license": "MIT",
827
+ "dependencies": {
828
+ "dunder-proto": "^1.0.1",
829
+ "es-object-atoms": "^1.0.0"
830
+ },
831
+ "engines": {
832
+ "node": ">= 0.4"
833
+ }
834
+ },
835
+ "node_modules/glob": {
836
+ "version": "7.2.3",
837
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
838
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
839
+ "deprecated": "Glob versions prior to v9 are no longer supported",
840
+ "license": "ISC",
841
+ "dependencies": {
842
+ "fs.realpath": "^1.0.0",
843
+ "inflight": "^1.0.4",
844
+ "inherits": "2",
845
+ "minimatch": "^3.1.1",
846
+ "once": "^1.3.0",
847
+ "path-is-absolute": "^1.0.0"
848
+ },
849
+ "engines": {
850
+ "node": "*"
851
+ },
852
+ "funding": {
853
+ "url": "https://github.com/sponsors/isaacs"
854
+ }
855
+ },
856
+ "node_modules/glob-parent": {
857
+ "version": "5.1.2",
858
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
859
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
860
+ "dev": true,
861
+ "license": "ISC",
862
+ "dependencies": {
863
+ "is-glob": "^4.0.1"
864
+ },
865
+ "engines": {
866
+ "node": ">= 6"
867
+ }
868
+ },
869
+ "node_modules/gopd": {
870
+ "version": "1.2.0",
871
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
872
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
873
+ "license": "MIT",
874
+ "engines": {
875
+ "node": ">= 0.4"
876
+ },
877
+ "funding": {
878
+ "url": "https://github.com/sponsors/ljharb"
879
+ }
880
+ },
881
+ "node_modules/graceful-fs": {
882
+ "version": "4.2.11",
883
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
884
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
885
+ "license": "ISC"
886
+ },
887
+ "node_modules/has-flag": {
888
+ "version": "3.0.0",
889
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
890
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
891
+ "dev": true,
892
+ "license": "MIT",
893
+ "engines": {
894
+ "node": ">=4"
895
+ }
896
+ },
897
+ "node_modules/has-property-descriptors": {
898
+ "version": "1.0.2",
899
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
900
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
901
+ "license": "MIT",
902
+ "dependencies": {
903
+ "es-define-property": "^1.0.0"
904
+ },
905
+ "funding": {
906
+ "url": "https://github.com/sponsors/ljharb"
907
+ }
908
+ },
909
+ "node_modules/has-symbols": {
910
+ "version": "1.1.0",
911
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
912
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
913
+ "license": "MIT",
914
+ "engines": {
915
+ "node": ">= 0.4"
916
+ },
917
+ "funding": {
918
+ "url": "https://github.com/sponsors/ljharb"
919
+ }
920
+ },
921
+ "node_modules/has-tostringtag": {
922
+ "version": "1.0.2",
923
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
924
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
925
+ "license": "MIT",
926
+ "dependencies": {
927
+ "has-symbols": "^1.0.3"
928
+ },
929
+ "engines": {
930
+ "node": ">= 0.4"
931
+ },
932
+ "funding": {
933
+ "url": "https://github.com/sponsors/ljharb"
934
+ }
935
+ },
936
+ "node_modules/has-unicode": {
937
+ "version": "2.0.1",
938
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
939
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
940
+ "license": "ISC"
941
+ },
942
+ "node_modules/hasown": {
943
+ "version": "2.0.2",
944
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
945
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
946
+ "license": "MIT",
947
+ "dependencies": {
948
+ "function-bind": "^1.1.2"
949
+ },
950
+ "engines": {
951
+ "node": ">= 0.4"
952
+ }
953
+ },
954
+ "node_modules/hosted-git-info": {
955
+ "version": "2.8.9",
956
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
957
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
958
+ "license": "ISC"
959
+ },
960
+ "node_modules/https-proxy-agent": {
961
+ "version": "5.0.1",
962
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
963
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
964
+ "license": "MIT",
965
+ "dependencies": {
966
+ "agent-base": "6",
967
+ "debug": "4"
968
+ },
969
+ "engines": {
970
+ "node": ">= 6"
971
+ }
972
+ },
973
+ "node_modules/ignore-by-default": {
974
+ "version": "1.0.1",
975
+ "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
976
+ "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
977
+ "dev": true,
978
+ "license": "ISC"
979
+ },
980
+ "node_modules/inflight": {
981
+ "version": "1.0.6",
982
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
983
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
984
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
985
+ "license": "ISC",
986
+ "dependencies": {
987
+ "once": "^1.3.0",
988
+ "wrappy": "1"
989
+ }
990
+ },
991
+ "node_modules/inherits": {
992
+ "version": "2.0.4",
993
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
994
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
995
+ "license": "ISC"
996
+ },
997
+ "node_modules/invert-kv": {
998
+ "version": "1.0.0",
999
+ "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
1000
+ "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==",
1001
+ "license": "MIT",
1002
+ "engines": {
1003
+ "node": ">=0.10.0"
1004
+ }
1005
+ },
1006
+ "node_modules/is-arrayish": {
1007
+ "version": "0.3.2",
1008
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
1009
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
1010
+ "license": "MIT"
1011
+ },
1012
+ "node_modules/is-binary-path": {
1013
+ "version": "2.1.0",
1014
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1015
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1016
+ "dev": true,
1017
+ "license": "MIT",
1018
+ "dependencies": {
1019
+ "binary-extensions": "^2.0.0"
1020
+ },
1021
+ "engines": {
1022
+ "node": ">=8"
1023
+ }
1024
+ },
1025
+ "node_modules/is-core-module": {
1026
+ "version": "2.16.1",
1027
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
1028
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
1029
+ "license": "MIT",
1030
+ "dependencies": {
1031
+ "hasown": "^2.0.2"
1032
+ },
1033
+ "engines": {
1034
+ "node": ">= 0.4"
1035
+ },
1036
+ "funding": {
1037
+ "url": "https://github.com/sponsors/ljharb"
1038
+ }
1039
+ },
1040
+ "node_modules/is-extglob": {
1041
+ "version": "2.1.1",
1042
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1043
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1044
+ "dev": true,
1045
+ "license": "MIT",
1046
+ "engines": {
1047
+ "node": ">=0.10.0"
1048
+ }
1049
+ },
1050
+ "node_modules/is-fullwidth-code-point": {
1051
+ "version": "3.0.0",
1052
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1053
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1054
+ "license": "MIT",
1055
+ "engines": {
1056
+ "node": ">=8"
1057
+ }
1058
+ },
1059
+ "node_modules/is-glob": {
1060
+ "version": "4.0.3",
1061
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1062
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1063
+ "dev": true,
1064
+ "license": "MIT",
1065
+ "dependencies": {
1066
+ "is-extglob": "^2.1.1"
1067
+ },
1068
+ "engines": {
1069
+ "node": ">=0.10.0"
1070
+ }
1071
+ },
1072
+ "node_modules/is-number": {
1073
+ "version": "7.0.0",
1074
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1075
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1076
+ "dev": true,
1077
+ "license": "MIT",
1078
+ "engines": {
1079
+ "node": ">=0.12.0"
1080
+ }
1081
+ },
1082
+ "node_modules/is-stream": {
1083
+ "version": "2.0.1",
1084
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
1085
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
1086
+ "license": "MIT",
1087
+ "engines": {
1088
+ "node": ">=8"
1089
+ },
1090
+ "funding": {
1091
+ "url": "https://github.com/sponsors/sindresorhus"
1092
+ }
1093
+ },
1094
+ "node_modules/is-utf8": {
1095
+ "version": "0.2.1",
1096
+ "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
1097
+ "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==",
1098
+ "license": "MIT"
1099
+ },
1100
+ "node_modules/isexe": {
1101
+ "version": "2.0.0",
1102
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1103
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1104
+ "license": "ISC"
1105
+ },
1106
+ "node_modules/kuler": {
1107
+ "version": "2.0.0",
1108
+ "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz",
1109
+ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==",
1110
+ "license": "MIT"
1111
+ },
1112
+ "node_modules/lcid": {
1113
+ "version": "1.0.0",
1114
+ "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
1115
+ "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==",
1116
+ "license": "MIT",
1117
+ "dependencies": {
1118
+ "invert-kv": "^1.0.0"
1119
+ },
1120
+ "engines": {
1121
+ "node": ">=0.10.0"
1122
+ }
1123
+ },
1124
+ "node_modules/load-json-file": {
1125
+ "version": "1.1.0",
1126
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
1127
+ "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==",
1128
+ "license": "MIT",
1129
+ "dependencies": {
1130
+ "graceful-fs": "^4.1.2",
1131
+ "parse-json": "^2.2.0",
1132
+ "pify": "^2.0.0",
1133
+ "pinkie-promise": "^2.0.0",
1134
+ "strip-bom": "^2.0.0"
1135
+ },
1136
+ "engines": {
1137
+ "node": ">=0.10.0"
1138
+ }
1139
+ },
1140
+ "node_modules/logform": {
1141
+ "version": "2.7.0",
1142
+ "resolved": "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz",
1143
+ "integrity": "sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==",
1144
+ "license": "MIT",
1145
+ "dependencies": {
1146
+ "@colors/colors": "1.6.0",
1147
+ "@types/triple-beam": "^1.3.2",
1148
+ "fecha": "^4.2.0",
1149
+ "ms": "^2.1.1",
1150
+ "safe-stable-stringify": "^2.3.1",
1151
+ "triple-beam": "^1.3.0"
1152
+ },
1153
+ "engines": {
1154
+ "node": ">= 12.0.0"
1155
+ }
1156
+ },
1157
+ "node_modules/make-dir": {
1158
+ "version": "3.1.0",
1159
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
1160
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
1161
+ "license": "MIT",
1162
+ "dependencies": {
1163
+ "semver": "^6.0.0"
1164
+ },
1165
+ "engines": {
1166
+ "node": ">=8"
1167
+ },
1168
+ "funding": {
1169
+ "url": "https://github.com/sponsors/sindresorhus"
1170
+ }
1171
+ },
1172
+ "node_modules/make-dir/node_modules/semver": {
1173
+ "version": "6.3.1",
1174
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
1175
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
1176
+ "license": "ISC",
1177
+ "bin": {
1178
+ "semver": "bin/semver.js"
1179
+ }
1180
+ },
1181
+ "node_modules/math-intrinsics": {
1182
+ "version": "1.1.0",
1183
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1184
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1185
+ "license": "MIT",
1186
+ "engines": {
1187
+ "node": ">= 0.4"
1188
+ }
1189
+ },
1190
+ "node_modules/mime-db": {
1191
+ "version": "1.52.0",
1192
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1193
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1194
+ "license": "MIT",
1195
+ "engines": {
1196
+ "node": ">= 0.6"
1197
+ }
1198
+ },
1199
+ "node_modules/mime-types": {
1200
+ "version": "2.1.35",
1201
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1202
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1203
+ "license": "MIT",
1204
+ "dependencies": {
1205
+ "mime-db": "1.52.0"
1206
+ },
1207
+ "engines": {
1208
+ "node": ">= 0.6"
1209
+ }
1210
+ },
1211
+ "node_modules/minimatch": {
1212
+ "version": "3.1.2",
1213
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1214
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1215
+ "license": "ISC",
1216
+ "dependencies": {
1217
+ "brace-expansion": "^1.1.7"
1218
+ },
1219
+ "engines": {
1220
+ "node": "*"
1221
+ }
1222
+ },
1223
+ "node_modules/minipass": {
1224
+ "version": "5.0.0",
1225
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
1226
+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
1227
+ "license": "ISC",
1228
+ "engines": {
1229
+ "node": ">=8"
1230
+ }
1231
+ },
1232
+ "node_modules/minizlib": {
1233
+ "version": "2.1.2",
1234
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
1235
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
1236
+ "license": "MIT",
1237
+ "dependencies": {
1238
+ "minipass": "^3.0.0",
1239
+ "yallist": "^4.0.0"
1240
+ },
1241
+ "engines": {
1242
+ "node": ">= 8"
1243
+ }
1244
+ },
1245
+ "node_modules/minizlib/node_modules/minipass": {
1246
+ "version": "3.3.6",
1247
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
1248
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
1249
+ "license": "ISC",
1250
+ "dependencies": {
1251
+ "yallist": "^4.0.0"
1252
+ },
1253
+ "engines": {
1254
+ "node": ">=8"
1255
+ }
1256
+ },
1257
+ "node_modules/mkdirp": {
1258
+ "version": "1.0.4",
1259
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
1260
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
1261
+ "license": "MIT",
1262
+ "bin": {
1263
+ "mkdirp": "bin/cmd.js"
1264
+ },
1265
+ "engines": {
1266
+ "node": ">=10"
1267
+ }
1268
+ },
1269
+ "node_modules/ms": {
1270
+ "version": "2.1.3",
1271
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1272
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1273
+ "license": "MIT"
1274
+ },
1275
+ "node_modules/nan": {
1276
+ "version": "2.22.2",
1277
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz",
1278
+ "integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==",
1279
+ "license": "MIT"
1280
+ },
1281
+ "node_modules/node-addon-api": {
1282
+ "version": "1.7.2",
1283
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz",
1284
+ "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==",
1285
+ "license": "MIT"
1286
+ },
1287
+ "node_modules/node-cmake": {
1288
+ "version": "2.3.2",
1289
+ "resolved": "https://registry.npmjs.org/node-cmake/-/node-cmake-2.3.2.tgz",
1290
+ "integrity": "sha512-t3m0q/tB8b7eg1yAUZCx/UdC8bTPf9gNzQPWl+62fsLYE2pEeoU71auIYtgGos0G36jopbo+FCLini4NMzpFhg==",
1291
+ "license": "ISC",
1292
+ "dependencies": {
1293
+ "nan": "*",
1294
+ "which": "^1.2.14",
1295
+ "yargs": "^7.0.2"
1296
+ },
1297
+ "bin": {
1298
+ "ncmake": "lib/ncmake.js"
1299
+ }
1300
+ },
1301
+ "node_modules/node-fetch": {
1302
+ "version": "2.7.0",
1303
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
1304
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
1305
+ "license": "MIT",
1306
+ "dependencies": {
1307
+ "whatwg-url": "^5.0.0"
1308
+ },
1309
+ "engines": {
1310
+ "node": "4.x || >=6.0.0"
1311
+ },
1312
+ "peerDependencies": {
1313
+ "encoding": "^0.1.0"
1314
+ },
1315
+ "peerDependenciesMeta": {
1316
+ "encoding": {
1317
+ "optional": true
1318
+ }
1319
+ }
1320
+ },
1321
+ "node_modules/node-pty": {
1322
+ "version": "1.0.0",
1323
+ "resolved": "https://registry.npmjs.org/node-pty/-/node-pty-1.0.0.tgz",
1324
+ "integrity": "sha512-wtBMWWS7dFZm/VgqElrTvtfMq4GzJ6+edFI0Y0zyzygUSZMgZdraDUMUhCIvkjhJjme15qWmbyJbtAx4ot4uZA==",
1325
+ "hasInstallScript": true,
1326
+ "license": "MIT",
1327
+ "dependencies": {
1328
+ "nan": "^2.17.0"
1329
+ }
1330
+ },
1331
+ "node_modules/nodemon": {
1332
+ "version": "3.1.10",
1333
+ "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.10.tgz",
1334
+ "integrity": "sha512-WDjw3pJ0/0jMFmyNDp3gvY2YizjLmmOUQo6DEBY+JgdvW/yQ9mEeSw6H5ythl5Ny2ytb7f9C2nIbjSxMNzbJXw==",
1335
+ "dev": true,
1336
+ "license": "MIT",
1337
+ "dependencies": {
1338
+ "chokidar": "^3.5.2",
1339
+ "debug": "^4",
1340
+ "ignore-by-default": "^1.0.1",
1341
+ "minimatch": "^3.1.2",
1342
+ "pstree.remy": "^1.1.8",
1343
+ "semver": "^7.5.3",
1344
+ "simple-update-notifier": "^2.0.0",
1345
+ "supports-color": "^5.5.0",
1346
+ "touch": "^3.1.0",
1347
+ "undefsafe": "^2.0.5"
1348
+ },
1349
+ "bin": {
1350
+ "nodemon": "bin/nodemon.js"
1351
+ },
1352
+ "engines": {
1353
+ "node": ">=10"
1354
+ },
1355
+ "funding": {
1356
+ "type": "opencollective",
1357
+ "url": "https://opencollective.com/nodemon"
1358
+ }
1359
+ },
1360
+ "node_modules/nopt": {
1361
+ "version": "5.0.0",
1362
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
1363
+ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
1364
+ "license": "ISC",
1365
+ "dependencies": {
1366
+ "abbrev": "1"
1367
+ },
1368
+ "bin": {
1369
+ "nopt": "bin/nopt.js"
1370
+ },
1371
+ "engines": {
1372
+ "node": ">=6"
1373
+ }
1374
+ },
1375
+ "node_modules/normalize-package-data": {
1376
+ "version": "2.5.0",
1377
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
1378
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
1379
+ "license": "BSD-2-Clause",
1380
+ "dependencies": {
1381
+ "hosted-git-info": "^2.1.4",
1382
+ "resolve": "^1.10.0",
1383
+ "semver": "2 || 3 || 4 || 5",
1384
+ "validate-npm-package-license": "^3.0.1"
1385
+ }
1386
+ },
1387
+ "node_modules/normalize-package-data/node_modules/semver": {
1388
+ "version": "5.7.2",
1389
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
1390
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
1391
+ "license": "ISC",
1392
+ "bin": {
1393
+ "semver": "bin/semver"
1394
+ }
1395
+ },
1396
+ "node_modules/normalize-path": {
1397
+ "version": "3.0.0",
1398
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1399
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1400
+ "dev": true,
1401
+ "license": "MIT",
1402
+ "engines": {
1403
+ "node": ">=0.10.0"
1404
+ }
1405
+ },
1406
+ "node_modules/npmlog": {
1407
+ "version": "5.0.1",
1408
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
1409
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
1410
+ "deprecated": "This package is no longer supported.",
1411
+ "license": "ISC",
1412
+ "dependencies": {
1413
+ "are-we-there-yet": "^2.0.0",
1414
+ "console-control-strings": "^1.1.0",
1415
+ "gauge": "^3.0.0",
1416
+ "set-blocking": "^2.0.0"
1417
+ }
1418
+ },
1419
+ "node_modules/number-is-nan": {
1420
+ "version": "1.0.1",
1421
+ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
1422
+ "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==",
1423
+ "license": "MIT",
1424
+ "engines": {
1425
+ "node": ">=0.10.0"
1426
+ }
1427
+ },
1428
+ "node_modules/object-assign": {
1429
+ "version": "4.1.1",
1430
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1431
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
1432
+ "license": "MIT",
1433
+ "engines": {
1434
+ "node": ">=0.10.0"
1435
+ }
1436
+ },
1437
+ "node_modules/object-keys": {
1438
+ "version": "1.1.1",
1439
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
1440
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
1441
+ "license": "MIT",
1442
+ "engines": {
1443
+ "node": ">= 0.4"
1444
+ }
1445
+ },
1446
+ "node_modules/object.assign": {
1447
+ "version": "4.1.7",
1448
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
1449
+ "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
1450
+ "license": "MIT",
1451
+ "dependencies": {
1452
+ "call-bind": "^1.0.8",
1453
+ "call-bound": "^1.0.3",
1454
+ "define-properties": "^1.2.1",
1455
+ "es-object-atoms": "^1.0.0",
1456
+ "has-symbols": "^1.1.0",
1457
+ "object-keys": "^1.1.1"
1458
+ },
1459
+ "engines": {
1460
+ "node": ">= 0.4"
1461
+ },
1462
+ "funding": {
1463
+ "url": "https://github.com/sponsors/ljharb"
1464
+ }
1465
+ },
1466
+ "node_modules/once": {
1467
+ "version": "1.4.0",
1468
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1469
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1470
+ "license": "ISC",
1471
+ "dependencies": {
1472
+ "wrappy": "1"
1473
+ }
1474
+ },
1475
+ "node_modules/one-time": {
1476
+ "version": "1.0.0",
1477
+ "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz",
1478
+ "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==",
1479
+ "license": "MIT",
1480
+ "dependencies": {
1481
+ "fn.name": "1.x.x"
1482
+ }
1483
+ },
1484
+ "node_modules/os-locale": {
1485
+ "version": "1.4.0",
1486
+ "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
1487
+ "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==",
1488
+ "license": "MIT",
1489
+ "dependencies": {
1490
+ "lcid": "^1.0.0"
1491
+ },
1492
+ "engines": {
1493
+ "node": ">=0.10.0"
1494
+ }
1495
+ },
1496
+ "node_modules/parse-json": {
1497
+ "version": "2.2.0",
1498
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
1499
+ "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==",
1500
+ "license": "MIT",
1501
+ "dependencies": {
1502
+ "error-ex": "^1.2.0"
1503
+ },
1504
+ "engines": {
1505
+ "node": ">=0.10.0"
1506
+ }
1507
+ },
1508
+ "node_modules/path-exists": {
1509
+ "version": "2.1.0",
1510
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
1511
+ "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==",
1512
+ "license": "MIT",
1513
+ "dependencies": {
1514
+ "pinkie-promise": "^2.0.0"
1515
+ },
1516
+ "engines": {
1517
+ "node": ">=0.10.0"
1518
+ }
1519
+ },
1520
+ "node_modules/path-is-absolute": {
1521
+ "version": "1.0.1",
1522
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1523
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
1524
+ "license": "MIT",
1525
+ "engines": {
1526
+ "node": ">=0.10.0"
1527
+ }
1528
+ },
1529
+ "node_modules/path-parse": {
1530
+ "version": "1.0.7",
1531
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
1532
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
1533
+ "license": "MIT"
1534
+ },
1535
+ "node_modules/path-type": {
1536
+ "version": "1.1.0",
1537
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
1538
+ "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==",
1539
+ "license": "MIT",
1540
+ "dependencies": {
1541
+ "graceful-fs": "^4.1.2",
1542
+ "pify": "^2.0.0",
1543
+ "pinkie-promise": "^2.0.0"
1544
+ },
1545
+ "engines": {
1546
+ "node": ">=0.10.0"
1547
+ }
1548
+ },
1549
+ "node_modules/picomatch": {
1550
+ "version": "2.3.1",
1551
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1552
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1553
+ "dev": true,
1554
+ "license": "MIT",
1555
+ "engines": {
1556
+ "node": ">=8.6"
1557
+ },
1558
+ "funding": {
1559
+ "url": "https://github.com/sponsors/jonschlinkert"
1560
+ }
1561
+ },
1562
+ "node_modules/pify": {
1563
+ "version": "2.3.0",
1564
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
1565
+ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
1566
+ "license": "MIT",
1567
+ "engines": {
1568
+ "node": ">=0.10.0"
1569
+ }
1570
+ },
1571
+ "node_modules/pinkie": {
1572
+ "version": "2.0.4",
1573
+ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
1574
+ "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
1575
+ "license": "MIT",
1576
+ "engines": {
1577
+ "node": ">=0.10.0"
1578
+ }
1579
+ },
1580
+ "node_modules/pinkie-promise": {
1581
+ "version": "2.0.1",
1582
+ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
1583
+ "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
1584
+ "license": "MIT",
1585
+ "dependencies": {
1586
+ "pinkie": "^2.0.0"
1587
+ },
1588
+ "engines": {
1589
+ "node": ">=0.10.0"
1590
+ }
1591
+ },
1592
+ "node_modules/proxy-from-env": {
1593
+ "version": "1.1.0",
1594
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
1595
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
1596
+ "license": "MIT"
1597
+ },
1598
+ "node_modules/pstree.remy": {
1599
+ "version": "1.1.8",
1600
+ "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
1601
+ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
1602
+ "dev": true,
1603
+ "license": "MIT"
1604
+ },
1605
+ "node_modules/read-pkg": {
1606
+ "version": "1.1.0",
1607
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
1608
+ "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==",
1609
+ "license": "MIT",
1610
+ "dependencies": {
1611
+ "load-json-file": "^1.0.0",
1612
+ "normalize-package-data": "^2.3.2",
1613
+ "path-type": "^1.0.0"
1614
+ },
1615
+ "engines": {
1616
+ "node": ">=0.10.0"
1617
+ }
1618
+ },
1619
+ "node_modules/read-pkg-up": {
1620
+ "version": "1.0.1",
1621
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
1622
+ "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==",
1623
+ "license": "MIT",
1624
+ "dependencies": {
1625
+ "find-up": "^1.0.0",
1626
+ "read-pkg": "^1.0.0"
1627
+ },
1628
+ "engines": {
1629
+ "node": ">=0.10.0"
1630
+ }
1631
+ },
1632
+ "node_modules/readable-stream": {
1633
+ "version": "3.6.2",
1634
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
1635
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1636
+ "license": "MIT",
1637
+ "dependencies": {
1638
+ "inherits": "^2.0.3",
1639
+ "string_decoder": "^1.1.1",
1640
+ "util-deprecate": "^1.0.1"
1641
+ },
1642
+ "engines": {
1643
+ "node": ">= 6"
1644
+ }
1645
+ },
1646
+ "node_modules/readdirp": {
1647
+ "version": "3.6.0",
1648
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1649
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1650
+ "dev": true,
1651
+ "license": "MIT",
1652
+ "dependencies": {
1653
+ "picomatch": "^2.2.1"
1654
+ },
1655
+ "engines": {
1656
+ "node": ">=8.10.0"
1657
+ }
1658
+ },
1659
+ "node_modules/require-directory": {
1660
+ "version": "2.1.1",
1661
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
1662
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
1663
+ "license": "MIT",
1664
+ "engines": {
1665
+ "node": ">=0.10.0"
1666
+ }
1667
+ },
1668
+ "node_modules/require-main-filename": {
1669
+ "version": "1.0.1",
1670
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
1671
+ "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==",
1672
+ "license": "ISC"
1673
+ },
1674
+ "node_modules/resolve": {
1675
+ "version": "1.22.10",
1676
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
1677
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
1678
+ "license": "MIT",
1679
+ "dependencies": {
1680
+ "is-core-module": "^2.16.0",
1681
+ "path-parse": "^1.0.7",
1682
+ "supports-preserve-symlinks-flag": "^1.0.0"
1683
+ },
1684
+ "bin": {
1685
+ "resolve": "bin/resolve"
1686
+ },
1687
+ "engines": {
1688
+ "node": ">= 0.4"
1689
+ },
1690
+ "funding": {
1691
+ "url": "https://github.com/sponsors/ljharb"
1692
+ }
1693
+ },
1694
+ "node_modules/rimraf": {
1695
+ "version": "3.0.2",
1696
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
1697
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
1698
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
1699
+ "license": "ISC",
1700
+ "dependencies": {
1701
+ "glob": "^7.1.3"
1702
+ },
1703
+ "bin": {
1704
+ "rimraf": "bin.js"
1705
+ },
1706
+ "funding": {
1707
+ "url": "https://github.com/sponsors/isaacs"
1708
+ }
1709
+ },
1710
+ "node_modules/safe-buffer": {
1711
+ "version": "5.2.1",
1712
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1713
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1714
+ "funding": [
1715
+ {
1716
+ "type": "github",
1717
+ "url": "https://github.com/sponsors/feross"
1718
+ },
1719
+ {
1720
+ "type": "patreon",
1721
+ "url": "https://www.patreon.com/feross"
1722
+ },
1723
+ {
1724
+ "type": "consulting",
1725
+ "url": "https://feross.org/support"
1726
+ }
1727
+ ],
1728
+ "license": "MIT"
1729
+ },
1730
+ "node_modules/safe-stable-stringify": {
1731
+ "version": "2.5.0",
1732
+ "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz",
1733
+ "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==",
1734
+ "license": "MIT",
1735
+ "engines": {
1736
+ "node": ">=10"
1737
+ }
1738
+ },
1739
+ "node_modules/semver": {
1740
+ "version": "7.7.2",
1741
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
1742
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
1743
+ "license": "ISC",
1744
+ "bin": {
1745
+ "semver": "bin/semver.js"
1746
+ },
1747
+ "engines": {
1748
+ "node": ">=10"
1749
+ }
1750
+ },
1751
+ "node_modules/set-blocking": {
1752
+ "version": "2.0.0",
1753
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
1754
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
1755
+ "license": "ISC"
1756
+ },
1757
+ "node_modules/set-function-length": {
1758
+ "version": "1.2.2",
1759
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
1760
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
1761
+ "license": "MIT",
1762
+ "dependencies": {
1763
+ "define-data-property": "^1.1.4",
1764
+ "es-errors": "^1.3.0",
1765
+ "function-bind": "^1.1.2",
1766
+ "get-intrinsic": "^1.2.4",
1767
+ "gopd": "^1.0.1",
1768
+ "has-property-descriptors": "^1.0.2"
1769
+ },
1770
+ "engines": {
1771
+ "node": ">= 0.4"
1772
+ }
1773
+ },
1774
+ "node_modules/signal-exit": {
1775
+ "version": "3.0.7",
1776
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
1777
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
1778
+ "license": "ISC"
1779
+ },
1780
+ "node_modules/simple-swizzle": {
1781
+ "version": "0.2.2",
1782
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
1783
+ "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
1784
+ "license": "MIT",
1785
+ "dependencies": {
1786
+ "is-arrayish": "^0.3.1"
1787
+ }
1788
+ },
1789
+ "node_modules/simple-update-notifier": {
1790
+ "version": "2.0.0",
1791
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
1792
+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
1793
+ "dev": true,
1794
+ "license": "MIT",
1795
+ "dependencies": {
1796
+ "semver": "^7.5.3"
1797
+ },
1798
+ "engines": {
1799
+ "node": ">=10"
1800
+ }
1801
+ },
1802
+ "node_modules/spdx-correct": {
1803
+ "version": "3.2.0",
1804
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
1805
+ "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
1806
+ "license": "Apache-2.0",
1807
+ "dependencies": {
1808
+ "spdx-expression-parse": "^3.0.0",
1809
+ "spdx-license-ids": "^3.0.0"
1810
+ }
1811
+ },
1812
+ "node_modules/spdx-exceptions": {
1813
+ "version": "2.5.0",
1814
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
1815
+ "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
1816
+ "license": "CC-BY-3.0"
1817
+ },
1818
+ "node_modules/spdx-expression-parse": {
1819
+ "version": "3.0.1",
1820
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
1821
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
1822
+ "license": "MIT",
1823
+ "dependencies": {
1824
+ "spdx-exceptions": "^2.1.0",
1825
+ "spdx-license-ids": "^3.0.0"
1826
+ }
1827
+ },
1828
+ "node_modules/spdx-license-ids": {
1829
+ "version": "3.0.21",
1830
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
1831
+ "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
1832
+ "license": "CC0-1.0"
1833
+ },
1834
+ "node_modules/stack-trace": {
1835
+ "version": "0.0.10",
1836
+ "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
1837
+ "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==",
1838
+ "license": "MIT",
1839
+ "engines": {
1840
+ "node": "*"
1841
+ }
1842
+ },
1843
+ "node_modules/string_decoder": {
1844
+ "version": "1.3.0",
1845
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
1846
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
1847
+ "license": "MIT",
1848
+ "dependencies": {
1849
+ "safe-buffer": "~5.2.0"
1850
+ }
1851
+ },
1852
+ "node_modules/string-width": {
1853
+ "version": "4.2.3",
1854
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
1855
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
1856
+ "license": "MIT",
1857
+ "dependencies": {
1858
+ "emoji-regex": "^8.0.0",
1859
+ "is-fullwidth-code-point": "^3.0.0",
1860
+ "strip-ansi": "^6.0.1"
1861
+ },
1862
+ "engines": {
1863
+ "node": ">=8"
1864
+ }
1865
+ },
1866
+ "node_modules/strip-ansi": {
1867
+ "version": "6.0.1",
1868
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1869
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
1870
+ "license": "MIT",
1871
+ "dependencies": {
1872
+ "ansi-regex": "^5.0.1"
1873
+ },
1874
+ "engines": {
1875
+ "node": ">=8"
1876
+ }
1877
+ },
1878
+ "node_modules/strip-bom": {
1879
+ "version": "2.0.0",
1880
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
1881
+ "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==",
1882
+ "license": "MIT",
1883
+ "dependencies": {
1884
+ "is-utf8": "^0.2.0"
1885
+ },
1886
+ "engines": {
1887
+ "node": ">=0.10.0"
1888
+ }
1889
+ },
1890
+ "node_modules/supports-color": {
1891
+ "version": "5.5.0",
1892
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
1893
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
1894
+ "dev": true,
1895
+ "license": "MIT",
1896
+ "dependencies": {
1897
+ "has-flag": "^3.0.0"
1898
+ },
1899
+ "engines": {
1900
+ "node": ">=4"
1901
+ }
1902
+ },
1903
+ "node_modules/supports-preserve-symlinks-flag": {
1904
+ "version": "1.0.0",
1905
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
1906
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
1907
+ "license": "MIT",
1908
+ "engines": {
1909
+ "node": ">= 0.4"
1910
+ },
1911
+ "funding": {
1912
+ "url": "https://github.com/sponsors/ljharb"
1913
+ }
1914
+ },
1915
+ "node_modules/tar": {
1916
+ "version": "6.2.1",
1917
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
1918
+ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
1919
+ "license": "ISC",
1920
+ "dependencies": {
1921
+ "chownr": "^2.0.0",
1922
+ "fs-minipass": "^2.0.0",
1923
+ "minipass": "^5.0.0",
1924
+ "minizlib": "^2.1.1",
1925
+ "mkdirp": "^1.0.3",
1926
+ "yallist": "^4.0.0"
1927
+ },
1928
+ "engines": {
1929
+ "node": ">=10"
1930
+ }
1931
+ },
1932
+ "node_modules/text-hex": {
1933
+ "version": "1.0.0",
1934
+ "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz",
1935
+ "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==",
1936
+ "license": "MIT"
1937
+ },
1938
+ "node_modules/to-regex-range": {
1939
+ "version": "5.0.1",
1940
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
1941
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1942
+ "dev": true,
1943
+ "license": "MIT",
1944
+ "dependencies": {
1945
+ "is-number": "^7.0.0"
1946
+ },
1947
+ "engines": {
1948
+ "node": ">=8.0"
1949
+ }
1950
+ },
1951
+ "node_modules/touch": {
1952
+ "version": "3.1.1",
1953
+ "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
1954
+ "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
1955
+ "dev": true,
1956
+ "license": "ISC",
1957
+ "bin": {
1958
+ "nodetouch": "bin/nodetouch.js"
1959
+ }
1960
+ },
1961
+ "node_modules/tr46": {
1962
+ "version": "0.0.3",
1963
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
1964
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
1965
+ "license": "MIT"
1966
+ },
1967
+ "node_modules/triple-beam": {
1968
+ "version": "1.4.1",
1969
+ "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz",
1970
+ "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==",
1971
+ "license": "MIT",
1972
+ "engines": {
1973
+ "node": ">= 14.0.0"
1974
+ }
1975
+ },
1976
+ "node_modules/undefsafe": {
1977
+ "version": "2.0.5",
1978
+ "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
1979
+ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
1980
+ "dev": true,
1981
+ "license": "MIT"
1982
+ },
1983
+ "node_modules/util-deprecate": {
1984
+ "version": "1.0.2",
1985
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1986
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
1987
+ "license": "MIT"
1988
+ },
1989
+ "node_modules/uuid": {
1990
+ "version": "8.3.2",
1991
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
1992
+ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
1993
+ "license": "MIT",
1994
+ "bin": {
1995
+ "uuid": "dist/bin/uuid"
1996
+ }
1997
+ },
1998
+ "node_modules/validate-npm-package-license": {
1999
+ "version": "3.0.4",
2000
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
2001
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
2002
+ "license": "Apache-2.0",
2003
+ "dependencies": {
2004
+ "spdx-correct": "^3.0.0",
2005
+ "spdx-expression-parse": "^3.0.0"
2006
+ }
2007
+ },
2008
+ "node_modules/webidl-conversions": {
2009
+ "version": "4.0.2",
2010
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
2011
+ "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==",
2012
+ "license": "BSD-2-Clause",
2013
+ "optional": true
2014
+ },
2015
+ "node_modules/whatwg-url": {
2016
+ "version": "5.0.0",
2017
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
2018
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
2019
+ "license": "MIT",
2020
+ "dependencies": {
2021
+ "tr46": "~0.0.3",
2022
+ "webidl-conversions": "^3.0.0"
2023
+ }
2024
+ },
2025
+ "node_modules/whatwg-url/node_modules/webidl-conversions": {
2026
+ "version": "3.0.1",
2027
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
2028
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
2029
+ "license": "BSD-2-Clause"
2030
+ },
2031
+ "node_modules/which": {
2032
+ "version": "1.3.1",
2033
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
2034
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
2035
+ "license": "ISC",
2036
+ "dependencies": {
2037
+ "isexe": "^2.0.0"
2038
+ },
2039
+ "bin": {
2040
+ "which": "bin/which"
2041
+ }
2042
+ },
2043
+ "node_modules/which-module": {
2044
+ "version": "1.0.0",
2045
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
2046
+ "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==",
2047
+ "license": "ISC"
2048
+ },
2049
+ "node_modules/wide-align": {
2050
+ "version": "1.1.5",
2051
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
2052
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
2053
+ "license": "ISC",
2054
+ "dependencies": {
2055
+ "string-width": "^1.0.2 || 2 || 3 || 4"
2056
+ }
2057
+ },
2058
+ "node_modules/winston": {
2059
+ "version": "3.17.0",
2060
+ "resolved": "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz",
2061
+ "integrity": "sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==",
2062
+ "license": "MIT",
2063
+ "dependencies": {
2064
+ "@colors/colors": "^1.6.0",
2065
+ "@dabh/diagnostics": "^2.0.2",
2066
+ "async": "^3.2.3",
2067
+ "is-stream": "^2.0.0",
2068
+ "logform": "^2.7.0",
2069
+ "one-time": "^1.0.0",
2070
+ "readable-stream": "^3.4.0",
2071
+ "safe-stable-stringify": "^2.3.1",
2072
+ "stack-trace": "0.0.x",
2073
+ "triple-beam": "^1.3.0",
2074
+ "winston-transport": "^4.9.0"
2075
+ },
2076
+ "engines": {
2077
+ "node": ">= 12.0.0"
2078
+ }
2079
+ },
2080
+ "node_modules/winston-transport": {
2081
+ "version": "4.9.0",
2082
+ "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz",
2083
+ "integrity": "sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==",
2084
+ "license": "MIT",
2085
+ "dependencies": {
2086
+ "logform": "^2.7.0",
2087
+ "readable-stream": "^3.6.2",
2088
+ "triple-beam": "^1.3.0"
2089
+ },
2090
+ "engines": {
2091
+ "node": ">= 12.0.0"
2092
+ }
2093
+ },
2094
+ "node_modules/wrap-ansi": {
2095
+ "version": "2.1.0",
2096
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
2097
+ "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==",
2098
+ "license": "MIT",
2099
+ "dependencies": {
2100
+ "string-width": "^1.0.1",
2101
+ "strip-ansi": "^3.0.1"
2102
+ },
2103
+ "engines": {
2104
+ "node": ">=0.10.0"
2105
+ }
2106
+ },
2107
+ "node_modules/wrap-ansi/node_modules/ansi-regex": {
2108
+ "version": "2.1.1",
2109
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
2110
+ "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
2111
+ "license": "MIT",
2112
+ "engines": {
2113
+ "node": ">=0.10.0"
2114
+ }
2115
+ },
2116
+ "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
2117
+ "version": "1.0.0",
2118
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
2119
+ "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==",
2120
+ "license": "MIT",
2121
+ "dependencies": {
2122
+ "number-is-nan": "^1.0.0"
2123
+ },
2124
+ "engines": {
2125
+ "node": ">=0.10.0"
2126
+ }
2127
+ },
2128
+ "node_modules/wrap-ansi/node_modules/string-width": {
2129
+ "version": "1.0.2",
2130
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
2131
+ "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==",
2132
+ "license": "MIT",
2133
+ "dependencies": {
2134
+ "code-point-at": "^1.0.0",
2135
+ "is-fullwidth-code-point": "^1.0.0",
2136
+ "strip-ansi": "^3.0.0"
2137
+ },
2138
+ "engines": {
2139
+ "node": ">=0.10.0"
2140
+ }
2141
+ },
2142
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
2143
+ "version": "3.0.1",
2144
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
2145
+ "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==",
2146
+ "license": "MIT",
2147
+ "dependencies": {
2148
+ "ansi-regex": "^2.0.0"
2149
+ },
2150
+ "engines": {
2151
+ "node": ">=0.10.0"
2152
+ }
2153
+ },
2154
+ "node_modules/wrappy": {
2155
+ "version": "1.0.2",
2156
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2157
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
2158
+ "license": "ISC"
2159
+ },
2160
+ "node_modules/ws": {
2161
+ "version": "8.18.3",
2162
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
2163
+ "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
2164
+ "license": "MIT",
2165
+ "engines": {
2166
+ "node": ">=10.0.0"
2167
+ },
2168
+ "peerDependencies": {
2169
+ "bufferutil": "^4.0.1",
2170
+ "utf-8-validate": ">=5.0.2"
2171
+ },
2172
+ "peerDependenciesMeta": {
2173
+ "bufferutil": {
2174
+ "optional": true
2175
+ },
2176
+ "utf-8-validate": {
2177
+ "optional": true
2178
+ }
2179
+ }
2180
+ },
2181
+ "node_modules/y18n": {
2182
+ "version": "3.2.2",
2183
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz",
2184
+ "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==",
2185
+ "license": "ISC"
2186
+ },
2187
+ "node_modules/yallist": {
2188
+ "version": "4.0.0",
2189
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
2190
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
2191
+ "license": "ISC"
2192
+ },
2193
+ "node_modules/yargs": {
2194
+ "version": "7.1.2",
2195
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz",
2196
+ "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==",
2197
+ "license": "MIT",
2198
+ "dependencies": {
2199
+ "camelcase": "^3.0.0",
2200
+ "cliui": "^3.2.0",
2201
+ "decamelize": "^1.1.1",
2202
+ "get-caller-file": "^1.0.1",
2203
+ "os-locale": "^1.4.0",
2204
+ "read-pkg-up": "^1.0.1",
2205
+ "require-directory": "^2.1.1",
2206
+ "require-main-filename": "^1.0.1",
2207
+ "set-blocking": "^2.0.0",
2208
+ "string-width": "^1.0.2",
2209
+ "which-module": "^1.0.0",
2210
+ "y18n": "^3.2.1",
2211
+ "yargs-parser": "^5.0.1"
2212
+ }
2213
+ },
2214
+ "node_modules/yargs-parser": {
2215
+ "version": "5.0.1",
2216
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz",
2217
+ "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==",
2218
+ "license": "ISC",
2219
+ "dependencies": {
2220
+ "camelcase": "^3.0.0",
2221
+ "object.assign": "^4.1.0"
2222
+ }
2223
+ },
2224
+ "node_modules/yargs/node_modules/ansi-regex": {
2225
+ "version": "2.1.1",
2226
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
2227
+ "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
2228
+ "license": "MIT",
2229
+ "engines": {
2230
+ "node": ">=0.10.0"
2231
+ }
2232
+ },
2233
+ "node_modules/yargs/node_modules/is-fullwidth-code-point": {
2234
+ "version": "1.0.0",
2235
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
2236
+ "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==",
2237
+ "license": "MIT",
2238
+ "dependencies": {
2239
+ "number-is-nan": "^1.0.0"
2240
+ },
2241
+ "engines": {
2242
+ "node": ">=0.10.0"
2243
+ }
2244
+ },
2245
+ "node_modules/yargs/node_modules/string-width": {
2246
+ "version": "1.0.2",
2247
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
2248
+ "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==",
2249
+ "license": "MIT",
2250
+ "dependencies": {
2251
+ "code-point-at": "^1.0.0",
2252
+ "is-fullwidth-code-point": "^1.0.0",
2253
+ "strip-ansi": "^3.0.0"
2254
+ },
2255
+ "engines": {
2256
+ "node": ">=0.10.0"
2257
+ }
2258
+ },
2259
+ "node_modules/yargs/node_modules/strip-ansi": {
2260
+ "version": "3.0.1",
2261
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
2262
+ "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==",
2263
+ "license": "MIT",
2264
+ "dependencies": {
2265
+ "ansi-regex": "^2.0.0"
2266
+ },
2267
+ "engines": {
2268
+ "node": ">=0.10.0"
2269
+ }
2270
+ }
2271
+ }
2272
+ }