diff --git a/.gitignore b/.gitignore index c2658d7..e265135 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ +/pkg +/pkg.tgz node_modules/ +yarn-error.log \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..0f3b632 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +package.json +*/package.json +pkg/ +dist/ +/LICENSE.md \ No newline at end of file diff --git a/README.md b/README.md index e7d6e4f..017d907 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # companion-module-bmd-smartview -See HELP.md and LICENSE \ No newline at end of file + +See HELP.md and LICENSE diff --git a/actions.js b/actions.js deleted file mode 100644 index 5aaeb4b..0000000 --- a/actions.js +++ /dev/null @@ -1,134 +0,0 @@ -module.exports = { - - /** - * INTERNAL: Get the available actions. - * - * @returns {Object[]} the available actions - * @access protected - * @since 1.1.0 - */ - getActions() { - var actions = {}; - - actions['bright'] = { - label: 'Brightness', - options: [ - this.MONITOR_FIELD, - this.LEVEL_FIELD(255) - ] - }; - actions['brightUp'] = { - label: 'Brightness (Inc)', - options: [ - this.MONITOR_FIELD, - this.INCREMENT_FIELD - ] - }; - actions['brightDown'] = { - label: 'Brightness (Dec)', - options: [ - this.MONITOR_FIELD, - this.DECREMENT_FIELD - ] - }; - - if (this.config.ver != 'smView4K') { - actions['cont'] = { - label: 'Contrast', - options: [ - this.MONITOR_FIELD, - this.LEVEL_FIELD(127) - ] - }; - actions['contUp'] = { - label: 'Contrast (Inc)', - options: [ - this.MONITOR_FIELD, - this.INCREMENT_FIELD - ] - }; - actions['contDown'] = { - label: 'Contrast (Dec)', - options: [ - this.MONITOR_FIELD, - this.DECREMENT_FIELD - ] - }; - - actions['sat'] = { - label: 'Saturation', - options: [ - this.MONITOR_FIELD, - this.LEVEL_FIELD(127) - ] - }; - actions['satUp'] = { - label: 'Saturation (Inc)', - options: [ - this.MONITOR_FIELD, - this.INCREMENT_FIELD - ] - }; - actions['satDown'] = { - label: 'Saturation (Dec)', - options: [ - this.MONITOR_FIELD, - this.DECREMENT_FIELD - ] - }; - } - - actions['ident'] = { - label: 'Identify 15 Sec', - options: [ - this.MONITOR_FIELD - ] - }; - - actions['border'] = { - label: 'Border', - options: [ - this.MONITOR_FIELD, - this.COLOR_FIELD - ] - }; - - if (this.config.ver == 'smScope') { - actions['scopeFunc'] = { - label: 'Scope Function', - options: [ - this.MONITOR_FIELD, - this.SCOPETYPE_FIELD - ] - }; - - actions['audio'] = { - label: 'Audio Channels', - options: [ - this.MONITOR_FIELD, - this.AUDIOCHANNEL_FIELD - ] - }; - } - - if (this.config.ver == 'smView4K') { - actions['lut'] = { - label: 'Set LUT', - options: [ - this.MONITOR_FIELD, - this.LUT_FIELD - ] - }; - - actions['input'] = { - label: 'Select Input', - options: [ - this.MONITOR_FIELD, - this.INPUT_FIELD - ] - }; - } - - return actions; - } -} \ No newline at end of file diff --git a/HELP.md b/companion/HELP.md similarity index 50% rename from HELP.md rename to companion/HELP.md index 5c284e6..487f638 100644 --- a/HELP.md +++ b/companion/HELP.md @@ -3,21 +3,24 @@ This module will connect to Blackmagic Design SmartView and SmartScope devices. ### Configuration -* Type in the device IP address. -* The device will communicate over port 9992. + +- Type in the device IP address. +- The device will communicate over port 9992. ### Available actions and feedbacks (model dependent) -* Brightness -* Contrast -* Saturation -* Identify 15 Sec -* Border -* Scope Function -* Audio Channels -* Set LUT -* Select Input + +- Brightness +- Contrast +- Saturation +- Identify 15 Sec +- Border +- Scope Function +- Audio Channels +- Set LUT +- Select Input ### Available variables (model dependent) -* Brightness -* Contrast -* Saturation \ No newline at end of file + +- Brightness +- Contrast +- Saturation diff --git a/companion/manifest.json b/companion/manifest.json new file mode 100644 index 0000000..614ee76 --- /dev/null +++ b/companion/manifest.json @@ -0,0 +1,26 @@ +{ + "id": "bmd-smartview", + "name": "bmd-smartview", + "shortname": "smart", + "description": "bmd-smartview", + "version": "2.0.0", + "license": "MIT", + "repository": "git+https://github.com/bitfocus/companion-module-bmd-smartview.git", + "bugs": "https://github.com/bitfocus/companion-module-bmd-smartview/issues", + "maintainers": [ + { + "name": "Keith Rocheck", + "email": "keith.rocheck@gmail.com" + } + ], + "legacyIds": [], + "runtime": { + "type": "node18", + "api": "nodejs-ipc", + "apiVersion": "0.0.0", + "entrypoint": "..\\src\\index.js" + }, + "manufacturer": "Blackmagic Design", + "products": ["SmartView", "SmartScope"], + "keywords": ["Scope", "Monitor"] +} diff --git a/feedback.js b/feedback.js deleted file mode 100644 index 9587e9d..0000000 --- a/feedback.js +++ /dev/null @@ -1,191 +0,0 @@ -module.exports = { - - /** - * INTERNAL: initialize feedbacks. - * - * @access protected - * @since 1.1.0 - */ - initFeedbacks() { - // feedbacks - var feedbacks = {}; - - feedbacks['bright'] = { - label: 'Change background color by monitor brightness', - description: 'If the selected monitor has the brightness specified, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.LEVEL_FIELD(255) - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).brightness == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - - if (this.config.ver != 'smView4K') { - feedbacks['cont'] = { - label: 'Change background color by monitor contrast', - description: 'If the selected monitor has the contrast specified, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.LEVEL_FIELD(127) - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).contrast == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - feedbacks['sat'] = { - label: 'Change background color by monitor saturation', - description: 'If the selected monitor has the saturation specified, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.LEVEL_FIELD(127) - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).saturation == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - } - - feedbacks['ident'] = { - label: 'Change background color by monitor identify state', - description: 'If the selected monitor is currently identifying, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).identify === true) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - - - feedbacks['border'] = { - label: 'Change background color by monitor border color', - description: 'If the selected monitor has the border color defined, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.COLOR_FIELD - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).border == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - - if (this.config.ver == 'smScope') { - feedbacks['scopeFunc'] = { - label: 'Change background color by scope function', - description: 'If the selected monitor has the scope function active, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.SCOPETYPE_FIELD - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).scopeMode == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - - feedbacks['audio'] = { - label: 'Change background color by audio channels', - description: 'If the selected monitor has the audio channels active, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.AUDIOCHANNEL_FIELD - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).audioChannel == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - } - - if (this.config.ver == 'smView4K') { - feedbacks['lut'] = { - label: 'Change background color by LUT', - description: 'If the selected monitor has the LUT action, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.LUT_FIELD - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).lut == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - - feedbacks['input'] = { - label: 'Change background color by input', - description: 'If the selected monitor has the input active, change background color of the bank', - options: [ - this.FG_COLOR_FIELD(this.rgb(0,0,0)), - this.BG_COLOR_FIELD(this.rgb(255,255,0)), - this.MONITOR_FIELD, - this.INPUT_FIELD - ], - callback: (feedback, bank) => { - if (this.getMonitor(feedback.options.mon).monitorInput == feedback.options.val) { - return { - color: feedback.options.fg, - bgcolor: feedback.options.bg - }; - } - } - }; - } - - this.setFeedbackDefinitions(feedbacks); - } -} \ No newline at end of file diff --git a/index.js b/index.js deleted file mode 100644 index dc4c89f..0000000 --- a/index.js +++ /dev/null @@ -1,687 +0,0 @@ -var tcp = require('../../tcp'); -var instance_skel = require('../../instance_skel'); - -var actions = require('./actions'); -var feedback = require('./feedback'); -var presets = require('./presets'); -var setup = require('./setup'); -var upgradeScripts= require('./upgrades'); -var variables = require('./variables'); - -/** - * Companion instance class for the Blackmagic SmartView/SmartScope Monitors. - * - * @extends instance_skel - * @since 1.0.0 - * @author Per Roine - * @author Keith Rocheck - */ -class instance extends instance_skel { - - /** - * Create an instance of a SmartView/SmartScope module. - * - * @param {EventEmitter} system - the brains of the operation - * @param {string} id - the instance ID - * @param {Object} config - saved user configuration parameters - * @since 1.0.0 - */ - constructor(system, id, config) { - super(system, id, config); - - this.stash = []; - this.command = null; - this.commandQueue = []; - this.cts = false; - this.deviceName = ''; - this.monitors = {}; - - Object.assign(this, { - ...setup, - ...actions, - ...feedback, - ...presets, - ...variables, - }); - - this.PRESETS_STATES = [ - { action: 'bright', group: 'Brightness', label: 'Brightness\\n\\n@ ', choices: [{id: 0, label: '0'}, {id: 127, label: '127'}, {id: 255, label: '255'}] }, - { action: 'cont', group: 'Contrast', label: 'Contrast\\n\\n@ ', choices: [{id: 0, label: '0'}, {id: 127, label: '127'}, {id: 255, label: '255'}] }, - { action: 'sat', group: 'Saturation', label: 'Saturation\\n\\n@ ', choices: [{id: 0, label: '0'}, {id: 127, label: '127'}, {id: 255, label: '255'}] }, - { action: 'ident', group: 'Identify', label: 'Identify', choices: null }, - { action: 'border', group: 'Border Color', label: 'Border Color:\\n', choices: this.CHOICES_COLORS }, - { action: 'scopeFunc', group: 'Scope Function', label: 'Scope Fn:\\n', choices: this.CHOICES_SCOPETYPE }, - { action: 'audio', group: 'Audio Channels', label: 'Audio Ch:\\n', choices: this.CHOICES_AUDIOCHANNELS }, - { action: 'lut', group: 'LUT', label: 'LUT: ', choices: this.CHOICES_LUTS }, - { action: 'input', group: 'Input', label: 'Input: ', choices: this.CHOICES_INPUTS } - ]; - - this.PRESETS_VALUES = [ - { action: 'brightUp', group: 'Brightness', label: 'BRIGHTNESS\\nUP\\n\\n$(smart:_brightness)' }, - { action: 'brightDown', group: 'Brightness', label: 'BRIGHTNESS\\nDOWN\\n\\n$(smart:_brightness)' }, - { action: 'contUp', group: 'Contrast', label: 'CONTRAST\\nUP\\n\\n$(smart:_contrast)', }, - { action: 'contDown', group: 'Contrast', label: 'CONTRAST\\nDOWN\\n\\n$(smart:_contrast)', }, - { action: 'satUp', group: 'Saturation', label: 'SATURATION\\nUP\\n\\n$(smart:_saturation)', }, - { action: 'satDown', group: 'Saturation', label: 'SATURATION\\nDOWN\\n\\n$(smart:_saturation)', } - ]; - - this.setupFields(); - - this.actions(); // export actions - } - - static GetUpgradeScripts() { - return upgradeScripts - } - - /** - * Setup the actions. - * - * @param {EventEmitter} system - the brains of the operation - * @access public - * @since 1.0.0 - */ - actions(system) { - - this.setupChoices(); - this.setActions( this.getActions() ); - } - - /** - * Executes the provided action. - * - * @param {Object} action - the action to be executed - * @access public - * @since 1.0.0 - */ - action(action) { - let cmd; - let opt = action.options; - let mon = this.getMonitor(opt.mon); - - switch (action.action) { - - case 'bright': - cmd = `${opt.mon}\nBrightness: ${opt.val}`; - break; - case 'brightUp': - cmd = `${opt.mon}\nBrightness: ${this.getValue(mon.brightness, opt.val)}`; - break; - case 'brightDown': - cmd = `${opt.mon}\nBrightness: ${this.getValue(mon.brightness, 0-opt.val)}`; - break; - case 'cont': - cmd = `${opt.mon}\nContrast: ${opt.val}`; - break; - case 'contUp': - cmd = `${opt.mon}\nContrast: ${this.getValue(mon.contrast, opt.val)}`; - break; - case 'contDown': - cmd = `${opt.mon}\nContrast: ${this.getValue(mon.contrast, 0-opt.val)}`; - break; - case 'sat': - cmd = `${opt.mon}\nSaturation: ${opt.val}`; - break; - case 'satUp': - cmd = `${opt.mon}\nSaturation: ${this.getValue(mon.saturation, opt.val)}`; - break; - case 'satDown': - cmd = `${opt.mon}\nSaturation: ${this.getValue(mon.saturation, 0-opt.val)}`; - break; - case 'ident': - cmd = `${opt.mon}\nIdentify: true`; - break; - case 'border': - cmd = `${opt.mon}\nBorder: ${opt.val}`; - break; - case 'scopeFunc': - cmd = `${opt.mon}\nScopeMode: ${opt.val}`; - break; - case 'audio': - cmd = `${opt.mon}\nAudioChannel: ${opt.val}`; - break; - case 'lut': - cmd = `${opt.mon}\nLUT: ${opt.val}`; - break; - case 'input': - cmd = `${opt.mon}\nMonitorInput: ${opt.val}`; - break; - } - - if (cmd !== undefined) { - - if (this.socket !== undefined && this.socket.connected) { - this.queueCommand(`${cmd}\n\n`); - } - else { - this.debug('Socket not connected :('); - } - } - } - - /** - * Creates the configuration fields for web config. - * - * @returns {Array} the config fields - * @access public - * @since 1.0.0 - */ - config_fields() { - return [ - { - type: 'textinput', - id: 'host', - label: 'Target IP', - width: 6, - regex: this.REGEX_IP - }, - { - type: 'text', - id: 'info', - width: 12, - label: 'Information', - value: 'This information below will automatically populate from the device upon connection, however, can be set manually for offline programming.' - }, - { - type: 'dropdown', - id: 'ver', - label: 'Product', - width: 6, - choices: this.CHOICES_MODEL, - default: 'smView' - } - ] - } - - /** - * Clean up the instance before it is destroyed. - * - * @access public - * @since 1.0.0 - */ - destroy() { - if (this.socket !== undefined) { - this.socket.destroy(); - } - - this.debug("destroy", this.id);; - } - - /** - * INTERNAL: returns the desired monitor object. - * - * @param {String} id - the monitor to fetch - * @returns {Object} the desired monitor object - * @access protected - * @since 1.1.0 - */ - getMonitor(id) { - - if (id.length > 1) { - if (id.match(/ A/)) { - id = 'A'; - } - else if (id.match(/ B/)) { - id = 'B'; - } - } - - id = id.toLowerCase(); - - if (this.monitors[id] === undefined) { - this.monitors[id] = { - id: id, - brightness: 255, - contrast: 128, - saturation: 128, - identify: false, - border: 'none', - scopeMode: 'Picture', - audioChannel: '0', - lut: 'NONE', - monitorInput: 'SDI A' - }; - } - - return this.monitors[id]; - } - - /** - * INTERNAL: returns a value between 0 and 255 based on change. - * - * @param {number} base - the base value to modify - * @param {number} offset - the +/- value - * @returns {number} 0-255 - * @access protected - * @since 1.1.0 - */ - getValue(base, offset) { - - var out = base + offset; - - if (out > 255) { - out = 255; - } - else if (out < 0) { - out = 0; - } - - return out; - } - - /** - * Main initialization function called once the module - * is OK to start doing things. - * - * @access public - * @since 1.0.0 - */ - init() { - this.initVariables(); - this.initFeedbacks(); - this.initPresets(); - - this.initTCP(); - } - - /** - * INTERNAL: use setup data to initalize the tcp socket object. - * - * @access protected - * @since 1.0.0 - */ - initTCP() { - var receivebuffer = ''; - - if (this.socket !== undefined) { - this.socket.destroy(); - delete this.socket; - } - - if (this.config.port === undefined) { - this.config.port = 9992; - } - - if (this.config.host) { - this.socket = new tcp(this.config.host, this.config.port); - - this.socket.on('status_change', (status, message) => { - this.status(status, message); - }); - - this.socket.on('error', (err) => { - this.debug("Network error", err); - this.log('error',"Network error: " + err.message); - }); - - this.socket.on('connect', () => { - this.debug("Connected"); - }); - - // separate buffered stream into lines with responses - this.socket.on('data', (chunk) => { - var i = 0, line = '', offset = 0; - receivebuffer += chunk; - - while ( (i = receivebuffer.indexOf('\n', offset)) !== -1) { - line = receivebuffer.substr(offset, i - offset); - offset = i + 1; - - if (line.match(/Error/)) { - this.commandQueue.shift(); - this.sendNextCommand(); - } - else if (line.match(/ACK/)) { - if (this.commandQueue.length > 0) { - var echo = this.commandQueue.shift(); - echo = echo.split('\n'); - - if (echo.length > 1) { - var cmd = echo.shift().trim().split(/:/)[0]; - this.processSmartviewInformation(cmd, echo); - } - - this.sendNextCommand(); - } - } - else { - this.socket.emit('receiveline', line.toString()); - } - } - - receivebuffer = receivebuffer.substr(offset); - }); - - this.socket.on('receiveline', (line) => { - - if (this.command === null && line.match(/:/) ) { - this.command = line; - } - else if (this.command !== null && line.length > 0) { - this.stash.push(line.trim()); - } - else if (line.length === 0 && this.command !== null) { - var cmd = this.command.trim().split(/:/)[0]; - - this.processSmartviewInformation(cmd, this.stash); - - this.stash = []; - this.command = null; - this.sendNextCommand(); - } - else if (line.length > 0) { - this.debug("weird response from smartview", line, line.length); - } - }); - } - } - - /** - * INTERNAL: Routes incoming data to the appropriate function for processing. - * - * @param {string} key - the command/data type being passed - * @param {Object} data - the collected data - * @access protected - * @since 1.1.0 - */ - processSmartviewInformation(key,data) { - - if (key.match(/MONITOR (A|B)/)) { - this.updateMonitor(key,data); - //this.initPresets(); - } - else if (key == 'SMARTVIEW DEVICE') { - this.updateDevice(key,data); - this.actions(); - this.initVariables(); - this.initFeedbacks(); - this.initPresets(); - } - else { - // TODO: find out more about the smart view from stuff that comes in here - } - } - - /** - * INTERNAL: Will add a command to the queue to send and send it if cleared to. - * - * @param {string} cmd - the command - * @access protected - * @since 1.1.0 - */ - queueCommand(cmd) { - this.commandQueue.push(cmd); - - if (this.cts === true) { - this.sendNextCommand(); - } - } - - /** - * INTERNAL: Send the next command in the queue OR clears to send if none. - * - * @access protected - * @since 1.1.0 - */ - sendNextCommand() { - if (this.commandQueue.length > 0) { - this.socket.send(this.commandQueue[0]); - this.cts = false; - } - else { - this.cts = true; - } - } - - /** - * INTERNAL: use model data to define the choices for the dropdowns. - * - * @access protected - * @since 1.1.0 - */ - setupChoices() { - - this.CHOICES_MONITOR = []; - - if ( this.config.ver == 'smViewDuo' || this.config.ver == 'smScope' ) { - this.CHOICES_MONITOR = [ - { id: 'MONITOR A:', label: 'Monitor A', preset: 'MONITOR: A\\n', variable: 'mon_a_' }, - { id: 'MONITOR B:', label: 'Monitor B', preset: 'MONITOR: B\\n', variable: 'mon_b_' } - ]; - } - else { - this.CHOICES_MONITOR = [{ id: 'MONITOR A:', label: 'Monitor A', preset: '', variable: 'mon_a_' }]; - } - - this.MONITOR_FIELD.choices = this.CHOICES_MONITOR; - } - - /** - * Set up the fields used in actions and feedbacks - * - * @access protected - * @since 1.1.2 - */ - setupFields() { - - this.BG_COLOR_FIELD = function(defaultColor) { - return { - type: 'colorpicker', - label: 'Background color', - id: 'bg', - default: defaultColor - }; - }; - this.FG_COLOR_FIELD = function(defaultColor) { - return { - type: 'colorpicker', - label: 'Foreground color', - id: 'fg', - default: defaultColor - }; - }; - this.AUDIOCHANNEL_FIELD = { - type: 'dropdown', - label: 'Channels', - id: 'val', - choices: this.CHOICES_AUDIOCHANNELS, - default: '0' - }; - this.COLOR_FIELD = { - type: 'dropdown', - label: 'Color', - id: 'val', - choices: this.CHOICES_COLORS - }; - this.DECREMENT_FIELD = { - type: 'number', - label: 'Decrement Amount (1-255)', - id: 'val', - min: 1, - max: 255, - default: 5, - required: true, - range: false - }; - this.INCREMENT_FIELD = { - type: 'number', - label: 'Increment Amount (1-255)', - id: 'val', - min: 1, - max: 255, - default: 5, - required: true, - range: false - }; - this.INPUT_FIELD = { - type: 'dropdown', - label: 'Input', - id: 'val', - choices: this.CHOICES_INPUTS, - default: 'SDI A' - }; - this.LEVEL_FIELD = function(defaultLevel) { - return { - type: 'number', - label: 'Set the level 0-255', - id: 'val', - min: 0, - max: 255, - default: defaultLevel, - required: true, - range: true - }; - }; - this.LUT_FIELD = { - type: 'dropdown', - label: 'LUT', - id: 'val', - choices: this.CHOICES_LUTS, - default: 'NONE' - }; - this.MONITOR_FIELD = { - type: 'dropdown', - label: 'Select Monitor', - id: 'mon', - choices: this.CHOICES_MONITOR, - default: 'MONITOR A:' - }; - this.SCOPETYPE_FIELD = { - type: 'dropdown', - label: 'Function', - id: 'val', - choices: this.CHOICES_SCOPETYPE, - default: 'Picture' - }; - } - - /** - * Process an updated configuration array. - * - * @param {Object} config - the new configuration - * @access public - * @since 1.0.0 - */ - updateConfig(config) { - var resetConnection = false; - - if (this.config.host != config.host) - { - resetConnection = true; - } - - this.config = config; - - this.actions(); - this.initVariables(); - this.initFeedbacks(); - this.initPresets(); - - if (resetConnection === true || this.socket === undefined) { - this.initTCP(); - } - } - - /** - * INTERNAL: Updates device data from the SmartView - * - * @param {string} labeltype - the command/data type being passed - * @param {Object} object - the collected data - * @access protected - * @since 1.1.0 - */ - updateDevice(labeltype, object) { - - for (var key in object) { - var parsethis = object[key]; - var a = parsethis.split(/: /); - var attribute = a.shift(); - var value = a.join(" "); - - switch (attribute) { - case 'Model': - if (value.match(/SmartView 4K/)) { - this.config.ver = 'smView4K'; - } - else if (value.match(/SmartView HD/)) { - this.config.ver = 'smView'; - } - else if (value.match(/SmartView Duo/)) { - this.config.ver = 'smViewDuo'; - } - else if (value.match(/SmartScope Duo 4K/)) { - this.config.ver = 'smScope'; - } - this.deviceName = value; - this.log('info', 'Connected to a ' + this.deviceName); - break; - } - } - - this.saveConfig(); - } - - /** - * INTERNAL: Updates monitor config based on data from the SmartView - * - * @param {string} labeltype - the command/data type being passed - * @param {Object} object - the collected data - * @access protected - * @since 1.1.0 - */ - updateMonitor(labeltype, object) { - - var monitor = this.getMonitor(labeltype); - - for (var key in object) { - var parsethis = object[key]; - var a = parsethis.split(/: /); - var attribute = a.shift(); - var value = a.join(" "); - - switch (attribute) { - case 'Brightness': - monitor.brightness = parseInt(value); - this.setVariable('mon_' + monitor.id + '_brightness', monitor.brightness); - this.checkFeedbacks('bright'); - break; - case 'Contrast': - monitor.contrast = parseInt(value); - this.setVariable('mon_' + monitor.id + '_contrast', monitor.contrast); - this.checkFeedbacks('cont'); - break; - case 'Saturation': - monitor.saturation = parseInt(value); - this.setVariable('mon_' + monitor.id + '_saturation', monitor.saturation); - this.checkFeedbacks('sat'); - break; - case 'Border': - monitor.border = value; - this.checkFeedbacks('border'); - break; - case 'ScopeMode': - monitor.scopeMode = value; - this.checkFeedbacks('scopeFunc'); - break; - case 'AudioChannel': - monitor.audioChannel = value; - this.checkFeedbacks('audio'); - break; - case 'LUT': - monitor.lut = value; - this.checkFeedbacks('lut'); - break; - case 'MonitorInput': - monitor.monitorInput = value; - this.checkFeedbacks('input'); - break; - case 'Identify': - monitor.identify = (value == 'true'); - this.checkFeedbacks('ident'); - break; - } - } - } -} - -exports = module.exports = instance; diff --git a/package.json b/package.json index 5a6d822..52fbd19 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,23 @@ { "name": "bmd-smartview", - "version": "1.1.3", - "api_version": "1.0.0", - "keywords": [ - "Scope", - "Monitor" - ], - "main": "index.js", + "version": "2.0.0", + "main": "src/index.js", + "type": "module", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "format": "prettier --write ." }, - "manufacturer": "Blackmagic Design", - "product": [ - "SmartView", - "SmartScope" - ], - "shortname": "smart", - "homepage": "https://github.com/bitfocus/companion-module-bmd-smartview#readme", "repository": { "type": "git", "url": "git+https://github.com/bitfocus/companion-module-bmd-smartview.git" }, - "author": "Keith Rocheck ", "license": "MIT", - "bugs": { - "url": "https://github.com/bitfocus/companion-module-bmd-smartview/issues" - } + "dependencies": { + "@companion-module/base": "~1.2" + }, + "devDependencies": { + "@companion-module/tools": "~1.1", + "prettier": "^2.8.3" + }, + "prettier": "@companion-module/tools/.prettierrc.json" } diff --git a/presets.js b/presets.js deleted file mode 100644 index fcf08b2..0000000 --- a/presets.js +++ /dev/null @@ -1,135 +0,0 @@ -module.exports = { - - /** - * INTERNAL: initialize presets. - * - * @access protected - * @since 1.1.0 - */ - initPresets () { - var presets = []; - - for (let monID in this.CHOICES_MONITOR) { - let monitor = this.CHOICES_MONITOR[monID].id; - let lbl = this.CHOICES_MONITOR[monID].preset; - let variable = this.CHOICES_MONITOR[monID].variable; - - for (let pt in this.PRESETS_STATES) { - let pv = this.PRESETS_STATES[pt]; - - if ( (pv.action == 'cont' || pv.action == 'sat') && this.config.ver == 'smView4K') { - continue; - } - else if ( (pv.action == 'scopeFunc' || pv.action == 'audio') && this.config.ver != 'smScope') { - continue; - } - else if ( (pv.action == 'lut' || pv.action == 'input') && this.config.ver != 'smView4K') { - continue; - } - - if (pv.choices != null) { - for (let id in pv.choices) { - let choice = pv.choices[id]; - - presets.push({ - category: pv.group, - label: lbl + pv.label + choice.label, - bank: { - style: 'text', - text: lbl + pv.label + choice.label, - size: '7', - color: this.rgb(255,255,255), - bgcolor: this.rgb(0,0,0) - }, - actions: [ - { - action: pv.action, - options: { - mon: monitor, - val: choice.id - } - } - ], - feedbacks: [ - { - type: pv.action, - options: { - bg: this.rgb(255,255,0), - fg: this.rgb(0,0,0), - mon: monitor, - val: choice.id - } - } - ] - }); - } - } - else { - presets.push({ - category: pv.group, - label: lbl + pv.label, - bank: { - style: 'text', - text: lbl + pv.label, - size: '14', - color: this.rgb(255,255,255), - bgcolor: this.rgb(0,0,0) - }, - actions: [ - { - action: pv.action, - options: { - mon: monitor - } - } - ], - feedbacks: [ - { - type: pv.action, - options: { - bg: this.rgb(255,255,0), - fg: this.rgb(0,0,0), - mon: monitor - } - } - ] - }); - } - } - - for (let pt in this.PRESETS_VALUES) { - let pv = this.PRESETS_VALUES[pt]; - - if ( (pv.group == 'Contrast' || pv.group == 'Saturation') && this.config.ver == 'smView4K') { - continue; - } - - let varParts = pv.label.split('_'); - let varLabel = lbl + varParts.join(variable); - - presets.push({ - category: pv.group, - label: varLabel, - bank: { - style: 'text', - text: varLabel, - size: '7', - color: this.rgb(255,255,255), - bgcolor: this.rgb(0,0,0) - }, - actions: [ - { - action: pv.action, - options: { - mon: monitor, - val: 1 - } - } - ] - }); - } - } - - this.setPresetDefinitions(presets); - } -} \ No newline at end of file diff --git a/setup.js b/setup.js deleted file mode 100644 index 5e3583c..0000000 --- a/setup.js +++ /dev/null @@ -1,47 +0,0 @@ -module.exports = { - - CHOICES_MODEL: [ - { id: 'smView', label: 'SmartView HD' }, - { id: 'smView4K', label: 'SmartView 4K' }, - { id: 'smViewDuo', label: 'SmartView Duo' }, - { id: 'smScope', label: 'SmartScope Duo 4K' } - ], - CHOICES_AUDIOCHANNELS: [ - { id: '0', label: 'Channels 1 and 2' }, - { id: '1', label: 'Channels 3 and 4' }, - { id: '2', label: 'Channels 5 and 6' }, - { id: '3', label: 'Channels 7 and 8' }, - { id: '4', label: 'Channels 9 and 10' }, - { id: '5', label: 'Channels 11 and 12' }, - { id: '6', label: 'Channels 13 and 14' }, - { id: '7', label: 'Channels 15 and 16' } - ], - CHOICES_COLORS: [ - { id: 'none', label:'None' }, - { id: 'red', label:'Red' }, - { id: 'green', label:'Green' }, - { id: 'blue', label:'Blue' }, - { id: 'white', label:'White' } - ], - CHOICES_INPUTS: [ - { id: 'SDI A', label: 'SDI A' }, - { id: 'SDI B', label: 'SDI B' }, - { id: 'OPTICAL', label: 'OPTICAL' } - ], - CHOICES_LUTS: [ - { id: '0', label: 'LUT 1' }, - { id: '1', label: 'LUT 2' }, - { id: 'NONE', label: 'DISABLE' } - ], - CHOICES_SCOPETYPE: [ - { id: 'Picture', label: 'Picture' }, - { id: 'WaveformLuma', label: 'Waveform' }, - { id: 'Vector100', label: 'Vector - 100%' }, - { id: 'Vector75', label: 'Vector - 75%' }, - { id: 'ParadeRGB', label: 'RGB Parade' }, - { id: 'ParadeYUV', label: 'YVU Parade' }, - { id: 'Histogram', label: 'Histogram' }, - { id: 'AudioDbfs', label: 'Audio dBFS' }, - { id: 'AudioDbvu', label: 'Audio dBVU' } - ] -} \ No newline at end of file diff --git a/src/actions.js b/src/actions.js new file mode 100644 index 0000000..778d032 --- /dev/null +++ b/src/actions.js @@ -0,0 +1,142 @@ +import { Fields, getValue } from './setup.js' + +/** + * INTERNAL: Get the available actions. + * + * @access protected + * @since 1.1.0 + */ +export function updateActions() { + let actions = {} + + this.setupChoices() + + actions['bright'] = { + name: 'Brightness', + options: [this.MONITOR_FIELD, Fields.Level(255)], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nBrightness: ${options.val}`) + }, + } + actions['brightUp'] = { + name: 'Brightness (Inc)', + options: [this.MONITOR_FIELD, Fields.Increment], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nBrightness: ${getValue(mon.brightness, options.val)}`) + }, + } + actions['brightDown'] = { + name: 'Brightness (Dec)', + options: [this.MONITOR_FIELD, Fields.Decrement], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nBrightness: ${getValue(mon.brightness, 0 - options.val)}`) + }, + } + + if (this.config.ver != 'smView4K') { + actions['cont'] = { + name: 'Contrast', + options: [this.MONITOR_FIELD, Fields.Level(127)], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nContrast: ${options.val}`) + }, + } + actions['contUp'] = { + name: 'Contrast (Inc)', + options: [this.MONITOR_FIELD, Fields.Increment], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nContrast: ${getValue(mon.contrast, options.val)}`) + }, + } + actions['contDown'] = { + name: 'Contrast (Dec)', + options: [this.MONITOR_FIELD, Fields.Decrement], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nContrast: ${getValue(mon.contrast, 0 - options.val)}`) + }, + } + + actions['sat'] = { + name: 'Saturation', + options: [this.MONITOR_FIELD, Fields.Level(127)], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nSaturation: ${options.val}`) + }, + } + actions['satUp'] = { + name: 'Saturation (Inc)', + options: [this.MONITOR_FIELD, Fields.Increment], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nSaturation: ${getValue(mon.saturation, options.val)}`) + }, + } + actions['satDown'] = { + name: 'Saturation (Dec)', + options: [this.MONITOR_FIELD, Fields.Decrement], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nSaturation: ${getValue(mon.saturation, 0 - options.val)}`) + }, + } + } + + actions['ident'] = { + name: 'Identify 15 Sec', + options: [this.MONITOR_FIELD], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nIdentify: true`) + }, + } + + actions['border'] = { + name: 'Border', + options: [this.MONITOR_FIELD, Fields.Color], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nBorder: ${options.val}`) + }, + } + + if (this.config.ver == 'smScope') { + actions['scopeFunc'] = { + name: 'Scope Function', + options: [this.MONITOR_FIELD, Fields.ScopeType], + callback: ({ options }) => { + let mon = this.getMonitor(options.mon) + this.queueCommand(`${options.mon}\nScopeMode: ${options.val}`) + }, + } + + actions['audio'] = { + name: 'Audio Channels', + options: [this.MONITOR_FIELD, Fields.AudioChannel], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nAudioChannel: ${options.val}`) + }, + } + } + + if (this.config.ver == 'smView4K') { + actions['lut'] = { + name: 'Set LUT', + options: [this.MONITOR_FIELD, Fields.Lut], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nLUT: ${options.val}`) + }, + } + + actions['input'] = { + name: 'Select Input', + options: [this.MONITOR_FIELD, Fields.Input], + callback: ({ options }) => { + this.queueCommand(`${options.mon}\nMonitorInput: ${options.val}`) + }, + } + } + + this.setActionDefinitions(actions) +} diff --git a/src/feedback.js b/src/feedback.js new file mode 100644 index 0000000..952289d --- /dev/null +++ b/src/feedback.js @@ -0,0 +1,181 @@ +import { combineRgb } from '@companion-module/base' +import { Fields } from './setup.js' + +/** + * INTERNAL: initialize feedbacks. + * + * @access protected + * @since 1.1.0 + */ +export function updateFeedbacks() { + let feedbacks = {} + + feedbacks['bright'] = { + type: 'boolean', + name: 'Change background color by monitor brightness', + description: 'If the selected monitor has the brightness specified, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.Level(255)], + callback: ({ options }) => { + if (this.getMonitor(options.mon).brightness == options.val) { + return true + } else { + return false + } + }, + } + + if (this.config.ver != 'smView4K') { + feedbacks['cont'] = { + type: 'boolean', + name: 'Change background color by monitor contrast', + description: 'If the selected monitor has the contrast specified, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.Level(127)], + callback: ({ options }) => { + if (this.getMonitor(options.mon).contrast == options.val) { + return true + } else { + return false + } + }, + } + feedbacks['sat'] = { + type: 'boolean', + name: 'Change background color by monitor saturation', + description: 'If the selected monitor has the saturation specified, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.Level(127)], + callback: ({ options }) => { + if (this.getMonitor(options.mon).saturation == options.val) { + return true + } else { + return false + } + }, + } + } + + feedbacks['ident'] = { + type: 'boolean', + name: 'Change background color by monitor identify state', + description: 'If the selected monitor is currently identifying, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD], + callback: ({ options }) => { + if (this.getMonitor(options.mon).identify === true) { + return true + } else { + return false + } + }, + } + + feedbacks['border'] = { + type: 'boolean', + name: 'Change background color by monitor border color', + description: 'If the selected monitor has the border color defined, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.Color], + callback: ({ options }) => { + if (this.getMonitor(options.mon).border == options.val) { + return true + } else { + return false + } + }, + } + + if (this.config.ver == 'smScope') { + feedbacks['scopeFunc'] = { + type: 'boolean', + name: 'Change background color by scope function', + description: 'If the selected monitor has the scope function active, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.ScopeType], + callback: ({ options }) => { + if (this.getMonitor(options.mon).scopeMode == options.val) { + return true + } else { + return false + } + }, + } + + feedbacks['audio'] = { + type: 'boolean', + name: 'Change background color by audio channels', + description: 'If the selected monitor has the audio channels active, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.AudioChannel], + callback: ({ options }) => { + if (this.getMonitor(options.mon).audioChannel == options.val) { + return true + } else { + return false + } + }, + } + } + + if (this.config.ver == 'smView4K') { + feedbacks['lut'] = { + type: 'boolean', + name: 'Change background color by LUT', + description: 'If the selected monitor has the LUT action, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.Lut], + callback: ({ options }) => { + if (this.getMonitor(options.mon).lut == options.val) { + return true + } else { + return false + } + }, + } + + feedbacks['input'] = { + type: 'boolean', + name: 'Change background color by input', + description: 'If the selected monitor has the input active, change background color of the bank', + style: { + color: combineRgb(0, 0, 0), + bgcolor: combineRgb(255, 255, 0), + }, + options: [this.MONITOR_FIELD, Fields.Input], + callback: ({ options }) => { + if (this.getMonitor(options.mon).monitorInput == options.val) { + return true + } else { + return false + } + }, + } + } + + this.setFeedbackDefinitions(feedbacks) +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..ff4d7ee --- /dev/null +++ b/src/index.js @@ -0,0 +1,460 @@ +import { + CreateConvertToBooleanFeedbackUpgradeScript, + InstanceBase, + Regex, + runEntrypoint, + TCPHelper, +} from '@companion-module/base' +import { updateActions } from './actions.js' +import { updateFeedbacks } from './feedback.js' +import { updatePresets } from './presets.js' +import { updateVariables } from './variables.js' +import { BooleanFeedbackUpgradeMap, upgrade_v1_1_0 } from './upgrades.js' +import { Choices } from './setup.js' + +/** + * Companion instance class for the Blackmagic SmartView/SmartScope Monitors. + * + * @extends InstanceBase + * @since 1.0.0 + * @author Keith Rocheck + */ +class BlackmagicSmartviewInstance extends InstanceBase { + /** + * Create an instance of a SmartView/SmartScope module. + * + * @param {Object} internal - Companion internals + * @since 1.0.0 + */ + constructor(internal) { + super(internal) + + this.updateActions = updateActions.bind(this) + this.updateFeedbacks = updateFeedbacks.bind(this) + this.updatePresets = updatePresets.bind(this) + this.updateVariables = updateVariables.bind(this) + } + + /** + * Process an updated configuration array. + * + * @param {Object} config - the new configuration + * @access public + * @since 1.0.0 + */ + async configUpdated(config) { + let resetConnection = false + + if (this.config.host != config.host) { + resetConnection = true + } + + this.config = config + + this.updateActions() + this.updateVariables() + this.updateFeedbacks() + this.updatePresets() + + if (resetConnection === true || this.socket === undefined) { + this.initTCP() + } + } + + /** + * Clean up the instance before it is destroyed. + * + * @access public + * @since 1.0.0 + */ + async destroy() { + if (this.socket !== undefined) { + this.socket.destroy() + } + + this.log('debug', 'destroy', this.id) + } + + /** + * Creates the configuration fields for web config. + * + * @returns {Array} the config fields + * @access public + * @since 1.0.0 + */ + getConfigFields() { + return [ + { + type: 'textinput', + id: 'host', + label: 'Target IP', + width: 6, + regex: Regex.IP, + }, + { + type: 'static-text', + id: 'info', + width: 12, + label: 'Information', + value: + 'This information below will automatically populate from the device upon connection, however, can be set manually for offline programming.', + }, + { + type: 'dropdown', + id: 'ver', + label: 'Product', + width: 6, + choices: Choices.Model, + default: 'smView', + }, + ] + } + + /** + * INTERNAL: returns the desired monitor object. + * + * @param {String} id - the monitor to fetch + * @returns {Object} the desired monitor object + * @access protected + * @since 1.1.0 + */ + getMonitor(id) { + if (id.length > 1) { + if (id.match(/ A/)) { + id = 'A' + } else if (id.match(/ B/)) { + id = 'B' + } + } + + id = id.toLowerCase() + + if (this.monitors[id] === undefined) { + this.monitors[id] = { + id: id, + brightness: 255, + contrast: 128, + saturation: 128, + identify: false, + border: 'none', + scopeMode: 'Picture', + audioChannel: '0', + lut: 'NONE', + monitorInput: 'SDI A', + } + } + + return this.monitors[id] + } + + /** + * Main initialization function called once the module + * is OK to start doing things. + * + * @param {Object} config - the configuration + * @access public + * @since 1.0.0 + */ + async init(config) { + this.config = config + this.stash = [] + this.command = null + this.commandQueue = [] + this.cts = false + this.deviceName = '' + this.monitors = {} + + this.setupFields() + + this.updateActions() + this.updateVariables() + this.updateFeedbacks() + this.updatePresets() + + this.initTCP() + } + + /** + * INTERNAL: use setup data to initalize the tcp socket object. + * + * @access protected + * @since 1.0.0 + */ + initTCP() { + this.receiveBuffer = '' + + if (this.socket !== undefined) { + this.socket.destroy() + delete this.socket + } + + if (this.config.port === undefined) { + this.config.port = 9992 + } + + if (this.config.host) { + this.socket = new TCPHelper(this.config.host, this.config.port) + + this.socket.on('status_change', (status, message) => { + this.updateStatus(status, message) + }) + + this.socket.on('error', (err) => { + this.log('error', 'Network error: ' + err.message) + }) + + this.socket.on('connect', () => { + this.log('debug', 'Connected') + }) + + // separate buffered stream into lines with responses + this.socket.on('data', (chunk) => { + let i = 0, + line = '', + offset = 0 + this.receiveBuffer += chunk + + while ((i = this.receiveBuffer.indexOf('\n', offset)) !== -1) { + line = this.receiveBuffer.substr(offset, i - offset) + offset = i + 1 + + if (line.match(/Error/)) { + this.commandQueue.shift() + this.sendNextCommand() + } else if (line.match(/ACK/)) { + if (this.commandQueue.length > 0) { + let echo = this.commandQueue.shift() + echo = echo.split('\n') + + if (echo.length > 1) { + let cmd = echo.shift().trim().split(/:/)[0] + this.processSmartviewInformation(cmd, echo) + } + + this.sendNextCommand() + } + } else { + this.socket.emit('receiveline', line.toString()) + } + } + + this.receiveBuffer = this.receiveBuffer.substr(offset) + }) + + this.socket.on('receiveline', (line) => { + if (this.command === null && line.match(/:/)) { + this.command = line + } else if (this.command !== null && line.length > 0) { + this.stash.push(line.trim()) + } else if (line.length === 0 && this.command !== null) { + let cmd = this.command.trim().split(/:/)[0] + + this.processSmartviewInformation(cmd, this.stash) + + this.stash = [] + this.command = null + this.sendNextCommand() + } else if (line.length > 0) { + this.log('debug', 'weird response from smartview', line, line.length) + } + }) + } + } + + /** + * INTERNAL: Routes incoming data to the appropriate function for processing. + * + * @param {string} key - the command/data type being passed + * @param {Object} data - the collected data + * @access protected + * @since 1.1.0 + */ + processSmartviewInformation(key, data) { + if (key.match(/MONITOR (A|B)/)) { + this.updateMonitor(key, data) + //this.updatePresets() + } else if (key == 'SMARTVIEW DEVICE') { + this.updateDevice(key, data) + this.updateActions() + this.updateVariables() + this.updateFeedbacks() + this.updatePresets() + } else { + // TODO: find out more about the smart view from stuff that comes in here + } + } + + /** + * INTERNAL: Will add a command to the queue to send and send it if cleared to. + * + * @param {string} cmd - the command + * @access protected + * @since 1.1.0 + */ + queueCommand(cmd) { + if (cmd !== undefined) { + if (this.socket !== undefined && this.socket.connected) { + this.commandQueue.push(`${cmd}\n\n`) + + if (this.cts === true) { + this.sendNextCommand() + } + } else { + this.log('debug', 'Socket not connected :(') + } + } + } + + /** + * INTERNAL: Send the next command in the queue OR clears to send if none. + * + * @access protected + * @since 1.1.0 + */ + sendNextCommand() { + if (this.commandQueue.length > 0) { + this.socket.send(this.commandQueue[0]) + this.cts = false + } else { + this.cts = true + } + } + + /** + * INTERNAL: use model data to define the choices for the dropdowns. + * + * @access protected + * @since 1.1.0 + */ + setupChoices() { + this.CHOICES_MONITOR = [] + + if (this.config.ver == 'smViewDuo' || this.config.ver == 'smScope') { + this.CHOICES_MONITOR = [ + { id: 'MONITOR A:', label: 'Monitor A', preset: 'MONITOR: A\\n', variable: 'mon_a_' }, + { id: 'MONITOR B:', label: 'Monitor B', preset: 'MONITOR: B\\n', variable: 'mon_b_' }, + ] + } else { + this.CHOICES_MONITOR = [{ id: 'MONITOR A:', label: 'Monitor A', preset: '', variable: 'mon_a_' }] + } + + this.MONITOR_FIELD.choices = this.CHOICES_MONITOR + } + + /** + * Set up the fields used in actions and feedbacks + * + * @access protected + * @since 1.1.2 + */ + setupFields() { + this.MONITOR_FIELD = { + type: 'dropdown', + label: 'Select Monitor', + id: 'mon', + choices: this.CHOICES_MONITOR, + default: 'MONITOR A:', + } + } + + /** + * INTERNAL: Updates device data from the SmartView + * + * @param {string} labeltype - the command/data type being passed + * @param {Object} object - the collected data + * @access protected + * @since 1.1.0 + */ + updateDevice(labeltype, object) { + for (let key in object) { + let parsethis = object[key] + let a = parsethis.split(/: /) + let attribute = a.shift() + let value = a.join(' ') + + switch (attribute) { + case 'Model': + if (value.match(/SmartView 4K/)) { + this.config.ver = 'smView4K' + } else if (value.match(/SmartView HD/)) { + this.config.ver = 'smView' + } else if (value.match(/SmartView Duo/)) { + this.config.ver = 'smViewDuo' + } else if (value.match(/SmartScope Duo 4K/)) { + this.config.ver = 'smScope' + } + this.deviceName = value + this.log('info', 'Connected to a ' + this.deviceName) + break + } + } + + this.saveConfig(this.config) + } + + /** + * INTERNAL: Updates monitor config based on data from the SmartView + * + * @param {string} labeltype - the command/data type being passed + * @param {Object} object - the collected data + * @access protected + * @since 1.1.0 + */ + updateMonitor(labeltype, object) { + let monitor = this.getMonitor(labeltype) + + for (let key in object) { + let parsethis = object[key] + let a = parsethis.split(/: /) + let attribute = a.shift() + let value = a.join(' ') + + switch (attribute) { + case 'Brightness': + monitor.brightness = parseInt(value) + this.setVariableValues({ [`mon_${monitor.id}_brightness`]: monitor.brightness }) + this.checkFeedbacks('bright') + break + case 'Contrast': + monitor.contrast = parseInt(value) + this.setVariableValues({ [`mon_${monitor.id}_contrast`]: monitor.contrast }) + this.checkFeedbacks('cont') + break + case 'Saturation': + monitor.saturation = parseInt(value) + this.setVariableValues({ [`mon_${monitor.id}_saturation`]: monitor.saturation }) + this.checkFeedbacks('sat') + break + case 'Border': + monitor.border = value + this.checkFeedbacks('border') + break + case 'ScopeMode': + monitor.scopeMode = value + this.checkFeedbacks('scopeFunc') + break + case 'AudioChannel': + monitor.audioChannel = value + this.checkFeedbacks('audio') + break + case 'LUT': + monitor.lut = value + this.checkFeedbacks('lut') + break + case 'MonitorInput': + monitor.monitorInput = value + this.checkFeedbacks('input') + break + case 'Identify': + monitor.identify = value == 'true' + this.checkFeedbacks('ident') + break + } + } + } +} + +runEntrypoint(BlackmagicSmartviewInstance, [ + upgrade_v1_1_0, + CreateConvertToBooleanFeedbackUpgradeScript(BooleanFeedbackUpgradeMap), +]) diff --git a/src/presets.js b/src/presets.js new file mode 100644 index 0000000..024dfb9 --- /dev/null +++ b/src/presets.js @@ -0,0 +1,152 @@ +import { combineRgb } from '@companion-module/base' +import { Presets } from './setup.js' + +/** + * INTERNAL: initialize presets. + * + * @access protected + * @since 1.1.0 + */ +export function updatePresets() { + let presets = {} + + for (let monID in this.CHOICES_MONITOR) { + let monitor = this.CHOICES_MONITOR[monID].id + let lbl = this.CHOICES_MONITOR[monID].preset + let variable = this.CHOICES_MONITOR[monID].variable + + for (let pt in Presets.States) { + let pv = Presets.States[pt] + + if ((pv.action == 'cont' || pv.action == 'sat') && this.config.ver == 'smView4K') { + continue + } else if ((pv.action == 'scopeFunc' || pv.action == 'audio') && this.config.ver != 'smScope') { + continue + } else if ((pv.action == 'lut' || pv.action == 'input') && this.config.ver != 'smView4K') { + continue + } + + if (pv.choices != null) { + for (let id in pv.choices) { + let choice = pv.choices[id] + + presets[`mon_${monitor}_${pv.action}_${choice.id}`] = { + type: 'button', + category: pv.group, + name: lbl + pv.label + choice.label, + style: { + text: lbl + pv.label + choice.label, + size: '7', + color: combineRgb(255, 255, 255), + bgcolor: combineRgb(0, 0, 0), + }, + steps: [ + { + down: [ + { + actionId: pv.action, + options: { + mon: monitor, + val: choice.id, + }, + }, + ], + up: [], + }, + ], + feedbacks: [ + { + feedbackId: pv.action, + options: { + mon: monitor, + val: choice.id, + }, + style: { + bgcolor: combineRgb(255, 255, 0), + color: combineRgb(0, 0, 0), + }, + }, + ], + } + } + } else { + presets[`mon_${monitor}_${pv.action}`] = { + type: 'button', + category: pv.group, + name: lbl + pv.label, + style: { + text: lbl + pv.label, + size: '14', + color: combineRgb(255, 255, 255), + bgcolor: combineRgb(0, 0, 0), + }, + steps: [ + { + down: [ + { + actionId: pv.action, + options: { + mon: monitor, + }, + }, + ], + up: [], + }, + ], + feedbacks: [ + { + feedbackId: pv.action, + options: { + mon: monitor, + }, + style: { + bgcolor: combineRgb(255, 255, 0), + color: combineRgb(0, 0, 0), + }, + }, + ], + } + } + } + + for (let pt in Presets.Values) { + let pv = Presets.Values[pt] + + if ((pv.group == 'Contrast' || pv.group == 'Saturation') && this.config.ver == 'smView4K') { + continue + } + + let varParts = pv.label.split('_') + let varLabel = lbl + varParts.join(variable) + + presets[`mon_${monitor}_${pv.action}`] = { + type: 'button', + category: pv.group, + name: varLabel, + style: { + text: varLabel, + size: '7', + color: combineRgb(255, 255, 255), + bgcolor: combineRgb(0, 0, 0), + }, + steps: [ + { + down: [ + { + actionId: pv.action, + options: { + mon: monitor, + val: 1, + }, + }, + ], + up: [], + }, + ], + feedbacks: [], + } + } + } + + this.setPresetDefinitions(presets) +} diff --git a/src/setup.js b/src/setup.js new file mode 100644 index 0000000..50d00ea --- /dev/null +++ b/src/setup.js @@ -0,0 +1,163 @@ +/** + * INTERNAL: returns a value between 0 and 255 based on change. + * + * @param {number} base - the base value to modify + * @param {number} offset - the +/- value + * @returns {number} 0-255 + * @access protected + * @since 1.1.0 + */ +export function getValue(base, offset) { + let out = base + offset + + if (out > 255) { + out = 255 + } else if (out < 0) { + out = 0 + } + + return out +} + +export const Choices = { + Model: [ + { id: 'smView', label: 'SmartView HD' }, + { id: 'smView4K', label: 'SmartView 4K' }, + { id: 'smViewDuo', label: 'SmartView Duo' }, + { id: 'smScope', label: 'SmartScope Duo 4K' }, + ], + AudioChannels: [ + { id: '0', label: 'Channels 1 and 2' }, + { id: '1', label: 'Channels 3 and 4' }, + { id: '2', label: 'Channels 5 and 6' }, + { id: '3', label: 'Channels 7 and 8' }, + { id: '4', label: 'Channels 9 and 10' }, + { id: '5', label: 'Channels 11 and 12' }, + { id: '6', label: 'Channels 13 and 14' }, + { id: '7', label: 'Channels 15 and 16' }, + ], + Colors: [ + { id: 'none', label: 'None' }, + { id: 'red', label: 'Red' }, + { id: 'green', label: 'Green' }, + { id: 'blue', label: 'Blue' }, + { id: 'white', label: 'White' }, + ], + Inputs: [ + { id: 'SDI A', label: 'SDI A' }, + { id: 'SDI B', label: 'SDI B' }, + { id: 'OPTICAL', label: 'OPTICAL' }, + ], + Luts: [ + { id: '0', label: 'LUT 1' }, + { id: '1', label: 'LUT 2' }, + { id: 'NONE', label: 'DISABLE' }, + ], + ScopeType: [ + { id: 'Picture', label: 'Picture' }, + { id: 'WaveformLuma', label: 'Waveform' }, + { id: 'Vector100', label: 'Vector - 100%' }, + { id: 'Vector75', label: 'Vector - 75%' }, + { id: 'ParadeRGB', label: 'RGB Parade' }, + { id: 'ParadeYUV', label: 'YVU Parade' }, + { id: 'Histogram', label: 'Histogram' }, + { id: 'AudioDbfs', label: 'Audio dBFS' }, + { id: 'AudioDbvu', label: 'Audio dBVU' }, + ], + Values: [ + { id: 0, label: '0' }, + { id: 127, label: '127' }, + { id: 255, label: '255' }, + ], +} + +export const Fields = { + AudioChannel: { + type: 'dropdown', + label: 'Channels', + id: 'val', + choices: Choices.AudioChannels, + default: '0', + }, + Color: { + type: 'dropdown', + label: 'Color', + id: 'val', + choices: Choices.Colors, + }, + Decrement: { + type: 'number', + label: 'Decrement Amount (1-255)', + id: 'val', + min: 1, + max: 255, + default: 5, + required: true, + range: false, + }, + Increment: { + type: 'number', + label: 'Increment Amount (1-255)', + id: 'val', + min: 1, + max: 255, + default: 5, + required: true, + range: false, + }, + Input: { + type: 'dropdown', + label: 'Input', + id: 'val', + choices: Choices.Inputs, + default: 'SDI A', + }, + Level: function (defaultLevel) { + return { + type: 'number', + label: 'Set the level 0-255', + id: 'val', + min: 0, + max: 255, + default: defaultLevel, + required: true, + range: true, + } + }, + Lut: { + type: 'dropdown', + label: 'LUT', + id: 'val', + choices: Choices.Luts, + default: 'NONE', + }, + ScopeType: { + type: 'dropdown', + label: 'Function', + id: 'val', + choices: Choices.ScopeType, + default: 'Picture', + }, +} + +export const Presets = { + States: [ + { action: 'bright', group: 'Brightness', label: 'Brightness\\n\\n@ ', choices: Choices.Values }, + { action: 'cont', group: 'Contrast', label: 'Contrast\\n\\n@ ', choices: Choices.Values }, + { action: 'sat', group: 'Saturation', label: 'Saturation\\n\\n@ ', choices: Choices.Values }, + { action: 'ident', group: 'Identify', label: 'Identify', choices: null }, + { action: 'border', group: 'Border Color', label: 'Border Color:\\n', choices: Choices.Colors }, + { action: 'scopeFunc', group: 'Scope Function', label: 'Scope Fn:\\n', choices: Choices.ScopeType }, + { action: 'audio', group: 'Audio Channels', label: 'Audio Ch:\\n', choices: Choices.AudioChannels }, + { action: 'lut', group: 'LUT', label: 'LUT: ', choices: Choices.Luts }, + { action: 'input', group: 'Input', label: 'Input: ', choices: Choices.Inputs }, + ], + Values: [ + { action: 'brightUp', group: 'Brightness', label: 'BRIGHTNESS\\nUP\\n\\n$(smart:_brightness)' }, + { action: 'brightDown', group: 'Brightness', label: 'BRIGHTNESS\\nDOWN\\n\\n$(smart:_brightness)' }, + { action: 'contUp', group: 'Contrast', label: 'CONTRAST\\nUP\\n\\n$(smart:_contrast)' }, + { action: 'contDown', group: 'Contrast', label: 'CONTRAST\\nDOWN\\n\\n$(smart:_contrast)' }, + { action: 'satUp', group: 'Saturation', label: 'SATURATION\\nUP\\n\\n$(smart:_saturation)' }, + { action: 'satDown', group: 'Saturation', label: 'SATURATION\\nDOWN\\n\\n$(smart:_saturation)' }, + ], +} diff --git a/src/upgrades.js b/src/upgrades.js new file mode 100644 index 0000000..a60ef5f --- /dev/null +++ b/src/upgrades.js @@ -0,0 +1,38 @@ +export function upgrade_v1_1_0(context, props) { + let updateActions = [] + let upgradePass = (action) => { + switch (action.action) { + case 'border': + if (action.options !== undefined && action.options.col !== undefined) { + action.options.val = action.options.col + delete action.options.col + updateActions.push(action) + } + break + } + } + + if (props.actions) { + for (let k in actions) { + upgradePass(actions[k]) + } + } + + return { + updatedConfig: null, + updatedActions: [], + updatedFeedbacks: [], + } +} + +export const BooleanFeedbackUpgradeMap = { + audio: true, + border: true, + bright: true, + cont: true, + ident: true, + input: true, + lut: true, + sat: true, + scopeFunc: true, +} diff --git a/src/variables.js b/src/variables.js new file mode 100644 index 0000000..49656a2 --- /dev/null +++ b/src/variables.js @@ -0,0 +1,43 @@ +/** + * INTERNAL: initialize variables. + * + * @access protected + * @since 1.1.0 + */ +export function updateVariables() { + let variables = [] + + variables.push({ name: 'Monitor A Brightness', variableId: 'mon_a_brightness' }) + + if (this.config.ver != 'smView4K') { + variables.push({ name: 'Monitor A Contrast', variableId: 'mon_a_contrast' }) + variables.push({ name: 'Monitor A Saturation', variableId: 'mon_a_saturation' }) + } + + if (this.config.ver == 'smViewDuo' || this.config.ver == 'smScope') { + variables.push({ name: 'Monitor B Brightness', variableId: 'mon_b_brightness' }) + + if (this.config.ver != 'smView4K') { + variables.push({ name: 'Monitor B Contrast', variableId: 'mon_b_contrast' }) + variables.push({ name: 'Monitor B Saturation', variableId: 'mon_b_saturation' }) + } + } + + this.setVariableDefinitions(variables) + + this.setVariableValues({ mon_a_brightness: this.getMonitor('A').brightness }) + + if (this.config.ver != 'smView4K') { + this.setVariableValues({ mon_a_contrast: this.getMonitor('A').contrast }) + this.setVariableValues({ mon_a_saturation: this.getMonitor('A').saturation }) + } + + if (this.config.ver == 'smViewDuo' || this.config.ver == 'smScope') { + this.setVariableValues({ mon_b_brightness: this.getMonitor('B').brightness }) + + if (this.config.ver != 'smView4K') { + this.setVariableValues({ mon_b_contrast: this.getMonitor('B').contrast }) + this.setVariableValues({ mon_b_saturation: this.getMonitor('B').saturation }) + } + } +} diff --git a/upgrades.js b/upgrades.js deleted file mode 100644 index 08e3715..0000000 --- a/upgrades.js +++ /dev/null @@ -1,26 +0,0 @@ -module.exports = [ - // v1.1.0 (convert border col to val) - function (context, config, actions, feedbacks) { - var changed = false; - - let upgradePass = function(action, changed) { - switch (action.action) { - case 'border': - if (action.options !== undefined && action.options.col !== undefined) { - action.options.val = action.options.col; - delete action.options.col; - changed = true; - } - break; - } - - return changed; - } - - for (let k in actions) { - changed = upgradePass(actions[k], changed); - } - - return changed; - } -] \ No newline at end of file diff --git a/variables.js b/variables.js deleted file mode 100644 index 7d02e5e..0000000 --- a/variables.js +++ /dev/null @@ -1,38 +0,0 @@ -module.exports = { - - /** - * INTERNAL: initialize variables. - * - * @access protected - * @since 1.1.0 - */ - initVariables() { - var variables = []; - - variables.push({ label: 'Monitor A Brightness', name: 'mon_a_brightness' }); - this.setVariable('mon_a_brightness', this.getMonitor('A').brightness); - - if ( this.config.ver != 'smView4K' ) { - variables.push({ label: 'Monitor A Contrast', name: 'mon_a_contrast' }); - variables.push({ label: 'Monitor A Saturation', name: 'mon_a_saturation' }); - - this.setVariable('mon_a_contrast', this.getMonitor('A').contrast); - this.setVariable('mon_a_saturation', this.getMonitor('A').saturation); - } - - if ( this.config.ver == 'smViewDuo' || this.config.ver == 'smScope' ) { - variables.push({ label: 'Monitor B Brightness', name: 'mon_b_brightness' }); - this.setVariable('mon_b_brightness', this.getMonitor('B').brightness); - - if ( this.config.ver != 'smView4K' ) { - variables.push({ label: 'Monitor B Contrast', name: 'mon_b_contrast' }); - variables.push({ label: 'Monitor B Saturation', name: 'mon_b_saturation' }); - - this.setVariable('mon_b_contrast', this.getMonitor('B').contrast); - this.setVariable('mon_b_saturation', this.getMonitor('B').saturation); - } - } - - this.setVariableDefinitions(variables); - } -} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..99da270 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,2106 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@companion-module/base@~1.2": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@companion-module/base/-/base-1.2.1.tgz#f935f99c8b0e935939f9a21b81331fd8453485a3" + integrity sha512-6cJJl4oVheMIdF55UrmfoJ6+MCyaRo9uKeCRcfKq3lq0knNj1xkNgiiys/M9Ymm4BLLQ0iKIhwHsyEYMKB7bhA== + dependencies: + "@sentry/node" "^7.36.0" + "@sentry/tracing" "^7.36.0" + ajv "^8.12.0" + debounce-fn "github:julusian/debounce-fn#4.0.0-maxWaithack.0" + ejson "^2.2.3" + eventemitter3 "^4.0.7" + nanoid "^3.3.4" + p-queue "^6.6.2" + p-timeout "^4.1.0" + tslib "^2.5.0" + +"@companion-module/tools@~1.1": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@companion-module/tools/-/tools-1.1.0.tgz#3e4e24051b6cbf6a3192f0b85ffa7dea77372233" + integrity sha512-YX218Z6WXNGHdeFlBcCteyEC14IBgIoaM+V5H8PLE3ijn7NO+ARet62QajU83T2NLONyXybPa/PHqE+Y9ERIDQ== + dependencies: + "@typescript-eslint/eslint-plugin" "^5.50.0" + "@typescript-eslint/parser" "^5.50.0" + eslint "^8.33.0" + eslint-config-prettier "^8.6.0" + eslint-plugin-node "^11.1.0" + eslint-plugin-prettier "^4.2.1" + find-up "^6.3.0" + parse-author "^2.0.0" + prettier "^2.8.3" + tar "^6.1.13" + webpack "^5.75.0" + webpack-cli "^5.0.1" + zx "^7.1.1" + +"@discoveryjs/json-ext@^0.5.0": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + +"@eslint/eslintrc@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz#af58772019a2d271b7e2d4c23ff4ddcba3ccfb3e" + integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.4.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@humanwhocodes/config-array@^0.11.8": + version "0.11.8" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" + integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@jridgewell/gen-mapping@^0.3.0": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/source-map@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" + integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@sentry/core@7.38.0": + version "7.38.0" + resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.38.0.tgz#52f1f1f2ba5e88ab7b33c3abb0ea9730c78d953d" + integrity sha512-+hXh/SO3Ie6WC2b+wi01xLhyVREdkRXS5QBmCiv3z2ks2HvYXp7PoKSXJvNKiwCP+pBD+enOnM1YEzM2yEy5yw== + dependencies: + "@sentry/types" "7.38.0" + "@sentry/utils" "7.38.0" + tslib "^1.9.3" + +"@sentry/node@^7.36.0": + version "7.38.0" + resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.38.0.tgz#957524fa4764dc19ef970ccdffb802d62e0db3ae" + integrity sha512-jNIN6NZvgzn/oms8RQzffjX8Z0LQDTN6N28nnhzqGCvnfmS1QtTt0FlU+pTuFXZNNSjfGy4XMXMYvLlbvhm2bg== + dependencies: + "@sentry/core" "7.38.0" + "@sentry/types" "7.38.0" + "@sentry/utils" "7.38.0" + cookie "^0.4.1" + https-proxy-agent "^5.0.0" + lru_map "^0.3.3" + tslib "^1.9.3" + +"@sentry/tracing@^7.36.0": + version "7.38.0" + resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-7.38.0.tgz#ba28f15f526e87df167de206fd4fb0a39277dac6" + integrity sha512-ejXJp8oOT64MVtBzqdECUUaNzKbpu25St8Klub1i4Sm7xO+ZjDQDI4TIHvWojZvtkwQ3F4jcsCclc8KuyJunyQ== + dependencies: + "@sentry/core" "7.38.0" + "@sentry/types" "7.38.0" + "@sentry/utils" "7.38.0" + tslib "^1.9.3" + +"@sentry/types@7.38.0": + version "7.38.0" + resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.38.0.tgz#6e2611544446271ed237440b12de782805aefe25" + integrity sha512-NKOALR6pNUMzUrsk2m+dkPrO8uGNvNh1LD0BCPswKNjC2qHo1h1mDGCgBmF9+EWyii8ZoACTIsxvsda+MBf97Q== + +"@sentry/utils@7.38.0": + version "7.38.0" + resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.38.0.tgz#d10716e730108301f58766970493e9c5da0ba502" + integrity sha512-MgbI3YmYuyyhUtvcXkgGBqjOW+nuLLNGUdWCK+C4kObf8VbLt3dSE/7SEMT6TSHLYQmxs2BxFgx5Agn97m68kQ== + dependencies: + "@sentry/types" "7.38.0" + tslib "^1.9.3" + +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "8.21.1" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.21.1.tgz#110b441a210d53ab47795124dbc3e9bb993d1e7c" + integrity sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2" + integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== + +"@types/estree@^0.0.51": + version "0.0.51" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" + integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== + +"@types/fs-extra@^9.0.13": + version "9.0.13" + resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45" + integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA== + dependencies: + "@types/node" "*" + +"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/minimist@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" + integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== + +"@types/node@*", "@types/node@^18.7.20": + version "18.14.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.0.tgz#94c47b9217bbac49d4a67a967fdcdeed89ebb7d0" + integrity sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A== + +"@types/ps-tree@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/ps-tree/-/ps-tree-1.1.2.tgz#5c60773a38ffb1402e049902a7b7a8d3c67cd59a" + integrity sha512-ZREFYlpUmPQJ0esjxoG1fMvB2HNaD3z+mjqdSosZvd3RalncI9NEur73P8ZJz4YQdL64CmV1w0RuqoRUlhQRBw== + +"@types/semver@^7.3.12": + version "7.3.13" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" + integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== + +"@types/which@^2.0.1": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@types/which/-/which-2.0.2.tgz#54541d02d6b1daee5ec01ac0d1b37cecf37db1ae" + integrity sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw== + +"@typescript-eslint/eslint-plugin@^5.50.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.52.0.tgz#5fb0d43574c2411f16ea80f5fc335b8eaa7b28a8" + integrity sha512-lHazYdvYVsBokwCdKOppvYJKaJ4S41CgKBcPvyd0xjZNbvQdhn/pnJlGtQksQ/NhInzdaeaSarlBjDXHuclEbg== + dependencies: + "@typescript-eslint/scope-manager" "5.52.0" + "@typescript-eslint/type-utils" "5.52.0" + "@typescript-eslint/utils" "5.52.0" + debug "^4.3.4" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + natural-compare-lite "^1.4.0" + regexpp "^3.2.0" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/parser@^5.50.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.52.0.tgz#73c136df6c0133f1d7870de7131ccf356f5be5a4" + integrity sha512-e2KiLQOZRo4Y0D/b+3y08i3jsekoSkOYStROYmPUnGMEoA0h+k2qOH5H6tcjIc68WDvGwH+PaOrP1XRzLJ6QlA== + dependencies: + "@typescript-eslint/scope-manager" "5.52.0" + "@typescript-eslint/types" "5.52.0" + "@typescript-eslint/typescript-estree" "5.52.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.52.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.52.0.tgz#a993d89a0556ea16811db48eabd7c5b72dcb83d1" + integrity sha512-AR7sxxfBKiNV0FWBSARxM8DmNxrwgnYMPwmpkC1Pl1n+eT8/I2NAUPuwDy/FmDcC6F8pBfmOcaxcxRHspgOBMw== + dependencies: + "@typescript-eslint/types" "5.52.0" + "@typescript-eslint/visitor-keys" "5.52.0" + +"@typescript-eslint/type-utils@5.52.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.52.0.tgz#9fd28cd02e6f21f5109e35496df41893f33167aa" + integrity sha512-tEKuUHfDOv852QGlpPtB3lHOoig5pyFQN/cUiZtpw99D93nEBjexRLre5sQZlkMoHry/lZr8qDAt2oAHLKA6Jw== + dependencies: + "@typescript-eslint/typescript-estree" "5.52.0" + "@typescript-eslint/utils" "5.52.0" + debug "^4.3.4" + tsutils "^3.21.0" + +"@typescript-eslint/types@5.52.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.52.0.tgz#19e9abc6afb5bd37a1a9bea877a1a836c0b3241b" + integrity sha512-oV7XU4CHYfBhk78fS7tkum+/Dpgsfi91IIDy7fjCyq2k6KB63M6gMC0YIvy+iABzmXThCRI6xpCEyVObBdWSDQ== + +"@typescript-eslint/typescript-estree@5.52.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.52.0.tgz#6408cb3c2ccc01c03c278cb201cf07e73347dfca" + integrity sha512-WeWnjanyEwt6+fVrSR0MYgEpUAuROxuAH516WPjUblIrClzYJj0kBbjdnbQXLpgAN8qbEuGywiQsXUVDiAoEuQ== + dependencies: + "@typescript-eslint/types" "5.52.0" + "@typescript-eslint/visitor-keys" "5.52.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/utils@5.52.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.52.0.tgz#b260bb5a8f6b00a0ed51db66bdba4ed5e4845a72" + integrity sha512-As3lChhrbwWQLNk2HC8Ree96hldKIqk98EYvypd3It8Q1f8d5zWyIoaZEp2va5667M4ZyE7X8UUR+azXrFl+NA== + dependencies: + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.52.0" + "@typescript-eslint/types" "5.52.0" + "@typescript-eslint/typescript-estree" "5.52.0" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + semver "^7.3.7" + +"@typescript-eslint/visitor-keys@5.52.0": + version "5.52.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.52.0.tgz#e38c971259f44f80cfe49d97dbffa38e3e75030f" + integrity sha512-qMwpw6SU5VHCPr99y274xhbm+PRViK/NATY6qzt+Et7+mThGuFSl/ompj2/hrBlRP/kq+BFdgagnOSgw9TB0eA== + dependencies: + "@typescript-eslint/types" "5.52.0" + eslint-visitor-keys "^3.3.0" + +"@webassemblyjs/ast@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" + integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + +"@webassemblyjs/floating-point-hex-parser@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" + integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== + +"@webassemblyjs/helper-api-error@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" + integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== + +"@webassemblyjs/helper-buffer@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" + integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== + +"@webassemblyjs/helper-numbers@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" + integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" + integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== + +"@webassemblyjs/helper-wasm-section@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" + integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + +"@webassemblyjs/ieee754@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" + integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" + integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" + integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== + +"@webassemblyjs/wasm-edit@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" + integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/helper-wasm-section" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/wasm-opt" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + "@webassemblyjs/wast-printer" "1.11.1" + +"@webassemblyjs/wasm-gen@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" + integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/ieee754" "1.11.1" + "@webassemblyjs/leb128" "1.11.1" + "@webassemblyjs/utf8" "1.11.1" + +"@webassemblyjs/wasm-opt@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" + integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + +"@webassemblyjs/wasm-parser@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" + integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/ieee754" "1.11.1" + "@webassemblyjs/leb128" "1.11.1" + "@webassemblyjs/utf8" "1.11.1" + +"@webassemblyjs/wast-printer@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" + integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@xtuc/long" "4.2.2" + +"@webpack-cli/configtest@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.0.1.tgz#a69720f6c9bad6aef54a8fa6ba9c3533e7ef4c7f" + integrity sha512-njsdJXJSiS2iNbQVS0eT8A/KPnmyH4pv1APj2K0d1wrZcBLw+yppxOy4CGqa0OxDJkzfL/XELDhD8rocnIwB5A== + +"@webpack-cli/info@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.1.tgz#eed745799c910d20081e06e5177c2b2569f166c0" + integrity sha512-fE1UEWTwsAxRhrJNikE7v4EotYflkEhBL7EbajfkPlf6E37/2QshOy/D48Mw8G5XMFlQtS6YV42vtbG9zBpIQA== + +"@webpack-cli/serve@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.1.tgz#34bdc31727a1889198855913db2f270ace6d7bf8" + integrity sha512-0G7tNyS+yW8TdgHwZKlDWYXFA6OJQnoLCQvYKkQP0Q2X205PSQ6RNUj0M+1OB/9gRQaUZ/ccYfaxd0nhaWKfjw== + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +acorn-import-assertions@^1.7.6: + version "1.8.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" + integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.0: + version "8.8.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" + integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== + +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv@^6.10.0, ajv@^6.12.4, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.12.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +author-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450" + integrity sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.14.5: + version "4.21.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== + dependencies: + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +caniuse-lite@^1.0.30001449: + version "1.0.30001456" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001456.tgz#734ec1dbfa4f3abe6e435b78ecf40d68e8c32ce4" + integrity sha512-XFHJY5dUgmpMV25UqaD4kVq2LsiaU5rS8fb0f17pCoXQiQslzmFgnfOxfvo1bTpTqf7dwG/N/05CnLCnOEKmzA== + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^5.0.1: + version "5.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" + integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +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== + +colorette@^2.0.14: + version "2.0.19" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" + integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^9.4.1: + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cookie@^0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" + integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +data-uri-to-buffer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" + integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== + +"debounce-fn@github:julusian/debounce-fn#4.0.0-maxWaithack.0": + version "4.0.0-maxWaithack.0" + resolved "https://codeload.github.com/julusian/debounce-fn/tar.gz/3ca54d1526c19f541fe6f103abbceda31554caa9" + dependencies: + mimic-fn "^3.0.0" + +debug@4, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +ejson@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/ejson/-/ejson-2.2.3.tgz#2b18c2d8f5d61a5cfc6e3eab72c3343909e7afd2" + integrity sha512-hsFvJp6OpGxFRQfBR3PSxFpaPALdHDY+SB3TRbMpLWNhvu8GzLiZutof5+/DFd2QekZo3KyXau75ngdJqQUSrw== + +electron-to-chromium@^1.4.284: + version "1.4.302" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.302.tgz#5770646ffe7051677b489226144aad9386d420f2" + integrity sha512-Uk7C+7aPBryUR1Fwvk9VmipBcN9fVsqBO57jV2ZjTm+IZ6BMNqu7EDVEg2HxCNufk6QcWlFsBkhQyQroB2VWKw== + +enhanced-resolve@^5.10.0: + version "5.12.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" + integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +envinfo@^7.7.3: + version "7.8.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== + +es-module-lexer@^0.9.0: + version "0.9.3" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" + integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-config-prettier@^8.6.0: + version "8.6.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz#dec1d29ab728f4fa63061774e1672ac4e363d207" + integrity sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA== + +eslint-plugin-es@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz#75a7cdfdccddc0589934aeeb384175f221c57893" + integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ== + dependencies: + eslint-utils "^2.0.0" + regexpp "^3.0.0" + +eslint-plugin-node@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d" + integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g== + dependencies: + eslint-plugin-es "^3.0.0" + eslint-utils "^2.0.0" + ignore "^5.1.1" + minimatch "^3.0.4" + resolve "^1.10.1" + semver "^6.1.0" + +eslint-plugin-prettier@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" + integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-scope@5.1.1, eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" + integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-utils@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + +eslint-visitor-keys@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + +eslint@^8.33.0: + version "8.34.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.34.0.tgz#fe0ab0ef478104c1f9ebc5537e303d25a8fb22d6" + integrity sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg== + dependencies: + "@eslint/eslintrc" "^1.4.1" + "@humanwhocodes/config-array" "^0.11.8" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.1.1" + eslint-utils "^3.0.0" + eslint-visitor-keys "^3.3.0" + espree "^9.4.0" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-sdsl "^4.1.4" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.1" + regexpp "^3.2.0" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" + +espree@^9.4.0: + version "9.4.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" + integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== + dependencies: + acorn "^8.8.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.3.0" + +esquery@^1.4.0: + version "1.4.2" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.2.tgz#c6d3fee05dd665808e2ad870631f221f5617b1d1" + integrity sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter3@^4.0.4, eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +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" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + +fast-glob@^3.2.11, fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^13.19.0: + version "13.20.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + dependencies: + type-fest "^0.20.2" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^13.1.2: + version "13.1.3" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff" + integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== + dependencies: + dir-glob "^3.0.1" + fast-glob "^3.2.11" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^4.0.0" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +ignore@^5.1.1, ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +interpret@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" + integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== + +is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + dependencies: + has "^1.0.3" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +js-sdsl@^4.1.4: + version "4.3.0" + resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" + integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lru_map@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd" + integrity sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ== + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.27: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mimic-fn@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74" + integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +minipass@^3.0.0: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +minipass@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.3.tgz#00bfbaf1e16e35e804f4aa31a7c1f6b8d9f0ee72" + integrity sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw== + +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +nanoid@^3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + +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" + integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@3.2.10: + version "3.2.10" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-releases@^2.0.8: + version "2.0.10" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" + integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== + +once@^1.3.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== + dependencies: + wrappy "1" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.3" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + +p-queue@^6.6.2: + version "6.6.2" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== + dependencies: + eventemitter3 "^4.0.4" + p-timeout "^3.2.0" + +p-timeout@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== + dependencies: + p-finally "^1.0.0" + +p-timeout@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-4.1.0.tgz#788253c0452ab0ffecf18a62dff94ff1bd09ca0a" + integrity sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw== + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-author@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/parse-author/-/parse-author-2.0.0.tgz#d3460bf1ddd0dfaeed42da754242e65fb684a81f" + integrity sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw== + dependencies: + author-regex "^1.0.0" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^2.8.3: + version "2.8.4" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3" + integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw== + +ps-tree@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +rechoir@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== + dependencies: + resolve "^1.20.0" + +regexpp@^3.0.0, regexpp@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve@^1.10.1, resolve@^1.20.0: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + 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" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-buffer@^5.1.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== + +schema-utils@^3.1.0, schema-utils@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +semver@^6.1.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.7: + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== + dependencies: + randombytes "^2.1.0" + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +split@0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "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== + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +tapable@^2.1.1, tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +tar@^6.1.13: + version "6.1.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b" + integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^4.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +terser-webpack-plugin@^5.1.3: + version "5.3.6" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz#5590aec31aa3c6f771ce1b1acca60639eab3195c" + integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ== + dependencies: + "@jridgewell/trace-mapping" "^0.3.14" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.0" + terser "^5.14.1" + +terser@^5.14.1: + version "5.16.4" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.4.tgz#51284b440b93242291a98f2a9903c024cfb70e6e" + integrity sha512-5yEGuZ3DZradbogeYQ1NaGz7rXVBDWujWlx1PT8efXO6Txn+eWbfKqB2bTDVmFXmePFkoLU6XI8UektMIEA0ug== + dependencies: + "@jridgewell/source-map" "^0.3.2" + acorn "^8.5.0" + commander "^2.20.0" + source-map-support "~0.5.20" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +through@2, through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tslib@^1.8.1, tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.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" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +update-browserslist-db@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +watchpack@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webpack-cli@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.0.1.tgz#95fc0495ac4065e9423a722dec9175560b6f2d9a" + integrity sha512-S3KVAyfwUqr0Mo/ur3NzIp6jnerNpo7GUO6so51mxLi1spqsA17YcMXy0WOIJtBSnj748lthxC6XLbNKh/ZC+A== + dependencies: + "@discoveryjs/json-ext" "^0.5.0" + "@webpack-cli/configtest" "^2.0.1" + "@webpack-cli/info" "^2.0.1" + "@webpack-cli/serve" "^2.0.1" + colorette "^2.0.14" + commander "^9.4.1" + cross-spawn "^7.0.3" + envinfo "^7.7.3" + fastest-levenshtein "^1.0.12" + import-local "^3.0.2" + interpret "^3.1.1" + rechoir "^0.8.0" + webpack-merge "^5.7.3" + +webpack-merge@^5.7.3: + version "5.8.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" + integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== + dependencies: + clone-deep "^4.0.1" + wildcard "^2.0.0" + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack@^5.75.0: + version "5.75.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.75.0.tgz#1e440468647b2505860e94c9ff3e44d5b582c152" + integrity sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^0.0.51" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/wasm-edit" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + acorn "^8.7.1" + acorn-import-assertions "^1.7.6" + browserslist "^4.14.5" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.10.0" + es-module-lexer "^0.9.0" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.1.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.1.3" + watchpack "^2.4.0" + webpack-sources "^3.2.3" + +which@^2.0.1, which@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wildcard@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" + integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.1.tgz#3014bf0482dcd15147aa8e56109ce8632cd60ce4" + integrity sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== + +zx@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/zx/-/zx-7.1.1.tgz#8dc709fb8acd90ae5f39476145e5a2f3883dca1e" + integrity sha512-5YlTO2AJ+Ku2YuZKSSSqnUKuagcM/f/j4LmHs15O84Ch80Z9gzR09ZK3gR7GV+rc8IFpz2H/XNFtFVmj31yrZA== + dependencies: + "@types/fs-extra" "^9.0.13" + "@types/minimist" "^1.2.2" + "@types/node" "^18.7.20" + "@types/ps-tree" "^1.1.2" + "@types/which" "^2.0.1" + chalk "^5.0.1" + fs-extra "^10.1.0" + globby "^13.1.2" + minimist "^1.2.6" + node-fetch "3.2.10" + ps-tree "^1.2.0" + which "^2.0.2" + yaml "^2.1.1"