@socketsecurity/cli 0.14.42 → 0.14.44

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 (44) hide show
  1. package/README.md +16 -38
  2. package/bin/cli.js +17 -7
  3. package/bin/npm-cli.js +1 -1
  4. package/bin/npx-cli.js +1 -1
  5. package/dist/constants.d.ts +121 -11
  6. package/dist/constants.js +91 -10
  7. package/dist/constants.js.map +1 -0
  8. package/dist/init.gradle +250 -0
  9. package/dist/module-sync/cli.js +6115 -3836
  10. package/dist/module-sync/cli.js.map +1 -0
  11. package/dist/module-sync/edge.d.ts +66 -0
  12. package/dist/module-sync/errors.d.ts +6 -1
  13. package/dist/module-sync/index.d.ts +192 -0
  14. package/dist/module-sync/index.js +1879 -0
  15. package/dist/module-sync/index.js.map +1 -0
  16. package/dist/module-sync/logging.d.ts +3 -3
  17. package/dist/module-sync/node.d.ts +84 -0
  18. package/dist/module-sync/npm-injection.js +7 -1495
  19. package/dist/module-sync/npm-injection.js.map +1 -0
  20. package/dist/module-sync/npm-paths.d.ts +3 -2
  21. package/dist/module-sync/npm-paths.js +91 -42
  22. package/dist/module-sync/npm-paths.js.map +1 -0
  23. package/dist/module-sync/npm.d.ts +24 -0
  24. package/dist/module-sync/npm.js +99 -0
  25. package/dist/module-sync/npm.js.map +1 -0
  26. package/dist/module-sync/path-resolve.d.ts +1 -1
  27. package/dist/module-sync/proc-log.d.ts +3 -0
  28. package/dist/module-sync/reify.d.ts +1018 -0
  29. package/dist/module-sync/sdk.d.ts +5 -0
  30. package/dist/module-sync/settings.d.ts +5 -4
  31. package/dist/module-sync/shadow-bin.d.ts +1 -1
  32. package/dist/module-sync/shadow-bin.js +33 -12
  33. package/dist/module-sync/shadow-bin.js.map +1 -0
  34. package/dist/module-sync/types.d.ts +45 -0
  35. package/dist/require/cli.js +6114 -3836
  36. package/dist/require/constants.js +1 -1
  37. package/dist/require/index.js +3 -0
  38. package/dist/require/npm.js +3 -0
  39. package/dist/require/vendor.js +2336 -6
  40. package/package.json +69 -42
  41. package/dist/constants.d.ts.map +0 -1
  42. package/dist/module-sync/socket-url.d.ts +0 -40
  43. package/dist/module-sync/socket-url.js +0 -301
  44. package/dist/require/socket-url.js +0 -3
@@ -1,3 +1,3 @@
1
1
  'use strict'
2
2
 
3
- module.exports = require('../constants.js')
3
+ module.exports = require('../module-sync/constants.js')
@@ -0,0 +1,3 @@
1
+ 'use strict'
2
+
3
+ module.exports = require('../module-sync/index.js')
@@ -0,0 +1,3 @@
1
+ 'use strict'
2
+
3
+ module.exports = require('../module-sync/npm.js')