@socketsecurity/lib 3.2.5 → 3.2.7

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 (47) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/constants/node.js +1 -1
  3. package/dist/constants/packages.js +4 -4
  4. package/dist/external/@inquirer/confirm.js +3199 -18
  5. package/dist/external/@inquirer/input.js +3223 -18
  6. package/dist/external/@inquirer/password.js +3331 -18
  7. package/dist/external/@inquirer/search.js +3328 -21
  8. package/dist/external/@inquirer/select.js +3445 -21
  9. package/dist/external/@npmcli/package-json/lib/read-package.js +149 -2
  10. package/dist/external/@npmcli/package-json/lib/sort.js +96 -1
  11. package/dist/external/@npmcli/package-json.js +16758 -13
  12. package/dist/external/@npmcli/promise-spawn.js +480 -1
  13. package/dist/external/@socketregistry/is-unicode-supported.js +42 -1
  14. package/dist/external/@socketregistry/packageurl-js.js +6493 -2
  15. package/dist/external/@socketregistry/yocto-spinner.js +460 -4
  16. package/dist/external/@yarnpkg/extensions.js +1025 -1
  17. package/dist/external/cacache.js +13016 -12
  18. package/dist/external/debug.js +27 -1
  19. package/dist/external/del.js +7088 -2
  20. package/dist/external/fast-glob.js +5721 -2
  21. package/dist/external/fast-sort.js +140 -1
  22. package/dist/external/get-east-asian-width.js +90 -1
  23. package/dist/external/libnpmexec.js +33 -1
  24. package/dist/external/libnpmpack.js +67595 -129
  25. package/dist/external/make-fetch-happen.js +22595 -21
  26. package/dist/external/normalize-package-data.js +4474 -2
  27. package/dist/external/npm-package-arg.js +4511 -2
  28. package/dist/external/pacote.js +50270 -57
  29. package/dist/external/picomatch.js +1520 -1
  30. package/dist/external/semver.js +1930 -1
  31. package/dist/external/spdx-correct.js +1380 -1
  32. package/dist/external/spdx-expression-parse.js +1043 -1
  33. package/dist/external/streaming-iterables.js +1056 -1
  34. package/dist/external/validate-npm-package-name.js +100 -1
  35. package/dist/external/which.js +258 -1
  36. package/dist/external/yargs-parser.js +1075 -1
  37. package/dist/external/yoctocolors-cjs.js +88 -1
  38. package/dist/external/zod.js +15207 -13
  39. package/dist/lifecycle-script-names.js +3 -4
  40. package/dist/logger.js +2 -1
  41. package/dist/maintained-node-versions.js +3 -4
  42. package/dist/package-default-node-range.js +4 -5
  43. package/dist/package-default-socket-categories.js +3 -4
  44. package/dist/package-extensions.js +3 -4
  45. package/dist/stdio/prompts.js +2 -1
  46. package/dist/utils/get-ipc.js +3 -5
  47. package/package.json +1 -1
@@ -3,4 +3,30 @@
3
3
  * Bundled from debug
4
4
  * This is a zero-dependency bundle created by esbuild.
5
5
  */
6
- "use strict";var u=Object.defineProperty;var r=(t,e)=>u(t,"name",{value:e,configurable:!0});var i=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var o=i((c,n)=>{"use strict";function s(){return r(function(){},"noop")}r(s,"debug");s.enabled=!1;s.names=[];s.skips=[];s.formatters={};n.exports=s});module.exports=o();
6
+ "use strict";
7
+ var __defProp = Object.defineProperty;
8
+ var __getOwnPropNames = Object.getOwnPropertyNames;
9
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
10
+ var __commonJS = (cb, mod) => function __require() {
11
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
12
+ };
13
+
14
+ // stub:debug.cjs:debug
15
+ var require_debug = __commonJS({
16
+ "stub:debug.cjs:debug"(exports2, module2) {
17
+ "use strict";
18
+ function debug() {
19
+ return /* @__PURE__ */ __name(function noop() {
20
+ }, "noop");
21
+ }
22
+ __name(debug, "debug");
23
+ debug.enabled = false;
24
+ debug.names = [];
25
+ debug.skips = [];
26
+ debug.formatters = {};
27
+ module2.exports = debug;
28
+ }
29
+ });
30
+
31
+ // src/external/debug.js
32
+ module.exports = require_debug();