Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@drovp/ffmpeg

Package Overview
Dependencies
3
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.0.3

6

dist/index.js

@@ -30,5 +30,7 @@ "use strict";

async function checkPath(path) {
var _a, _b;
let stdout = (await exec(`"${path}" -version`)).stdout;
if (new RegExp(`^${name} version`, 'gi').exec(stdout) != null)
return path;
const version = (_b = (_a = new RegExp(`^${name} version (?<version>[^ ]+)( |&)`, 'm').exec(stdout)) === null || _a === void 0 ? void 0 : _a.groups) === null || _b === void 0 ? void 0 : _b.version;
if (version != null)
return { version, payload: path };
else

@@ -35,0 +37,0 @@ throw new Error(`Unexpected stdout when loading ${name}:\n${stdout}`);

{
"name": "@drovp/ffmpeg",
"version": "1.0.2",
"version": "1.0.3",
"description": "FFMPEG as a Drovp dependency.",

@@ -28,2 +28,3 @@ "homepage": "https://github.com/drovp/ffmpeg",

"start": "npm-run-all clean watch",
"test": "tsc -p . --noEmit",
"preversion": "npm-run-all clean build",

@@ -38,7 +39,7 @@ "git-push": "git push",

"tslib": "^2.3.1",
"typescript": "^4.4.3"
"typescript": "^4.5.4"
},
"dependencies": {
"@drovp/types": "^1.0.0"
"@drovp/types": "^4.0.0"
}
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc