New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@imageengine/imageengine-helpers

Package Overview
Dependencies
Maintainers
5
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@imageengine/imageengine-helpers - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+1
-1
package.json
{
"name": "@imageengine/imageengine-helpers",
"version": "0.1.0",
"version": "0.1.1",
"description": "A set of helper functions to generate ImageEngine custom urls with valid directives",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/imgeng/imageengine-helpers",

@@ -31,3 +31,4 @@ A tiny set of helpers and TS types for building [ImageEngine](https://imageengine.io) query URLs for your distribution.

"letterbox" |
"cropbox" ;
"cropbox" |
"outside" ;

@@ -54,2 +55,3 @@

no_optimization?: true; // don't apply IE optimizations
force_download?: true;
};

@@ -66,6 +68,7 @@ ```

height: 200,
fit: "cropbox",
fit: "cropbox",
compression: 10,
inline: true,
format: "png"
format: "png",
force_download: true
};

@@ -78,3 +81,3 @@

/*
"https://my_ie_distribution.imgeng.io/path/to_asset1.jpg?imgeng=/w_400/h_200/m_cropbox/cmpr_10/in_true/f_png"
"https://my_ie_distribution.imgeng.io/path/to_asset1.jpg?imgeng=/w_400/h_200/m_cropbox/cmpr_10/in_true/f_png/dl_true"
*/

@@ -85,3 +88,3 @@

/*
"/w_400/h_200/m_cropbox/cmpr_10/in_true/f_png"
"/w_400/h_200/m_cropbox/cmpr_10/in_true/f_png/dl_true"
*/

@@ -92,4 +95,4 @@

/*
"?imgeng=/w_400/h_200/m_cropbox/cmpr_10/in_true/f_png"
"?imgeng=/w_400/h_200/m_cropbox/cmpr_10/in_true/f_png/dl_true"
*/
```