Improve catalog search box experience (#224)

This commit is contained in:
Quang Lam 2020-04-27 23:15:16 +07:00 committed by GitHub
parent bfd27caff6
commit 9247703941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 422 additions and 391 deletions

View file

@ -21,11 +21,11 @@
"repository": "https://github.com/atomery/singlebox",
"author": "Quang Lam <quang.lam2807@gmail.com>",
"dependencies": {
"@cliqz/adblocker-electron": "1.14.1",
"@cliqz/adblocker-electron": "1.14.2",
"cheerio": "1.0.0-rc.3",
"darkreader": "4.9.2",
"download": "8.0.0",
"electron-context-menu": "1.0.0",
"electron-context-menu": "2.0.0",
"electron-is-dev": "1.2.0",
"electron-settings": "3.2.0",
"electron-updater": "4.2.5",
@ -33,26 +33,26 @@
"follow-redirects": "1.11.0",
"fs-extra": "9.0.0",
"is-url": "1.2.4",
"jimp": "0.10.2",
"menubar": "8.0.1",
"jimp": "0.10.3",
"menubar": "8.0.2",
"node-fetch": "2.6.0",
"proxy-agent": "3.1.1",
"semver": "7.3.2",
"tmp": "0.1.0",
"tmp": "0.2.0",
"uuid": "7.0.3"
},
"devDependencies": {
"@date-io/date-fns": "1.3.13",
"@material-ui/core": "4.9.10",
"@material-ui/core": "4.9.12",
"@material-ui/icons": "4.9.1",
"@material-ui/pickers": "3.2.10",
"algoliasearch": "4.1.0",
"algoliasearch": "4.2.0",
"babel-eslint": "10.1.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"blueimp-md5": "2.13.0",
"classnames": "2.2.6",
"concurrently": "5.1.0",
"concurrently": "5.2.0",
"cross-env": "7.0.2",
"date-fns": "2.12.0",
"electron": "8.2.3",

View file

@ -1,8 +1,8 @@
diff --git a/node_modules/menubar/lib/Menubar.js b/node_modules/menubar/lib/Menubar.js
index c2cc450..ac90c9b 100644
index 3ed44a4..e08a63e 100644
--- a/node_modules/menubar/lib/Menubar.js
+++ b/node_modules/menubar/lib/Menubar.js
@@ -237,7 +237,10 @@ var Menubar = /** @class */ (function (_super) {
@@ -244,7 +244,10 @@ var Menubar = /** @class */ (function (_super) {
}
// `.setPosition` crashed on non-integers
// https://github.com/maxogden/menubar/issues/233

View file

@ -64,62 +64,66 @@ const styles = (theme) => ({
},
});
class SearchBox extends React.Component {
render() {
const {
classes,
onResetThenGetHits,
onUpdateQuery,
query,
} = this.props;
const SearchBox = ({
classes,
onResetThenGetHits,
onUpdateQuery,
query,
}) => {
const clearSearchAction = query.length > 0 && (
<>
<IconButton
color="default"
aria-label="Clear"
onClick={() => onUpdateQuery('')}
>
<CloseIcon fontSize="small" className={classes.icon} />
</IconButton>
<IconButton
color="default"
aria-label="Clear"
onClick={onResetThenGetHits}
>
<KeyboardReturnIcon fontSize="small" className={classes.icon} />
</IconButton>
</>
);
const clearSearchAction = query.length > 0 && (
<>
<IconButton
color="default"
aria-label="Clear"
onClick={() => onUpdateQuery('')}
return (
<Paper elevation={1} className={classes.toolbarSearchContainer}>
<div className={classes.toolbarSectionSearch}>
<Typography
className={classes.searchBarText}
color="inherit"
variant="body1"
>
<CloseIcon fontSize="small" className={classes.icon} />
</IconButton>
<IconButton
color="default"
aria-label="Clear"
onClick={onResetThenGetHits}
>
<KeyboardReturnIcon fontSize="small" className={classes.icon} />
</IconButton>
</>
);
return (
<Paper elevation={1} className={classes.toolbarSearchContainer}>
<div className={classes.toolbarSectionSearch}>
<Typography
className={classes.searchBarText}
color="inherit"
variant="body1"
>
<input
className={classes.input}
onChange={(e) => onUpdateQuery(e.target.value)}
onInput={(e) => onUpdateQuery(e.target.value)}
onKeyDown={(e) => {
if (e.key === 'Enter' && query.length > 0) {
onResetThenGetHits();
}
}}
placeholder="Search apps..."
ref={(inputBox) => { this.inputBox = inputBox; }}
value={query}
/>
</Typography>
{clearSearchAction}
</div>
</Paper>
);
}
}
<input
className={classes.input}
onChange={(e) => onUpdateQuery(e.target.value)}
onInput={(e) => onUpdateQuery(e.target.value)}
onKeyDown={(e) => {
if (e.key === 'Enter' && query.length > 0) {
onResetThenGetHits();
} else if (e.key === 'Escape') {
e.target.blur();
onUpdateQuery('');
}
}}
placeholder="Search apps..."
value={query}
onFocus={() => {
window.preventClosingWindow = true;
}}
onBlur={() => {
window.preventClosingWindow = false;
}}
/>
</Typography>
{clearSearchAction}
</div>
</Paper>
);
};
SearchBox.defaultProps = {
query: '',

681
yarn.lock
View file

@ -7,109 +7,109 @@
resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.0.3.tgz#bc5b5532ecafd923a61f2fb097e3b108c0106a3f"
integrity sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA==
"@algolia/cache-browser-local-storage@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.1.0.tgz#c4f1bfc57ea562248072b35831e3c4b646cc3921"
integrity sha512-r8BOgqZXVt+JPgP19PQNzZ+lYP+MP6eZKNQqfRYofFEx+K9oyfdtGCqmoWJsBUi3nNOzhbOcg2jfP2GJzJBZ5g==
"@algolia/cache-browser-local-storage@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.2.0.tgz#45cc4be4c8fcd69cb98ebaa2e78a459a1cf6ba64"
integrity sha512-uji5zxBxwNu8qKtyqghg9lUsN0OOZ58NfRKk0Il4IZCcCo78E0KfT3Uxr7XiYCJMRnqIsvbKWf0xA67tYNBSbA==
dependencies:
"@algolia/cache-common" "4.1.0"
"@algolia/cache-common" "4.2.0"
"@algolia/cache-common@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.1.0.tgz#ab895f8049ff7064ca1bfea504a56f97fd5d4683"
integrity sha512-ZvvK40bs1BWLErchleZL4ctHT2uH56uLMnpZPCuIk+H2PKddeiIQc/z2JDu2BHr68u513XIAAoQ+C+LgKNugmw==
"@algolia/cache-common@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.2.0.tgz#ada18e559f205a63eaf60c21a035b3d41f0f8d7d"
integrity sha512-ATBQCBBLt4hPNKIKn06y5zqZPWQmI+PBF0287rFVj8BGmEr82BzoKMa5XIkvgpjtxwx6c5nSKxZaYkEFqtrxtQ==
"@algolia/cache-in-memory@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.1.0.tgz#cb9b575df1ebe3befd198a50a444a7d181e50853"
integrity sha512-2382OXYFDeoPLA5vP9KP58ad15ows24ML5/io/T1N0xsZ0eVXDkT52qgaJw/esUfEkWScZ2R8kpesUa+qEP+kw==
"@algolia/cache-in-memory@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.2.0.tgz#82f07cc99aee9e20a96bdd69c635bdd2dc4288f1"
integrity sha512-NsVOR6ixK6jvurLW+1+h80/9N18QjU/AXdAZJoVeu4JXb2NPuej4Ld1zXFYvz/ypCFQE+dU8haaQnJIuTbD4vg==
dependencies:
"@algolia/cache-common" "4.1.0"
"@algolia/cache-common" "4.2.0"
"@algolia/client-account@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.1.0.tgz#a31d26c22e6a56554ea4aa8552d153b1a1aa4363"
integrity sha512-GFINlsxAHM/GEeDBjoTx8+J1ra9SINQCuXi2C9QSLFClPKug2lzApm8niJJGXckhyZ2aDLb7drJ1qJ8bTspApw==
"@algolia/client-account@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.2.0.tgz#7abf3dd8922fde1735b1e0d19e8b0bdbf64a1435"
integrity sha512-xz5OXU9DQ9pegABAgmTPV23f9tXmbUPO3w5J/b2QcP6jzfNnNfW3CkTwywgNLr16jIKLxmmClN5yqyJp6XmHBA==
dependencies:
"@algolia/client-common" "4.1.0"
"@algolia/client-search" "4.1.0"
"@algolia/transporter" "4.1.0"
"@algolia/client-common" "4.2.0"
"@algolia/client-search" "4.2.0"
"@algolia/transporter" "4.2.0"
"@algolia/client-analytics@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.1.0.tgz#eb05ccb636351b2d6494b2affb6034b791236998"
integrity sha512-JMyZ9vXGbTJWiO66fWEu9uJ7GSYfouUyaq8W/6esADPtBbelf+Nc0NRlicOwHHJGwiJvWdvELafxrhkR1+KR8A==
"@algolia/client-analytics@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.2.0.tgz#11e9331fed5bbaa6668d71c890dff60c4af1c741"
integrity sha512-UNuZQOYuKPYl5fCgm1HZzoZ6Ewxtqrc4Cv5Dhdy5VatIV6lYEWOtdn+g+5qvWFGb6fv6688dg5EVJnXZNvVVZQ==
dependencies:
"@algolia/client-common" "4.1.0"
"@algolia/client-search" "4.1.0"
"@algolia/requester-common" "4.1.0"
"@algolia/transporter" "4.1.0"
"@algolia/client-common" "4.2.0"
"@algolia/client-search" "4.2.0"
"@algolia/requester-common" "4.2.0"
"@algolia/transporter" "4.2.0"
"@algolia/client-common@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.1.0.tgz#cd3a71cef1e0d87476252cbee20b0da938f6221c"
integrity sha512-fjSMKeG54vAyQAhf+uz039/birTiLun8nDuCNx4CUbzGl97M0g96Q8jpsiZa0cjSNgh0VakMzn2GnHbS55W9/Q==
"@algolia/client-common@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.2.0.tgz#bf8a550dc51927bb103de9aab7e6ac4d90a9cf0d"
integrity sha512-KxZTWXf9FSl188iTAz9rhTMeBtbF/uaJcxw99jbWHxyK9KR87obZzTlTFYnIWLEBaTG1MmlgPSsDogAE4CHLOQ==
dependencies:
"@algolia/requester-common" "4.1.0"
"@algolia/transporter" "4.1.0"
"@algolia/requester-common" "4.2.0"
"@algolia/transporter" "4.2.0"
"@algolia/client-recommendation@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.1.0.tgz#a0a26de4a6dd902d7ca55cf381cce3a7280d5b49"
integrity sha512-UEN/QgQwVtVH++yAs2uTuyZZQQ1p5Xs/7/FKT4Kh9/8NAyqDD49zuyq/giw8PRNhWc3C/9jiO7X4RKE8QrVWGw==
"@algolia/client-recommendation@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.2.0.tgz#bd49b5b9601fe4220ba6db0fc397d816584ee4ec"
integrity sha512-5QwvUJ5hpZVDz99o+EPgMg+z7maLWOZGUrUt5z8s+esl+taTb2h1PtyLpikAvC2d/BjYCEKyObTiRDYdzhqcoA==
dependencies:
"@algolia/client-common" "4.1.0"
"@algolia/requester-common" "4.1.0"
"@algolia/transporter" "4.1.0"
"@algolia/client-common" "4.2.0"
"@algolia/requester-common" "4.2.0"
"@algolia/transporter" "4.2.0"
"@algolia/client-search@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.1.0.tgz#07cc422af997e409968d3b74142e984aa71ae38c"
integrity sha512-bpCYMEXUdyiopEBSHHwnrRhNEwOLstIeb0Djz+/pVuTXEr3Xg3JUoAZ8xFsCVldcXaZQpbi1/T0y3ky6xUVzfw==
"@algolia/client-search@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.2.0.tgz#4917499cac66a5cca7f2ca9d1334bffc96a79b17"
integrity sha512-2SAz1/undr+RM7FNj3G0taWFG+8QEMQcYHxUhoOJKMIY9sPQN7UNCJRHYsulM+/g45oF67tXX09NSt14ewen0Q==
dependencies:
"@algolia/client-common" "4.1.0"
"@algolia/requester-common" "4.1.0"
"@algolia/transporter" "4.1.0"
"@algolia/client-common" "4.2.0"
"@algolia/requester-common" "4.2.0"
"@algolia/transporter" "4.2.0"
"@algolia/logger-common@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.1.0.tgz#05608dee38dfa35bfe37874683760140d471bfdc"
integrity sha512-QrE4Srf1LB7ekLzl68bFqlTrv7Wk7+GpsaGfB4xFZ9Pfv89My9p7qTVqdLlA44hEFY3fZ9csJp1/PFVucgNB4w==
"@algolia/logger-common@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.2.0.tgz#dd373b267594656d72a1563f6621ab7f727c4373"
integrity sha512-VQcJE5lr78oc+lbcGfPonCDTRwLNSxwtPrUP6Tj+CoDedsVHZhODAlHzLHhxc4vuyrU7xomvKJLqTUgfDNxzXQ==
"@algolia/logger-console@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.1.0.tgz#099ee86716aea4c976345417397ddfa1338a5acc"
integrity sha512-sKELkiKIrj/tPRAdhOPNI0UxhK2uiIUXnGs/3ztAif6QX7vyE3lY19sj5pIVJctRvl8LW2UlzpBFGlcCDkho9Q==
"@algolia/logger-console@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.2.0.tgz#10e18ab75f60fd0f2e2b16cb9a1b0bcc947087f2"
integrity sha512-/1GE43jY0xKfJUi5ZGtEqq+oTyOzs+EgGKj7/zEHIpUc5NyxokIPWTqt3q6pzGSWFEkNbaA1gAVgXM1zCMVWYw==
dependencies:
"@algolia/logger-common" "4.1.0"
"@algolia/logger-common" "4.2.0"
"@algolia/requester-browser-xhr@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.1.0.tgz#a7ab63f184f3d0aa8e85ac73ce39c528271c6d9b"
integrity sha512-bLMfIAkOLs1/vGA09yxU0N5+bE0fSSvEH2ySqVssfWLMP+KRAvby2Goxm8BgI9xLkOvLbhazfQ4Ov2448VvA1g==
"@algolia/requester-browser-xhr@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.2.0.tgz#c2a7982bef940e1749f2ba2aa04e3f8a971b6a78"
integrity sha512-+PZKOe+UBdZYQg/h/8AbKQ2Ha4uDeoLnpZFv00IMr/elym0m2hl76xAeIBiIqGYsLCmGybGBFUF9n1imsKJUJQ==
dependencies:
"@algolia/requester-common" "4.1.0"
"@algolia/requester-common" "4.2.0"
"@algolia/requester-common@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.1.0.tgz#91907e9963e455b11862d1cca02fc1d1d961dbce"
integrity sha512-Cy0ciOv5uIm6wF+uLc9DHhxgPJtYQuy1f//hwJcW5mlPX/prPgxWwLXzWyyA+Ca7uU3q+0Y3cIFvEWM5pDxMEg==
"@algolia/requester-common@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.2.0.tgz#df67a940516d5a313bbf79bcbceddadfff9f8ce2"
integrity sha512-SSKPRM/7UP54/dxyK6EYt4p6nTeJxYb1P6xVh/Ic6noBTCfqg5vBEKDa1DZD5MBtCvABoODd97UOfAo3ECG/jg==
"@algolia/requester-node-http@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.1.0.tgz#db0a224538691f6fab18ced27c548cf3b4017689"
integrity sha512-tXp6Pjx9dFgM5ccW6YfEN6v2Zqq8uGwhS1pyq03/aRYRBK60LptjG5jo++vrOytrQDOnIjcZtQzBQch2GjCVmw==
"@algolia/requester-node-http@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.2.0.tgz#e26efd3d630b7c988bcc9cda3a8ee68ab4a168dd"
integrity sha512-mRQgSM8qrMfjXaBnMjTmymR0NKwbr82Qwh1a5TgYyzMOBuRO5nRikawvTVgpNaEnQS0uesIiwd2ohOJ2gNu6oA==
dependencies:
"@algolia/requester-common" "4.1.0"
"@algolia/requester-common" "4.2.0"
"@algolia/transporter@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.1.0.tgz#18cb8837ca4079a23572a3b7dbefece71fb6fff3"
integrity sha512-Z7PjHazSC+KFLDuCFOjvRNgLfh7XOE4tXi0a9O3gBRup4Sk3VQCfTw4ygCF3rRx6uYbq192efLu0nL1E9azxLA==
"@algolia/transporter@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.2.0.tgz#9e6bea3304f1e6f4a64a3d7c1f9de047ba89056f"
integrity sha512-7CiwMYsEhrHySA8q70euIYOyhGtz/wz+MEC3nwGONBC82nGI6ntVqTFhCkpLIJqqbGbNlFgnCpwnLmSqLhRP3A==
dependencies:
"@algolia/cache-common" "4.1.0"
"@algolia/logger-common" "4.1.0"
"@algolia/requester-common" "4.1.0"
"@algolia/cache-common" "4.2.0"
"@algolia/logger-common" "4.2.0"
"@algolia/requester-common" "4.2.0"
"@babel/code-frame@7.8.3", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3":
version "7.8.3"
@ -1048,36 +1048,36 @@
lodash "^4.17.13"
to-fast-properties "^2.0.0"
"@cliqz/adblocker-content@^1.14.1":
version "1.14.1"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker-content/-/adblocker-content-1.14.1.tgz#d026a67523a8797af3d6574158887c64c602ed4e"
integrity sha512-zQ9eUGp/kgmL4gj8RoskTdZdz5jlFbwIEWlgGZGhJ9ek48roIJRtx0Lzkykc7zvr76umKZfWiqpX4R0UPWICnQ==
"@cliqz/adblocker-content@^1.14.2":
version "1.14.2"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker-content/-/adblocker-content-1.14.2.tgz#9b4ec4df933c30757ea0c2dffb51c8e86e806f87"
integrity sha512-q0D02xAjaYofprkcfk3YY26rYdAlDIkDnZh/BWHFfHVnQTYaKp9LgPVwN0Ypn64ypAojfG2inY5vRSdy67CATA==
"@cliqz/adblocker-electron-preload@^1.14.1":
version "1.14.1"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.14.1.tgz#4f1ae698bc3d5363cd79c24cf16ba9fa5b3b08dd"
integrity sha512-DmNVdhcolziNM4keTwZxQeS4IsAh+x8Xe2OXy1rDzC5sHVBmp4qtOxydp1QxmYvKWu3s+mZWJ7ww+874dMpB+A==
"@cliqz/adblocker-electron-preload@^1.14.2":
version "1.14.2"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.14.2.tgz#86f0af0c06e85dc91a5d39c72a6d1ad6f0c8338c"
integrity sha512-zmTZz3DypVOfO6SIApjgGRhb8Nn2wf6O5qhk0WxS/iJVsFHMOuCvXY417MjEuuYbmZB8frwSL+7QzAMlGE2TXw==
dependencies:
"@cliqz/adblocker-content" "^1.14.1"
"@cliqz/adblocker-content" "^1.14.2"
"@cliqz/adblocker-electron@1.14.1":
version "1.14.1"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.14.1.tgz#21ed27379b63e2e65b8093c26ba8fa653d4ac856"
integrity sha512-/jpz9ZHCcBYxA9vlz87R9JkKF/tCCSh+hjIcYYkpr029FxvbQsW2Ab2HKAicYa2CTbumSmvv8uw/kPObOmDBQA==
"@cliqz/adblocker-electron@1.14.2":
version "1.14.2"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.14.2.tgz#e3a502d750407887e463966a14af46984aa22d9f"
integrity sha512-T9Za3YW7pp3Xpe/+F+btbpKAifxgQEsRlmm0jZ5+Pq518HwwPrODC8APAqQsCgZrBRsHd/6SCdEjNkTys7gf4w==
dependencies:
"@cliqz/adblocker" "^1.14.1"
"@cliqz/adblocker-electron-preload" "^1.14.1"
"@cliqz/adblocker" "^1.14.2"
"@cliqz/adblocker-electron-preload" "^1.14.2"
tldts-experimental "^5.6.21"
"@cliqz/adblocker@^1.14.1":
version "1.14.1"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker/-/adblocker-1.14.1.tgz#e33439a25778d2c42af4aad00267ea0685311f01"
integrity sha512-L/k/qnzw1gNo8zZywMhSGlifUTdi2iUAG09NPY2XfGG2ZCGel3qGZ0nLQbjmU9W0l6t6k8bO52Dlhh825Hqppg==
"@cliqz/adblocker@^1.14.2":
version "1.14.2"
resolved "https://registry.yarnpkg.com/@cliqz/adblocker/-/adblocker-1.14.2.tgz#389eb6cdbff5f14651cb5267bf02519ea548af70"
integrity sha512-H5EsO7aFdX3XcJL3MSlbLbUhJxZf2T5LX1LGhIRR2mNHrfnT801/192EQFGhP/Rx72lg5EBFuMsqEFOBfeECTg==
dependencies:
"@remusao/guess-url-type" "^1.1.2"
"@remusao/small" "^1.1.2"
"@remusao/smaz" "^1.7.1"
"@types/chrome" "^0.0.103"
"@types/chrome" "^0.0.104"
"@types/firefox-webext-browser" "^70.0.1"
tldts-experimental "^5.6.21"
@ -1360,23 +1360,23 @@
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^13.0.0"
"@jimp/bmp@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.10.2.tgz#80c76ba434da95ab63d4c33ea026e5cf5db16f2a"
integrity sha512-vsLwkfj6rcxtSxEdpQaxDagrgpOB0ErHTS/vVRQKDIhrzZkW1ddQa9W1hV8qssSY3K7lz1QNYFQdeRw/qoCiBA==
"@jimp/bmp@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.10.3.tgz#79a23678e8389865c62e77b0dccc3e069dfc27f0"
integrity sha512-keMOc5woiDmONXsB/6aXLR4Z5Q+v8lFq3EY2rcj2FmstbDMhRuGbmcBxlEgOqfRjwvtf/wOtJ3Of37oAWtVfLg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
bmp-js "^0.1.0"
core-js "^3.4.1"
"@jimp/core@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.10.2.tgz#596aa63b2fd746992159ef368fc0254370b18d85"
integrity sha512-oyJLzWYcT6u0joD2YJAAVqCc1Ng9wXGPdAijWy3xxQT/roALmWLGL5ev6fQ/gugPVAD+xKUQpM0OxJepRYUl0Q==
"@jimp/core@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.10.3.tgz#4095f3bef43837c85d8f8373b912bc431cfe6d1f"
integrity sha512-Gd5IpL3U2bFIO57Fh/OA3HCpWm4uW/pU01E75rI03BXfTdz3T+J7TwvyG1XaqsQ7/DSlS99GXtLQPlfFIe28UA==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
any-base "^1.1.0"
buffer "^5.2.0"
core-js "^3.4.1"
@ -1388,308 +1388,309 @@
pixelmatch "^4.0.2"
tinycolor2 "^1.4.1"
"@jimp/custom@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.10.2.tgz#2d8977af7bea41b442ec8f1777bbf8392cdac129"
integrity sha512-+ErCKYrIC0m6nDxRwIq0ETdltL4+C8RKrv3bGW/bI94QSfIXCdP6Vsz03VMae1J9+IPjfhn1LJ5rQ3zWkZEfdA==
"@jimp/custom@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.10.3.tgz#eb6201b2e8fdd83afc3d8b514538e5faa1d30980"
integrity sha512-nZmSI+jwTi5IRyNLbKSXQovoeqsw+D0Jn0SxW08wYQvdkiWA8bTlDQFgQ7HVwCAKBm8oKkDB/ZEo9qvHJ+1gAQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/core" "^0.10.2"
"@jimp/core" "^0.10.3"
core-js "^3.4.1"
"@jimp/gif@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.10.2.tgz#e87f65a0277de518bb9b0f7bac1217958d6181c8"
integrity sha512-Evkwr7Vlt5zMqNccsUDetHpKtvhFz07yg8BRZl3kXzkeKeaK/PbuAV7yjXn1DxVVU+1uSS765MdbsMVe7J404A==
"@jimp/gif@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.10.3.tgz#7661280fd2b9cb70175b20e80f4e2b3e3ecf614e"
integrity sha512-vjlRodSfz1CrUvvrnUuD/DsLK1GHB/yDZXHthVdZu23zYJIW7/WrIiD1IgQ5wOMV7NocfrvPn2iqUfBP81/WWA==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
omggif "^1.0.9"
"@jimp/jpeg@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.10.2.tgz#6bfb4ed2dcfbb956b380c1634d85184d3a0b20ff"
integrity sha512-+aQUGBZI6OueB0K6gqLCwehV5skZceVyZjjmPmuXaE7ZvdhFMP2QDh45vcT8LzlPGUcOwpIWxsGHrB6Q6RcFXQ==
"@jimp/jpeg@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.10.3.tgz#56f66874f204826291747ae12ff9eb337ab5cb8d"
integrity sha512-AAANwgUZOt6f6P7LZxY9lyJ9xclqutYJlsxt3JbriXUGJgrrFAIkcKcqv1nObgmQASSAQKYaMV9KdHjMlWFKlQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
jpeg-js "^0.3.4"
"@jimp/plugin-blit@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.10.2.tgz#d822a49499a84f9125aa8710e3f435077e0fc2bf"
integrity sha512-PdqKZLkwnOOnrr+M4X4K/GrQ26qeCHut7AoFbKW+BsHooHvyadOWwVTBUBfK8GyDp/NApEC9SXbT0UNk8XqabA==
"@jimp/plugin-blit@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.10.3.tgz#095bafbb2d82c300159334a49a094f0b7d362ae6"
integrity sha512-5zlKlCfx4JWw9qUVC7GI4DzXyxDWyFvgZLaoGFoT00mlXlN75SarlDwc9iZ/2e2kp4bJWxz3cGgG4G/WXrbg3Q==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-blur@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.10.2.tgz#8655dff2dc178141ee707fa2c2391e917b912027"
integrity sha512-9KeLyUY3s5N0cPZN4uMg0qIiSDvIPhXEnpYnXdN2V53dM25sKrBCMH578/W+n9hAHVpsbJHS+VFknO1JV47QVw==
"@jimp/plugin-blur@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.10.3.tgz#1bb91f730fda02b3c99d913e0191111327654766"
integrity sha512-cTOK3rjh1Yjh23jSfA6EHCHjsPJDEGLC8K2y9gM7dnTUK1y9NNmkFS23uHpyjgsWFIoH9oRh2SpEs3INjCpZhQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-circle@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.10.2.tgz#9e10688df57fa73bcff12259f96153f461074210"
integrity sha512-wOJ3qKa916YZMEwA9qwIn8yROYonkscJ3bqaaSsyf5CadiY8VCijKxA3BVwr7PKjj89yf5RCS4mcy+CO8+nmkw==
"@jimp/plugin-circle@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.10.3.tgz#c5a6ec275cf1e86b1356824637910a299c9fd662"
integrity sha512-51GAPIVelqAcfuUpaM5JWJ0iWl4vEjNXB7p4P7SX5udugK5bxXUjO6KA2qgWmdpHuCKtoNgkzWU9fNSuYp7tCA==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-color@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.10.2.tgz#a5aa4a55a5f7ad1e7833fb0c6536207ddf48976e"
integrity sha512-c6cw41Hn3tLYQIRg3hxXrefKcOfW4jRN9b9DGH16mcZrRtw5jMzq3NfZ+RLQM47SyAE7N2BeUz0Ah3pmCArI0g==
"@jimp/plugin-color@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.10.3.tgz#810c0f7cb4ceb21da1aecfbdb6ae09f00c1c0bfa"
integrity sha512-RgeHUElmlTH7vpI4WyQrz6u59spiKfVQbsG/XUzfWGamFSixa24ZDwX/yV/Ts+eNaz7pZeIuv533qmKPvw2ujg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
tinycolor2 "^1.4.1"
"@jimp/plugin-contain@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.10.2.tgz#c078392b1a46c5f0e111c8255d9f231a574f6349"
integrity sha512-oDDe+XdpSwx2OQOSb6ar4O31+4d02Qz4R+1BeucuO7FzOrbDggnCWavSg6RevyOJPDKGkmv8Jj3V6S0jUwgVgw==
"@jimp/plugin-contain@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.10.3.tgz#cf62126a60260359061be456b2193818c5eb1df5"
integrity sha512-bYJKW9dqzcB0Ihc6u7jSyKa3juStzbLs2LFr6fu8TzA2WkMS/R8h+ddkiO36+F9ILTWHP0CIA3HFe5OdOGcigw==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-cover@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.10.2.tgz#5d372d89ecca1615cac131d959c62c6a383da439"
integrity sha512-cnEqx8kHqBvQA+axKA8qRshwAIIfyxAwjdeRB/LZ9bWroh8XvbifW5buBgITDG5KklDkBhivmDEtPY90r3mMFQ==
"@jimp/plugin-cover@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.10.3.tgz#7cdf56ce878c24adc35c583735015118c6de38b4"
integrity sha512-pOxu0cM0BRPzdV468n4dMocJXoMbTnARDY/EpC3ZW15SpMuc/dr1KhWQHgoQX5kVW1Wt8zgqREAJJCQ5KuPKDA==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-crop@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.10.2.tgz#8523db60badbd4b7b378c2cb44e337ad42b22622"
integrity sha512-6uTb3LMP0kiMqYOAHyU/q/pkScw6aRWkTSxhjgcsewQS3zPHWTSGgP8u6CNAFnlDmVYVIz/jdKlFnnOdf0ZwrA==
"@jimp/plugin-crop@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.10.3.tgz#03785181f62ddae9558ae73206f8d6217d7fa703"
integrity sha512-nB7HgOjjl9PgdHr076xZ3Sr6qHYzeBYBs9qvs3tfEEUeYMNnvzgCCGtUl6eMakazZFCMk3mhKmcB9zQuHFOvkg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-displace@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.10.2.tgz#204d4e68aaa5b19e21847f5418bd9b14b1bc7a48"
integrity sha512-AGQDlyeFJz+zszYUkIzi5QyLLPsJzRJNIplU0S0HBxmXf5tZEeiiEtmsaC4j9VoAVD9Jwwn39+cfwV88Ij7WGg==
"@jimp/plugin-displace@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.10.3.tgz#cb5b225e6cf3cf44062b08cd2cf2115b3150d8c3"
integrity sha512-8t3fVKCH5IVqI4lewe4lFFjpxxr69SQCz5/tlpDLQZsrNScNJivHdQ09zljTrVTCSgeCqQJIKgH2Q7Sk/pAZ0w==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-dither@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.10.2.tgz#24a68e2e46c42f2dfe2a0c17774c4ecff25b3ed6"
integrity sha512-TEu7n44OS/+F1eWqKumsKYI+i2cPxzRTmxJhxrsUGyDD2aNi7tCIfKILXDqO6Ii0tYgSqwakG2+Eu0Jqg7J/VQ==
"@jimp/plugin-dither@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.10.3.tgz#c5c1cbbf157a771ba72b947dd9921a7bff3cf41a"
integrity sha512-JCX/oNSnEg1kGQ8ffZ66bEgQOLCY3Rn+lrd6v1jjLy/mn9YVZTMsxLtGCXpiCDC2wG/KTmi4862ysmP9do9dAQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-fisheye@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.10.2.tgz#4028496919e11c3a5ea859d9f49bf0d3daba121d"
integrity sha512-kxtfkcnnXitqpTxGaZg/q6bzMBRWCFEWs7maMIgjFkGvXsMegQ90EdKF1Ku76/gCTIGxyfbped8QD/+iACgzFw==
"@jimp/plugin-fisheye@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.10.3.tgz#dee46d704df5c681556dc9ea9e87e8c77ac4fdda"
integrity sha512-RRZb1wqe+xdocGcFtj2xHU7sF7xmEZmIa6BmrfSchjyA2b32TGPWKnP3qyj7p6LWEsXn+19hRYbjfyzyebPElQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-flip@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.10.2.tgz#6b1f740d9e245d629b1a2de260a8b1e3f47ba850"
integrity sha512-JW/aAKPGYOEGrqldpUBFxHUZ21pwhtxeRiwXEyMu/8N23PVuNBAePKboPMxRvkSLvAOn122xKEyCQvF10v/TOQ==
"@jimp/plugin-flip@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.10.3.tgz#12f894f85b283ad4f43b492e0755f8ec9459bc60"
integrity sha512-0epbi8XEzp0wmSjoW9IB0iMu0yNF17aZOxLdURCN3Zr+8nWPs5VNIMqSVa1Y62GSyiMDpVpKF/ITiXre+EqrPg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-gaussian@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.10.2.tgz#dd0bd9c1cde50f0badcbc61afc3a1aeae02a6fe1"
integrity sha512-uP1up3fCIBzGexqs/+HMGBoZckEEcic09RNRj5Lq6EUVY8vFdKeBk3F+tAA+fstpA6yHhjPk1w7FZKX/tkECNw==
"@jimp/plugin-gaussian@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.10.3.tgz#279222fc5d3aec24fab6162df2a1190309c71874"
integrity sha512-25eHlFbHUDnMMGpgRBBeQ2AMI4wsqCg46sue0KklI+c2BaZ+dGXmJA5uT8RTOrt64/K9Wz5E+2n7eBnny4dfpQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-invert@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.10.2.tgz#5bb2c08dbe813d198d9bd085f0c763a9ec8eb977"
integrity sha512-zm1NB+AS0fTKW0gmFs1Tjgkj892gtnDicyxzmYeCLoQzPTr/1iPVf2EGidCS88+aw04sA5DOu0UX7637ib7TkA==
"@jimp/plugin-invert@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.10.3.tgz#6b7beacbe507fa03eec87b1d6343feba80e342eb"
integrity sha512-effYSApWY/FbtlzqsKXlTLkgloKUiHBKjkQnqh5RL4oQxh/33j6aX+HFdDyQKtsXb8CMd4xd7wyiD2YYabTa0g==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-mask@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.10.2.tgz#60235c080d722dbcf480ef3af97e1a1011ad78e3"
integrity sha512-4pVBAU6d/7EhfYs8sYuBGB3JMIuvrdiXbt6ESNs4CyDSbiDT4z1/f2sjWvNyLYlJ7cQJ+we50qqvq8vvNnb5lA==
"@jimp/plugin-mask@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.10.3.tgz#72d994c3bb56c050a4edd6515f74b5b6d92dee69"
integrity sha512-twrg8q8TIhM9Z6Jcu9/5f+OCAPaECb0eKrrbbIajJqJ3bCUlj5zbfgIhiQIzjPJ6KjpnFPSqHQfHkU1Vvk/nVw==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-normalize@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.10.2.tgz#5a6605711e95404606187872b1117d702c0d62aa"
integrity sha512-B2HXf6uaH8EAyZA5KvVYJOfv4AZpferIuDhOQSqDLKAEBBfEViwHk/Rn+nCUzGsAzQ/yiVtKAil68YcybaI6oQ==
"@jimp/plugin-normalize@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.10.3.tgz#f3cbb8a0fcc8e696619d5d46403b0620ee5240d6"
integrity sha512-xkb5eZI/mMlbwKkDN79+1/t/+DBo8bBXZUMsT4gkFgMRKNRZ6NQPxlv1d3QpRzlocsl6UMxrHnhgnXdLAcgrXw==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-print@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.10.2.tgz#7d646a55a778415e53f4488d4daa416ae1944d22"
integrity sha512-YXKBG5yNOr/DX958Omk1GzTrprRJ3YXWhJ6tzCbboxqXK6pErLDxFsa1mlngDGb/a43oGs63Myj7CuGf98/vaw==
"@jimp/plugin-print@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.10.3.tgz#565d57a3a87dd59b4ede9cba7a6e34f8d01ed1b1"
integrity sha512-wjRiI6yjXsAgMe6kVjizP+RgleUCLkH256dskjoNvJzmzbEfO7xQw9g6M02VET+emnbY0CO83IkrGm2q43VRyg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
load-bmfont "^1.4.0"
"@jimp/plugin-resize@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.10.2.tgz#3082f57c06d63da46a7f94ad0d9f013ad1a8a5e1"
integrity sha512-F+pXSU5sbACqqArZfVeYYXrq7qMwZcMs97Z3V70qsLtvDSVyNFG5iYpJhFKJOj05O7a2G7FQ1Nq2h0UKJdlLJg==
"@jimp/plugin-resize@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.10.3.tgz#616fab55a1996a12e9583e7c1fb76815388fc14b"
integrity sha512-rf8YmEB1d7Sg+g4LpqF0Mp+dfXfb6JFJkwlAIWPUOR7lGsPWALavEwTW91c0etEdnp0+JB9AFpy6zqq7Lwkq6w==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-rotate@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.10.2.tgz#53479ad7ef476f57bf4fad0298daf335d9e27cc1"
integrity sha512-bQ0RQuXS768G9l1HemULJ7puuevU5N3TpE1QV5NdzbKwjHidFAAavp8XFXOhd2Mj/Xh/3iFlMMEB7NG/McYoOA==
"@jimp/plugin-rotate@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.10.3.tgz#cfcbdad664e13c84ce9b008ddbc157e03d7baa31"
integrity sha512-YXLlRjm18fkW9MOHUaVAxWjvgZM851ofOipytz5FyKp4KZWDLk+dZK1JNmVmK7MyVmAzZ5jsgSLhIgj+GgN0Eg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-scale@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.10.2.tgz#9b02dc7dacb807b8f286141f489cc6539ecef8ed"
integrity sha512-47GRG3joOGDBLHYyLR0tc3hEz/H8tgPcLZaNEAaIdyL+ckAWQIgnoytbqj7OEAFeMj5j+loNm+ahJVX7w/X/ug==
"@jimp/plugin-scale@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.10.3.tgz#b593081ff35b0e9e11d5e0a3188c590eaa838434"
integrity sha512-5DXD7x7WVcX1gUgnlFXQa8F+Q3ThRYwJm+aesgrYvDOY+xzRoRSdQvhmdd4JEEue3lyX44DvBSgCIHPtGcEPaw==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-shadow@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.10.2.tgz#6b55f152dac86e1d3b7b0e89181af02a9ffea16d"
integrity sha512-koksEMJZKjq8OiprLh+ffrRo/x/dXHCsfaKS4kf2EoFZEb6sZHeJgKLwozLky1DXBPiMryYSrNt8Cb6wzjd1zA==
"@jimp/plugin-shadow@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.10.3.tgz#a9d54c8081a55152e5cc830cf5c898ab882b519a"
integrity sha512-/nkFXpt2zVcdP4ETdkAUL0fSzyrC5ZFxdcphbYBodqD7fXNqChS/Un1eD4xCXWEpW8cnG9dixZgQgStjywH0Mg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugin-threshold@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.10.2.tgz#026a479eece4638941a8ef1fdc892229691c509b"
integrity sha512-RQzxB40KK50iUUNLF9M7G3dVKFmbe/T4EQVWMPxxX8NQPNbU0vjZzTW0vVYoTYno2vLxewQgV0Y3ydX/l08NLg==
"@jimp/plugin-threshold@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.10.3.tgz#8dd289c81de4bfbdb496f9c24496f9ee3b751ab5"
integrity sha512-Dzh0Yq2wXP2SOnxcbbiyA4LJ2luwrdf1MghNIt9H+NX7B+IWw/N8qA2GuSm9n4BPGSLluuhdAWJqHcTiREriVA==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
"@jimp/plugins@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.10.2.tgz#fc9e37e54aa4fd9ee97fbb9f78b31eac2ed91480"
integrity sha512-z4Fhu97WZIussTzd1PJXUUuluushXlfCYzXifixf8fGAoVGZuMMJl6aqtuy4eUOgLyN8sXun0MzdWAahelqbfA==
"@jimp/plugins@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.10.3.tgz#e15d7ba3f9e2a6b479efad5c344c8b61e01b7cb2"
integrity sha512-jTT3/7hOScf0EIKiAXmxwayHhryhc1wWuIe3FrchjDjr9wgIGNN2a7XwCgPl3fML17DXK1x8EzDneCdh261bkw==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/plugin-blit" "^0.10.2"
"@jimp/plugin-blur" "^0.10.2"
"@jimp/plugin-circle" "^0.10.2"
"@jimp/plugin-color" "^0.10.2"
"@jimp/plugin-contain" "^0.10.2"
"@jimp/plugin-cover" "^0.10.2"
"@jimp/plugin-crop" "^0.10.2"
"@jimp/plugin-displace" "^0.10.2"
"@jimp/plugin-dither" "^0.10.2"
"@jimp/plugin-fisheye" "^0.10.2"
"@jimp/plugin-flip" "^0.10.2"
"@jimp/plugin-gaussian" "^0.10.2"
"@jimp/plugin-invert" "^0.10.2"
"@jimp/plugin-mask" "^0.10.2"
"@jimp/plugin-normalize" "^0.10.2"
"@jimp/plugin-print" "^0.10.2"
"@jimp/plugin-resize" "^0.10.2"
"@jimp/plugin-rotate" "^0.10.2"
"@jimp/plugin-scale" "^0.10.2"
"@jimp/plugin-shadow" "^0.10.2"
"@jimp/plugin-threshold" "^0.10.2"
"@jimp/plugin-blit" "^0.10.3"
"@jimp/plugin-blur" "^0.10.3"
"@jimp/plugin-circle" "^0.10.3"
"@jimp/plugin-color" "^0.10.3"
"@jimp/plugin-contain" "^0.10.3"
"@jimp/plugin-cover" "^0.10.3"
"@jimp/plugin-crop" "^0.10.3"
"@jimp/plugin-displace" "^0.10.3"
"@jimp/plugin-dither" "^0.10.3"
"@jimp/plugin-fisheye" "^0.10.3"
"@jimp/plugin-flip" "^0.10.3"
"@jimp/plugin-gaussian" "^0.10.3"
"@jimp/plugin-invert" "^0.10.3"
"@jimp/plugin-mask" "^0.10.3"
"@jimp/plugin-normalize" "^0.10.3"
"@jimp/plugin-print" "^0.10.3"
"@jimp/plugin-resize" "^0.10.3"
"@jimp/plugin-rotate" "^0.10.3"
"@jimp/plugin-scale" "^0.10.3"
"@jimp/plugin-shadow" "^0.10.3"
"@jimp/plugin-threshold" "^0.10.3"
core-js "^3.4.1"
timm "^1.6.1"
"@jimp/png@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.10.2.tgz#4a37acfd444136040bb2dbab6f0375bda90285a6"
integrity sha512-3r5q9Ns3Gz8pcI8oBdGTY7d0TkkW4atZ12bknB1sABc3UYX69arqmTvrULMYhWf0M6n3tKHdnmdW2cTlFWIAbw==
"@jimp/png@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.10.3.tgz#5282cad239d02743137d88239e4cb1804ed877dd"
integrity sha512-YKqk/dkl+nGZxSYIDQrqhmaP8tC3IK8H7dFPnnzFVvbhDnyYunqBZZO3SaZUKTichClRw8k/CjBhbc+hifSGWg==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.10.2"
"@jimp/utils" "^0.10.3"
core-js "^3.4.1"
pngjs "^3.3.3"
"@jimp/tiff@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.10.2.tgz#7ad1f4aac4cd73d1dcf41c1897683e3e40d1a96e"
integrity sha512-uuJF6ZMXo0EDyooho9RhwAY9YGcgUju1mw53N9BtU7E9Y+AxKn7miaK2niROmN2/ufmLJO8vS9zjpgAxv+zgKQ==
"@jimp/tiff@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.10.3.tgz#6d143bbc42b40c9f618686a596311b35f7ff8502"
integrity sha512-7EsJzZ5Y/EtinkBGuwX3Bi4S+zgbKouxjt9c82VJTRJOQgLWsE/RHqcyRCOQBhHAZ9QexYmDz34medfLKdoX0g==
dependencies:
"@babel/runtime" "^7.7.2"
core-js "^3.4.1"
utif "^2.0.1"
"@jimp/types@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.10.2.tgz#dbd85802315dbc618088d9184f7b6d4b2b048ad1"
integrity sha512-XCgFhH8BR0ovxrEkDnKRXalEAUjo3vW9vwOFxfSrJR/YS/k0TsvYB6/+QAU/cGwcN8icmYdDyhq2yhJACAl13w==
"@jimp/types@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.10.3.tgz#9122e0a3c70129c7f26c05bbeae5030ed3a6fd5d"
integrity sha512-XGmBakiHZqseSWr/puGN+CHzx0IKBSpsKlmEmsNV96HKDiP6eu8NSnwdGCEq2mmIHe0JNcg1hqg59hpwtQ7Tiw==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/bmp" "^0.10.2"
"@jimp/gif" "^0.10.2"
"@jimp/jpeg" "^0.10.2"
"@jimp/png" "^0.10.2"
"@jimp/tiff" "^0.10.2"
"@jimp/bmp" "^0.10.3"
"@jimp/gif" "^0.10.3"
"@jimp/jpeg" "^0.10.3"
"@jimp/png" "^0.10.3"
"@jimp/tiff" "^0.10.3"
core-js "^3.4.1"
timm "^1.6.1"
"@jimp/utils@^0.10.2":
version "0.10.2"
resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.10.2.tgz#573fb05eb22715045effbb4642988231657fb4bb"
integrity sha512-B3fBgkE7t7S4X1RXKY5vfx+8QdUvN0AIbG2rM7csYTsudOczTtzimlP7XxunYtOwCYBLVswRWpqn8PZcRLWu2w==
"@jimp/utils@^0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.10.3.tgz#69209dd6c2d6fd956a0beb67a47c26cb6f52f3fe"
integrity sha512-VcSlQhkil4ReYmg1KkN+WqHyYfZ2XfZxDsKAHSfST1GEz/RQHxKZbX+KhFKtKflnL0F4e6DlNQj3vznMNXCR2w==
dependencies:
"@babel/runtime" "^7.7.2"
core-js "^3.4.1"
regenerator-runtime "^0.13.3"
"@material-ui/core@4.9.10":
version "4.9.10"
resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.10.tgz#53f1d18bd274c258698b6cfdab3c4bee0edf7892"
integrity sha512-CQuZU9Y10RkwSdxjn785kw2EPcXhv5GKauuVQufR9LlD37kjfn21Im1yvr6wsUzn81oLhEvVPz727UWC0gbqxg==
"@material-ui/core@4.9.12":
version "4.9.12"
resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.12.tgz#0156d87c8b5db5a8aad992d6883a081a32684e2e"
integrity sha512-JtRm1iNw3PRg+bzULS1uRKhdIJ2jhKO3/5ptO6kTADARsv5KmhzMbM+PYmVS09qm9Yu3ilwka4dYrtjqea53Lw==
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/react-transition-group" "^4.3.0"
"@material-ui/styles" "^4.9.10"
"@material-ui/system" "^4.9.10"
"@material-ui/types" "^5.0.1"
"@material-ui/utils" "^4.9.6"
"@material-ui/utils" "^4.9.12"
"@types/react-transition-group" "^4.2.0"
clsx "^1.0.4"
hoist-non-react-statics "^3.3.2"
@ -1717,6 +1718,16 @@
react-transition-group "^4.0.0"
rifm "^0.7.0"
"@material-ui/react-transition-group@^4.3.0":
version "4.3.0"
resolved "https://registry.yarnpkg.com/@material-ui/react-transition-group/-/react-transition-group-4.3.0.tgz#92529142addb5cc179dbf42d246c7e3fe4d6104b"
integrity sha512-CwQ0aXrlUynUTY6sh3UvKuvye1o92en20VGAs6TORnSxUYeRmkX8YeTUN3lAkGiBX1z222FxLFO36WWh6q73rQ==
dependencies:
"@babel/runtime" "^7.5.5"
dom-helpers "^5.0.1"
loose-envify "^1.4.0"
prop-types "^15.6.2"
"@material-ui/styles@^4.9.10":
version "4.9.10"
resolved "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.9.10.tgz#182ccdd0bc8525a459486499bbaebcd92b0db3ab"
@ -1753,6 +1764,15 @@
resolved "https://registry.yarnpkg.com/@material-ui/types/-/types-5.0.1.tgz#c4954063cdc196eb327ee62c041368b1aebb6d61"
integrity sha512-wURPSY7/3+MAtng3i26g+WKwwNE3HEeqa/trDBR5+zWKmcjO+u9t7Npu/J1r+3dmIa/OeziN9D/18IrBKvKffw==
"@material-ui/utils@^4.9.12":
version "4.9.12"
resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.9.12.tgz#0d639f1c1ed83fffb2ae10c21d15a938795d9e65"
integrity sha512-/0rgZPEOcZq5CFA4+4n6Q6zk7fi8skHhH2Bcra8R3epoJEYy5PL55LuMazPtPH1oKeRausDV/Omz4BbgFsn1HQ==
dependencies:
"@babel/runtime" "^7.4.4"
prop-types "^15.7.2"
react-is "^16.8.0"
"@material-ui/utils@^4.9.6":
version "4.9.6"
resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.9.6.tgz#5f1f9f6e4df9c8b6a263293b68c94834248ff157"
@ -1963,10 +1983,10 @@
dependencies:
"@babel/types" "^7.3.0"
"@types/chrome@^0.0.103":
version "0.0.103"
resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.103.tgz#604f3d94ab4465cc8cde302c4916f4955eb7e8b6"
integrity sha512-s8So1IG1fIu2dg2MRV3k6W5OjlVaJriNXIxIWDHi+Rdz5dLeuzPKcWzkVlcaVL4gONfn44JKC0RhW+P0UohLfg==
"@types/chrome@^0.0.104":
version "0.0.104"
resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.104.tgz#4dbb61b8e334fdcd23b8418de9f46d26668013c4"
integrity sha512-NDq+Vpphs5XT7IXrIHJcy27Rvf09Mes3XNsfpP2yOXUk6YiEU1QRcSLjj/A+y5jyq/kpUwC5shNET2jFeWAqEw==
dependencies:
"@types/filesystem" "*"
"@types/har-format" "*"
@ -2440,25 +2460,25 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
algoliasearch@4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.1.0.tgz#d422ac0d115497021a6c96f4b9747dbaa63f164a"
integrity sha512-0lzjvqQZkJYPuv7LyQauMIMCFFzJWfUf3m9KuHjmFubwbnTDa87KCMXKouMJ0kWXXt6nTLNt0+2YRREOWx2PHw==
algoliasearch@4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.2.0.tgz#dd81a1a0c57eb9f74af6db70b0c11f256692d1e6"
integrity sha512-CgbyDBGMSzNISBFezPt68xAseknork+wNe/Oour1Hluk4OwbtobysRawFf93ZbLSQw/KbeGlVmVAvujeVIVdnQ==
dependencies:
"@algolia/cache-browser-local-storage" "4.1.0"
"@algolia/cache-common" "4.1.0"
"@algolia/cache-in-memory" "4.1.0"
"@algolia/client-account" "4.1.0"
"@algolia/client-analytics" "4.1.0"
"@algolia/client-common" "4.1.0"
"@algolia/client-recommendation" "4.1.0"
"@algolia/client-search" "4.1.0"
"@algolia/logger-common" "4.1.0"
"@algolia/logger-console" "4.1.0"
"@algolia/requester-browser-xhr" "4.1.0"
"@algolia/requester-common" "4.1.0"
"@algolia/requester-node-http" "4.1.0"
"@algolia/transporter" "4.1.0"
"@algolia/cache-browser-local-storage" "4.2.0"
"@algolia/cache-common" "4.2.0"
"@algolia/cache-in-memory" "4.2.0"
"@algolia/client-account" "4.2.0"
"@algolia/client-analytics" "4.2.0"
"@algolia/client-common" "4.2.0"
"@algolia/client-recommendation" "4.2.0"
"@algolia/client-search" "4.2.0"
"@algolia/logger-common" "4.2.0"
"@algolia/logger-console" "4.2.0"
"@algolia/requester-browser-xhr" "4.2.0"
"@algolia/requester-common" "4.2.0"
"@algolia/requester-node-http" "4.2.0"
"@algolia/transporter" "4.2.0"
alphanum-sort@^1.0.0:
version "1.0.2"
@ -4412,10 +4432,10 @@ concat-stream@^1.5.0, concat-stream@^1.6.2:
readable-stream "^2.2.2"
typedarray "^0.0.6"
concurrently@5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.1.0.tgz#05523986ba7aaf4b58a49ddd658fab88fa783132"
integrity sha512-9ViZMu3OOCID3rBgU31mjBftro2chOop0G2u1olq1OuwRBVRw/GxHTg80TVJBUTJfoswMmEUeuOg1g1yu1X2dA==
concurrently@5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.2.0.tgz#ead55121d08a0fc817085584c123cedec2e08975"
integrity sha512-XxcDbQ4/43d6CxR7+iV8IZXhur4KbmEJk1CetVMUqCy34z9l0DkszbY+/9wvmSnToTej0SYomc2WSRH+L0zVJw==
dependencies:
chalk "^2.4.2"
date-fns "^2.0.1"
@ -5428,10 +5448,10 @@ electron-builder@22.5.1:
update-notifier "^4.1.0"
yargs "^15.3.1"
electron-context-menu@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/electron-context-menu/-/electron-context-menu-1.0.0.tgz#ddf01999e51506dabd84ae3c7f0dab7dea6ef4fe"
integrity sha512-Vg20fMnUv/DQjcTg1F2pFVsufE+t5RhRDLbxMaPG5x7KOcevT7iWnNrenGPgAdPzezVMf/S2blin8jhUxJilcA==
electron-context-menu@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/electron-context-menu/-/electron-context-menu-2.0.0.tgz#ea4d389b950425fe689e169eae9085187fe1f1b6"
integrity sha512-z6OQlUDgcu6wQ34JHEF1Y6QNXkEzOuEXdM4Tew853/4DsaCthKBbAo2BH+4y+49f89WjG9WOUTwGhEO4tY5mUw==
dependencies:
cli-truncate "^2.0.0"
electron-dl "^3.0.0"
@ -8268,15 +8288,15 @@ jest@24.9.0:
import-local "^2.0.0"
jest-cli "^24.9.0"
jimp@0.10.2:
version "0.10.2"
resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.10.2.tgz#e305dc095b04f76800f5ed776754968c127f8bf6"
integrity sha512-dt6n3P0LZyoqAiIUur+gJEKS55sCUUo19cKx8LTSZRqGizF4JN0jfRAnfnV4nxF+sINP2FN6SOi82gHcAMm1nQ==
jimp@0.10.3:
version "0.10.3"
resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.10.3.tgz#285027b49eee3418259a8e1e9a20dd078cf8b7b1"
integrity sha512-meVWmDMtyUG5uYjFkmzu0zBgnCvvxwWNi27c4cg55vWNVC9ES4Lcwb+ogx+uBBQE3Q+dLKjXaLl0JVW+nUNwbQ==
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/custom" "^0.10.2"
"@jimp/plugins" "^0.10.2"
"@jimp/types" "^0.10.2"
"@jimp/custom" "^0.10.3"
"@jimp/plugins" "^0.10.3"
"@jimp/types" "^0.10.3"
core-js "^3.4.1"
regenerator-runtime "^0.13.3"
@ -8956,10 +8976,10 @@ memory-fs@^0.5.0:
errno "^0.1.3"
readable-stream "^2.0.1"
menubar@8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/menubar/-/menubar-8.0.1.tgz#bbc945df6c8540772f656601b1f292be28cb6025"
integrity sha512-TbQMIhc+3g97RU2pd4LeXCA6oZKLDz9fxLu5d+iWugwT5AqZQudWEghMf3A/jL01a/37nuQUeiEnK3rQ2KN57A==
menubar@8.0.2:
version "8.0.2"
resolved "https://registry.yarnpkg.com/menubar/-/menubar-8.0.2.tgz#551b94febc01bf5e97bf83699e7c4907fe55d693"
integrity sha512-yGJMHddKCDZHLkLaUNms8AEfMxYucQ0xkYpQqbQaO3P4snjPEfyqBKu8J/jBA0t3Z+KjkLP3isMVtBUhFWEnhw==
dependencies:
electron-positioner "^4.1.0"
@ -11734,6 +11754,13 @@ rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1:
dependencies:
glob "^7.1.3"
rimraf@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
dependencies:
glob "^7.1.3"
ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
@ -12882,12 +12909,12 @@ tldts-experimental@^5.6.21:
dependencies:
tldts-core "^5.6.23"
tmp@0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877"
integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==
tmp@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.0.tgz#fdc6a78d2a77bf7e426ca476d8a4f82eefcf648c"
integrity sha512-spsb5g6EiPmteS5TcOAECU3rltCMDMp4VMU2Sb0+WttN4qGobEkMAd+dkr1cubscN08JGNDX765dPbGImbG7MQ==
dependencies:
rimraf "^2.6.3"
rimraf "^3.0.0"
tmp@^0.0.33:
version "0.0.33"