Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

filepond-plugin-image-validate-size

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

filepond-plugin-image-validate-size - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

65

dist/filepond-plugin-image-validate-size.esm.js
/*
* FilePondPluginImageValidateSize 1.1.0
* FilePondPluginImageValidateSize 1.2.0
* Licensed under MIT, https://opensource.org/licenses/MIT
* Please visit https://pqina.nl/filepond for details.
*/
/* eslint-disable */
// test if file is of type image

@@ -37,4 +39,13 @@ const isImage = file => /^image/.test(file.type);

const onReceiveSize = ({ width, height }) => {
const { minWidth, minHeight, maxWidth, maxHeight } = bounds;
const {
minWidth,
minHeight,
maxWidth,
maxHeight,
minResolution,
maxResolution
} = bounds;
const resolution = width * height;
// validation result

@@ -45,2 +56,6 @@ if (width < minWidth || height < minHeight) {

reject('TOO_BIG');
} else if (minResolution !== null && resolution < minResolution) {
reject('TOO_LOW_RES');
} else if (maxResolution !== null && resolution > maxResolution) {
reject('TOO_HIGH_RES');
}

@@ -89,3 +104,5 @@

maxWidth: query('GET_IMAGE_VALIDATE_SIZE_MAX_WIDTH'),
maxHeight: query('GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT')
maxHeight: query('GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT'),
minResolution: query('GET_IMAGE_VALIDATE_SIZE_MIN_RESOLUTION'),
maxResolution: query('GET_IMAGE_VALIDATE_SIZE_MAX_RESOLUTION')
};

@@ -118,2 +135,18 @@

)
},
TOO_LOW_RES: {
label: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_LOW'
),
details: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_RESOLUTION'
)
},
TOO_HIGH_RES: {
label: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_HIGH'
),
details: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_RESOLUTION'
)
}

@@ -154,2 +187,22 @@ }[error]

// Required amount of pixels in the image
imageValidateSizeMinResolution: [null, Type.INT],
imageValidateSizeMaxResolution: [null, Type.INT],
imageValidateSizeLabelImageResolutionTooLow: [
'Resolution is too low',
Type.STRING
],
imageValidateSizeLabelImageResolutionTooHigh: [
'Resolution is too high',
Type.STRING
],
imageValidateSizeLabelExpectedMinResolution: [
'Minimum resolution is {minResolution}',
Type.STRING
],
imageValidateSizeLabelExpectedMaxResolution: [
'Maximum resolution is {maxResolution}',
Type.STRING
],
// Required dimensions

@@ -179,4 +232,6 @@ imageValidateSizeMinWidth: [1, Type.INT], // needs to be at least one pixel

if (typeof navigator !== 'undefined' && document) {
// plugin has loaded
const isBrowser =
typeof window !== 'undefined' && typeof window.document !== 'undefined';
if (isBrowser && document) {
document.dispatchEvent(

@@ -183,0 +238,0 @@ new CustomEvent('FilePond:pluginloaded', { detail: plugin$1 })

6

dist/filepond-plugin-image-validate-size.esm.min.js
/*
* FilePondPluginImageValidateSize 1.1.0
* FilePondPluginImageValidateSize 1.2.0
* Licensed under MIT, https://opensource.org/licenses/MIT
* Please visit https://pqina.nl/filepond for details.
*/
const isImage=e=>/^image/.test(e.type),getImageSize=e=>new Promise((i,a)=>{const t=document.createElement("img");t.src=URL.createObjectURL(e),t.onerror=(e=>{clearInterval(E),a(e)});const E=setInterval(()=>{t.naturalWidth&&t.naturalHeight&&(clearInterval(E),URL.revokeObjectURL(t.src),i({width:t.naturalWidth,height:t.naturalHeight}))},1)});var plugin$1=({addFilter:e,utils:i})=>{const{Type:a,replaceInString:t,isFile:E}=i;return e("LOAD_FILE",(e,{query:i})=>new Promise((a,I)=>{if(!E(e)||!isImage(e)||!i("GET_ALLOW_IMAGE_VALIDATE_SIZE"))return void a(e);const _={minWidth:i("GET_IMAGE_VALIDATE_SIZE_MIN_WIDTH"),minHeight:i("GET_IMAGE_VALIDATE_SIZE_MIN_HEIGHT"),maxWidth:i("GET_IMAGE_VALIDATE_SIZE_MAX_WIDTH"),maxHeight:i("GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT")},l=i("GET_IMAGE_VALIDATE_SIZE_MEASURE");((e,i,a)=>new Promise((t,E)=>{const I=({width:e,height:a})=>{const{minWidth:I,minHeight:_,maxWidth:l,maxHeight:n}=i;e<I||a<_?E("TOO_SMALL"):(e>l||a>n)&&E("TOO_BIG"),t()};getImageSize(e).then(I).catch(()=>{a?a(e,i).then(I).catch(()=>E()):E()})}))(e,_,l).then(()=>{a(e)}).catch(a=>{const E=a?{TOO_SMALL:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_SMALL"),details:i("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_SIZE")},TOO_BIG:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_BIG"),details:i("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_SIZE")}}[a]:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_FORMAT_ERROR"),details:e.type};I({status:{main:E.label,sub:a?t(E.details,_):E.details}})})})),{options:{allowImageValidateSize:[!0,a.BOOLEAN],imageValidateSizeLabelFormatError:["Image type not supported",a.STRING],imageValidateSizeMeasure:[null,a.FUNCTION],imageValidateSizeMinWidth:[1,a.INT],imageValidateSizeMinHeight:[1,a.INT],imageValidateSizeMaxWidth:[65535,a.INT],imageValidateSizeMaxHeight:[65535,a.INT],imageValidateSizeLabelImageSizeTooSmall:["Image is too small",a.STRING],imageValidateSizeLabelImageSizeTooBig:["Image is too big",a.STRING],imageValidateSizeLabelExpectedMinSize:["Minimum size is {minWidth} × {minHeight}",a.STRING],imageValidateSizeLabelExpectedMaxSize:["Maximum size is {maxWidth} × {maxHeight}",a.STRING]}}};"undefined"!=typeof navigator&&document&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:plugin$1}));export default plugin$1;
/* eslint-disable */
const isImage=e=>/^image/.test(e.type),getImageSize=e=>new Promise((i,a)=>{const t=document.createElement("img");t.src=URL.createObjectURL(e),t.onerror=(e=>{clearInterval(E),a(e)});const E=setInterval(()=>{t.naturalWidth&&t.naturalHeight&&(clearInterval(E),URL.revokeObjectURL(t.src),i({width:t.naturalWidth,height:t.naturalHeight}))},1)});var plugin$1=({addFilter:e,utils:i})=>{const{Type:a,replaceInString:t,isFile:E}=i;return e("LOAD_FILE",(e,{query:i})=>new Promise((a,_)=>{if(!E(e)||!isImage(e)||!i("GET_ALLOW_IMAGE_VALIDATE_SIZE"))return void a(e);const I={minWidth:i("GET_IMAGE_VALIDATE_SIZE_MIN_WIDTH"),minHeight:i("GET_IMAGE_VALIDATE_SIZE_MIN_HEIGHT"),maxWidth:i("GET_IMAGE_VALIDATE_SIZE_MAX_WIDTH"),maxHeight:i("GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT"),minResolution:i("GET_IMAGE_VALIDATE_SIZE_MIN_RESOLUTION"),maxResolution:i("GET_IMAGE_VALIDATE_SIZE_MAX_RESOLUTION")},l=i("GET_IMAGE_VALIDATE_SIZE_MEASURE");((e,i,a)=>new Promise((t,E)=>{const _=({width:e,height:a})=>{const{minWidth:_,minHeight:I,maxWidth:l,maxHeight:o,minResolution:n,maxResolution:T}=i,A=e*a;e<_||a<I?E("TOO_SMALL"):e>l||a>o?E("TOO_BIG"):null!==n&&A<n?E("TOO_LOW_RES"):null!==T&&A>T&&E("TOO_HIGH_RES"),t()};getImageSize(e).then(_).catch(()=>{a?a(e,i).then(_).catch(()=>E()):E()})}))(e,I,l).then(()=>{a(e)}).catch(a=>{const E=a?{TOO_SMALL:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_SMALL"),details:i("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_SIZE")},TOO_BIG:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_BIG"),details:i("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_SIZE")},TOO_LOW_RES:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_LOW"),details:i("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_RESOLUTION")},TOO_HIGH_RES:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_HIGH"),details:i("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_RESOLUTION")}}[a]:{label:i("GET_IMAGE_VALIDATE_SIZE_LABEL_FORMAT_ERROR"),details:e.type};_({status:{main:E.label,sub:a?t(E.details,I):E.details}})})})),{options:{allowImageValidateSize:[!0,a.BOOLEAN],imageValidateSizeLabelFormatError:["Image type not supported",a.STRING],imageValidateSizeMeasure:[null,a.FUNCTION],imageValidateSizeMinResolution:[null,a.INT],imageValidateSizeMaxResolution:[null,a.INT],imageValidateSizeLabelImageResolutionTooLow:["Resolution is too low",a.STRING],imageValidateSizeLabelImageResolutionTooHigh:["Resolution is too high",a.STRING],imageValidateSizeLabelExpectedMinResolution:["Minimum resolution is {minResolution}",a.STRING],imageValidateSizeLabelExpectedMaxResolution:["Maximum resolution is {maxResolution}",a.STRING],imageValidateSizeMinWidth:[1,a.INT],imageValidateSizeMinHeight:[1,a.INT],imageValidateSizeMaxWidth:[65535,a.INT],imageValidateSizeMaxHeight:[65535,a.INT],imageValidateSizeLabelImageSizeTooSmall:["Image is too small",a.STRING],imageValidateSizeLabelImageSizeTooBig:["Image is too big",a.STRING],imageValidateSizeLabelExpectedMinSize:["Minimum size is {minWidth} × {minHeight}",a.STRING],imageValidateSizeLabelExpectedMaxSize:["Maximum size is {maxWidth} × {maxHeight}",a.STRING]}}};const isBrowser="undefined"!=typeof window&&void 0!==window.document;isBrowser&&document&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:plugin$1}));export default plugin$1;
/*
* FilePondPluginImageValidateSize 1.1.0
* FilePondPluginImageValidateSize 1.2.0
* Licensed under MIT, https://opensource.org/licenses/MIT
* Please visit https://pqina.nl/filepond for details.
*/
/* eslint-disable */
(function(global, factory) {

@@ -60,6 +62,9 @@ typeof exports === 'object' && typeof module !== 'undefined'

maxWidth = bounds.maxWidth,
maxHeight = bounds.maxHeight;
maxHeight = bounds.maxHeight,
minResolution = bounds.minResolution,
maxResolution = bounds.maxResolution;
var resolution = width * height;
// validation result
if (width < minWidth || height < minHeight) {

@@ -69,2 +74,6 @@ reject('TOO_SMALL');

reject('TOO_BIG');
} else if (minResolution !== null && resolution < minResolution) {
reject('TOO_LOW_RES');
} else if (maxResolution !== null && resolution > maxResolution) {
reject('TOO_HIGH_RES');
}

@@ -115,3 +124,5 @@

maxWidth: query('GET_IMAGE_VALIDATE_SIZE_MAX_WIDTH'),
maxHeight: query('GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT')
maxHeight: query('GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT'),
minResolution: query('GET_IMAGE_VALIDATE_SIZE_MIN_RESOLUTION'),
maxResolution: query('GET_IMAGE_VALIDATE_SIZE_MAX_RESOLUTION')
};

@@ -144,2 +155,18 @@

)
},
TOO_LOW_RES: {
label: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_LOW'
),
details: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_RESOLUTION'
)
},
TOO_HIGH_RES: {
label: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_HIGH'
),
details: query(
'GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_RESOLUTION'
)
}

@@ -180,2 +207,22 @@ }[error]

// Required amount of pixels in the image
imageValidateSizeMinResolution: [null, Type.INT],
imageValidateSizeMaxResolution: [null, Type.INT],
imageValidateSizeLabelImageResolutionTooLow: [
'Resolution is too low',
Type.STRING
],
imageValidateSizeLabelImageResolutionTooHigh: [
'Resolution is too high',
Type.STRING
],
imageValidateSizeLabelExpectedMinResolution: [
'Minimum resolution is {minResolution}',
Type.STRING
],
imageValidateSizeLabelExpectedMaxResolution: [
'Maximum resolution is {maxResolution}',
Type.STRING
],
// Required dimensions

@@ -208,4 +255,6 @@ imageValidateSizeMinWidth: [1, Type.INT], // needs to be at least one pixel

if (typeof navigator !== 'undefined' && document) {
// plugin has loaded
var isBrowser =
typeof window !== 'undefined' && typeof window.document !== 'undefined';
if (isBrowser && document) {
document.dispatchEvent(

@@ -212,0 +261,0 @@ new CustomEvent('FilePond:pluginloaded', { detail: plugin$1 })

/*
* FilePondPluginImageValidateSize 1.1.0
* FilePondPluginImageValidateSize 1.2.0
* Licensed under MIT, https://opensource.org/licenses/MIT
* Please visit https://pqina.nl/filepond for details.
*/
!function(e,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):e.FilePondPluginImageValidateSize=i()}(this,function(){"use strict";var e=function(e){return/^image/.test(e.type)},i=function(e){return new Promise(function(i,t){var a=document.createElement("img");a.src=URL.createObjectURL(e),a.onerror=function(e){clearInterval(n),t(e)};var n=setInterval(function(){a.naturalWidth&&a.naturalHeight&&(clearInterval(n),URL.revokeObjectURL(a.src),i({width:a.naturalWidth,height:a.naturalHeight}))},1)})},t=function(t){var a=t.addFilter,n=t.utils,E=n.Type,I=n.replaceInString,_=n.isFile,r=function(e,t,a){return new Promise(function(n,E){var I=function(e){var i=e.width,a=e.height,I=t.minWidth,_=t.minHeight,r=t.maxWidth,l=t.maxHeight;i<I||a<_?E("TOO_SMALL"):(i>r||a>l)&&E("TOO_BIG"),n()};i(e).then(I)["catch"](function(){return a?void a(e,t).then(I)["catch"](function(){return E()}):void E()})})};return a("LOAD_FILE",function(i,t){var a=t.query;return new Promise(function(t,n){if(!_(i)||!e(i)||!a("GET_ALLOW_IMAGE_VALIDATE_SIZE"))return void t(i);var E={minWidth:a("GET_IMAGE_VALIDATE_SIZE_MIN_WIDTH"),minHeight:a("GET_IMAGE_VALIDATE_SIZE_MIN_HEIGHT"),maxWidth:a("GET_IMAGE_VALIDATE_SIZE_MAX_WIDTH"),maxHeight:a("GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT")},l=a("GET_IMAGE_VALIDATE_SIZE_MEASURE");r(i,E,l).then(function(){t(i)})["catch"](function(e){var t=e?{TOO_SMALL:{label:a("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_SMALL"),details:a("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_SIZE")},TOO_BIG:{label:a("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_BIG"),details:a("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_SIZE")}}[e]:{label:a("GET_IMAGE_VALIDATE_SIZE_LABEL_FORMAT_ERROR"),details:i.type};n({status:{main:t.label,sub:e?I(t.details,E):t.details}})})})}),{options:{allowImageValidateSize:[!0,E.BOOLEAN],imageValidateSizeLabelFormatError:["Image type not supported",E.STRING],imageValidateSizeMeasure:[null,E.FUNCTION],imageValidateSizeMinWidth:[1,E.INT],imageValidateSizeMinHeight:[1,E.INT],imageValidateSizeMaxWidth:[65535,E.INT],imageValidateSizeMaxHeight:[65535,E.INT],imageValidateSizeLabelImageSizeTooSmall:["Image is too small",E.STRING],imageValidateSizeLabelImageSizeTooBig:["Image is too big",E.STRING],imageValidateSizeLabelExpectedMinSize:["Minimum size is {minWidth} × {minHeight}",E.STRING],imageValidateSizeLabelExpectedMaxSize:["Maximum size is {maxWidth} × {maxHeight}",E.STRING]}}};return"undefined"!=typeof navigator&&document&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:t})),t});
/* eslint-disable */
!function(e,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):e.FilePondPluginImageValidateSize=i()}(this,function(){"use strict";var e=function(e){var i=e.addFilter,t=e.utils,a=t.Type,n=t.replaceInString,I=t.isFile,l=function(i,m,t){return new Promise(function(T,A){var E,e=function(e){var i=e.width,t=e.height,a=m.minWidth,E=m.minHeight,_=m.maxWidth,n=m.maxHeight,I=m.minResolution,l=m.maxResolution,o=i*t;i<a||t<E?A("TOO_SMALL"):_<i||n<t?A("TOO_BIG"):null!==I&&o<I?A("TOO_LOW_RES"):null!==l&&l<o&&A("TOO_HIGH_RES"),T()};(E=i,new Promise(function(e,i){var t=document.createElement("img");t.src=URL.createObjectURL(E),t.onerror=function(e){clearInterval(a),i(e)};var a=setInterval(function(){t.naturalWidth&&t.naturalHeight&&(clearInterval(a),URL.revokeObjectURL(t.src),e({width:t.naturalWidth,height:t.naturalHeight}))},1)})).then(e).catch(function(){t?t(i,m).then(e).catch(function(){return A()}):A()})})};return i("LOAD_FILE",function(E,e){var _=e.query;return new Promise(function(e,t){if(I(E)&&/^image/.test(E.type)&&_("GET_ALLOW_IMAGE_VALIDATE_SIZE")){var a={minWidth:_("GET_IMAGE_VALIDATE_SIZE_MIN_WIDTH"),minHeight:_("GET_IMAGE_VALIDATE_SIZE_MIN_HEIGHT"),maxWidth:_("GET_IMAGE_VALIDATE_SIZE_MAX_WIDTH"),maxHeight:_("GET_IMAGE_VALIDATE_SIZE_MAX_HEIGHT"),minResolution:_("GET_IMAGE_VALIDATE_SIZE_MIN_RESOLUTION"),maxResolution:_("GET_IMAGE_VALIDATE_SIZE_MAX_RESOLUTION")},i=_("GET_IMAGE_VALIDATE_SIZE_MEASURE");l(E,a,i).then(function(){e(E)}).catch(function(e){var i=e?{TOO_SMALL:{label:_("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_SMALL"),details:_("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_SIZE")},TOO_BIG:{label:_("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_SIZE_TOO_BIG"),details:_("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_SIZE")},TOO_LOW_RES:{label:_("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_LOW"),details:_("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MIN_RESOLUTION")},TOO_HIGH_RES:{label:_("GET_IMAGE_VALIDATE_SIZE_LABEL_IMAGE_RESOLUTION_TOO_HIGH"),details:_("GET_IMAGE_VALIDATE_SIZE_LABEL_EXPECTED_MAX_RESOLUTION")}}[e]:{label:_("GET_IMAGE_VALIDATE_SIZE_LABEL_FORMAT_ERROR"),details:E.type};t({status:{main:i.label,sub:e?n(i.details,a):i.details}})})}else e(E)})}),{options:{allowImageValidateSize:[!0,a.BOOLEAN],imageValidateSizeLabelFormatError:["Image type not supported",a.STRING],imageValidateSizeMeasure:[null,a.FUNCTION],imageValidateSizeMinResolution:[null,a.INT],imageValidateSizeMaxResolution:[null,a.INT],imageValidateSizeLabelImageResolutionTooLow:["Resolution is too low",a.STRING],imageValidateSizeLabelImageResolutionTooHigh:["Resolution is too high",a.STRING],imageValidateSizeLabelExpectedMinResolution:["Minimum resolution is {minResolution}",a.STRING],imageValidateSizeLabelExpectedMaxResolution:["Maximum resolution is {maxResolution}",a.STRING],imageValidateSizeMinWidth:[1,a.INT],imageValidateSizeMinHeight:[1,a.INT],imageValidateSizeMaxWidth:[65535,a.INT],imageValidateSizeMaxHeight:[65535,a.INT],imageValidateSizeLabelImageSizeTooSmall:["Image is too small",a.STRING],imageValidateSizeLabelImageSizeTooBig:["Image is too big",a.STRING],imageValidateSizeLabelExpectedMinSize:["Minimum size is {minWidth} × {minHeight}",a.STRING],imageValidateSizeLabelExpectedMaxSize:["Maximum size is {maxWidth} × {maxHeight}",a.STRING]}}};return"undefined"!=typeof window&&void 0!==window.document&&document&&document.dispatchEvent(new CustomEvent("FilePond:pluginloaded",{detail:e})),e});
{
"name": "filepond-plugin-image-validate-size",
"version": "1.1.0",
"version": "1.2.0",
"description": "Image Size Validation Plugin for FilePond",

@@ -16,4 +16,4 @@ "homepage": "https://pqina.nl/filepond",

"peerDependencies": {
"filepond": "^1.8.0"
"filepond": ">=1.8.x <4.x"
}
}
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