diff options
author | mat <github@matdoes.dev> | 2022-12-15 19:50:18 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-12-15 19:50:18 -0600 |
commit | 327d2a391cd442024ac039253c7a696cc8a40b45 (patch) | |
tree | aed83197beb9c65a6b0d750bd7c2de0b33cc2d2e | |
parent | 6186f265ea0f93613554d9bd43ede4d16b6fb13e (diff) | |
download | skyblock-stats-327d2a391cd442024ac039253c7a696cc8a40b45.tar.gz skyblock-stats-327d2a391cd442024ac039253c7a696cc8a40b45.tar.bz2 skyblock-stats-327d2a391cd442024ac039253c7a696cc8a40b45.zip |
replace squooshlib with sharp
75 files changed, 263 insertions, 36 deletions
diff --git a/package.json b/package.json index f5b4e1b..6df3cce 100644 --- a/package.json +++ b/package.json @@ -33,8 +33,8 @@ "@sveltejs/kit": "^1.0.0", "cookie": "^0.5.0", "dotenv": "^16.0.3", + "sharp": "^0.31.2", "skyblock-assets": "^2.0.11", - "squoosh": "^0.0.0", "svelte": "^3.55.0", "svelte-preprocess": "^5.0.0", "typed-hypixel-api": "^1.8.0" diff --git a/scripts/updateBackgrounds.js b/scripts/updateBackgrounds.js index 0c3e214..a5467fa 100644 --- a/scripts/updateBackgrounds.js +++ b/scripts/updateBackgrounds.js @@ -1,9 +1,7 @@ import { promises as fs } from 'fs' -import { ImagePool } from '@squoosh/lib' +import sharp from 'sharp' import { cpus } from 'os' -const imagePool = new ImagePool(cpus().length) - // read the file names in the backgrounds folder const backgrounds = await fs.readdir('static/backgrounds') // sort by natural order @@ -18,25 +16,13 @@ await fs.writeFile( // resize the backgrounds async function resizeBackground(name) { - const file = await fs.readFile(`static/backgrounds/${name}`) - const image = imagePool.ingestImage(file) - - const preprocessOptions = { - resize: { - width: 512, - }, - } - await image.preprocess(preprocessOptions) - - await image.encode({ - mozjpeg: { - quality: 30, - }, - }) - - const rawEncodedImage = await image.encodedWith.mozjpeg + const rawEncodedImage = await sharp(`static/backgrounds/${name}`) + .rotate() + .resize(512) + .jpeg({ mozjpeg: true, quality: 30 }) + .toBuffer() - await fs.writeFile(`static/backgrounds-small/${name}`, rawEncodedImage.binary) + await fs.writeFile(`static/backgrounds-small/${name}`, rawEncodedImage) } try { @@ -47,4 +33,3 @@ try { await fs.mkdir('static/backgrounds-small', { recursive: true }) await Promise.all(backgrounds.map(b => resizeBackground(b))) -await imagePool.close() diff --git a/static/backgrounds-small/1.jpg b/static/backgrounds-small/1.jpg Binary files differindex 2410a67..ae221f0 100644 --- a/static/backgrounds-small/1.jpg +++ b/static/backgrounds-small/1.jpg diff --git a/static/backgrounds-small/10.jpg b/static/backgrounds-small/10.jpg Binary files differindex c40c088..8e4b686 100644 --- a/static/backgrounds-small/10.jpg +++ b/static/backgrounds-small/10.jpg diff --git a/static/backgrounds-small/11.jpg b/static/backgrounds-small/11.jpg Binary files differindex 920853d..ad02292 100644 --- a/static/backgrounds-small/11.jpg +++ b/static/backgrounds-small/11.jpg diff --git a/static/backgrounds-small/12.jpg b/static/backgrounds-small/12.jpg Binary files differindex 793d0a6..a1af189 100644 --- a/static/backgrounds-small/12.jpg +++ b/static/backgrounds-small/12.jpg diff --git a/static/backgrounds-small/13.jpg b/static/backgrounds-small/13.jpg Binary files differindex eb18141..3f781a9 100644 --- a/static/backgrounds-small/13.jpg +++ b/static/backgrounds-small/13.jpg diff --git a/static/backgrounds-small/14.jpg b/static/backgrounds-small/14.jpg Binary files differindex 716d0ea..b8a5bb3 100644 --- a/static/backgrounds-small/14.jpg +++ b/static/backgrounds-small/14.jpg diff --git a/static/backgrounds-small/15.jpg b/static/backgrounds-small/15.jpg Binary files differindex df343b0..cdf42e1 100644 --- a/static/backgrounds-small/15.jpg +++ b/static/backgrounds-small/15.jpg diff --git a/static/backgrounds-small/16.jpg b/static/backgrounds-small/16.jpg Binary files differindex 40a619b..b5cb5dd 100644 --- a/static/backgrounds-small/16.jpg +++ b/static/backgrounds-small/16.jpg diff --git a/static/backgrounds-small/17.jpg b/static/backgrounds-small/17.jpg Binary files differindex 4e389a6..4b1bb24 100644 --- a/static/backgrounds-small/17.jpg +++ b/static/backgrounds-small/17.jpg diff --git a/static/backgrounds-small/18.jpg b/static/backgrounds-small/18.jpg Binary files differindex d188195..4fe0a37 100644 --- a/static/backgrounds-small/18.jpg +++ b/static/backgrounds-small/18.jpg diff --git a/static/backgrounds-small/19.jpg b/static/backgrounds-small/19.jpg Binary files differindex 9c058d2..01bfffb 100644 --- a/static/backgrounds-small/19.jpg +++ b/static/backgrounds-small/19.jpg diff --git a/static/backgrounds-small/2.jpg b/static/backgrounds-small/2.jpg Binary files differindex b3c9bf8..4465da4 100644 --- a/static/backgrounds-small/2.jpg +++ b/static/backgrounds-small/2.jpg diff --git a/static/backgrounds-small/20.jpg b/static/backgrounds-small/20.jpg Binary files differindex 5e597b0..ecde01f 100644 --- a/static/backgrounds-small/20.jpg +++ b/static/backgrounds-small/20.jpg diff --git a/static/backgrounds-small/21.jpg b/static/backgrounds-small/21.jpg Binary files differindex 09458c0..0b9a5b9 100644 --- a/static/backgrounds-small/21.jpg +++ b/static/backgrounds-small/21.jpg diff --git a/static/backgrounds-small/22.jpg b/static/backgrounds-small/22.jpg Binary files differindex fd9a919..1dd098e 100644 --- a/static/backgrounds-small/22.jpg +++ b/static/backgrounds-small/22.jpg diff --git a/static/backgrounds-small/23.jpg b/static/backgrounds-small/23.jpg Binary files differindex e8fd99e..740a749 100644 --- a/static/backgrounds-small/23.jpg +++ b/static/backgrounds-small/23.jpg diff --git a/static/backgrounds-small/24.jpg b/static/backgrounds-small/24.jpg Binary files differindex 3229560..cfe24ed 100644 --- a/static/backgrounds-small/24.jpg +++ b/static/backgrounds-small/24.jpg diff --git a/static/backgrounds-small/25.jpg b/static/backgrounds-small/25.jpg Binary files differindex f1d0ddd..196dd66 100644 --- a/static/backgrounds-small/25.jpg +++ b/static/backgrounds-small/25.jpg diff --git a/static/backgrounds-small/26.jpg b/static/backgrounds-small/26.jpg Binary files differindex 835af05..f54e20a 100644 --- a/static/backgrounds-small/26.jpg +++ b/static/backgrounds-small/26.jpg diff --git a/static/backgrounds-small/27.jpg b/static/backgrounds-small/27.jpg Binary files differindex 53852a1..a493cf4 100644 --- a/static/backgrounds-small/27.jpg +++ b/static/backgrounds-small/27.jpg diff --git a/static/backgrounds-small/28.jpg b/static/backgrounds-small/28.jpg Binary files differindex e223845..144b386 100644 --- a/static/backgrounds-small/28.jpg +++ b/static/backgrounds-small/28.jpg diff --git a/static/backgrounds-small/29.jpg b/static/backgrounds-small/29.jpg Binary files differindex 547aab1..e92cab3 100644 --- a/static/backgrounds-small/29.jpg +++ b/static/backgrounds-small/29.jpg diff --git a/static/backgrounds-small/3.jpg b/static/backgrounds-small/3.jpg Binary files differindex a228f02..f0203db 100644 --- a/static/backgrounds-small/3.jpg +++ b/static/backgrounds-small/3.jpg diff --git a/static/backgrounds-small/30.jpg b/static/backgrounds-small/30.jpg Binary files differindex daa36ea..9aad91c 100644 --- a/static/backgrounds-small/30.jpg +++ b/static/backgrounds-small/30.jpg diff --git a/static/backgrounds-small/31.jpg b/static/backgrounds-small/31.jpg Binary files differindex 5ac57ba..4044d19 100644 --- a/static/backgrounds-small/31.jpg +++ b/static/backgrounds-small/31.jpg diff --git a/static/backgrounds-small/32.jpg b/static/backgrounds-small/32.jpg Binary files differindex 88f195c..9f7fb50 100644 --- a/static/backgrounds-small/32.jpg +++ b/static/backgrounds-small/32.jpg diff --git a/static/backgrounds-small/33.jpg b/static/backgrounds-small/33.jpg Binary files differindex cb0aafb..5712cd7 100644 --- a/static/backgrounds-small/33.jpg +++ b/static/backgrounds-small/33.jpg diff --git a/static/backgrounds-small/34.jpg b/static/backgrounds-small/34.jpg Binary files differindex e89ab46..cedf2c9 100644 --- a/static/backgrounds-small/34.jpg +++ b/static/backgrounds-small/34.jpg diff --git a/static/backgrounds-small/35.jpg b/static/backgrounds-small/35.jpg Binary files differindex 151bd73..41fe101 100644 --- a/static/backgrounds-small/35.jpg +++ b/static/backgrounds-small/35.jpg diff --git a/static/backgrounds-small/36.jpg b/static/backgrounds-small/36.jpg Binary files differindex bf81cd6..46696d2 100644 --- a/static/backgrounds-small/36.jpg +++ b/static/backgrounds-small/36.jpg diff --git a/static/backgrounds-small/37.jpg b/static/backgrounds-small/37.jpg Binary files differindex 87fb966..470606d 100644 --- a/static/backgrounds-small/37.jpg +++ b/static/backgrounds-small/37.jpg diff --git a/static/backgrounds-small/38.jpg b/static/backgrounds-small/38.jpg Binary files differindex 536c385..f1ecda5 100644 --- a/static/backgrounds-small/38.jpg +++ b/static/backgrounds-small/38.jpg diff --git a/static/backgrounds-small/39.jpg b/static/backgrounds-small/39.jpg Binary files differindex 4c6c868..3da27a7 100644 --- a/static/backgrounds-small/39.jpg +++ b/static/backgrounds-small/39.jpg diff --git a/static/backgrounds-small/4.jpg b/static/backgrounds-small/4.jpg Binary files differindex b2fb421..fc2f71c 100644 --- a/static/backgrounds-small/4.jpg +++ b/static/backgrounds-small/4.jpg diff --git a/static/backgrounds-small/40.jpg b/static/backgrounds-small/40.jpg Binary files differindex aabc1ba..f2475d7 100644 --- a/static/backgrounds-small/40.jpg +++ b/static/backgrounds-small/40.jpg diff --git a/static/backgrounds-small/41.jpg b/static/backgrounds-small/41.jpg Binary files differindex c8a3394..7c4a550 100644 --- a/static/backgrounds-small/41.jpg +++ b/static/backgrounds-small/41.jpg diff --git a/static/backgrounds-small/42.jpg b/static/backgrounds-small/42.jpg Binary files differindex c927cd9..1bc7d2a 100644 --- a/static/backgrounds-small/42.jpg +++ b/static/backgrounds-small/42.jpg diff --git a/static/backgrounds-small/43.jpg b/static/backgrounds-small/43.jpg Binary files differindex 140ca7b..6ffb28a 100644 --- a/static/backgrounds-small/43.jpg +++ b/static/backgrounds-small/43.jpg diff --git a/static/backgrounds-small/44.jpg b/static/backgrounds-small/44.jpg Binary files differindex c430d09..f65ae45 100644 --- a/static/backgrounds-small/44.jpg +++ b/static/backgrounds-small/44.jpg diff --git a/static/backgrounds-small/45.jpg b/static/backgrounds-small/45.jpg Binary files differindex a763f0f..ebd0638 100644 --- a/static/backgrounds-small/45.jpg +++ b/static/backgrounds-small/45.jpg diff --git a/static/backgrounds-small/46.jpg b/static/backgrounds-small/46.jpg Binary files differindex bab2800..fcb104d 100644 --- a/static/backgrounds-small/46.jpg +++ b/static/backgrounds-small/46.jpg diff --git a/static/backgrounds-small/47.jpg b/static/backgrounds-small/47.jpg Binary files differindex e2f4a8b..1a82d3f 100644 --- a/static/backgrounds-small/47.jpg +++ b/static/backgrounds-small/47.jpg diff --git a/static/backgrounds-small/48.jpg b/static/backgrounds-small/48.jpg Binary files differindex 92d844c..5e56133 100644 --- a/static/backgrounds-small/48.jpg +++ b/static/backgrounds-small/48.jpg diff --git a/static/backgrounds-small/49.jpg b/static/backgrounds-small/49.jpg Binary files differindex d8de72a..5598424 100644 --- a/static/backgrounds-small/49.jpg +++ b/static/backgrounds-small/49.jpg diff --git a/static/backgrounds-small/5.jpg b/static/backgrounds-small/5.jpg Binary files differindex 301381b..9130c6b 100644 --- a/static/backgrounds-small/5.jpg +++ b/static/backgrounds-small/5.jpg diff --git a/static/backgrounds-small/50.jpg b/static/backgrounds-small/50.jpg Binary files differindex b372e03..273fb45 100644 --- a/static/backgrounds-small/50.jpg +++ b/static/backgrounds-small/50.jpg diff --git a/static/backgrounds-small/51.jpg b/static/backgrounds-small/51.jpg Binary files differindex 1e69780..12795eb 100644 --- a/static/backgrounds-small/51.jpg +++ b/static/backgrounds-small/51.jpg diff --git a/static/backgrounds-small/52.jpg b/static/backgrounds-small/52.jpg Binary files differindex 09bf3de..c545967 100644 --- a/static/backgrounds-small/52.jpg +++ b/static/backgrounds-small/52.jpg diff --git a/static/backgrounds-small/53.jpg b/static/backgrounds-small/53.jpg Binary files differindex 0b80ef4..b686e35 100644 --- a/static/backgrounds-small/53.jpg +++ b/static/backgrounds-small/53.jpg diff --git a/static/backgrounds-small/54.jpg b/static/backgrounds-small/54.jpg Binary files differindex 062cb07..1ed9594 100644 --- a/static/backgrounds-small/54.jpg +++ b/static/backgrounds-small/54.jpg diff --git a/static/backgrounds-small/55.jpg b/static/backgrounds-small/55.jpg Binary files differindex 67e8fe0..175552e 100644 --- a/static/backgrounds-small/55.jpg +++ b/static/backgrounds-small/55.jpg diff --git a/static/backgrounds-small/56.jpg b/static/backgrounds-small/56.jpg Binary files differindex 4d99ef4..963d885 100644 --- a/static/backgrounds-small/56.jpg +++ b/static/backgrounds-small/56.jpg diff --git a/static/backgrounds-small/57.jpg b/static/backgrounds-small/57.jpg Binary files differindex 62916e3..111434b 100644 --- a/static/backgrounds-small/57.jpg +++ b/static/backgrounds-small/57.jpg diff --git a/static/backgrounds-small/58.jpg b/static/backgrounds-small/58.jpg Binary files differindex c2b6208..147dc22 100644 --- a/static/backgrounds-small/58.jpg +++ b/static/backgrounds-small/58.jpg diff --git a/static/backgrounds-small/59.jpg b/static/backgrounds-small/59.jpg Binary files differindex b58fdaf..e09c91f 100644 --- a/static/backgrounds-small/59.jpg +++ b/static/backgrounds-small/59.jpg diff --git a/static/backgrounds-small/6.jpg b/static/backgrounds-small/6.jpg Binary files differindex 9b943eb..3330148 100644 --- a/static/backgrounds-small/6.jpg +++ b/static/backgrounds-small/6.jpg diff --git a/static/backgrounds-small/60.jpg b/static/backgrounds-small/60.jpg Binary files differindex 31a96e7..da61648 100644 --- a/static/backgrounds-small/60.jpg +++ b/static/backgrounds-small/60.jpg diff --git a/static/backgrounds-small/61.jpg b/static/backgrounds-small/61.jpg Binary files differindex e9f98a1..7dec548 100644 --- a/static/backgrounds-small/61.jpg +++ b/static/backgrounds-small/61.jpg diff --git a/static/backgrounds-small/62.jpg b/static/backgrounds-small/62.jpg Binary files differindex 3adfc7b..1d60a75 100644 --- a/static/backgrounds-small/62.jpg +++ b/static/backgrounds-small/62.jpg diff --git a/static/backgrounds-small/63.jpg b/static/backgrounds-small/63.jpg Binary files differindex cb0b89d..c54e0d7 100644 --- a/static/backgrounds-small/63.jpg +++ b/static/backgrounds-small/63.jpg diff --git a/static/backgrounds-small/64.jpg b/static/backgrounds-small/64.jpg Binary files differindex a46b17a..3810e4c 100644 --- a/static/backgrounds-small/64.jpg +++ b/static/backgrounds-small/64.jpg diff --git a/static/backgrounds-small/65.jpg b/static/backgrounds-small/65.jpg Binary files differindex 2e754d6..8ccdfa8 100644 --- a/static/backgrounds-small/65.jpg +++ b/static/backgrounds-small/65.jpg diff --git a/static/backgrounds-small/66.jpg b/static/backgrounds-small/66.jpg Binary files differindex 8e346ae..f1d83a7 100644 --- a/static/backgrounds-small/66.jpg +++ b/static/backgrounds-small/66.jpg diff --git a/static/backgrounds-small/67.jpg b/static/backgrounds-small/67.jpg Binary files differindex e47475d..19d30ea 100644 --- a/static/backgrounds-small/67.jpg +++ b/static/backgrounds-small/67.jpg diff --git a/static/backgrounds-small/68.jpg b/static/backgrounds-small/68.jpg Binary files differindex e845ca1..c3cfd10 100644 --- a/static/backgrounds-small/68.jpg +++ b/static/backgrounds-small/68.jpg diff --git a/static/backgrounds-small/69.jpg b/static/backgrounds-small/69.jpg Binary files differindex b260e3b..8097ec7 100644 --- a/static/backgrounds-small/69.jpg +++ b/static/backgrounds-small/69.jpg diff --git a/static/backgrounds-small/7.jpg b/static/backgrounds-small/7.jpg Binary files differindex 5e6611f..9848668 100644 --- a/static/backgrounds-small/7.jpg +++ b/static/backgrounds-small/7.jpg diff --git a/static/backgrounds-small/70.jpg b/static/backgrounds-small/70.jpg Binary files differindex 009e19a..630d8a4 100644 --- a/static/backgrounds-small/70.jpg +++ b/static/backgrounds-small/70.jpg diff --git a/static/backgrounds-small/71.jpg b/static/backgrounds-small/71.jpg Binary files differindex 99fb0fd..9d139df 100644 --- a/static/backgrounds-small/71.jpg +++ b/static/backgrounds-small/71.jpg diff --git a/static/backgrounds-small/8.jpg b/static/backgrounds-small/8.jpg Binary files differindex 101ffa9..1a7f825 100644 --- a/static/backgrounds-small/8.jpg +++ b/static/backgrounds-small/8.jpg diff --git a/static/backgrounds-small/9.jpg b/static/backgrounds-small/9.jpg Binary files differindex 583ae62..ab3f17a 100644 --- a/static/backgrounds-small/9.jpg +++ b/static/backgrounds-small/9.jpg diff --git a/vite.config.js.timestamp-1671151290985.mjs b/vite.config.js.timestamp-1671151290985.mjs new file mode 100644 index 0000000..8e11286 --- /dev/null +++ b/vite.config.js.timestamp-1671151290985.mjs @@ -0,0 +1,24 @@ +// vite.config.js +import { sveltekit } from "file:///C:/Users/mat/Documents/GitHub/skyblock-stats-svelte/node_modules/@sveltejs/kit/src/exports/vite/index.js"; +var config = { + plugins: [sveltekit()], + build: { + rollupOptions: { + output: { + manualChunks: void 0 + } + } + }, + server: process.env.REPL_ID || process.env.GITPOD_WORKSPACE_ID ? { + hmr: process.env.GITPOD_WORKSPACE_URL ? { + host: process.env.GITPOD_WORKSPACE_URL.replace("https://", "3000-"), + protocol: "wss", + clientPort: 443 + } : true + } : {} +}; +var vite_config_default = config; +export { + vite_config_default as default +}; +//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsidml0ZS5jb25maWcuanMiXSwKICAic291cmNlc0NvbnRlbnQiOiBbImNvbnN0IF9fdml0ZV9pbmplY3RlZF9vcmlnaW5hbF9kaXJuYW1lID0gXCJDOlxcXFxVc2Vyc1xcXFxtYXRcXFxcRG9jdW1lbnRzXFxcXEdpdEh1YlxcXFxza3libG9jay1zdGF0cy1zdmVsdGVcIjtjb25zdCBfX3ZpdGVfaW5qZWN0ZWRfb3JpZ2luYWxfZmlsZW5hbWUgPSBcIkM6XFxcXFVzZXJzXFxcXG1hdFxcXFxEb2N1bWVudHNcXFxcR2l0SHViXFxcXHNreWJsb2NrLXN0YXRzLXN2ZWx0ZVxcXFx2aXRlLmNvbmZpZy5qc1wiO2NvbnN0IF9fdml0ZV9pbmplY3RlZF9vcmlnaW5hbF9pbXBvcnRfbWV0YV91cmwgPSBcImZpbGU6Ly8vQzovVXNlcnMvbWF0L0RvY3VtZW50cy9HaXRIdWIvc2t5YmxvY2stc3RhdHMtc3ZlbHRlL3ZpdGUuY29uZmlnLmpzXCI7aW1wb3J0IHsgc3ZlbHRla2l0IH0gZnJvbSAnQHN2ZWx0ZWpzL2tpdC92aXRlJ1xyXG5cclxuLyoqIEB0eXBlIHtpbXBvcnQoJ3ZpdGUnKS5Vc2VyQ29uZmlnfSAqL1xyXG5jb25zdCBjb25maWcgPSB7XHJcblx0cGx1Z2luczogW3N2ZWx0ZWtpdCgpXSxcclxuXHRidWlsZDoge1xyXG5cdFx0cm9sbHVwT3B0aW9uczoge1xyXG5cdFx0XHRvdXRwdXQ6IHtcclxuXHRcdFx0XHRtYW51YWxDaHVua3M6IHVuZGVmaW5lZCxcclxuXHRcdFx0fSxcclxuXHRcdH0sXHJcblx0fSxcclxuXHQvLyBpZiB0aGUgdXNlciBpcyBvbiByZXBsaXQgb3IgZ2l0cG9kLCB1c2UgYSBzZWN1cmUgd2Vic29ja2V0XHJcblx0c2VydmVyOlxyXG5cdFx0cHJvY2Vzcy5lbnYuUkVQTF9JRCB8fCBwcm9jZXNzLmVudi5HSVRQT0RfV09SS1NQQUNFX0lEXHJcblx0XHRcdD8ge1xyXG5cdFx0XHRcdGhtcjogcHJvY2Vzcy5lbnYuR0lUUE9EX1dPUktTUEFDRV9VUkxcclxuXHRcdFx0XHRcdD8ge1xyXG5cdFx0XHRcdFx0XHRob3N0OiBwcm9jZXNzLmVudi5HSVRQT0RfV09SS1NQQUNFX1VSTC5yZXBsYWNlKCdodHRwczovLycsICczMDAwLScpLFxyXG5cdFx0XHRcdFx0XHRwcm90b2NvbDogXCJ3c3NcIixcclxuXHRcdFx0XHRcdFx0Y2xpZW50UG9ydDogNDQzXHJcblx0XHRcdFx0XHR9XHJcblx0XHRcdFx0XHQ6IHRydWVcclxuXHRcdFx0fVxyXG5cdFx0XHQ6IHt9LFxyXG59XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjb25maWciXSwKICAibWFwcGluZ3MiOiAiO0FBQXVWLFNBQVMsaUJBQWlCO0FBR2pYLElBQU0sU0FBUztBQUFBLEVBQ2QsU0FBUyxDQUFDLFVBQVUsQ0FBQztBQUFBLEVBQ3JCLE9BQU87QUFBQSxJQUNOLGVBQWU7QUFBQSxNQUNkLFFBQVE7QUFBQSxRQUNQLGNBQWM7QUFBQSxNQUNmO0FBQUEsSUFDRDtBQUFBLEVBQ0Q7QUFBQSxFQUVBLFFBQ0MsUUFBUSxJQUFJLFdBQVcsUUFBUSxJQUFJLHNCQUNoQztBQUFBLElBQ0QsS0FBSyxRQUFRLElBQUksdUJBQ2Q7QUFBQSxNQUNELE1BQU0sUUFBUSxJQUFJLHFCQUFxQixRQUFRLFlBQVksT0FBTztBQUFBLE1BQ2xFLFVBQVU7QUFBQSxNQUNWLFlBQVk7QUFBQSxJQUNiLElBQ0U7QUFBQSxFQUNKLElBQ0UsQ0FBQztBQUNOO0FBRUEsSUFBTyxzQkFBUTsiLAogICJuYW1lcyI6IFtdCn0K @@ -580,6 +580,11 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + binary-extensions@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" @@ -592,6 +597,15 @@ bindings@^1.4.0: dependencies: file-uri-to-path "1.0.0" +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" @@ -629,6 +643,14 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + builtin-modules@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" @@ -677,6 +699,11 @@ chokidar@^3.4.1: optionalDependencies: fsevents "~2.3.2" +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + chownr@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" @@ -696,16 +723,32 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@~1.1.4: +color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-string@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + color-support@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== +color@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" + integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== + dependencies: + color-convert "^2.0.1" + color-string "^1.9.0" + colorette@^2.0.16: version "2.0.19" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" @@ -783,6 +826,18 @@ debug@4, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: dependencies: ms "2.1.2" +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" @@ -803,7 +858,7 @@ detect-indent@^6.0.0, detect-indent@^6.1.0: resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== -detect-libc@^2.0.0: +detect-libc@^2.0.0, detect-libc@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== @@ -887,6 +942,13 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + entities@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" @@ -1066,6 +1128,11 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== +expand-template@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" + integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -1146,6 +1213,11 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + fs-extra@^10.0.1: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" @@ -1192,6 +1264,11 @@ gauge@^3.0.0: strip-ansi "^6.0.1" wide-align "^1.1.2" +github-from-package@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== + glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -1311,6 +1388,11 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + ignore@^5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c" @@ -1342,11 +1424,21 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -1538,6 +1630,11 @@ mime@^3.0.0: resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + min-indent@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" @@ -1557,7 +1654,7 @@ minimatch@^5.0.1: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.0, minimist@^1.2.6: +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: version "1.2.7" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== @@ -1584,6 +1681,11 @@ minizlib@^2.1.1: minipass "^3.0.0" yallist "^4.0.0" +mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + mkdirp@^0.5.1: version "0.5.6" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" @@ -1616,6 +1718,11 @@ nanoid@^3.3.4: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== +napi-build-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" + integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + natural-compare-lite@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" @@ -1634,6 +1741,18 @@ no-case@^3.0.4: lower-case "^2.0.2" tslib "^2.0.3" +node-abi@^3.3.0: + version "3.30.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.30.0.tgz#d84687ad5d24ca81cdfa912a36f2c5c19b137359" + integrity sha512-qWO5l3SCqbwQavymOmtTVuCWZE23++S+rxyoHjXqUmPyzRcaoI4lA2gO55/drddGnedAyjA7sk76SfQ5lfUMnw== + dependencies: + semver "^7.3.5" + +node-addon-api@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.0.0.tgz#7d7e6f9ef89043befdb20c1989c905ebde18c501" + integrity sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA== + node-fetch@^2.6.7: version "2.6.7" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" @@ -1688,7 +1807,7 @@ object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -once@^1.3.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== @@ -1793,6 +1912,24 @@ postcss@^8.4.20: picocolors "^1.0.0" source-map-js "^1.0.2" +prebuild-install@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" + integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== + dependencies: + detect-libc "^2.0.0" + expand-template "^2.0.3" + github-from-package "0.0.0" + minimist "^1.2.3" + mkdirp-classic "^0.5.3" + napi-build-utils "^1.0.1" + node-abi "^3.3.0" + pump "^3.0.0" + rc "^1.2.7" + simple-get "^4.0.0" + tar-fs "^2.0.0" + tunnel-agent "^0.6.0" + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -1808,6 +1945,14 @@ prettier@^2.8.1: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc" integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg== +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + punycode@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" @@ -1818,7 +1963,17 @@ queue-microtask@^1.2.2: resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -readable-stream@^3.6.0: +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== @@ -1903,7 +2058,7 @@ sade@^1.7.4, sade@^1.8.1: dependencies: mri "^1.1.0" -safe-buffer@~5.2.0: +safe-buffer@^5.0.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -1923,7 +2078,7 @@ semver@^6.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.5, semver@^7.3.7: +semver@^7.3.5, semver@^7.3.7, semver@^7.3.8: version "7.3.8" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== @@ -1940,6 +2095,20 @@ set-cookie-parser@^2.5.1: resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.5.1.tgz#ddd3e9a566b0e8e0862aca974a6ac0e01349430b" integrity sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ== +sharp@^0.31.2: + version "0.31.2" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.31.2.tgz#a8411c80512027f5a452b76d599268760c4e5dfa" + integrity sha512-DUdNVEXgS5A97cTagSLIIp8dUZ/lZtk78iNVZgHdHbx1qnQR7JAHY0BnXnwwH39Iw+VKhO08CTYhIg0p98vQ5Q== + dependencies: + color "^4.2.3" + detect-libc "^2.0.1" + node-addon-api "^5.0.0" + prebuild-install "^7.1.1" + semver "^7.3.8" + simple-get "^4.0.1" + tar-fs "^2.1.1" + tunnel-agent "^0.6.0" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -1957,6 +2126,27 @@ signal-exit@^3.0.0: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^4.0.0, simple-get@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" + integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== + dependencies: + decompress-response "^6.0.0" + once "^1.3.1" + simple-concat "^1.0.0" + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + sirv@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.2.tgz#128b9a628d77568139cff85703ad5497c46a4760" @@ -2009,11 +2199,6 @@ sourcemap-codec@^1.3.0, sourcemap-codec@^1.4.8: resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== -squoosh@^0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/squoosh/-/squoosh-0.0.0.tgz#d2d909442db80019a3e5e5c77a56e0dff3719f34" - integrity sha512-KWvhxCF+l5UpV1oyPSZAzscR/skAvlFvcbz3G6Jxp3uNpXzcCLspqApukwFRKbkk4Xpg538rL9Zt/nWTFfP/zw== - streamsearch@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" @@ -2054,6 +2239,11 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -2114,6 +2304,27 @@ svelte@^3.55.0: resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.55.0.tgz#29cb958750a23e751309a6535ccd811fcabc9038" integrity sha512-uGu2FVMlOuey4JoKHKrpZFkoYyj0VLjJdz47zX5+gVK5odxHM40RVhar9/iK2YFRVxvfg9FkhfVlR0sjeIrOiA== +tar-fs@^2.0.0, tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + tar@^6.1.11: version "6.1.13" resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b" @@ -2183,6 +2394,13 @@ tsutils@^3.21.0: dependencies: tslib "^1.8.1" +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" |