New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sourcebug/dpdm

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sourcebug/dpdm - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

8

package.json
{
"name": "@sourcebug/dpdm",
"version": "1.0.3",
"version": "1.0.4",
"private": false,

@@ -102,7 +102,3 @@ "description": "Analyze circular dependencies in your JavaScript/TypeScript projects.",

"endOfLine": "lf"
},
"os": [
"darwin",
"linux"
]
}
}

@@ -0,1 +1,2 @@

const fs = require('fs');
const path = require('path');

@@ -22,3 +23,6 @@ const os = require('os');

const targetDir = path.join(__dirname, '../target', 'release');
const targetFile = path.join(targetDir, 'dpdm');
const targetFile = path.join(
targetDir,
platform === 'win32' ? 'dpdm.exe' : 'dpdm',
);

@@ -25,0 +29,0 @@ if (!fs.existsSync(targetDir)) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc