diff --git a/.eslintrc.js b/.eslintrc.js index f2a6c09586..1aff34bd25 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -197,8 +197,8 @@ module.exports = { // Packages that have switched to ESM sources: 'packages/@uppy/audio/src/**/*.js', - 'packages/@uppy/aws-s3/src/**/*.js', 'packages/@uppy/aws-s3-multipart/src/**/*.js', + 'packages/@uppy/aws-s3/src/**/*.js', 'packages/@uppy/box/src/**/*.js', 'packages/@uppy/companion-client/src/**/*.js', 'packages/@uppy/compressor/src/**/*.js', @@ -221,16 +221,17 @@ module.exports = { 'packages/@uppy/progress-bar/src/**/*.js', 'packages/@uppy/provider-views/src/**/*.js', 'packages/@uppy/redux-dev-tools/src/**/*.js', + 'packages/@uppy/remote-sources/src/**/*.js', 'packages/@uppy/screen-capture/src/**/*.js', 'packages/@uppy/status-bar/src/**/*.js', 'packages/@uppy/store-default/src/**/*.js', 'packages/@uppy/store-redux/src/**/*.js', - 'packages/@uppy/svelte/src/**/*.js', 'packages/@uppy/svelte/rollup.config.js', + 'packages/@uppy/svelte/src/**/*.js', 'packages/@uppy/thumbnail-generator/src/**/*.js', + 'packages/@uppy/transloadit/src/**/*.js', 'packages/@uppy/tus/src/**/*.js', 'packages/@uppy/unsplash/src/**/*.js', - 'packages/@uppy/transloadit/src/**/*.js', 'packages/@uppy/url/src/**/*.js', 'packages/@uppy/utils/src/**/*.js', 'packages/@uppy/vue/src/**/*.js', diff --git a/packages/@uppy/remote-sources/LICENSE b/packages/@uppy/remote-sources/LICENSE new file mode 100644 index 0000000000..d01ae72874 --- /dev/null +++ b/packages/@uppy/remote-sources/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 Transloadit + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/@uppy/remote-sources/README.md b/packages/@uppy/remote-sources/README.md new file mode 100644 index 0000000000..83c6950fc0 --- /dev/null +++ b/packages/@uppy/remote-sources/README.md @@ -0,0 +1,35 @@ +# @uppy/remote-sources + +Uppy logo: a superman puppy in a pink suit + + CI status for Uppy tests CI status for Companion tests CI status for browser tests + +## Example + +```js +import Uppy from '@uppy/core' +import RemoteSources from '@uppy/remote-sources' + +const uppy = new Uppy() +uppy.use(RemoteSources, { + companionUrl: 'https://your-companion-url', +}) +``` + +## Installation + +```bash +npm install @uppy/remote-sources +# or +yarn add @uppy/remote-sources +``` + +Alternatively, you can also use this plugin in a pre-built bundle from Transloadit’s CDN: Edgly. In that case `Uppy.RemoteSources` will attach itself to the global `window.Uppy` object. See the [main Uppy documentation](https://uppy.io/docs/#Installation) for instructions. + +## Documentation + +Documentation for this plugin can be found on the [Uppy website](https://uppy.io/docs/remote-sources). + +## License + +[The MIT License](./LICENSE). diff --git a/packages/@uppy/remote-sources/package.json b/packages/@uppy/remote-sources/package.json new file mode 100644 index 0000000000..54f4352686 --- /dev/null +++ b/packages/@uppy/remote-sources/package.json @@ -0,0 +1,51 @@ +{ + "name": "@uppy/remote-sources", + "description": "Uppy plugin that includes all remote sources that Uppy+Companion offer, like Instagram, Google Drive, Dropox, Box, Unsplash, Url etc", + "version": "0.1.0", + "license": "MIT", + "main": "lib/index.js", + "types": "types/index.d.ts", + "type": "module", + "keywords": [ + "file uploader", + "instagram", + "google-drive", + "facebook", + "dropbox", + "onedrive", + "zoom", + "unsplash", + "box", + "url" + ], + "homepage": "https://uppy.io", + "bugs": { + "url": "https://github.com/transloadit/uppy/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/transloadit/uppy.git" + }, + "dependencies": { + "@uppy/box": "workspace:^", + "@uppy/dashboard": "workspace:^", + "@uppy/dropbox": "workspace:^", + "@uppy/facebook": "workspace:^", + "@uppy/google-drive": "workspace:^", + "@uppy/instagram": "workspace:^", + "@uppy/onedrive": "workspace:^", + "@uppy/unsplash": "workspace:^", + "@uppy/url": "workspace:^", + "@uppy/zoom": "workspace:^" + }, + "peerDependencies": { + "@uppy/core": "workspace:^" + }, + "publishConfig": { + "access": "public" + }, + "devDependencies": { + "@jest/globals": "^28.1.0", + "resize-observer-polyfill": "^1.5.1" + } +} diff --git a/packages/@uppy/remote-sources/src/index.js b/packages/@uppy/remote-sources/src/index.js new file mode 100644 index 0000000000..a332c89eba --- /dev/null +++ b/packages/@uppy/remote-sources/src/index.js @@ -0,0 +1,83 @@ +import { BasePlugin } from '@uppy/core' +import Dashboard from '@uppy/dashboard' +import Dropbox from '@uppy/dropbox' +import GoogleDrive from '@uppy/google-drive' +import Instagram from '@uppy/instagram' +import Facebook from '@uppy/facebook' +import OneDrive from '@uppy/onedrive' +import Box from '@uppy/box' +import Unsplash from '@uppy/unsplash' +import Url from '@uppy/url' +import Zoom from '@uppy/zoom' + +import packageJson from '../package.json' + +const availablePlugins = [ + Box, + Dropbox, + Facebook, + GoogleDrive, + Instagram, + OneDrive, + Unsplash, + Url, + Zoom, +] + +export default class RemoteSources extends BasePlugin { + static VERSION = packageJson.version + + #installedPlugins = new Set() + + constructor (uppy, opts) { + super(uppy, opts) + this.id = this.opts.id || 'RemoteSources' + this.type = 'acquirer' + + const defaultOptions = { + sources: [ + 'Box', + 'Dropbox', + 'Facebook', + 'GoogleDrive', + 'Instagram', + 'OneDrive', + 'Unsplash', + 'Url', + ], + target: Dashboard, + } + this.opts = { ...defaultOptions, ...opts } + + if (this.opts.companionUrl == null) { + throw new Error('Please specify companionUrl for RemoteSources to work, see https://uppy.io/docs/remote-sources#companionUrl') + } + } + + setOptions (newOpts) { + this.uninstall() + super.setOptions(newOpts) + this.install() + } + + install () { + this.opts.sources.forEach((pluginId) => { + const optsForRemoteSourcePlugin = { ...this.opts, sources: undefined } + const plugin = availablePlugins.find(p => p.name === pluginId) + if (plugin == null) { + const pluginNames = availablePlugins.map(p => p.name) + const formatter = new Intl.ListFormat('en', { style: 'long', type: 'disjunction' }) + throw new Error(`Invalid plugin: "${pluginId}" is not one of: ${formatter.format(pluginNames)}.`) + } + this.uppy.use(plugin, optsForRemoteSourcePlugin) + this.#installedPlugins.add(plugin) + }) + } + + uninstall () { + for (const plugin of this.#installedPlugins) { + this.uppy.removePlugin(plugin) + } + this.#installedPlugins.clear() + } +} diff --git a/packages/@uppy/remote-sources/src/index.test.js b/packages/@uppy/remote-sources/src/index.test.js new file mode 100644 index 0000000000..2e02ac4d90 --- /dev/null +++ b/packages/@uppy/remote-sources/src/index.test.js @@ -0,0 +1,42 @@ +import { describe, expect, it } from '@jest/globals' +import resizeObserverPolyfill from 'resize-observer-polyfill' +import Core from '@uppy/core' +import Dashboard from '@uppy/dashboard' +import RemoteSources from './index.js' + +describe('RemoteSources', () => { + beforeAll(() => { + globalThis.ResizeObserver = resizeObserverPolyfill.default || resizeObserverPolyfill + }) + + afterAll(() => { + delete globalThis.ResizeObserver + }) + + it('should install RemoteSources with default options', () => { + expect(() => { + const core = new Core() + core.use(Dashboard) + core.use(RemoteSources, { companionUrl: 'https://example.com' }) + }).not.toThrow() + }) + + it('should throw when a companionUrl is not specified', () => { + expect(() => { + const core = new Core() + core.use(Dashboard) + core.use(RemoteSources, { sources: ['Webcam'] }) + }).toThrow(new Error('Please specify companionUrl for RemoteSources to work, see https://uppy.io/docs/remote-sources#companionUrl')) + }) + + it('should throw when trying to use a plugin which is not included in RemoteSources', () => { + expect(() => { + const core = new Core() + core.use(Dashboard) + core.use(RemoteSources, { + companionUrl: 'https://example.com', + sources: ['Webcam'], + }) + }).toThrow('Invalid plugin: "Webcam" is not one of: Box, Dropbox, Facebook, GoogleDrive, Instagram, OneDrive, Unsplash, Url, or Zoom.') + }) +}) diff --git a/packages/@uppy/remote-sources/types/index.d.ts b/packages/@uppy/remote-sources/types/index.d.ts new file mode 100644 index 0000000000..3ac7afd332 --- /dev/null +++ b/packages/@uppy/remote-sources/types/index.d.ts @@ -0,0 +1,13 @@ +import type { PluginOptions, BasePlugin, PluginTarget } from '@uppy/core' +import type { RequestClientOptions } from '@uppy/companion-client' + +interface RemoteTargetOptions extends PluginOptions, RequestClientOptions { + target?: PluginTarget + sources?: Array + title?: string + companionUrl: string +} + +declare class RemoteTarget extends BasePlugin {} + +export default RemoteTarget diff --git a/packages/@uppy/remote-sources/types/index.test-d.ts b/packages/@uppy/remote-sources/types/index.test-d.ts new file mode 100644 index 0000000000..2a551ea846 --- /dev/null +++ b/packages/@uppy/remote-sources/types/index.test-d.ts @@ -0,0 +1,11 @@ +import Uppy from '@uppy/core' +import RemoteSources from '..' + +{ + const uppy = new Uppy() + uppy.use(RemoteSources, { + sources: ['Instagram', 'Url'], + companionUrl: '', + companionCookiesRule: 'same-origin', + }) +} diff --git a/packages/uppy/index.js b/packages/uppy/index.js index c9f2e2fb98..8ad9484653 100644 --- a/packages/uppy/index.js +++ b/packages/uppy/index.js @@ -33,6 +33,7 @@ exports.Facebook = require('@uppy/facebook') exports.GoogleDrive = require('@uppy/google-drive') exports.Instagram = require('@uppy/instagram') exports.OneDrive = require('@uppy/onedrive') +exports.RemoteSources = require('@uppy/remote-sources') exports.ScreenCapture = require('@uppy/screen-capture') exports.Unsplash = require('@uppy/unsplash') exports.Url = require('@uppy/url') diff --git a/packages/uppy/index.mjs b/packages/uppy/index.mjs index 1dd66feec3..a4415d4209 100644 --- a/packages/uppy/index.mjs +++ b/packages/uppy/index.mjs @@ -30,6 +30,7 @@ export { default as Facebook } from '@uppy/facebook' export { default as GoogleDrive } from '@uppy/google-drive' export { default as Instagram } from '@uppy/instagram' export { default as OneDrive } from '@uppy/onedrive' +export { default as RemoteSources } from '@uppy/remote-sources' export { default as ScreenCapture } from '@uppy/screen-capture' export { default as Unsplash } from '@uppy/unsplash' export { default as Url } from '@uppy/url' diff --git a/packages/uppy/package.json b/packages/uppy/package.json index b6d3d7da7e..2b4fc567a8 100644 --- a/packages/uppy/package.json +++ b/packages/uppy/package.json @@ -54,6 +54,7 @@ "@uppy/progress-bar": "workspace:^", "@uppy/provider-views": "workspace:^", "@uppy/redux-dev-tools": "workspace:^", + "@uppy/remote-sources": "workspace:^", "@uppy/screen-capture": "workspace:^", "@uppy/status-bar": "workspace:^", "@uppy/store-default": "workspace:^", @@ -74,5 +75,8 @@ "regenerator-runtime": "0.13.9", "resize-observer-polyfill": "^1.5.1", "whatwg-fetch": "^3.6.2" + }, + "publishConfig": { + "access": "public" } } diff --git a/private/dev/Dashboard.js b/private/dev/Dashboard.js index 3e882be118..e8014e1ac6 100644 --- a/private/dev/Dashboard.js +++ b/private/dev/Dashboard.js @@ -2,15 +2,7 @@ /* eslint-disable import/no-extraneous-dependencies */ import Uppy from '@uppy/core' import Dashboard from '@uppy/dashboard' -import Instagram from '@uppy/instagram' -import Facebook from '@uppy/facebook' -import OneDrive from '@uppy/onedrive' -import Dropbox from '@uppy/dropbox' -import Box from '@uppy/box' -import GoogleDrive from '@uppy/google-drive' -import Unsplash from '@uppy/unsplash' -import Zoom from '@uppy/zoom' -import Url from '@uppy/url' +import RemoteSources from '@uppy/remote-sources' import Webcam from '@uppy/webcam' import ScreenCapture from '@uppy/screen-capture' import GoldenRetriever from '@uppy/golden-retriever' @@ -83,15 +75,19 @@ export default () => { proudlyDisplayPoweredByUppy: true, note: '2 files, images and video only', }) - .use(GoogleDrive, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Instagram, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Dropbox, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Box, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Facebook, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(OneDrive, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Zoom, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Url, { target: Dashboard, companionUrl: COMPANION_URL }) - .use(Unsplash, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(GoogleDrive, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Instagram, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Dropbox, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Box, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Facebook, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(OneDrive, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Zoom, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Url, { target: Dashboard, companionUrl: COMPANION_URL }) + // .use(Unsplash, { target: Dashboard, companionUrl: COMPANION_URL }) + .use(RemoteSources, { + companionUrl: COMPANION_URL, + sources: ['Box', 'Dropbox', 'Facebook', 'GoogleDrive', 'Instagram', 'OneDrive', 'Unsplash', 'Url'], + }) .use(Webcam, { target: Dashboard, showVideoSourceDropdown: true, diff --git a/website/src/docs/remote-sources.md b/website/src/docs/remote-sources.md new file mode 100644 index 0000000000..c902e43ad0 --- /dev/null +++ b/website/src/docs/remote-sources.md @@ -0,0 +1,78 @@ +--- +type: docs +order: 10 +title: "Remote Sources" +module: "@uppy/remote-sources" +permalink: docs/remote-sources/ +category: "Miscellaneous" +tagline: "Uppy plugin that includes all remote sources that Uppy+Companion offer, like Instagram, Google Drive, Dropox, Box, Unsplash, Url etc" +--- + +`@uppy/remote-sources` is a preset plugin to add all the available remote sources, such Instagram, Google Drive, Dropbox, and others to Uppy Dashboard in one package. + +> Note: Remote Sources requires Dashboard and automatically installs all its plugins to it. + +```js +import Uppy from '@uppy/core' +import Dashbaord from '@uppy/dashboard' +import RemoteSources from '@uppy/compressor' + +const uppy = new Uppy() +uppy.use(Dashboard) +uppy.use(RemoteSources, { + companionUrl: 'https://your-companion-url', +}) +``` + +## Installation + +This plugin is published as the `@uppy/remote-sources` package. + +```shell +npm install @uppy/remote-sources +``` + +In the [CDN package](/docs/#With-a-script-tag), the plugin class is available on the `Uppy` global object: + +```js +const { RemoteSources } = Uppy +``` + +## Options + +### `id` + +A unique identifier for this plugin (`string`, default: `RemoteSources`). + +### `sources` + +List of remote sources that will be enabled (`array`, default: `['Box', 'Dropbox', 'Facebook', 'GoogleDrive','Instagram', 'OneDrive', 'Unsplash', 'Url']`). + +You don’t need to specify them manually or change them, but if you want to alter the order in which they appear in the Dashboard, or disable some sources, this option is for you. + +```js +uppy.use(RemoteSources, { + companionUrl: 'https://your-companion-url', + sources: ['Instagram', 'GoogleDrive', 'Unsplash', 'Url'], +}) +``` + +### `companionUrl` + +URL to a [Companion](/docs/companion) instance (`string`, default: `null`). + +### `companionHeaders` + +Custom headers that should be sent along to [Companion](/docs/companion) on every request (`object`, default: `{}`). + +### `companionAllowedHosts` + +The valid and authorized URL(s) from which OAuth responses should be accepted (`string | RegExp | Array`, Default: `companionUrl`) + +This value can be a `String`, a `Regex` pattern, or an `Array` of both. + +This is useful when you have your [Companion](/docs/companion) running on several hosts. Otherwise, the default value, which is `companionUrl`, should do fine. + +### `companionCookiesRule` + +This option correlates to the [RequestCredentials value](https://developer.mozilla.org/en-US/docs/Web/API/Request/credentials), which tells the plugin whether to send cookies to [Companion](/docs/companion) (`string`, default: `same-origin`). diff --git a/yarn.lock b/yarn.lock index e824f90593..fd284867a3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -547,6 +547,13 @@ __metadata: languageName: node linkType: hard +"@babel/compat-data@npm:^7.17.10": + version: 7.17.10 + resolution: "@babel/compat-data@npm:7.17.10" + checksum: e85051087cd4690de5061909a2dd2d7f8b6434a3c2e30be6c119758db2027ae1845bcd75a81127423dd568b706ac6994a1a3d7d701069a23bf5cfe900728290b + languageName: node + linkType: hard + "@babel/core@npm:7.12.9": version: 7.12.9 resolution: "@babel/core@npm:7.12.9" @@ -641,6 +648,29 @@ __metadata: languageName: node linkType: hard +"@babel/core@npm:^7.11.6": + version: 7.18.2 + resolution: "@babel/core@npm:7.18.2" + dependencies: + "@ampproject/remapping": ^2.1.0 + "@babel/code-frame": ^7.16.7 + "@babel/generator": ^7.18.2 + "@babel/helper-compilation-targets": ^7.18.2 + "@babel/helper-module-transforms": ^7.18.0 + "@babel/helpers": ^7.18.2 + "@babel/parser": ^7.18.0 + "@babel/template": ^7.16.7 + "@babel/traverse": ^7.18.2 + "@babel/types": ^7.18.2 + convert-source-map: ^1.7.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.1 + semver: ^6.3.0 + checksum: 14a4142c12e004cd2477b7610408d5788ee5dd821ee9e4de204cbb72d9c399d858d9deabc3d49914d5d7c2927548160c19bdc7524b1a9f6acc1ec96a8d9848dd + languageName: node + linkType: hard + "@babel/core@npm:^7.12.10, @babel/core@npm:^7.17.5": version: 7.17.5 resolution: "@babel/core@npm:7.17.5" @@ -734,6 +764,17 @@ __metadata: languageName: node linkType: hard +"@babel/generator@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/generator@npm:7.18.2" + dependencies: + "@babel/types": ^7.18.2 + "@jridgewell/gen-mapping": ^0.3.0 + jsesc: ^2.5.1 + checksum: d0661e95532ddd97566d41fec26355a7b28d1cbc4df95fe80cc084c413342935911b48db20910708db39714844ddd614f61c2ec4cca3fb10181418bdcaa2e7a3 + languageName: node + linkType: hard + "@babel/helper-annotate-as-pure@npm:7.15.4": version: 7.15.4 resolution: "@babel/helper-annotate-as-pure@npm:7.15.4" @@ -809,6 +850,20 @@ __metadata: languageName: node linkType: hard +"@babel/helper-compilation-targets@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/helper-compilation-targets@npm:7.18.2" + dependencies: + "@babel/compat-data": ^7.17.10 + "@babel/helper-validator-option": ^7.16.7 + browserslist: ^4.20.2 + semver: ^6.3.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 4f02e79f20c0b3f8db5049ba8c35027c41ccb3fc7884835d04e49886538e0f55702959db1bb75213c94a5708fec2dc81a443047559a4f184abb884c72c0059b4 + languageName: node + linkType: hard + "@babel/helper-create-class-features-plugin@npm:^7.12.13, @babel/helper-create-class-features-plugin@npm:^7.16.0": version: 7.16.0 resolution: "@babel/helper-create-class-features-plugin@npm:7.16.0" @@ -947,6 +1002,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-environment-visitor@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/helper-environment-visitor@npm:7.18.2" + checksum: 1a9c8726fad454a082d077952a90f17188e92eabb3de236cb4782c49b39e3f69c327e272b965e9a20ff8abf37d30d03ffa6fd7974625a6c23946f70f7527f5e9 + languageName: node + linkType: hard + "@babel/helper-explode-assignable-expression@npm:^7.16.0": version: 7.16.0 resolution: "@babel/helper-explode-assignable-expression@npm:7.16.0" @@ -987,6 +1049,16 @@ __metadata: languageName: node linkType: hard +"@babel/helper-function-name@npm:^7.17.9": + version: 7.17.9 + resolution: "@babel/helper-function-name@npm:7.17.9" + dependencies: + "@babel/template": ^7.16.7 + "@babel/types": ^7.17.0 + checksum: a59b2e5af56d8f43b9b0019939a43774754beb7cb01a211809ca8031c71890999d07739e955343135ec566c4d8ff725435f1f60fb0af3bb546837c1f9f84f496 + languageName: node + linkType: hard + "@babel/helper-get-function-arity@npm:^7.16.0": version: 7.16.0 resolution: "@babel/helper-get-function-arity@npm:7.16.0" @@ -1107,6 +1179,22 @@ __metadata: languageName: node linkType: hard +"@babel/helper-module-transforms@npm:^7.18.0": + version: 7.18.0 + resolution: "@babel/helper-module-transforms@npm:7.18.0" + dependencies: + "@babel/helper-environment-visitor": ^7.16.7 + "@babel/helper-module-imports": ^7.16.7 + "@babel/helper-simple-access": ^7.17.7 + "@babel/helper-split-export-declaration": ^7.16.7 + "@babel/helper-validator-identifier": ^7.16.7 + "@babel/template": ^7.16.7 + "@babel/traverse": ^7.18.0 + "@babel/types": ^7.18.0 + checksum: 824c3967c08d75bb36adc18c31dcafebcd495b75b723e2e17c6185e88daf5c6db62a6a75d9f791b5f38618a349e7cb32503e715a1b9a4e8bad4d0f43e3e6b523 + languageName: node + linkType: hard + "@babel/helper-optimise-call-expression@npm:^7.16.0": version: 7.16.0 resolution: "@babel/helper-optimise-call-expression@npm:7.16.0" @@ -1211,6 +1299,15 @@ __metadata: languageName: node linkType: hard +"@babel/helper-simple-access@npm:^7.17.7": + version: 7.18.2 + resolution: "@babel/helper-simple-access@npm:7.18.2" + dependencies: + "@babel/types": ^7.18.2 + checksum: c0862b56db7e120754d89273a039b128c27517389f6a4425ff24e49779791e8fe10061579171fb986be81fa076778acb847c709f6f5e396278d9c5e01360c375 + languageName: node + linkType: hard + "@babel/helper-skip-transparent-expression-wrappers@npm:^7.16.0": version: 7.16.0 resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.16.0" @@ -1312,6 +1409,17 @@ __metadata: languageName: node linkType: hard +"@babel/helpers@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/helpers@npm:7.18.2" + dependencies: + "@babel/template": ^7.16.7 + "@babel/traverse": ^7.18.2 + "@babel/types": ^7.18.2 + checksum: 94620242f23f6d5f9b83a02b1aa1632ffb05b0815e1bb53d3b46d64aa8e771066bba1db8bd267d9091fb00134cfaeda6a8d69d1d4cc2c89658631adfa077ae70 + languageName: node + linkType: hard + "@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.16.0": version: 7.16.0 resolution: "@babel/highlight@npm:7.16.0" @@ -1361,6 +1469,15 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^7.18.0": + version: 7.18.4 + resolution: "@babel/parser@npm:7.18.4" + bin: + parser: ./bin/babel-parser.js + checksum: e05b2dc720c4b200e088258f3c2a2de5041c140444edc38181d1217b10074e881a7133162c5b62356061f26279f08df5a06ec14c5842996ee8601ad03c57a44f + languageName: node + linkType: hard + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.16.2": version: 7.16.2 resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.16.2" @@ -3693,6 +3810,24 @@ __metadata: languageName: node linkType: hard +"@babel/traverse@npm:^7.18.0, @babel/traverse@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/traverse@npm:7.18.2" + dependencies: + "@babel/code-frame": ^7.16.7 + "@babel/generator": ^7.18.2 + "@babel/helper-environment-visitor": ^7.18.2 + "@babel/helper-function-name": ^7.17.9 + "@babel/helper-hoist-variables": ^7.16.7 + "@babel/helper-split-export-declaration": ^7.16.7 + "@babel/parser": ^7.18.0 + "@babel/types": ^7.18.2 + debug: ^4.1.0 + globals: ^11.1.0 + checksum: e21c2d550bf610406cf21ef6fbec525cb1d80b9d6d71af67552478a24ee371203cb4025b23b110ae7288a62a874ad5898daad19ad23daa95dfc8ab47a47a092f + languageName: node + linkType: hard + "@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.17, @babel/types@npm:^7.15.4, @babel/types@npm:^7.15.6, @babel/types@npm:^7.16.0, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3, @babel/types@npm:^7.9.0": version: 7.16.0 resolution: "@babel/types@npm:7.16.0" @@ -3713,6 +3848,16 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^7.18.0, @babel/types@npm:^7.18.2": + version: 7.18.4 + resolution: "@babel/types@npm:7.18.4" + dependencies: + "@babel/helper-validator-identifier": ^7.16.7 + to-fast-properties: ^2.0.0 + checksum: 85df59beb99c1b95e9e41590442f2ffa1e5b1b558d025489db40c9f7c906bd03a17da26c3ec486e5800e80af27c42ca7eee9506d9212ab17766d2d68d30fbf52 + languageName: node + linkType: hard + "@base2/pretty-print-object@npm:1.0.1": version: 1.0.1 resolution: "@base2/pretty-print-object@npm:1.0.1" @@ -4354,6 +4499,37 @@ __metadata: languageName: node linkType: hard +"@jest/environment@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/environment@npm:28.1.0" + dependencies: + "@jest/fake-timers": ^28.1.0 + "@jest/types": ^28.1.0 + "@types/node": "*" + jest-mock: ^28.1.0 + checksum: 376904d6626bb439f96a56ca9d400e1b6b4a5bafb751820fec649238e35cb7d0b9619223ade86c2906e97fae8da03a7b9561c55c1f5850afe9856db89185d754 + languageName: node + linkType: hard + +"@jest/expect-utils@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/expect-utils@npm:28.1.0" + dependencies: + jest-get-type: ^28.0.2 + checksum: 5b8b463682bd35ae71868020c87dc654ebed65ded4e74ea3c24bd9e1ab4637a7790c8b78c26cdcb832dd227b9981e8dd24eb3b742891637c24c2a3e38ba153e8 + languageName: node + linkType: hard + +"@jest/expect@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/expect@npm:28.1.0" + dependencies: + expect: ^28.1.0 + jest-snapshot: ^28.1.0 + checksum: e596bc2a2d02d66cb3e23982c6a48cfe24aa31932f594db7de6966db6c0b58f7aad3836a71debb8aeda6178116c35160e11ded42a355a94457f6402cbb2186e3 + languageName: node + linkType: hard + "@jest/fake-timers@npm:^24.9.0": version: 24.9.0 resolution: "@jest/fake-timers@npm:24.9.0" @@ -4379,6 +4555,20 @@ __metadata: languageName: node linkType: hard +"@jest/fake-timers@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/fake-timers@npm:28.1.0" + dependencies: + "@jest/types": ^28.1.0 + "@sinonjs/fake-timers": ^9.1.1 + "@types/node": "*" + jest-message-util: ^28.1.0 + jest-mock: ^28.1.0 + jest-util: ^28.1.0 + checksum: d24375bcd52873f1e602ff02ffe57c6866570b95ec0be167a4734d051047b2c6b3dab69b2a301a390a0ca2de2ad89fd2b23e991c09a1a3b70b1dd4763c8681c7 + languageName: node + linkType: hard + "@jest/globals@npm:^27.4.2": version: 27.4.2 resolution: "@jest/globals@npm:27.4.2" @@ -4390,6 +4580,17 @@ __metadata: languageName: node linkType: hard +"@jest/globals@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/globals@npm:28.1.0" + dependencies: + "@jest/environment": ^28.1.0 + "@jest/expect": ^28.1.0 + "@jest/types": ^28.1.0 + checksum: dce822edd1810430ce381235f714be705a9c774c00bf109d9d5df0dc4868371da62520832df99e83635ee1fc1fa4241cf617821b4e3b1a8bcd3fcd91aa8a75a7 + languageName: node + linkType: hard + "@jest/reporters@npm:^27.4.2": version: 27.4.2 resolution: "@jest/reporters@npm:27.4.2" @@ -4428,6 +4629,15 @@ __metadata: languageName: node linkType: hard +"@jest/schemas@npm:^28.0.2": + version: 28.0.2 + resolution: "@jest/schemas@npm:28.0.2" + dependencies: + "@sinclair/typebox": ^0.23.3 + checksum: 6a177e97b112c99f377697fe803a34f4489b92cd07949876250c69edc9029c7cbda771fcbb03caebd20ffbcfa89b9c22b4dc9d1e9a7fbc9873185459b48ba780 + languageName: node + linkType: hard + "@jest/source-map@npm:^24.9.0": version: 24.9.0 resolution: "@jest/source-map@npm:24.9.0" @@ -4531,6 +4741,29 @@ __metadata: languageName: node linkType: hard +"@jest/transform@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/transform@npm:28.1.0" + dependencies: + "@babel/core": ^7.11.6 + "@jest/types": ^28.1.0 + "@jridgewell/trace-mapping": ^0.3.7 + babel-plugin-istanbul: ^6.1.1 + chalk: ^4.0.0 + convert-source-map: ^1.4.0 + fast-json-stable-stringify: ^2.0.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^28.1.0 + jest-regex-util: ^28.0.2 + jest-util: ^28.1.0 + micromatch: ^4.0.4 + pirates: ^4.0.4 + slash: ^3.0.0 + write-file-atomic: ^4.0.1 + checksum: f7417409c466fa1b4d8f9f7d365c8c1ed07e709e8712279180a87e9da8520ab06518de270b290148034d93f666d7826449b5e40cac34cc5f7225980e8991f2ba + languageName: node + linkType: hard + "@jest/types@npm:^24.9.0": version: 24.9.0 resolution: "@jest/types@npm:24.9.0" @@ -4593,6 +4826,31 @@ __metadata: languageName: node linkType: hard +"@jest/types@npm:^28.1.0": + version: 28.1.0 + resolution: "@jest/types@npm:28.1.0" + dependencies: + "@jest/schemas": ^28.0.2 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 + checksum: 22705aed92a76d45465a6c51147bc71c1fbd300b912ebad2769e3ff7fd51c1938017e29fcea52e00c00dab7130697359b2a2c2be6ee601e37c8b1042a2c4040e + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.0": + version: 0.3.1 + resolution: "@jridgewell/gen-mapping@npm:0.3.1" + dependencies: + "@jridgewell/set-array": ^1.0.0 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: e9e7bb3335dea9e60872089761d4e8e089597360cdb1af90370e9d53b7d67232c1e0a3ab65fbfef4fc785745193fbc56bff9f3a6cab6c6ce3f15e12b4191f86b + languageName: node + linkType: hard + "@jridgewell/resolve-uri@npm:1.0.0": version: 1.0.0 resolution: "@jridgewell/resolve-uri@npm:1.0.0" @@ -4607,6 +4865,13 @@ __metadata: languageName: node linkType: hard +"@jridgewell/set-array@npm:^1.0.0": + version: 1.1.1 + resolution: "@jridgewell/set-array@npm:1.1.1" + checksum: cc5d91e0381c347e3edee4ca90b3c292df9e6e55f29acbe0dd97de8651b4730e9ab761406fd572effa79972a0edc55647b627f8c72315e276d959508853d9bf2 + languageName: node + linkType: hard + "@jridgewell/sourcemap-codec@npm:^1.4.10": version: 1.4.11 resolution: "@jridgewell/sourcemap-codec@npm:1.4.11" @@ -4624,6 +4889,16 @@ __metadata: languageName: node linkType: hard +"@jridgewell/trace-mapping@npm:^0.3.7, @jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.13 + resolution: "@jridgewell/trace-mapping@npm:0.3.13" + dependencies: + "@jridgewell/resolve-uri": ^3.0.3 + "@jridgewell/sourcemap-codec": ^1.4.10 + checksum: e38254e830472248ca10a6ed1ae75af5e8514f0680245a5e7b53bc3c030fd8691d4d3115d80595b45d3badead68269769ed47ecbbdd67db1343a11f05700e75a + languageName: node + linkType: hard + "@koa/cors@npm:^3.1.0": version: 3.1.0 resolution: "@koa/cors@npm:3.1.0" @@ -6183,6 +6458,13 @@ __metadata: languageName: node linkType: hard +"@sinclair/typebox@npm:^0.23.3": + version: 0.23.5 + resolution: "@sinclair/typebox@npm:0.23.5" + checksum: c96056d35d9cb862aeb635ff8873e2e7633e668dd544e162aee2690a82c970d0b3f90aa2b3501fe374dfa8e792388559a3e3a86712b23ebaef10061add534f47 + languageName: node + linkType: hard + "@sindresorhus/is@npm:^0.14.0": version: 0.14.0 resolution: "@sindresorhus/is@npm:0.14.0" @@ -6208,6 +6490,15 @@ __metadata: languageName: node linkType: hard +"@sinonjs/fake-timers@npm:^9.1.1": + version: 9.1.2 + resolution: "@sinonjs/fake-timers@npm:9.1.2" + dependencies: + "@sinonjs/commons": ^1.7.0 + checksum: 7d3aef54e17c1073101cb64d953157c19d62a40e261a30923fa1ee337b049c5f29cc47b1f0c477880f42b5659848ba9ab897607ac8ea4acd5c30ddcfac57fca6 + languageName: node + linkType: hard + "@sitespeed.io/tracium@npm:^0.3.3": version: 0.3.3 resolution: "@sitespeed.io/tracium@npm:0.3.3" @@ -8187,7 +8478,7 @@ __metadata: languageName: node linkType: hard -"@types/graceful-fs@npm:^4.1.2": +"@types/graceful-fs@npm:^4.1.2, @types/graceful-fs@npm:^4.1.3": version: 4.1.5 resolution: "@types/graceful-fs@npm:4.1.5" dependencies: @@ -8957,6 +9248,15 @@ __metadata: languageName: node linkType: hard +"@types/yargs@npm:^17.0.8": + version: 17.0.10 + resolution: "@types/yargs@npm:17.0.10" + dependencies: + "@types/yargs-parser": "*" + checksum: f0673cbfc08e17239dc58952a88350d6c4db04a027a28a06fbad27d87b670e909f9cd9e66f9c64cebdd5071d1096261e33454a55868395f125297e5c50992ca8 + languageName: node + linkType: hard + "@types/yauzl@npm:^2.9.1": version: 2.9.2 resolution: "@types/yauzl@npm:2.9.2" @@ -10050,6 +10350,27 @@ __metadata: languageName: unknown linkType: soft +"@uppy/remote-sources@workspace:^, @uppy/remote-sources@workspace:packages/@uppy/remote-sources": + version: 0.0.0-use.local + resolution: "@uppy/remote-sources@workspace:packages/@uppy/remote-sources" + dependencies: + "@jest/globals": ^28.1.0 + "@uppy/box": "workspace:^" + "@uppy/dashboard": "workspace:^" + "@uppy/dropbox": "workspace:^" + "@uppy/facebook": "workspace:^" + "@uppy/google-drive": "workspace:^" + "@uppy/instagram": "workspace:^" + "@uppy/onedrive": "workspace:^" + "@uppy/unsplash": "workspace:^" + "@uppy/url": "workspace:^" + "@uppy/zoom": "workspace:^" + resize-observer-polyfill: ^1.5.1 + peerDependencies: + "@uppy/core": "workspace:^" + languageName: unknown + linkType: soft + "@uppy/robodog@workspace:*, @uppy/robodog@workspace:packages/@uppy/robodog": version: 0.0.0-use.local resolution: "@uppy/robodog@workspace:packages/@uppy/robodog" @@ -12780,7 +13101,7 @@ __metadata: languageName: node linkType: hard -"babel-plugin-istanbul@npm:6.1.1, babel-plugin-istanbul@npm:^6.0.0": +"babel-plugin-istanbul@npm:6.1.1, babel-plugin-istanbul@npm:^6.0.0, babel-plugin-istanbul@npm:^6.1.1": version: 6.1.1 resolution: "babel-plugin-istanbul@npm:6.1.1" dependencies: @@ -13827,6 +14148,21 @@ __metadata: languageName: node linkType: hard +"browserslist@npm:^4.20.2": + version: 4.20.3 + resolution: "browserslist@npm:4.20.3" + dependencies: + caniuse-lite: ^1.0.30001332 + electron-to-chromium: ^1.4.118 + escalade: ^3.1.1 + node-releases: ^2.0.3 + picocolors: ^1.0.0 + bin: + browserslist: cli.js + checksum: 1e4b719ac2ca0fe235218a606e8b8ef16b8809e0973b924158c39fbc435a0b0fe43437ea52dd6ef5ad2efcb83fcb07431244e472270177814217f7c563651f7d + languageName: node + linkType: hard + "browserstack@npm:^1.5.1": version: 1.6.1 resolution: "browserstack@npm:1.6.1" @@ -14396,6 +14732,13 @@ __metadata: languageName: node linkType: hard +"caniuse-lite@npm:^1.0.30001332": + version: 1.0.30001346 + resolution: "caniuse-lite@npm:1.0.30001346" + checksum: 951590454ffa4e2e7b772558dc593cd08604b44c83741e1188166298f54c34387f4bf34f5141a35de4a43028c012484240ad15c896e48bf4eac70dd7076a4449 + languageName: node + linkType: hard + "canonical-path@npm:1.0.0": version: 1.0.0 resolution: "canonical-path@npm:1.0.0" @@ -17227,6 +17570,13 @@ __metadata: languageName: node linkType: hard +"diff-sequences@npm:^28.0.2": + version: 28.0.2 + resolution: "diff-sequences@npm:28.0.2" + checksum: 482360a8ec93333ea61bc93a800a1bee37c943b94a48fa1597825076adcad24620b44a0d3aa8f3d190584a4156c4b3315028453ca33e1174001fae3cdaa7f8f8 + languageName: node + linkType: hard + "diff@npm:^4.0.1": version: 4.0.2 resolution: "diff@npm:4.0.2" @@ -17740,6 +18090,13 @@ __metadata: languageName: node linkType: hard +"electron-to-chromium@npm:^1.4.118": + version: 1.4.147 + resolution: "electron-to-chromium@npm:1.4.147" + checksum: a714da8ac6842887e98886026b8eeaee0d2fd6d57f5707b0fc2a2916c1b9d026ca8deeef529fd3b069e96f719495a7467b01a508b881fd90d95aa204a7a92000 + languageName: node + linkType: hard + "electron-to-chromium@npm:^1.4.71": version: 1.4.73 resolution: "electron-to-chromium@npm:1.4.73" @@ -20011,6 +20368,19 @@ __metadata: languageName: node linkType: hard +"expect@npm:^28.1.0": + version: 28.1.0 + resolution: "expect@npm:28.1.0" + dependencies: + "@jest/expect-utils": ^28.1.0 + jest-get-type: ^28.0.2 + jest-matcher-utils: ^28.1.0 + jest-message-util: ^28.1.0 + jest-util: ^28.1.0 + checksum: 53bfa2e094a7d5b270ce9a8dafc5432d51bb369287502acd373b66fe01072260bacd1f83bf741d5de49b008406781ab879a0247f5f6fc10d3f32fbe5a3ccfbdf + languageName: node + linkType: hard + "expo-application@npm:~3.2.0": version: 3.2.0 resolution: "expo-application@npm:3.2.0" @@ -25029,6 +25399,18 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-diff@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-diff@npm:28.1.0" + dependencies: + chalk: ^4.0.0 + diff-sequences: ^28.0.2 + jest-get-type: ^28.0.2 + pretty-format: ^28.1.0 + checksum: 4d90d9d18ba1d28f5520fa206831e9e8199facf28c6d2b4967c7e4cd1ee78e7e826187babdeb02073f79a1d2c186520d73f77fa29877c6547b0a79392d08a513 + languageName: node + linkType: hard + "jest-docblock@npm:^27.4.0": version: 27.4.0 resolution: "jest-docblock@npm:27.4.0" @@ -25094,6 +25476,13 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-get-type@npm:^28.0.2": + version: 28.0.2 + resolution: "jest-get-type@npm:28.0.2" + checksum: 5281d7c89bc8156605f6d15784f45074f4548501195c26e9b188742768f72d40948252d13230ea905b5349038865a1a8eeff0e614cc530ff289dfc41fe843abd + languageName: node + linkType: hard + "jest-haste-map@npm:^24.9.0": version: 24.9.0 resolution: "jest-haste-map@npm:24.9.0" @@ -25166,6 +25555,29 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-haste-map@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-haste-map@npm:28.1.0" + dependencies: + "@jest/types": ^28.1.0 + "@types/graceful-fs": ^4.1.3 + "@types/node": "*" + anymatch: ^3.0.3 + fb-watchman: ^2.0.0 + fsevents: ^2.3.2 + graceful-fs: ^4.2.9 + jest-regex-util: ^28.0.2 + jest-util: ^28.1.0 + jest-worker: ^28.1.0 + micromatch: ^4.0.4 + walker: ^1.0.7 + dependenciesMeta: + fsevents: + optional: true + checksum: 128c2d1aa39610febfc9fe66bbc40bb847d89da3e1646ed1bbe63e90bd4c930d1798d20aef8d928fda8e5b0570f05f1cbb263030ebe776c01bb86dd5174434da + languageName: node + linkType: hard + "jest-jasmine2@npm:^27.4.2": version: 27.4.2 resolution: "jest-jasmine2@npm:27.4.2" @@ -25214,6 +25626,18 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-matcher-utils@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-matcher-utils@npm:28.1.0" + dependencies: + chalk: ^4.0.0 + jest-diff: ^28.1.0 + jest-get-type: ^28.0.2 + pretty-format: ^28.1.0 + checksum: 60e3e83fff67402972b101135d44443981d6519008e435b567f197220f330ec38356f905b6872348d082f0a2a4089612f63d2c72f55ee3c718de6b0ef03f4d6d + languageName: node + linkType: hard + "jest-message-util@npm:^24.9.0": version: 24.9.0 resolution: "jest-message-util@npm:24.9.0" @@ -25247,6 +25671,23 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-message-util@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-message-util@npm:28.1.0" + dependencies: + "@babel/code-frame": ^7.12.13 + "@jest/types": ^28.1.0 + "@types/stack-utils": ^2.0.0 + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + micromatch: ^4.0.4 + pretty-format: ^28.1.0 + slash: ^3.0.0 + stack-utils: ^2.0.3 + checksum: a224f9dbb53b5ad857918938f94c6e5d9c64ccdd42e0780b3b485d66bd93c82cff7dd91fbe274273efb69533d79808f9c98622b23d70ec027e8619a20e283773 + languageName: node + linkType: hard + "jest-mock@npm:^24.9.0": version: 24.9.0 resolution: "jest-mock@npm:24.9.0" @@ -25276,6 +25717,16 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-mock@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-mock@npm:28.1.0" + dependencies: + "@jest/types": ^28.1.0 + "@types/node": "*" + checksum: 013428db82f418059314588e5d02a2a8f6697940ffeb1b1a23f61e9b94b1dca3ea0061d91f284e217bf0ce0e5251ff8f2f182a393cecd1ec6788d766cc18ded4 + languageName: node + linkType: hard + "jest-pnp-resolver@npm:^1.2.2": version: 1.2.2 resolution: "jest-pnp-resolver@npm:1.2.2" @@ -25302,6 +25753,13 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-regex-util@npm:^28.0.2": + version: 28.0.2 + resolution: "jest-regex-util@npm:28.0.2" + checksum: 0ea8c5c82ec88bc85e273c0ec82e0c0f35f7a1e2d055070e50f0cc2a2177f848eec55f73e37ae0d045c3db5014c42b2f90ac62c1ab3fdb354d2abd66a9e08add + languageName: node + linkType: hard + "jest-resolve-dependencies@npm:^27.4.2": version: 27.4.2 resolution: "jest-resolve-dependencies@npm:27.4.2" @@ -25454,6 +25912,37 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-snapshot@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-snapshot@npm:28.1.0" + dependencies: + "@babel/core": ^7.11.6 + "@babel/generator": ^7.7.2 + "@babel/plugin-syntax-typescript": ^7.7.2 + "@babel/traverse": ^7.7.2 + "@babel/types": ^7.3.3 + "@jest/expect-utils": ^28.1.0 + "@jest/transform": ^28.1.0 + "@jest/types": ^28.1.0 + "@types/babel__traverse": ^7.0.6 + "@types/prettier": ^2.1.5 + babel-preset-current-node-syntax: ^1.0.0 + chalk: ^4.0.0 + expect: ^28.1.0 + graceful-fs: ^4.2.9 + jest-diff: ^28.1.0 + jest-get-type: ^28.0.2 + jest-haste-map: ^28.1.0 + jest-matcher-utils: ^28.1.0 + jest-message-util: ^28.1.0 + jest-util: ^28.1.0 + natural-compare: ^1.4.0 + pretty-format: ^28.1.0 + semver: ^7.3.5 + checksum: 73695484cf4e2af9d0dbb8bc1e851f6d6217cc740aa93b521012c253fbbd9dc1ce11b147ac3e18cac8358b4b64fe36a1b8a6d1a3083c9d275dd937281faad818 + languageName: node + linkType: hard + "jest-util@npm:^24.9.0": version: 24.9.0 resolution: "jest-util@npm:24.9.0" @@ -25502,6 +25991,20 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-util@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-util@npm:28.1.0" + dependencies: + "@jest/types": ^28.1.0 + "@types/node": "*" + chalk: ^4.0.0 + ci-info: ^3.2.0 + graceful-fs: ^4.2.9 + picomatch: ^2.2.3 + checksum: 14c2ee1c24c6efa2d7adfe81ece8b9bbda78fa871f40bed80db72726166e96f7fb22bf1d9fb1689fb433b9bcd748027eb1ee5f0851a12f1aa1c49ee0bd4d7508 + languageName: node + linkType: hard + "jest-validate@npm:^24.9.0": version: 24.9.0 resolution: "jest-validate@npm:24.9.0" @@ -25588,6 +26091,17 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"jest-worker@npm:^28.1.0": + version: 28.1.0 + resolution: "jest-worker@npm:28.1.0" + dependencies: + "@types/node": "*" + merge-stream: ^2.0.0 + supports-color: ^8.0.0 + checksum: 44b6cfb03752543e2462f143ca5c9642206f20813068ef0461e793bb8feda85f643ee906d96a0a57728e1a2fb5b89386fd34e44289568b1cee5815c115e7ee02 + languageName: node + linkType: hard + "jest@npm:^27.0.6": version: 27.4.3 resolution: "jest@npm:27.4.3" @@ -29894,6 +30408,13 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"node-releases@npm:^2.0.3": + version: 2.0.5 + resolution: "node-releases@npm:2.0.5" + checksum: e85d949addd19f8827f32569d2be5751e7812ccf6cc47879d49f79b5234ff4982225e39a3929315f96370823b070640fb04d79fc0ddec8b515a969a03493a42f + languageName: node + linkType: hard + "node-schedule@npm:1.3.2": version: 1.3.2 resolution: "node-schedule@npm:1.3.2" @@ -31762,7 +32283,7 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard -"pirates@npm:^4.0.5": +"pirates@npm:^4.0.4, pirates@npm:^4.0.5": version: 4.0.5 resolution: "pirates@npm:4.0.5" checksum: c9994e61b85260bec6c4fc0307016340d9b0c4f4b6550a957afaaff0c9b1ad58fbbea5cfcf083860a25cb27a375442e2b0edf52e2e1e40e69934e08dcc52d227 @@ -33541,6 +34062,18 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"pretty-format@npm:^28.1.0": + version: 28.1.0 + resolution: "pretty-format@npm:28.1.0" + dependencies: + "@jest/schemas": ^28.0.2 + ansi-regex: ^5.0.1 + ansi-styles: ^5.0.0 + react-is: ^18.0.0 + checksum: c1018099f8f800693449df96c05c243d94e01f7429b6617e1064a1a69b4d715637fc3c579061fbc31548b87d92af74a7933c6eb3856da6f30b29c0ff67004ce0 + languageName: node + linkType: hard + "pretty-format@npm:^3.8.0": version: 3.8.0 resolution: "pretty-format@npm:3.8.0" @@ -34273,6 +34806,13 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"react-is@npm:^18.0.0": + version: 18.1.0 + resolution: "react-is@npm:18.1.0" + checksum: d206a0fe6790851bff168727bfb896de02c5591695afb0c441163e8630136a3e13ee1a7ddd59fdccddcc93968b4721ae112c10f790b194b03b35a3dc13a355ef + languageName: node + linkType: hard + "react-native-safe-area-context@npm:3.2.0": version: 3.2.0 resolution: "react-native-safe-area-context@npm:3.2.0" @@ -36958,6 +37498,13 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"signal-exit@npm:^3.0.7": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 + languageName: node + linkType: hard + "simple-concat@npm:^1.0.0": version: 1.0.1 resolution: "simple-concat@npm:1.0.1" @@ -40995,6 +41542,7 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: "@uppy/progress-bar": "workspace:^" "@uppy/provider-views": "workspace:^" "@uppy/redux-dev-tools": "workspace:^" + "@uppy/remote-sources": "workspace:^" "@uppy/screen-capture": "workspace:^" "@uppy/status-bar": "workspace:^" "@uppy/store-default": "workspace:^" @@ -42842,6 +43390,16 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard +"write-file-atomic@npm:^4.0.1": + version: 4.0.1 + resolution: "write-file-atomic@npm:4.0.1" + dependencies: + imurmurhash: ^0.1.4 + signal-exit: ^3.0.7 + checksum: 8f780232533ca6223c63c9b9c01c4386ca8c625ebe5017a9ed17d037aec19462ae17109e0aa155bff5966ee4ae7a27b67a99f55caf3f32ffd84155e9da3929fc + languageName: node + linkType: hard + "write@npm:1.0.3": version: 1.0.3 resolution: "write@npm:1.0.3"