├── .eslintignore ├── .browserslistrc ├── examples ├── vue-cli │ ├── babel.config.js │ ├── src │ │ ├── main.js │ │ └── App.vue │ ├── README.md │ ├── package.json │ └── public │ │ └── index.html ├── vite │ ├── src │ │ ├── main.js │ │ ├── App.vue │ │ └── components │ │ │ ├── vimeo-np.vue │ │ │ ├── youtube-np.vue │ │ │ ├── youtube.vue │ │ │ ├── vimeo.vue │ │ │ ├── audio.vue │ │ │ ├── demo.vue │ │ │ └── video.vue │ ├── index.html │ ├── package.json │ └── yarn.lock ├── nuxt │ ├── pages │ │ └── index.vue │ ├── plugins │ │ └── vue-plyr.js │ ├── package.json │ ├── README.md │ └── nuxt.config.js ├── shared │ ├── vimeo-np.vue │ ├── youtube-np.vue │ ├── youtube.vue │ ├── vimeo.vue │ ├── audio.vue │ ├── demo.vue │ └── video.vue └── html │ ├── README.md │ ├── package.json │ ├── index.html │ └── yarn.lock ├── babel.config.js ├── .editorconfig ├── prettier.config.js ├── src ├── index.js └── vue-plyr.vue ├── .gitignore ├── .npmignore ├── public └── index.html ├── .eslintrc.js ├── .github └── workflows │ └── npm.yml ├── LICENSE.md ├── package.json ├── changelog.md ├── rollup.config.js ├── docs └── index.html └── README.md /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /examples 3 | -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /examples/vue-cli/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/cli-plugin-babel/preset'] 3 | } 4 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/cli-plugin-babel/preset'], 3 | plugins: ['@babel/plugin-transform-runtime'] 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js, jsx, ts, tsx, vue}] 2 | indent_style = space 3 | indent_size = 2 4 | trim_trailing_whitespace = true 5 | insert_final_newline = true 6 | -------------------------------------------------------------------------------- /examples/vite/src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from './App.vue' 3 | import VuePlyr from 'vue-plyr' 4 | import 'vue-plyr/dist/vue-plyr.css' 5 | 6 | createApp(App).use(VuePlyr).mount('#app') 7 | -------------------------------------------------------------------------------- /examples/vue-cli/src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from './App.vue' 3 | 4 | import VuePlyr from 'vue-plyr' 5 | import 'vue-plyr/dist/vue-plyr.css' 6 | 7 | createApp(App).use(VuePlyr).mount('#app') 8 | -------------------------------------------------------------------------------- /examples/nuxt/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | useTabs: true, 3 | arrowParens: 'avoid', 4 | proseWrap: 'always', 5 | trailingComma: 'none', 6 | semi: false, 7 | singleQuote: true, 8 | vueIndentScriptAndStyle: true 9 | } 10 | -------------------------------------------------------------------------------- /examples/shared/vimeo-np.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /examples/shared/youtube-np.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /examples/html/README.md: -------------------------------------------------------------------------------- 1 | # vue-plyr-html 2 | > An example of how to use vue-plyr with just html. 3 | 4 | ## Usage 5 | 6 | ``` bash 7 | # install dependencies 8 | $ yarn install 9 | 10 | # run the server on port 5000 11 | $ yarn start 12 | ``` 13 | -------------------------------------------------------------------------------- /examples/vite/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 15 | -------------------------------------------------------------------------------- /examples/vite/src/components/vimeo-np.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /examples/vue-cli/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 15 | -------------------------------------------------------------------------------- /examples/vite/src/components/youtube-np.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /examples/nuxt/plugins/vue-plyr.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import VuePlyr from 'vue-plyr/dist/vue-plyr.ssr.js' 3 | import 'vue-plyr/dist/vue-plyr.css' 4 | 5 | // The second argument is optional and sets the default config values for every player. 6 | Vue.use(VuePlyr, { 7 | plyr: {} 8 | }) 9 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import VuePlyr from './vue-plyr.vue' 2 | 3 | VuePlyr.install = (app, options = {}) => { 4 | if (options.plyr) { 5 | VuePlyr.props.options.default = () => { 6 | return { ...options.plyr } 7 | } 8 | } 9 | 10 | app.component(VuePlyr.name, VuePlyr) 11 | } 12 | 13 | export default VuePlyr 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | .nuxt 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | 15 | # Editor directories and files 16 | .idea 17 | .vscode 18 | *.suo 19 | *.ntvs* 20 | *.njsproj 21 | *.sln 22 | *.sw? 23 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .directory 2 | .idea 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | demo/ 9 | node_modules/ 10 | public/ 11 | .env 12 | tests 13 | .browserslistrc 14 | .editorconfig 15 | .eslintignore 16 | .eslintrc.js 17 | .gitignore 18 | babel.config.js 19 | changelog.md 20 | postcss.config.js 21 | vue.config.js 22 | -------------------------------------------------------------------------------- /examples/html/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-plyr-html", 3 | "version": "1.0.0", 4 | "description": "An example of how to use vue-plyr with just html.", 5 | "author": "Gabe Dunn", 6 | "scripts": { 7 | "start": "serve ." 8 | }, 9 | "dependencies": { 10 | "serve": "^11.3.2", 11 | "vue-plyr": "^7.0.0-beta.1" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /examples/vite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | vue-plyr-vite 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /examples/vue-cli/README.md: -------------------------------------------------------------------------------- 1 | # cli 2 | 3 | ## Project setup 4 | ``` 5 | yarn install 6 | ``` 7 | 8 | ### Compiles and hot-reloads for development 9 | ``` 10 | yarn serve 11 | ``` 12 | 13 | ### Compiles and minifies for production 14 | ``` 15 | yarn build 16 | ``` 17 | 18 | ### Customize configuration 19 | See [Configuration Reference](https://cli.vuejs.org/config/). 20 | -------------------------------------------------------------------------------- /examples/vite/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-plyr-vite", 3 | "version": "0.0.0", 4 | "scripts": { 5 | "dev": "vite", 6 | "build": "vite build" 7 | }, 8 | "dependencies": { 9 | "vue": "^3.0.2", 10 | "vue-plyr": "^7.0.0-beta.1" 11 | }, 12 | "devDependencies": { 13 | "@vue/compiler-sfc": "^3.0.2", 14 | "vite": "^1.0.0-rc.8" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /examples/nuxt/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-plyr-nuxt", 3 | "version": "1.0.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "nuxt", 7 | "build": "nuxt build", 8 | "start": "nuxt start", 9 | "generate": "nuxt generate" 10 | }, 11 | "dependencies": { 12 | "core-js": "^3.6.5", 13 | "nuxt": "^2.14.6", 14 | "vue-plyr": "^7.0.0-beta.1" 15 | }, 16 | "devDependencies": {} 17 | } 18 | -------------------------------------------------------------------------------- /examples/nuxt/README.md: -------------------------------------------------------------------------------- 1 | # vue-plyr-nuxt 2 | 3 | ## Build Setup 4 | 5 | ```bash 6 | # install dependencies 7 | $ yarn install 8 | 9 | # serve with hot reload at localhost:3000 10 | $ yarn dev 11 | 12 | # build for production and launch server 13 | $ yarn build 14 | $ yarn start 15 | 16 | # generate static project 17 | $ yarn generate 18 | ``` 19 | 20 | For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org). 21 | -------------------------------------------------------------------------------- /examples/shared/youtube.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /examples/shared/vimeo.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /examples/vite/src/components/youtube.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /examples/vite/src/components/vimeo.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /examples/shared/audio.vue: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /examples/vite/src/components/audio.vue: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /examples/nuxt/nuxt.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | // Global page headers (https://go.nuxtjs.dev/config-head) 3 | head: { 4 | title: 'vue-plyr-nuxt', 5 | meta: [ 6 | { charset: 'utf-8' }, 7 | { name: 'viewport', content: 'width=device-width, initial-scale=1' }, 8 | { hid: 'description', name: 'description', content: '' } 9 | ] 10 | }, 11 | 12 | // Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins) 13 | plugins: [{ src: '~/plugins/vue-plyr.js', mode: 'client' }] 14 | } 15 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | vue-plyr 8 | 9 | 10 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | node: true 5 | }, 6 | extends: [ 7 | 'plugin:vue/vue3-recommended', 8 | 'eslint:recommended', 9 | '@vue/prettier' 10 | ], 11 | rules: { 12 | 'vue/script-indent': [ 13 | 'error', 14 | 'tab', 15 | { 16 | baseIndent: 1 17 | } 18 | ], 19 | 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 20 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' 21 | }, 22 | parser: 'vue-eslint-parser', 23 | parserOptions: { 24 | parser: 'babel-eslint' 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /examples/vue-cli/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-plyr-cli", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "vue-cli-service serve", 7 | "build": "vue-cli-service build" 8 | }, 9 | "dependencies": { 10 | "core-js": "^3.6.5", 11 | "vue": "^3.0.0", 12 | "vue-plyr": "^7.0.0-beta.1" 13 | }, 14 | "devDependencies": { 15 | "@vue/cli-plugin-babel": "~4.5.0", 16 | "@vue/cli-service": "~4.5.0", 17 | "@vue/compiler-sfc": "^3.0.0" 18 | }, 19 | "browserslist": [ 20 | "> 1%", 21 | "last 2 versions", 22 | "not dead" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /examples/vue-cli/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | <%= htmlWebpackPlugin.options.title %> 8 | 9 | 10 | 13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.github/workflows/npm.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | tags: v*.*.* 4 | 5 | jobs: 6 | npm: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | - uses: actions/setup-node@v2-beta 11 | with: 12 | node-version: '15.x' 13 | registry-url: 'https://registry.npmjs.org' 14 | - name: Install dependencies 15 | run: yarn install 16 | - name: Lint code 17 | run: yarn lint 18 | - name: Build package 19 | run: yarn build 20 | - name: Publish to NPM 21 | run: yarn publish 22 | env: 23 | NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} 24 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The MIT License (MIT) 2 | >Copyright (c) 2018 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 20 | SOFTWARE. 21 | -------------------------------------------------------------------------------- /src/vue-plyr.vue: -------------------------------------------------------------------------------- 1 | 60 | -------------------------------------------------------------------------------- /examples/shared/demo.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 41 | 42 | 68 | -------------------------------------------------------------------------------- /examples/vite/src/components/demo.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 41 | 42 | 68 | -------------------------------------------------------------------------------- /examples/shared/video.vue: -------------------------------------------------------------------------------- 1 | 49 | 50 | 60 | -------------------------------------------------------------------------------- /examples/vite/src/components/video.vue: -------------------------------------------------------------------------------- 1 | 49 | 50 | 60 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-plyr", 3 | "version": "7.0.0", 4 | "description": "A vue component for the plyr video & audio player.", 5 | "license": "MIT", 6 | "author": { 7 | "name": "Gabe Dunn", 8 | "email": "gabe@redxtech.ca", 9 | "url": "https://gabedunn.dev" 10 | }, 11 | "repository": "github:redxtech/vue-plyr", 12 | "scripts": { 13 | "prebuild": "rm -rf dist/", 14 | "build": "NODE_ENV=production rollup --c rollup.config.js", 15 | "build:es": "NODE_ENV=production rollup --c rollup.config.js --format=es", 16 | "build:es:watch": "NODE_ENV=production rollup --c rollup.config.js --format=es --watch", 17 | "build:cjs": "NODE_ENV=production rollup --c rollup.config.js --format=cjs", 18 | "build:cjs:watch": "NODE_ENV=production rollup --c rollup.config.js --format=cjs --watch", 19 | "build:iife": "NODE_ENV=production rollup --c rollup.config.js --format=iife", 20 | "build:iife:watch": "NODE_ENV=production rollup --c rollup.config.js --format=iife --watch", 21 | "lint": "vue-cli-service lint -f pretty" 22 | }, 23 | "main": "dist/vue-plyr.ssr.js", 24 | "module": "dist/vue-plyr.esm.js", 25 | "unpkg": "dist/vue-plyr.min.js", 26 | "style": "dist/vue-plyr.css", 27 | "files": [ 28 | "dist/*", 29 | "src/**/*.vue" 30 | ], 31 | "dependencies": { 32 | "plyr": "github:sampotts/plyr#develop", 33 | "vue": "^2.6.12" 34 | }, 35 | "devDependencies": { 36 | "@babel/plugin-transform-runtime": "^7.12.1", 37 | "@rollup/plugin-babel": "^5.2.1", 38 | "@rollup/plugin-commonjs": "^16.0.0", 39 | "@rollup/plugin-node-resolve": "^10.0.0", 40 | "@rollup/plugin-replace": "^2.3.4", 41 | "@vue/cli-plugin-babel": "^4.5.8", 42 | "@vue/cli-plugin-eslint": "^4.5.8", 43 | "@vue/cli-service": "^4.5.8", 44 | "@vue/compiler-sfc": "^3.0.2", 45 | "@vue/eslint-config-prettier": "^6.0.0", 46 | "babel-eslint": "^10.1.0", 47 | "core-js": "^3.6.5", 48 | "eslint": "^7.12.1", 49 | "eslint-formatter-pretty": "^4.0.0", 50 | "eslint-plugin-prettier": "^3.1.4", 51 | "eslint-plugin-vue": "^7.1.0", 52 | "minimist": "^1.2.5", 53 | "prettier": "^2.1.2", 54 | "rollup": "^2.33.0", 55 | "rollup-plugin-css-only": "^2.1.0", 56 | "rollup-plugin-filesize": "^9.0.2", 57 | "rollup-plugin-terser": "^7.0.2", 58 | "rollup-plugin-vue": "^6.0.0-beta.11", 59 | "vue-template-compiler": "^2.6.12" 60 | }, 61 | "keywords": [ 62 | "vue-plyr", 63 | "vue", 64 | "plyr", 65 | "video", 66 | "audio", 67 | "youtube", 68 | "vimeo", 69 | "media", 70 | "player", 71 | "js", 72 | "javascript", 73 | "rollup" 74 | ] 75 | } 76 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | #### 7.0.0 4 | - Vue 3 support. 5 | - Updated plyr version. 6 | - Removed `emit` option. 7 | - Removed unnecessary `
` wrapper for components. 8 | - Completely redid the bundling process. 9 | - Added polyfilled versions. 10 | - Updated examples and added some more of them. 11 | - Some other things. 12 | - Maybe some other small thi ngs I've forgotten about. 13 | 14 | #### 6.0.4 15 | - Remove useless nuxt plugin. 16 | 17 | #### 6.0.3 18 | - Update docs. 19 | - Bump version number. 20 | 21 | #### 6.0.1 22 | - Fix `vue-runtime-helper` being a dependency by bundling it. 23 | - Reorganize exports (yeah breaking but I honestly don't want to bump the version again). 24 | - Add nuxt plugin file. 25 | 26 | ### 6.0.0 27 | - Change import to be more natural. 28 | - Move to esm export. 29 | - Change demo. 30 | - Revamp how using the plugin works. 31 | - Remove player event. 32 | 33 | #### 5.1.2 34 | - Fix readme because I forgot to bump it previously. 35 | 36 | #### 5.1.1 37 | - Update plyr to [3.5.2](https://github.com/sampotts/plyr/blob/master/changelog.md#v352). 38 | 39 | #### 5.1.0 40 | - Remove auto import of CSS within JS to prevent CJS errors. 41 | - Import CSS with `` so bili would find it. 42 | - Restructure demos. 43 | - Add nuxt demo. 44 | - Change all & to be &. 45 | - Change `refs="player"` to `refs="plyr"` in readme. 46 | - Update nuxt usage in readme. 47 | - Update dependencies to latest version. 48 | 49 | #### 5.0.4 50 | - Update documentation to include new and better methods to access 51 | player instance and events. 52 | - Slightly reorganize readme. 53 | 54 | #### 5.0.3 55 | - Prevent default option from being accidentally overwritten. 56 | - Fix readme footer. 57 | - Update readme to reflect installation methods. 58 | - Re-Add named exports. 59 | 60 | #### 5.0.2 61 | - Fix default export. 62 | - Fix component not registered issue. 63 | 64 | #### 5.0.1 65 | - Update Plyr version. 66 | 67 | #### 5.0.0 68 | - Major change because of breaking fix. 69 | - Change import scheme to be more common (`Vue.use(VuePlyr)`) 70 | - Remove sass/scss from dependencies because it wasn't needed. 71 | - Update dependencies to latest versions. 72 | - Remove demo build 73 | - Remove 1440p video from demo (CDN no longer hosted video file) 74 | - Add and refactor some tests 75 | - Streamline installation by adding from NPM. 76 | - Streamline installation by including in ` 148 | 149 | 158 | 159 | 160 | -------------------------------------------------------------------------------- /examples/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | vue-plyr-html 6 | 32 | 33 | 34 | 35 |
36 |
37 |

vue-plyr demo.

38 |

39 | sources can be found at 40 | 41 | github.com/redxtech/vue-plyr. 43 |

44 |
45 |
46 |

video player

47 | 48 | 89 | 90 |
91 |
92 |

audio player

93 | 94 | 104 | 105 |
106 |
107 |

youtube embed

108 | 109 |
110 | 116 |
117 |
118 |
119 |
120 |

youtube (not progressive-enhancement)

121 | 122 |
123 |
124 |
125 |
126 |

vimeo embed

127 | 128 |
129 | 135 |
136 |
137 |
138 |
139 |

vimeo (not progressive-enhancement)

140 | 141 |
142 |
143 |
144 |
145 |
146 |
147 | 148 | 149 | 158 | 159 | 160 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-plyr 2 | > v7.0.0 - [Changelog](https://github.com/redxtech/vue-plyr/blob/master/changelog.md) 3 | 4 | A vue component for the plyr video & audio player. 5 | 6 | This is useful for when you want a nice video player in your Vue app. 7 | 8 | It uses [plyr](https://plyr.io) by [sampotts](https://github.com/sampotts) for the players. 9 | 10 | Supported player types: HTML5 video, HTML5 audio, YouTube, and Vimeo. 11 | 12 | ### Demo 13 | A demo of the components (equivalent to the html example include here) can be found at 14 | [redxtech.github.io/vue-plyr](https://redxtech.github.io/vue-plyr/). 15 | 16 | ## Installation 17 | ```bash 18 | yarn add vue-plyr # or npm i vue-plyr 19 | ``` 20 | 21 | ### Module 22 | ```js 23 | // In your main vue file - the one where you create the initial vue instance. 24 | import Vue from 'vue' 25 | import VuePlyr from 'vue-plyr' 26 | import 'vue-plyr/dist/vue-plyr.css' 27 | 28 | // Vue 3.x 29 | // The second argument is optional and sets the default config values for every player. 30 | createApp(App) 31 | .use(VuePlyr, { 32 | plyr: {} 33 | }) 34 | .mount('#app') 35 | 36 | // Vue 2.x 37 | // The second argument is optional and sets the default config values for every player. 38 | Vue.use(VuePlyr, { 39 | plyr: {} 40 | }) 41 | ``` 42 | 43 | ### SSR [(more below)](#ssr) 44 | For SSR, you can import the SSR optimized module, found at `dist/vue-plyr.ssr.js`. There is a more in depth description 45 | on how to use it with [nuxt](#nuxt) below. 46 | 47 | ### Browser 48 | In the browser you can include it as you would any other package with unpkg, along with the stylesheet: 49 | 50 | ```html 51 | 52 | 53 | 54 | 55 | 56 | 59 | ``` 60 | 61 | ## Usage 62 | Once installed, it can be used in a template as simply as: 63 | 64 | ```vue 65 | 66 | 67 | 91 | 92 | 93 | 94 | 95 | 105 | 106 | 107 | 108 | 109 |
110 | 116 |
117 |
118 | 119 | 120 | 121 |
122 |
123 | 124 | 125 | 126 |
127 | 133 |
134 |
135 | 136 | 137 | 138 |
139 |
140 | ``` 141 | 142 | ## Player Instance 143 | To access the player instance, you can use the `player` property from the `refs` attribute. 144 | 145 | ```html 146 | 149 | 150 | 158 | ``` 159 | 160 | ## Examples 161 | Examples of how to use this app can be found [here](https://github.com/redxtech/vue-plyr/tree/master/examples). 162 | 163 | ## Events 164 | If you want to capture events from the plyr instance, you can do so by accessing the player instance through the `ref` 165 | attribute and using that object for events, as you would with a vanilla plyr instance. 166 | 167 | Valid events are [here](https://github.com/sampotts/plyr#events). 168 | 169 | ```html 170 | 173 | 180 | ``` 181 | 182 | ## Options 183 | For custom options you can pass an `options` prop which is an object that will be passed to the `new Plyr()` creation. 184 | Available options 185 | [here](https://github.com/sampotts/plyr#options). I have added a new option (`hideYouTubeDOMError`) that hides the error 186 | that is always logged when destroying a YouTube player. It defaults to `true`, and you can disable it and see the error 187 | by setting it to false. 188 | 189 | You can also specify the default options when registering the plugin 190 | (these will be ignored if you specify a player-specific options object via props): 191 | 192 | ```js 193 | createApp(App).use(VuePlyr, { 194 | plyr: {} 195 | }) 196 | ``` 197 | 198 | ## SSR 199 | ### Nuxt (Vue 2.x) 200 | This should support SSR out of the box. For [nuxt](https://nuxtjs.org/), create a file called `vue-plyr.js` in your 201 | plugins folder containing only these three statements: 202 | 203 | ```js 204 | import Vue from 'vue' 205 | import VuePlyr from 'vue-plyr/dist/vue-plyr.ssr.js' 206 | import 'vue-plyr/dist/vue-plyr.css' 207 | 208 | // The second argument is optional and sets the default config values for every player. 209 | Vue.use(VuePlyr, { 210 | plyr: {} 211 | }) 212 | ``` 213 | 214 | Then, in your `nuxt.config.js` file add `{ src: '~/plugins/vue-plyr', mode: 'client' }` to the plugins array. The 215 | `vue-plyr` element should be globally registered now. 216 | 217 | The `nuxt.config.js` file should at minimum include this: 218 | 219 | ```js 220 | export default { 221 | plugins: [{ src: '~/plugins/vue-plyr', mode: 'client' }] 222 | } 223 | ``` 224 | 225 | ## Author 226 | 227 | **vue-plyr** © [RedXTech](https://github.com/redxtech), Released under the [MIT](./LICENSE.md) License. 228 | -------------------------------------------------------------------------------- /examples/html/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@zeit/schemas@2.6.0": 6 | version "2.6.0" 7 | resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38eac7bcbf58a867fe3" 8 | integrity sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg== 9 | 10 | accepts@~1.3.5: 11 | version "1.3.7" 12 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 13 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 14 | dependencies: 15 | mime-types "~2.1.24" 16 | negotiator "0.6.2" 17 | 18 | ajv@6.5.3: 19 | version "6.5.3" 20 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f9" 21 | integrity sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg== 22 | dependencies: 23 | fast-deep-equal "^2.0.1" 24 | fast-json-stable-stringify "^2.0.0" 25 | json-schema-traverse "^0.4.1" 26 | uri-js "^4.2.2" 27 | 28 | ansi-align@^2.0.0: 29 | version "2.0.0" 30 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 31 | integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= 32 | dependencies: 33 | string-width "^2.0.0" 34 | 35 | ansi-regex@^3.0.0: 36 | version "3.0.0" 37 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 38 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 39 | 40 | ansi-styles@^3.2.1: 41 | version "3.2.1" 42 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 43 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 44 | dependencies: 45 | color-convert "^1.9.0" 46 | 47 | arch@^2.1.0: 48 | version "2.1.1" 49 | resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" 50 | integrity sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg== 51 | 52 | arg@2.0.0: 53 | version "2.0.0" 54 | resolved "https://registry.yarnpkg.com/arg/-/arg-2.0.0.tgz#c06e7ff69ab05b3a4a03ebe0407fac4cba657545" 55 | integrity sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w== 56 | 57 | balanced-match@^1.0.0: 58 | version "1.0.0" 59 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 60 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 61 | 62 | boxen@1.3.0: 63 | version "1.3.0" 64 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 65 | integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== 66 | dependencies: 67 | ansi-align "^2.0.0" 68 | camelcase "^4.0.0" 69 | chalk "^2.0.1" 70 | cli-boxes "^1.0.0" 71 | string-width "^2.0.0" 72 | term-size "^1.2.0" 73 | widest-line "^2.0.0" 74 | 75 | brace-expansion@^1.1.7: 76 | version "1.1.11" 77 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 78 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 79 | dependencies: 80 | balanced-match "^1.0.0" 81 | concat-map "0.0.1" 82 | 83 | bytes@3.0.0: 84 | version "3.0.0" 85 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 86 | integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= 87 | 88 | camelcase@^4.0.0: 89 | version "4.1.0" 90 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 91 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 92 | 93 | chalk@2.4.1: 94 | version "2.4.1" 95 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 96 | integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== 97 | dependencies: 98 | ansi-styles "^3.2.1" 99 | escape-string-regexp "^1.0.5" 100 | supports-color "^5.3.0" 101 | 102 | chalk@^2.0.1: 103 | version "2.4.2" 104 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 105 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 106 | dependencies: 107 | ansi-styles "^3.2.1" 108 | escape-string-regexp "^1.0.5" 109 | supports-color "^5.3.0" 110 | 111 | cli-boxes@^1.0.0: 112 | version "1.0.0" 113 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 114 | integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 115 | 116 | clipboardy@1.2.3: 117 | version "1.2.3" 118 | resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef" 119 | integrity sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA== 120 | dependencies: 121 | arch "^2.1.0" 122 | execa "^0.8.0" 123 | 124 | color-convert@^1.9.0: 125 | version "1.9.3" 126 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 127 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 128 | dependencies: 129 | color-name "1.1.3" 130 | 131 | color-name@1.1.3: 132 | version "1.1.3" 133 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 134 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 135 | 136 | compressible@~2.0.14: 137 | version "2.0.17" 138 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" 139 | integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== 140 | dependencies: 141 | mime-db ">= 1.40.0 < 2" 142 | 143 | compression@1.7.3: 144 | version "1.7.3" 145 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db" 146 | integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg== 147 | dependencies: 148 | accepts "~1.3.5" 149 | bytes "3.0.0" 150 | compressible "~2.0.14" 151 | debug "2.6.9" 152 | on-headers "~1.0.1" 153 | safe-buffer "5.1.2" 154 | vary "~1.1.2" 155 | 156 | concat-map@0.0.1: 157 | version "0.0.1" 158 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 159 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 160 | 161 | content-disposition@0.5.2: 162 | version "0.5.2" 163 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 164 | integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= 165 | 166 | core-js@^3.6.5: 167 | version "3.6.5" 168 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" 169 | integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== 170 | 171 | cross-spawn@^5.0.1: 172 | version "5.1.0" 173 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 174 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 175 | dependencies: 176 | lru-cache "^4.0.1" 177 | shebang-command "^1.2.0" 178 | which "^1.2.9" 179 | 180 | custom-event-polyfill@^1.0.7: 181 | version "1.0.7" 182 | resolved "https://registry.yarnpkg.com/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz#9bc993ddda937c1a30ccd335614c6c58c4f87aee" 183 | integrity sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w== 184 | 185 | debug@2.6.9: 186 | version "2.6.9" 187 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 188 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 189 | dependencies: 190 | ms "2.0.0" 191 | 192 | deep-extend@^0.6.0: 193 | version "0.6.0" 194 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 195 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 196 | 197 | escape-string-regexp@^1.0.5: 198 | version "1.0.5" 199 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 200 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 201 | 202 | execa@^0.7.0: 203 | version "0.7.0" 204 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 205 | integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 206 | dependencies: 207 | cross-spawn "^5.0.1" 208 | get-stream "^3.0.0" 209 | is-stream "^1.1.0" 210 | npm-run-path "^2.0.0" 211 | p-finally "^1.0.0" 212 | signal-exit "^3.0.0" 213 | strip-eof "^1.0.0" 214 | 215 | execa@^0.8.0: 216 | version "0.8.0" 217 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 218 | integrity sha1-2NdrvBtVIX7RkP1t1J08d07PyNo= 219 | dependencies: 220 | cross-spawn "^5.0.1" 221 | get-stream "^3.0.0" 222 | is-stream "^1.1.0" 223 | npm-run-path "^2.0.0" 224 | p-finally "^1.0.0" 225 | signal-exit "^3.0.0" 226 | strip-eof "^1.0.0" 227 | 228 | fast-deep-equal@^2.0.1: 229 | version "2.0.1" 230 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 231 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 232 | 233 | fast-json-stable-stringify@^2.0.0: 234 | version "2.0.0" 235 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 236 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 237 | 238 | fast-url-parser@1.1.3: 239 | version "1.1.3" 240 | resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" 241 | integrity sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0= 242 | dependencies: 243 | punycode "^1.3.2" 244 | 245 | get-stream@^3.0.0: 246 | version "3.0.0" 247 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 248 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 249 | 250 | has-flag@^3.0.0: 251 | version "3.0.0" 252 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 253 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 254 | 255 | ini@~1.3.0: 256 | version "1.3.5" 257 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 258 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 259 | 260 | is-fullwidth-code-point@^2.0.0: 261 | version "2.0.0" 262 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 263 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 264 | 265 | is-stream@^1.1.0: 266 | version "1.1.0" 267 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 268 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 269 | 270 | isexe@^2.0.0: 271 | version "2.0.0" 272 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 273 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 274 | 275 | json-schema-traverse@^0.4.1: 276 | version "0.4.1" 277 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 278 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 279 | 280 | loadjs@^4.2.0: 281 | version "4.2.0" 282 | resolved "https://registry.yarnpkg.com/loadjs/-/loadjs-4.2.0.tgz#2a0336376397a6a43edf98c9ec3229ddd5abb6f6" 283 | integrity sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA== 284 | 285 | lru-cache@^4.0.1: 286 | version "4.1.5" 287 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 288 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 289 | dependencies: 290 | pseudomap "^1.0.2" 291 | yallist "^2.1.2" 292 | 293 | mime-db@1.42.0, "mime-db@>= 1.40.0 < 2": 294 | version "1.42.0" 295 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.42.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac" 296 | integrity sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ== 297 | 298 | mime-db@~1.33.0: 299 | version "1.33.0" 300 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 301 | integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== 302 | 303 | mime-types@2.1.18: 304 | version "2.1.18" 305 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 306 | integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== 307 | dependencies: 308 | mime-db "~1.33.0" 309 | 310 | mime-types@~2.1.24: 311 | version "2.1.25" 312 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.25.tgz#39772d46621f93e2a80a856c53b86a62156a6437" 313 | integrity sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg== 314 | dependencies: 315 | mime-db "1.42.0" 316 | 317 | minimatch@3.0.4: 318 | version "3.0.4" 319 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 320 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 321 | dependencies: 322 | brace-expansion "^1.1.7" 323 | 324 | minimist@^1.2.0: 325 | version "1.2.5" 326 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 327 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 328 | 329 | ms@2.0.0: 330 | version "2.0.0" 331 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 332 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 333 | 334 | negotiator@0.6.2: 335 | version "0.6.2" 336 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 337 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 338 | 339 | npm-run-path@^2.0.0: 340 | version "2.0.2" 341 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 342 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 343 | dependencies: 344 | path-key "^2.0.0" 345 | 346 | on-headers@~1.0.1: 347 | version "1.0.2" 348 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" 349 | integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== 350 | 351 | p-finally@^1.0.0: 352 | version "1.0.0" 353 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 354 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 355 | 356 | path-is-inside@1.0.2: 357 | version "1.0.2" 358 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 359 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 360 | 361 | path-key@^2.0.0: 362 | version "2.0.1" 363 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 364 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 365 | 366 | path-to-regexp@2.2.1: 367 | version "2.2.1" 368 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" 369 | integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== 370 | 371 | "plyr@github:sampotts/plyr#develop": 372 | version "3.6.2" 373 | resolved "https://codeload.github.com/sampotts/plyr/tar.gz/5c02205a4f9955f1b8d44f6cc3f9f40f2cc96572" 374 | dependencies: 375 | core-js "^3.6.5" 376 | custom-event-polyfill "^1.0.7" 377 | loadjs "^4.2.0" 378 | rangetouch "^2.0.1" 379 | url-polyfill "^1.1.11" 380 | 381 | pseudomap@^1.0.2: 382 | version "1.0.2" 383 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 384 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 385 | 386 | punycode@^1.3.2: 387 | version "1.4.1" 388 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 389 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 390 | 391 | punycode@^2.1.0: 392 | version "2.1.1" 393 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 394 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 395 | 396 | range-parser@1.2.0: 397 | version "1.2.0" 398 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 399 | integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= 400 | 401 | rangetouch@^2.0.1: 402 | version "2.0.1" 403 | resolved "https://registry.yarnpkg.com/rangetouch/-/rangetouch-2.0.1.tgz#c01105110fd3afca2adcb1a580692837d883cb70" 404 | integrity sha512-sln+pNSc8NGaHoLzwNBssFSf/rSYkqeBXzX1AtJlkJiUaVSJSbRAWJk+4omsXkN+EJalzkZhWQ3th1m0FpR5xA== 405 | 406 | rc@^1.0.1, rc@^1.1.6: 407 | version "1.2.8" 408 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 409 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 410 | dependencies: 411 | deep-extend "^0.6.0" 412 | ini "~1.3.0" 413 | minimist "^1.2.0" 414 | strip-json-comments "~2.0.1" 415 | 416 | registry-auth-token@3.3.2: 417 | version "3.3.2" 418 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 419 | integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== 420 | dependencies: 421 | rc "^1.1.6" 422 | safe-buffer "^5.0.1" 423 | 424 | registry-url@3.1.0: 425 | version "3.1.0" 426 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 427 | integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= 428 | dependencies: 429 | rc "^1.0.1" 430 | 431 | safe-buffer@5.1.2: 432 | version "5.1.2" 433 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 434 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 435 | 436 | safe-buffer@^5.0.1: 437 | version "5.2.0" 438 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 439 | integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 440 | 441 | serve-handler@6.1.3: 442 | version "6.1.3" 443 | resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.3.tgz#1bf8c5ae138712af55c758477533b9117f6435e8" 444 | integrity sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w== 445 | dependencies: 446 | bytes "3.0.0" 447 | content-disposition "0.5.2" 448 | fast-url-parser "1.1.3" 449 | mime-types "2.1.18" 450 | minimatch "3.0.4" 451 | path-is-inside "1.0.2" 452 | path-to-regexp "2.2.1" 453 | range-parser "1.2.0" 454 | 455 | serve@^11.3.2: 456 | version "11.3.2" 457 | resolved "https://registry.yarnpkg.com/serve/-/serve-11.3.2.tgz#b905e980616feecd170e51c8f979a7b2374098f5" 458 | integrity sha512-yKWQfI3xbj/f7X1lTBg91fXBP0FqjJ4TEi+ilES5yzH0iKJpN5LjNb1YzIfQg9Rqn4ECUS2SOf2+Kmepogoa5w== 459 | dependencies: 460 | "@zeit/schemas" "2.6.0" 461 | ajv "6.5.3" 462 | arg "2.0.0" 463 | boxen "1.3.0" 464 | chalk "2.4.1" 465 | clipboardy "1.2.3" 466 | compression "1.7.3" 467 | serve-handler "6.1.3" 468 | update-check "1.5.2" 469 | 470 | shebang-command@^1.2.0: 471 | version "1.2.0" 472 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 473 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 474 | dependencies: 475 | shebang-regex "^1.0.0" 476 | 477 | shebang-regex@^1.0.0: 478 | version "1.0.0" 479 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 480 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 481 | 482 | signal-exit@^3.0.0: 483 | version "3.0.2" 484 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 485 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 486 | 487 | string-width@^2.0.0, string-width@^2.1.1: 488 | version "2.1.1" 489 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 490 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 491 | dependencies: 492 | is-fullwidth-code-point "^2.0.0" 493 | strip-ansi "^4.0.0" 494 | 495 | strip-ansi@^4.0.0: 496 | version "4.0.0" 497 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 498 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 499 | dependencies: 500 | ansi-regex "^3.0.0" 501 | 502 | strip-eof@^1.0.0: 503 | version "1.0.0" 504 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 505 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 506 | 507 | strip-json-comments@~2.0.1: 508 | version "2.0.1" 509 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 510 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 511 | 512 | supports-color@^5.3.0: 513 | version "5.5.0" 514 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 515 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 516 | dependencies: 517 | has-flag "^3.0.0" 518 | 519 | term-size@^1.2.0: 520 | version "1.2.0" 521 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 522 | integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= 523 | dependencies: 524 | execa "^0.7.0" 525 | 526 | update-check@1.5.2: 527 | version "1.5.2" 528 | resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.2.tgz#2fe09f725c543440b3d7dabe8971f2d5caaedc28" 529 | integrity sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ== 530 | dependencies: 531 | registry-auth-token "3.3.2" 532 | registry-url "3.1.0" 533 | 534 | uri-js@^4.2.2: 535 | version "4.2.2" 536 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 537 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 538 | dependencies: 539 | punycode "^2.1.0" 540 | 541 | url-polyfill@^1.1.11: 542 | version "1.1.12" 543 | resolved "https://registry.yarnpkg.com/url-polyfill/-/url-polyfill-1.1.12.tgz#6cdaa17f6b022841b3aec0bf8dbd87ac0cd33331" 544 | integrity sha512-mYFmBHCapZjtcNHW0MDq9967t+z4Dmg5CJ0KqysK3+ZbyoNOWQHksGCTWwDhxGXllkWlOc10Xfko6v4a3ucM6A== 545 | 546 | vary@~1.1.2: 547 | version "1.1.2" 548 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 549 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 550 | 551 | vue-plyr@^7.0.0-beta.1: 552 | version "7.0.0-beta.1" 553 | resolved "https://registry.yarnpkg.com/vue-plyr/-/vue-plyr-7.0.0-beta.1.tgz#da7c37636860090c96a91076e0c25c1d3428dcf7" 554 | integrity sha512-RN16XuZcXfIpCsTFsdZrO5IaCyK3H/7bcLq9xdEBpYsWqMZRwyMjTTPjFqclXDa78ZSfpfsVDxZZ4AurtwJwIg== 555 | dependencies: 556 | plyr "github:sampotts/plyr#develop" 557 | vue "^2.6.12" 558 | 559 | vue@^2.6.12: 560 | version "2.6.12" 561 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz#f5ebd4fa6bd2869403e29a896aed4904456c9123" 562 | integrity sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg== 563 | 564 | which@^1.2.9: 565 | version "1.3.1" 566 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 567 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 568 | dependencies: 569 | isexe "^2.0.0" 570 | 571 | widest-line@^2.0.0: 572 | version "2.0.1" 573 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 574 | integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== 575 | dependencies: 576 | string-width "^2.1.1" 577 | 578 | yallist@^2.1.2: 579 | version "2.1.2" 580 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 581 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 582 | -------------------------------------------------------------------------------- /examples/vite/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/helper-validator-identifier@^7.10.4": 13 | version "7.10.4" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 15 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 16 | 17 | "@babel/highlight@^7.10.4": 18 | version "7.10.4" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 20 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.10.4" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@babel/parser@^7.12.0", "@babel/parser@^7.12.3": 27 | version "7.12.3" 28 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd" 29 | integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw== 30 | 31 | "@babel/types@^7.12.0": 32 | version "7.12.1" 33 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.1.tgz#e109d9ab99a8de735be287ee3d6a9947a190c4ae" 34 | integrity sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA== 35 | dependencies: 36 | "@babel/helper-validator-identifier" "^7.10.4" 37 | lodash "^4.17.19" 38 | to-fast-properties "^2.0.0" 39 | 40 | "@koa/cors@^3.1.0": 41 | version "3.1.0" 42 | resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-3.1.0.tgz#618bb073438cfdbd3ebd0e648a76e33b84f3a3b2" 43 | integrity sha512-7ulRC1da/rBa6kj6P4g2aJfnET3z8Uf3SWu60cjbtxTA5g8lxRdX/Bd2P92EagGwwAhANeNw8T8if99rJliR6Q== 44 | dependencies: 45 | vary "^1.1.2" 46 | 47 | "@nodelib/fs.scandir@2.1.3": 48 | version "2.1.3" 49 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" 50 | integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw== 51 | dependencies: 52 | "@nodelib/fs.stat" "2.0.3" 53 | run-parallel "^1.1.9" 54 | 55 | "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2": 56 | version "2.0.3" 57 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" 58 | integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA== 59 | 60 | "@nodelib/fs.walk@^1.2.3": 61 | version "1.2.4" 62 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" 63 | integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ== 64 | dependencies: 65 | "@nodelib/fs.scandir" "2.1.3" 66 | fastq "^1.6.0" 67 | 68 | "@rollup/plugin-commonjs@^15.1.0": 69 | version "15.1.0" 70 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-15.1.0.tgz#1e7d076c4f1b2abf7e65248570e555defc37c238" 71 | integrity sha512-xCQqz4z/o0h2syQ7d9LskIMvBSH4PX5PjYdpSSvgS+pQik3WahkQVNWg3D8XJeYjZoVWnIUQYDghuEMRGrmQYQ== 72 | dependencies: 73 | "@rollup/pluginutils" "^3.1.0" 74 | commondir "^1.0.1" 75 | estree-walker "^2.0.1" 76 | glob "^7.1.6" 77 | is-reference "^1.2.1" 78 | magic-string "^0.25.7" 79 | resolve "^1.17.0" 80 | 81 | "@rollup/plugin-json@^4.1.0": 82 | version "4.1.0" 83 | resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3" 84 | integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== 85 | dependencies: 86 | "@rollup/pluginutils" "^3.0.8" 87 | 88 | "@rollup/plugin-node-resolve@^9.0.0": 89 | version "9.0.0" 90 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-9.0.0.tgz#39bd0034ce9126b39c1699695f440b4b7d2b62e6" 91 | integrity sha512-gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg== 92 | dependencies: 93 | "@rollup/pluginutils" "^3.1.0" 94 | "@types/resolve" "1.17.1" 95 | builtin-modules "^3.1.0" 96 | deepmerge "^4.2.2" 97 | is-module "^1.0.0" 98 | resolve "^1.17.0" 99 | 100 | "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.0.9", "@rollup/pluginutils@^3.1.0": 101 | version "3.1.0" 102 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 103 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 104 | dependencies: 105 | "@types/estree" "0.0.39" 106 | estree-walker "^1.0.1" 107 | picomatch "^2.2.2" 108 | 109 | "@rollup/pluginutils@^4.0.0": 110 | version "4.1.0" 111 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.0.tgz#0dcc61c780e39257554feb7f77207dceca13c838" 112 | integrity sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ== 113 | dependencies: 114 | estree-walker "^2.0.1" 115 | picomatch "^2.2.2" 116 | 117 | "@types/accepts@*": 118 | version "1.3.5" 119 | resolved "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz#c34bec115cfc746e04fe5a059df4ce7e7b391575" 120 | integrity sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ== 121 | dependencies: 122 | "@types/node" "*" 123 | 124 | "@types/body-parser@*": 125 | version "1.19.0" 126 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f" 127 | integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ== 128 | dependencies: 129 | "@types/connect" "*" 130 | "@types/node" "*" 131 | 132 | "@types/connect@*": 133 | version "3.4.33" 134 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.33.tgz#31610c901eca573b8713c3330abc6e6b9f588546" 135 | integrity sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A== 136 | dependencies: 137 | "@types/node" "*" 138 | 139 | "@types/content-disposition@*": 140 | version "0.5.3" 141 | resolved "https://registry.yarnpkg.com/@types/content-disposition/-/content-disposition-0.5.3.tgz#0aa116701955c2faa0717fc69cd1596095e49d96" 142 | integrity sha512-P1bffQfhD3O4LW0ioENXUhZ9OIa0Zn+P7M+pWgkCKaT53wVLSq0mrKksCID/FGHpFhRSxRGhgrQmfhRuzwtKdg== 143 | 144 | "@types/cookies@*": 145 | version "0.7.5" 146 | resolved "https://registry.yarnpkg.com/@types/cookies/-/cookies-0.7.5.tgz#aa42c9a9834724bffee597028da5319b38e85e84" 147 | integrity sha512-3+TAFSm78O7/bAeYdB8FoYGntuT87vVP9JKuQRL8sRhv9313LP2SpHHL50VeFtnyjIcb3UELddMk5Yt0eOSOkg== 148 | dependencies: 149 | "@types/connect" "*" 150 | "@types/express" "*" 151 | "@types/keygrip" "*" 152 | "@types/node" "*" 153 | 154 | "@types/estree@*": 155 | version "0.0.45" 156 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" 157 | integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== 158 | 159 | "@types/estree@0.0.39": 160 | version "0.0.39" 161 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 162 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 163 | 164 | "@types/express-serve-static-core@*": 165 | version "4.17.13" 166 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.13.tgz#d9af025e925fc8b089be37423b8d1eac781be084" 167 | integrity sha512-RgDi5a4nuzam073lRGKTUIaL3eF2+H7LJvJ8eUnCI0wA6SNjXc44DCmWNiTLs/AZ7QlsFWZiw/gTG3nSQGL0fA== 168 | dependencies: 169 | "@types/node" "*" 170 | "@types/qs" "*" 171 | "@types/range-parser" "*" 172 | 173 | "@types/express@*": 174 | version "4.17.8" 175 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.8.tgz#3df4293293317e61c60137d273a2e96cd8d5f27a" 176 | integrity sha512-wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ== 177 | dependencies: 178 | "@types/body-parser" "*" 179 | "@types/express-serve-static-core" "*" 180 | "@types/qs" "*" 181 | "@types/serve-static" "*" 182 | 183 | "@types/http-assert@*": 184 | version "1.5.1" 185 | resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.5.1.tgz#d775e93630c2469c2f980fc27e3143240335db3b" 186 | integrity sha512-PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ== 187 | 188 | "@types/http-errors@*": 189 | version "1.8.0" 190 | resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.8.0.tgz#682477dbbbd07cd032731cb3b0e7eaee3d026b69" 191 | integrity sha512-2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA== 192 | 193 | "@types/keygrip@*": 194 | version "1.0.2" 195 | resolved "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz#513abfd256d7ad0bf1ee1873606317b33b1b2a72" 196 | integrity sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw== 197 | 198 | "@types/koa-compose@*": 199 | version "3.2.5" 200 | resolved "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.5.tgz#85eb2e80ac50be95f37ccf8c407c09bbe3468e9d" 201 | integrity sha512-B8nG/OoE1ORZqCkBVsup/AKcvjdgoHnfi4pZMn5UwAPCbhk/96xyv284eBYW8JlQbQ7zDmnpFr68I/40mFoIBQ== 202 | dependencies: 203 | "@types/koa" "*" 204 | 205 | "@types/koa@*", "@types/koa@^2.11.4": 206 | version "2.11.6" 207 | resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.11.6.tgz#b7030caa6b44af801c2aea13ba77d74aff7484d5" 208 | integrity sha512-BhyrMj06eQkk04C97fovEDQMpLpd2IxCB4ecitaXwOKGq78Wi2tooaDOWOFGajPk8IkQOAtMppApgSVkYe1F/A== 209 | dependencies: 210 | "@types/accepts" "*" 211 | "@types/content-disposition" "*" 212 | "@types/cookies" "*" 213 | "@types/http-assert" "*" 214 | "@types/http-errors" "*" 215 | "@types/keygrip" "*" 216 | "@types/koa-compose" "*" 217 | "@types/node" "*" 218 | 219 | "@types/lru-cache@^5.1.0": 220 | version "5.1.0" 221 | resolved "https://registry.yarnpkg.com/@types/lru-cache/-/lru-cache-5.1.0.tgz#57f228f2b80c046b4a1bd5cac031f81f207f4f03" 222 | integrity sha512-RaE0B+14ToE4l6UqdarKPnXwVDuigfFv+5j9Dze/Nqr23yyuqdNvzcZi3xB+3Agvi5R4EOgAksfv3lXX4vBt9w== 223 | 224 | "@types/mime@*": 225 | version "2.0.3" 226 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a" 227 | integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q== 228 | 229 | "@types/node@*": 230 | version "14.14.6" 231 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.6.tgz#146d3da57b3c636cc0d1769396ce1cfa8991147f" 232 | integrity sha512-6QlRuqsQ/Ox/aJEQWBEJG7A9+u7oSYl3mem/K8IzxXG/kAGbV1YPD9Bg9Zw3vyxC/YP+zONKwy8hGkSt1jxFMw== 233 | 234 | "@types/parse-json@^4.0.0": 235 | version "4.0.0" 236 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 237 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 238 | 239 | "@types/qs@*": 240 | version "6.9.5" 241 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b" 242 | integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== 243 | 244 | "@types/range-parser@*": 245 | version "1.2.3" 246 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" 247 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== 248 | 249 | "@types/resolve@1.17.1": 250 | version "1.17.1" 251 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" 252 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== 253 | dependencies: 254 | "@types/node" "*" 255 | 256 | "@types/serve-static@*": 257 | version "1.13.6" 258 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.6.tgz#866b1b8dec41c36e28c7be40ac725b88be43c5c1" 259 | integrity sha512-nuRJmv7jW7VmCVTn+IgYDkkbbDGyIINOeu/G0d74X3lm6E5KfMeQPJhxIt1ayQeQB3cSxvYs1RA/wipYoFB4EA== 260 | dependencies: 261 | "@types/mime" "*" 262 | "@types/node" "*" 263 | 264 | "@vue/compiler-core@3.0.2": 265 | version "3.0.2" 266 | resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.2.tgz#7790b7a1fcbba5ace4d81a70ce59096fa5c95734" 267 | integrity sha512-GOlEMTlC/OdzBkKaKOniYErbkjoKxkBOmulxGmMR10I2JJX6TvXd/peaO/kla2xhpliV/M6Z4TLJp0yjAvRIAw== 268 | dependencies: 269 | "@babel/parser" "^7.12.0" 270 | "@babel/types" "^7.12.0" 271 | "@vue/shared" "3.0.2" 272 | estree-walker "^2.0.1" 273 | source-map "^0.6.1" 274 | 275 | "@vue/compiler-dom@3.0.2", "@vue/compiler-dom@^3.0.2": 276 | version "3.0.2" 277 | resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.2.tgz#1d40de04bcdf9aabb79fb6a802dd70a2f3c2992a" 278 | integrity sha512-jvaL4QF2yXBJVD+JLbM2YA3e5fNfflJnfQ+GtfYk46ENGsEetqbkZqcX7fO+RHdG8tZBo7LCNBvgD0QLr+V4sg== 279 | dependencies: 280 | "@vue/compiler-core" "3.0.2" 281 | "@vue/shared" "3.0.2" 282 | 283 | "@vue/compiler-sfc@^3.0.2": 284 | version "3.0.2" 285 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.2.tgz#22c70fed72c347a4d5fa2db2e80594b3193dce57" 286 | integrity sha512-viYjT5ehDSLM3v0jQ9hbTs4I5e/7lSlYsDOp7TQ1qcwHRvzoTQMTkFpY/Iae+LFKM124Ld17tBfXgfrZl9dt+g== 287 | dependencies: 288 | "@babel/parser" "^7.12.0" 289 | "@babel/types" "^7.12.0" 290 | "@vue/compiler-core" "3.0.2" 291 | "@vue/compiler-dom" "3.0.2" 292 | "@vue/compiler-ssr" "3.0.2" 293 | "@vue/shared" "3.0.2" 294 | consolidate "^0.16.0" 295 | estree-walker "^2.0.1" 296 | hash-sum "^2.0.0" 297 | lru-cache "^5.1.1" 298 | magic-string "^0.25.7" 299 | merge-source-map "^1.1.0" 300 | postcss "^7.0.32" 301 | postcss-modules "^3.2.2" 302 | postcss-selector-parser "^6.0.4" 303 | source-map "^0.6.1" 304 | 305 | "@vue/compiler-ssr@3.0.2": 306 | version "3.0.2" 307 | resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.2.tgz#73af4d274a79bfcc72a996a9b45f1072e7deaa26" 308 | integrity sha512-gOgK1lf+0bFl+kQj6TU0TU1jIDFlsPRlSBZaUUA16DGeeiJrFanhsMuIs/l9U0IBFr/VJcHgzYpTXqHp95luHw== 309 | dependencies: 310 | "@vue/compiler-dom" "3.0.2" 311 | "@vue/shared" "3.0.2" 312 | 313 | "@vue/reactivity@3.0.2": 314 | version "3.0.2" 315 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.2.tgz#42ed5af6025b494a5e69b05169fcddf04eebfe77" 316 | integrity sha512-GdRloNcBar4yqWGXOcba1t//j/WizwfthfPUYkjcIPHjYnA/vTEQYp0C9+ZjPdinv1WRK1BSMeN/xj31kQES4A== 317 | dependencies: 318 | "@vue/shared" "3.0.2" 319 | 320 | "@vue/runtime-core@3.0.2": 321 | version "3.0.2" 322 | resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.2.tgz#d7ed462af1cb0bf9836668e4e6fab3f2f4b1bc00" 323 | integrity sha512-3m/jOs2xSipEFah9FgpEzvC9nERFonVGLN06+pf8iYPIy54Nlv7D2cyrk3Lhbjz4w3PbIrkxJnoTJYvJM7HDfA== 324 | dependencies: 325 | "@vue/reactivity" "3.0.2" 326 | "@vue/shared" "3.0.2" 327 | 328 | "@vue/runtime-dom@3.0.2": 329 | version "3.0.2" 330 | resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.2.tgz#9d166d03225558025d3d80f5039b646e0051b71c" 331 | integrity sha512-vqC1KK1yWthTw1FKzajT0gYQaEqAq7bpeeXQC473nllGC5YHbJhNAJLSmrDun1tjXqGF0UNCWYljYm+++BJv6w== 332 | dependencies: 333 | "@vue/runtime-core" "3.0.2" 334 | "@vue/shared" "3.0.2" 335 | csstype "^2.6.8" 336 | 337 | "@vue/shared@3.0.2": 338 | version "3.0.2" 339 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.2.tgz#419bd85a2ebdbd4f42963e98c5a1b103452176d9" 340 | integrity sha512-Zx869zlNoujFOclKIoYmkh8ES2RcS/+Jn546yOiPyZ+3+Ejivnr+fb8l+DdXUEFjo+iVDNR3KyLzg03aBFfZ4Q== 341 | 342 | accepts@^1.3.5: 343 | version "1.3.7" 344 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 345 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 346 | dependencies: 347 | mime-types "~2.1.24" 348 | negotiator "0.6.2" 349 | 350 | ansi-regex@^5.0.0: 351 | version "5.0.0" 352 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 353 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 354 | 355 | ansi-styles@^3.2.1: 356 | version "3.2.1" 357 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 358 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 359 | dependencies: 360 | color-convert "^1.9.0" 361 | 362 | ansi-styles@^4.1.0: 363 | version "4.3.0" 364 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 365 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 366 | dependencies: 367 | color-convert "^2.0.1" 368 | 369 | any-promise@^1.1.0: 370 | version "1.3.0" 371 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 372 | integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= 373 | 374 | anymatch@~3.1.1: 375 | version "3.1.1" 376 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 377 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 378 | dependencies: 379 | normalize-path "^3.0.0" 380 | picomatch "^2.0.4" 381 | 382 | array-union@^2.1.0: 383 | version "2.1.0" 384 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 385 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 386 | 387 | at-least-node@^1.0.0: 388 | version "1.0.0" 389 | resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 390 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 391 | 392 | balanced-match@^1.0.0: 393 | version "1.0.0" 394 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 395 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 396 | 397 | big.js@^5.2.2: 398 | version "5.2.2" 399 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 400 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 401 | 402 | binary-extensions@^2.0.0: 403 | version "2.1.0" 404 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" 405 | integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== 406 | 407 | bluebird@^3.7.2: 408 | version "3.7.2" 409 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 410 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 411 | 412 | brace-expansion@^1.1.7: 413 | version "1.1.11" 414 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 415 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 416 | dependencies: 417 | balanced-match "^1.0.0" 418 | concat-map "0.0.1" 419 | 420 | braces@^3.0.1, braces@~3.0.2: 421 | version "3.0.2" 422 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 423 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 424 | dependencies: 425 | fill-range "^7.0.1" 426 | 427 | brotli-size@^4.0.0: 428 | version "4.0.0" 429 | resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-4.0.0.tgz#a05ee3faad3c0e700a2f2da826ba6b4d76e69e5e" 430 | integrity sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA== 431 | dependencies: 432 | duplexer "0.1.1" 433 | 434 | buffer-from@^1.0.0: 435 | version "1.1.1" 436 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 437 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 438 | 439 | builtin-modules@^1.1.1: 440 | version "1.1.1" 441 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 442 | integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= 443 | 444 | builtin-modules@^3.1.0: 445 | version "3.1.0" 446 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 447 | integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== 448 | 449 | cache-content-type@^1.0.0: 450 | version "1.0.1" 451 | resolved "https://registry.yarnpkg.com/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c" 452 | integrity sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA== 453 | dependencies: 454 | mime-types "^2.1.18" 455 | ylru "^1.2.0" 456 | 457 | callsites@^3.0.0: 458 | version "3.1.0" 459 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 460 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 461 | 462 | chalk@^2.0.0, chalk@^2.4.2: 463 | version "2.4.2" 464 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 465 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 466 | dependencies: 467 | ansi-styles "^3.2.1" 468 | escape-string-regexp "^1.0.5" 469 | supports-color "^5.3.0" 470 | 471 | chalk@^4.0.0, chalk@^4.1.0: 472 | version "4.1.0" 473 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 474 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 475 | dependencies: 476 | ansi-styles "^4.1.0" 477 | supports-color "^7.1.0" 478 | 479 | chokidar@^3.4.2: 480 | version "3.4.3" 481 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" 482 | integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== 483 | dependencies: 484 | anymatch "~3.1.1" 485 | braces "~3.0.2" 486 | glob-parent "~5.1.0" 487 | is-binary-path "~2.1.0" 488 | is-glob "~4.0.1" 489 | normalize-path "~3.0.0" 490 | readdirp "~3.5.0" 491 | optionalDependencies: 492 | fsevents "~2.1.2" 493 | 494 | clean-css@^4.2.3: 495 | version "4.2.3" 496 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" 497 | integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== 498 | dependencies: 499 | source-map "~0.6.0" 500 | 501 | cli-cursor@^3.1.0: 502 | version "3.1.0" 503 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 504 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 505 | dependencies: 506 | restore-cursor "^3.1.0" 507 | 508 | cli-spinners@^2.4.0: 509 | version "2.5.0" 510 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.5.0.tgz#12763e47251bf951cb75c201dfa58ff1bcb2d047" 511 | integrity sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ== 512 | 513 | clone@^1.0.2: 514 | version "1.0.4" 515 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 516 | integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= 517 | 518 | co@^4.6.0: 519 | version "4.6.0" 520 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 521 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 522 | 523 | color-convert@^1.9.0: 524 | version "1.9.3" 525 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 526 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 527 | dependencies: 528 | color-name "1.1.3" 529 | 530 | color-convert@^2.0.1: 531 | version "2.0.1" 532 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 533 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 534 | dependencies: 535 | color-name "~1.1.4" 536 | 537 | color-name@1.1.3: 538 | version "1.1.3" 539 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 540 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 541 | 542 | color-name@~1.1.4: 543 | version "1.1.4" 544 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 545 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 546 | 547 | commander@^2.20.0: 548 | version "2.20.3" 549 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 550 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 551 | 552 | commondir@^1.0.1: 553 | version "1.0.1" 554 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 555 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 556 | 557 | concat-map@0.0.1: 558 | version "0.0.1" 559 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 560 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 561 | 562 | consolidate@^0.16.0: 563 | version "0.16.0" 564 | resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.16.0.tgz#a11864768930f2f19431660a65906668f5fbdc16" 565 | integrity sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ== 566 | dependencies: 567 | bluebird "^3.7.2" 568 | 569 | content-disposition@~0.5.2: 570 | version "0.5.3" 571 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 572 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 573 | dependencies: 574 | safe-buffer "5.1.2" 575 | 576 | content-type@^1.0.4: 577 | version "1.0.4" 578 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 579 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 580 | 581 | cookies@~0.8.0: 582 | version "0.8.0" 583 | resolved "https://registry.yarnpkg.com/cookies/-/cookies-0.8.0.tgz#1293ce4b391740a8406e3c9870e828c4b54f3f90" 584 | integrity sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow== 585 | dependencies: 586 | depd "~2.0.0" 587 | keygrip "~1.1.0" 588 | 589 | core-js@^3.6.5: 590 | version "3.6.5" 591 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" 592 | integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== 593 | 594 | cosmiconfig@^7.0.0: 595 | version "7.0.0" 596 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" 597 | integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== 598 | dependencies: 599 | "@types/parse-json" "^4.0.0" 600 | import-fresh "^3.2.1" 601 | parse-json "^5.0.0" 602 | path-type "^4.0.0" 603 | yaml "^1.10.0" 604 | 605 | cross-spawn@^7.0.0: 606 | version "7.0.3" 607 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 608 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 609 | dependencies: 610 | path-key "^3.1.0" 611 | shebang-command "^2.0.0" 612 | which "^2.0.1" 613 | 614 | cssesc@^3.0.0: 615 | version "3.0.0" 616 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 617 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 618 | 619 | csstype@^2.6.8: 620 | version "2.6.13" 621 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.13.tgz#a6893015b90e84dd6e85d0e3b442a1e84f2dbe0f" 622 | integrity sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A== 623 | 624 | custom-event-polyfill@^1.0.7: 625 | version "1.0.7" 626 | resolved "https://registry.yarnpkg.com/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz#9bc993ddda937c1a30ccd335614c6c58c4f87aee" 627 | integrity sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w== 628 | 629 | debug@^3.1.0: 630 | version "3.2.6" 631 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 632 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 633 | dependencies: 634 | ms "^2.1.1" 635 | 636 | debug@^4.1.1: 637 | version "4.2.0" 638 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" 639 | integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== 640 | dependencies: 641 | ms "2.1.2" 642 | 643 | debug@~3.1.0: 644 | version "3.1.0" 645 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 646 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 647 | dependencies: 648 | ms "2.0.0" 649 | 650 | deep-equal@~1.0.1: 651 | version "1.0.1" 652 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 653 | integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= 654 | 655 | deepmerge@^4.2.2: 656 | version "4.2.2" 657 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 658 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 659 | 660 | defaults@^1.0.3: 661 | version "1.0.3" 662 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 663 | integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= 664 | dependencies: 665 | clone "^1.0.2" 666 | 667 | delegates@^1.0.0: 668 | version "1.0.0" 669 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 670 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 671 | 672 | depd@^1.1.2, depd@~1.1.2: 673 | version "1.1.2" 674 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 675 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 676 | 677 | depd@~2.0.0: 678 | version "2.0.0" 679 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 680 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== 681 | 682 | destroy@^1.0.4: 683 | version "1.0.4" 684 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 685 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 686 | 687 | dir-glob@^3.0.1: 688 | version "3.0.1" 689 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 690 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 691 | dependencies: 692 | path-type "^4.0.0" 693 | 694 | dotenv-expand@^5.1.0: 695 | version "5.1.0" 696 | resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" 697 | integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== 698 | 699 | dotenv@^8.2.0: 700 | version "8.2.0" 701 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" 702 | integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== 703 | 704 | duplexer@0.1.1: 705 | version "0.1.1" 706 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 707 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 708 | 709 | ee-first@1.1.1: 710 | version "1.1.1" 711 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 712 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 713 | 714 | emojis-list@^3.0.0: 715 | version "3.0.0" 716 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 717 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 718 | 719 | encodeurl@^1.0.2: 720 | version "1.0.2" 721 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 722 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 723 | 724 | end-of-stream@^1.1.0: 725 | version "1.4.4" 726 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 727 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 728 | dependencies: 729 | once "^1.4.0" 730 | 731 | error-ex@^1.3.1: 732 | version "1.3.2" 733 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 734 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 735 | dependencies: 736 | is-arrayish "^0.2.1" 737 | 738 | es-module-lexer@^0.3.25: 739 | version "0.3.26" 740 | resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.3.26.tgz#7b507044e97d5b03b01d4392c74ffeb9c177a83b" 741 | integrity sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA== 742 | 743 | esbuild@^0.7.21: 744 | version "0.7.22" 745 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.7.22.tgz#9149b903f8128b7c45a754046c24199d76bbe08e" 746 | integrity sha512-B43SYg8LGWYTCv9Gs0RnuLNwjzpuWOoCaZHTWEDEf5AfrnuDMerPVMdCEu7xOdhFvQ+UqfP2MGU9lxEy0JzccA== 747 | 748 | escape-html@^1.0.3: 749 | version "1.0.3" 750 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 751 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 752 | 753 | escape-string-regexp@^1.0.5: 754 | version "1.0.5" 755 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 756 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 757 | 758 | estree-walker@^0.6.1: 759 | version "0.6.1" 760 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 761 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 762 | 763 | estree-walker@^1.0.1: 764 | version "1.0.1" 765 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 766 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 767 | 768 | estree-walker@^2.0.1: 769 | version "2.0.1" 770 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.1.tgz#f8e030fb21cefa183b44b7ad516b747434e7a3e0" 771 | integrity sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg== 772 | 773 | etag@^1.8.1: 774 | version "1.8.1" 775 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 776 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 777 | 778 | eventemitter3@^4.0.0: 779 | version "4.0.7" 780 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" 781 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== 782 | 783 | execa@^4.0.3: 784 | version "4.1.0" 785 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 786 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 787 | dependencies: 788 | cross-spawn "^7.0.0" 789 | get-stream "^5.0.0" 790 | human-signals "^1.1.1" 791 | is-stream "^2.0.0" 792 | merge-stream "^2.0.0" 793 | npm-run-path "^4.0.0" 794 | onetime "^5.1.0" 795 | signal-exit "^3.0.2" 796 | strip-final-newline "^2.0.0" 797 | 798 | fast-glob@^3.1.1: 799 | version "3.2.4" 800 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" 801 | integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== 802 | dependencies: 803 | "@nodelib/fs.stat" "^2.0.2" 804 | "@nodelib/fs.walk" "^1.2.3" 805 | glob-parent "^5.1.0" 806 | merge2 "^1.3.0" 807 | micromatch "^4.0.2" 808 | picomatch "^2.2.1" 809 | 810 | fastq@^1.6.0: 811 | version "1.9.0" 812 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.9.0.tgz#e16a72f338eaca48e91b5c23593bcc2ef66b7947" 813 | integrity sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w== 814 | dependencies: 815 | reusify "^1.0.4" 816 | 817 | fill-range@^7.0.1: 818 | version "7.0.1" 819 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 820 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 821 | dependencies: 822 | to-regex-range "^5.0.1" 823 | 824 | follow-redirects@^1.0.0: 825 | version "1.13.0" 826 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" 827 | integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== 828 | 829 | fresh@~0.5.2: 830 | version "0.5.2" 831 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 832 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 833 | 834 | fs-extra@^9.0.1: 835 | version "9.0.1" 836 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" 837 | integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== 838 | dependencies: 839 | at-least-node "^1.0.0" 840 | graceful-fs "^4.2.0" 841 | jsonfile "^6.0.1" 842 | universalify "^1.0.0" 843 | 844 | fs.realpath@^1.0.0: 845 | version "1.0.0" 846 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 847 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 848 | 849 | fsevents@~2.1.2: 850 | version "2.1.3" 851 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 852 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 853 | 854 | function-bind@^1.1.1: 855 | version "1.1.1" 856 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 857 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 858 | 859 | generic-names@^2.0.1: 860 | version "2.0.1" 861 | resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872" 862 | integrity sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== 863 | dependencies: 864 | loader-utils "^1.1.0" 865 | 866 | get-stream@^5.0.0: 867 | version "5.2.0" 868 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 869 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 870 | dependencies: 871 | pump "^3.0.0" 872 | 873 | glob-parent@^5.1.0, glob-parent@~5.1.0: 874 | version "5.1.1" 875 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 876 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 877 | dependencies: 878 | is-glob "^4.0.1" 879 | 880 | glob@^7.1.6: 881 | version "7.1.6" 882 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 883 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 884 | dependencies: 885 | fs.realpath "^1.0.0" 886 | inflight "^1.0.4" 887 | inherits "2" 888 | minimatch "^3.0.4" 889 | once "^1.3.0" 890 | path-is-absolute "^1.0.0" 891 | 892 | globby@^11.0.0: 893 | version "11.0.1" 894 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" 895 | integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== 896 | dependencies: 897 | array-union "^2.1.0" 898 | dir-glob "^3.0.1" 899 | fast-glob "^3.1.1" 900 | ignore "^5.1.4" 901 | merge2 "^1.3.0" 902 | slash "^3.0.0" 903 | 904 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 905 | version "4.2.4" 906 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 907 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 908 | 909 | has-flag@^3.0.0: 910 | version "3.0.0" 911 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 912 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 913 | 914 | has-flag@^4.0.0: 915 | version "4.0.0" 916 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 917 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 918 | 919 | has@^1.0.3: 920 | version "1.0.3" 921 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 922 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 923 | dependencies: 924 | function-bind "^1.1.1" 925 | 926 | hash-sum@^2.0.0: 927 | version "2.0.0" 928 | resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" 929 | integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== 930 | 931 | http-assert@^1.3.0: 932 | version "1.4.1" 933 | resolved "https://registry.yarnpkg.com/http-assert/-/http-assert-1.4.1.tgz#c5f725d677aa7e873ef736199b89686cceb37878" 934 | integrity sha512-rdw7q6GTlibqVVbXr0CKelfV5iY8G2HqEUkhSk297BMbSpSL8crXC+9rjKoMcZZEsksX30le6f/4ul4E28gegw== 935 | dependencies: 936 | deep-equal "~1.0.1" 937 | http-errors "~1.7.2" 938 | 939 | http-errors@^1.6.3, http-errors@^1.7.3: 940 | version "1.8.0" 941 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.0.tgz#75d1bbe497e1044f51e4ee9e704a62f28d336507" 942 | integrity sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A== 943 | dependencies: 944 | depd "~1.1.2" 945 | inherits "2.0.4" 946 | setprototypeof "1.2.0" 947 | statuses ">= 1.5.0 < 2" 948 | toidentifier "1.0.0" 949 | 950 | http-errors@~1.4.0: 951 | version "1.4.0" 952 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.4.0.tgz#6c0242dea6b3df7afda153c71089b31c6e82aabf" 953 | integrity sha1-bAJC3qaz33r9oVPHEImzHG6Cqr8= 954 | dependencies: 955 | inherits "2.0.1" 956 | statuses ">= 1.2.1 < 2" 957 | 958 | http-errors@~1.6.2: 959 | version "1.6.3" 960 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" 961 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= 962 | dependencies: 963 | depd "~1.1.2" 964 | inherits "2.0.3" 965 | setprototypeof "1.1.0" 966 | statuses ">= 1.4.0 < 2" 967 | 968 | http-errors@~1.7.2: 969 | version "1.7.3" 970 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 971 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 972 | dependencies: 973 | depd "~1.1.2" 974 | inherits "2.0.4" 975 | setprototypeof "1.1.1" 976 | statuses ">= 1.5.0 < 2" 977 | toidentifier "1.0.0" 978 | 979 | http-proxy@^1.16.2: 980 | version "1.18.1" 981 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" 982 | integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== 983 | dependencies: 984 | eventemitter3 "^4.0.0" 985 | follow-redirects "^1.0.0" 986 | requires-port "^1.0.0" 987 | 988 | human-signals@^1.1.1: 989 | version "1.1.1" 990 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 991 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 992 | 993 | icss-replace-symbols@^1.1.0: 994 | version "1.1.0" 995 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 996 | integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= 997 | 998 | icss-utils@^4.0.0, icss-utils@^4.1.1: 999 | version "4.1.1" 1000 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" 1001 | integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== 1002 | dependencies: 1003 | postcss "^7.0.14" 1004 | 1005 | ignore@^5.1.4: 1006 | version "5.1.8" 1007 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 1008 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1009 | 1010 | import-cwd@^3.0.0: 1011 | version "3.0.0" 1012 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" 1013 | integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== 1014 | dependencies: 1015 | import-from "^3.0.0" 1016 | 1017 | import-fresh@^3.2.1: 1018 | version "3.2.2" 1019 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" 1020 | integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== 1021 | dependencies: 1022 | parent-module "^1.0.0" 1023 | resolve-from "^4.0.0" 1024 | 1025 | import-from@^3.0.0: 1026 | version "3.0.0" 1027 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966" 1028 | integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== 1029 | dependencies: 1030 | resolve-from "^5.0.0" 1031 | 1032 | indexes-of@^1.0.1: 1033 | version "1.0.1" 1034 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1035 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 1036 | 1037 | inflight@^1.0.4: 1038 | version "1.0.6" 1039 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1040 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1041 | dependencies: 1042 | once "^1.3.0" 1043 | wrappy "1" 1044 | 1045 | inherits@2, inherits@2.0.4: 1046 | version "2.0.4" 1047 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1048 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1049 | 1050 | inherits@2.0.1: 1051 | version "2.0.1" 1052 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1053 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 1054 | 1055 | inherits@2.0.3: 1056 | version "2.0.3" 1057 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1058 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1059 | 1060 | is-arrayish@^0.2.1: 1061 | version "0.2.1" 1062 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1063 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1064 | 1065 | is-binary-path@~2.1.0: 1066 | version "2.1.0" 1067 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1068 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1069 | dependencies: 1070 | binary-extensions "^2.0.0" 1071 | 1072 | is-core-module@^2.0.0: 1073 | version "2.0.0" 1074 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.0.0.tgz#58531b70aed1db7c0e8d4eb1a0a2d1ddd64bd12d" 1075 | integrity sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw== 1076 | dependencies: 1077 | has "^1.0.3" 1078 | 1079 | is-docker@^2.0.0: 1080 | version "2.1.1" 1081 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" 1082 | integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== 1083 | 1084 | is-extglob@^2.1.1: 1085 | version "2.1.1" 1086 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1087 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1088 | 1089 | is-generator-function@^1.0.7: 1090 | version "1.0.7" 1091 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.7.tgz#d2132e529bb0000a7f80794d4bdf5cd5e5813522" 1092 | integrity sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw== 1093 | 1094 | is-glob@^4.0.1, is-glob@~4.0.1: 1095 | version "4.0.1" 1096 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1097 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1098 | dependencies: 1099 | is-extglob "^2.1.1" 1100 | 1101 | is-interactive@^1.0.0: 1102 | version "1.0.0" 1103 | resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" 1104 | integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== 1105 | 1106 | is-module@^1.0.0: 1107 | version "1.0.0" 1108 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1109 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1110 | 1111 | is-number@^7.0.0: 1112 | version "7.0.0" 1113 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1114 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1115 | 1116 | is-reference@^1.2.1: 1117 | version "1.2.1" 1118 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" 1119 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 1120 | dependencies: 1121 | "@types/estree" "*" 1122 | 1123 | is-stream@^2.0.0: 1124 | version "2.0.0" 1125 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1126 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1127 | 1128 | is-wsl@^2.1.1: 1129 | version "2.2.0" 1130 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 1131 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1132 | dependencies: 1133 | is-docker "^2.0.0" 1134 | 1135 | isarray@0.0.1: 1136 | version "0.0.1" 1137 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1138 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 1139 | 1140 | isbuiltin@^1.0.0: 1141 | version "1.0.0" 1142 | resolved "https://registry.yarnpkg.com/isbuiltin/-/isbuiltin-1.0.0.tgz#4453b2915690cb47c0cb9c9255a0807778315c96" 1143 | integrity sha1-RFOykVaQy0fAy5ySVaCAd3gxXJY= 1144 | dependencies: 1145 | builtin-modules "^1.1.1" 1146 | 1147 | isexe@^2.0.0: 1148 | version "2.0.0" 1149 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1150 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1151 | 1152 | jest-worker@^26.2.1: 1153 | version "26.6.2" 1154 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 1155 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 1156 | dependencies: 1157 | "@types/node" "*" 1158 | merge-stream "^2.0.0" 1159 | supports-color "^7.0.0" 1160 | 1161 | js-tokens@^4.0.0: 1162 | version "4.0.0" 1163 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1164 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1165 | 1166 | json-parse-even-better-errors@^2.3.0: 1167 | version "2.3.1" 1168 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1169 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1170 | 1171 | json5@^1.0.1: 1172 | version "1.0.1" 1173 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1174 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1175 | dependencies: 1176 | minimist "^1.2.0" 1177 | 1178 | jsonfile@^6.0.1: 1179 | version "6.1.0" 1180 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 1181 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 1182 | dependencies: 1183 | universalify "^2.0.0" 1184 | optionalDependencies: 1185 | graceful-fs "^4.1.6" 1186 | 1187 | keygrip@~1.1.0: 1188 | version "1.1.0" 1189 | resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226" 1190 | integrity sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ== 1191 | dependencies: 1192 | tsscmp "1.0.6" 1193 | 1194 | klona@^2.0.4: 1195 | version "2.0.4" 1196 | resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" 1197 | integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== 1198 | 1199 | koa-compose@^3.0.0: 1200 | version "3.2.1" 1201 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" 1202 | integrity sha1-qFzLQLfZhtjlo0Wzoazo6rz1Tec= 1203 | dependencies: 1204 | any-promise "^1.1.0" 1205 | 1206 | koa-compose@^4.1.0: 1207 | version "4.1.0" 1208 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-4.1.0.tgz#507306b9371901db41121c812e923d0d67d3e877" 1209 | integrity sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw== 1210 | 1211 | koa-conditional-get@^3.0.0: 1212 | version "3.0.0" 1213 | resolved "https://registry.yarnpkg.com/koa-conditional-get/-/koa-conditional-get-3.0.0.tgz#552cb64a217dfb907e90b7c34f42009e441c4b8e" 1214 | integrity sha512-VKyPS7SuNH26TjTV2IRz+oh0HV/jc2lYAo51PTQTkj0XFn8ebNZW9riczmrW7ZVBFSnls1Z88DPUYKnvVymruA== 1215 | 1216 | koa-convert@^1.2.0: 1217 | version "1.2.0" 1218 | resolved "https://registry.yarnpkg.com/koa-convert/-/koa-convert-1.2.0.tgz#da40875df49de0539098d1700b50820cebcd21d0" 1219 | integrity sha1-2kCHXfSd4FOQmNFwC1CCDOvNIdA= 1220 | dependencies: 1221 | co "^4.6.0" 1222 | koa-compose "^3.0.0" 1223 | 1224 | koa-etag@^4.0.0: 1225 | version "4.0.0" 1226 | resolved "https://registry.yarnpkg.com/koa-etag/-/koa-etag-4.0.0.tgz#2c2bb7ae69ca1ac6ced09ba28dcb78523c810414" 1227 | integrity sha512-1cSdezCkBWlyuB9l6c/IFoe1ANCDdPBxkDkRiaIup40xpUub6U/wwRXoKBZw/O5BifX9OlqAjYnDyzM6+l+TAg== 1228 | dependencies: 1229 | etag "^1.8.1" 1230 | 1231 | koa-proxies@^0.11.0: 1232 | version "0.11.0" 1233 | resolved "https://registry.yarnpkg.com/koa-proxies/-/koa-proxies-0.11.0.tgz#43dde4260080f7cb0f284655f85cf654bbe9ec84" 1234 | integrity sha512-iXGRADBE0fM7g7AttNOlLZ/cCFKXeVMHbFJKIRb0dUCrSYXi02loyVSdBlKlBQ5ZfVKJLo9Q9FyqwVTp1poVVA== 1235 | dependencies: 1236 | http-proxy "^1.16.2" 1237 | path-match "^1.2.4" 1238 | 1239 | koa-send@^5.0.0, koa-send@^5.0.1: 1240 | version "5.0.1" 1241 | resolved "https://registry.yarnpkg.com/koa-send/-/koa-send-5.0.1.tgz#39dceebfafb395d0d60beaffba3a70b4f543fe79" 1242 | integrity sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ== 1243 | dependencies: 1244 | debug "^4.1.1" 1245 | http-errors "^1.7.3" 1246 | resolve-path "^1.4.0" 1247 | 1248 | koa-static@^5.0.0: 1249 | version "5.0.0" 1250 | resolved "https://registry.yarnpkg.com/koa-static/-/koa-static-5.0.0.tgz#5e92fc96b537ad5219f425319c95b64772776943" 1251 | integrity sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ== 1252 | dependencies: 1253 | debug "^3.1.0" 1254 | koa-send "^5.0.0" 1255 | 1256 | koa@^2.13.0: 1257 | version "2.13.0" 1258 | resolved "https://registry.yarnpkg.com/koa/-/koa-2.13.0.tgz#25217e05efd3358a7e5ddec00f0a380c9b71b501" 1259 | integrity sha512-i/XJVOfPw7npbMv67+bOeXr3gPqOAw6uh5wFyNs3QvJ47tUx3M3V9rIE0//WytY42MKz4l/MXKyGkQ2LQTfLUQ== 1260 | dependencies: 1261 | accepts "^1.3.5" 1262 | cache-content-type "^1.0.0" 1263 | content-disposition "~0.5.2" 1264 | content-type "^1.0.4" 1265 | cookies "~0.8.0" 1266 | debug "~3.1.0" 1267 | delegates "^1.0.0" 1268 | depd "^1.1.2" 1269 | destroy "^1.0.4" 1270 | encodeurl "^1.0.2" 1271 | escape-html "^1.0.3" 1272 | fresh "~0.5.2" 1273 | http-assert "^1.3.0" 1274 | http-errors "^1.6.3" 1275 | is-generator-function "^1.0.7" 1276 | koa-compose "^4.1.0" 1277 | koa-convert "^1.2.0" 1278 | on-finished "^2.3.0" 1279 | only "~0.0.2" 1280 | parseurl "^1.3.2" 1281 | statuses "^1.5.0" 1282 | type-is "^1.6.16" 1283 | vary "^1.1.2" 1284 | 1285 | lines-and-columns@^1.1.6: 1286 | version "1.1.6" 1287 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1288 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1289 | 1290 | loader-utils@^1.1.0: 1291 | version "1.4.0" 1292 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 1293 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 1294 | dependencies: 1295 | big.js "^5.2.2" 1296 | emojis-list "^3.0.0" 1297 | json5 "^1.0.1" 1298 | 1299 | loadjs@^4.2.0: 1300 | version "4.2.0" 1301 | resolved "https://registry.yarnpkg.com/loadjs/-/loadjs-4.2.0.tgz#2a0336376397a6a43edf98c9ec3229ddd5abb6f6" 1302 | integrity sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA== 1303 | 1304 | lodash.camelcase@^4.3.0: 1305 | version "4.3.0" 1306 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1307 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 1308 | 1309 | lodash@^4.17.19: 1310 | version "4.17.20" 1311 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 1312 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 1313 | 1314 | log-symbols@^4.0.0: 1315 | version "4.0.0" 1316 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" 1317 | integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== 1318 | dependencies: 1319 | chalk "^4.0.0" 1320 | 1321 | lru-cache@^5.1.1: 1322 | version "5.1.1" 1323 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1324 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1325 | dependencies: 1326 | yallist "^3.0.2" 1327 | 1328 | lru-cache@^6.0.0: 1329 | version "6.0.0" 1330 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1331 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1332 | dependencies: 1333 | yallist "^4.0.0" 1334 | 1335 | magic-string@^0.25.7: 1336 | version "0.25.7" 1337 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 1338 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 1339 | dependencies: 1340 | sourcemap-codec "^1.4.4" 1341 | 1342 | media-typer@0.3.0: 1343 | version "0.3.0" 1344 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1345 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 1346 | 1347 | merge-source-map@^1.1.0: 1348 | version "1.1.0" 1349 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 1350 | integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== 1351 | dependencies: 1352 | source-map "^0.6.1" 1353 | 1354 | merge-stream@^2.0.0: 1355 | version "2.0.0" 1356 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1357 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1358 | 1359 | merge2@^1.3.0: 1360 | version "1.4.1" 1361 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1362 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1363 | 1364 | micromatch@^4.0.2: 1365 | version "4.0.2" 1366 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 1367 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1368 | dependencies: 1369 | braces "^3.0.1" 1370 | picomatch "^2.0.5" 1371 | 1372 | mime-db@1.44.0: 1373 | version "1.44.0" 1374 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" 1375 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== 1376 | 1377 | mime-types@^2.1.18, mime-types@^2.1.27, mime-types@~2.1.24: 1378 | version "2.1.27" 1379 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" 1380 | integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== 1381 | dependencies: 1382 | mime-db "1.44.0" 1383 | 1384 | mimic-fn@^2.1.0: 1385 | version "2.1.0" 1386 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1387 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1388 | 1389 | minimatch@^3.0.4: 1390 | version "3.0.4" 1391 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1392 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1393 | dependencies: 1394 | brace-expansion "^1.1.7" 1395 | 1396 | minimist@^1.2.0, minimist@^1.2.5: 1397 | version "1.2.5" 1398 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1399 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1400 | 1401 | ms@2.0.0: 1402 | version "2.0.0" 1403 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1404 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1405 | 1406 | ms@2.1.2, ms@^2.1.1: 1407 | version "2.1.2" 1408 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1409 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1410 | 1411 | mute-stream@0.0.8: 1412 | version "0.0.8" 1413 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 1414 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1415 | 1416 | negotiator@0.6.2: 1417 | version "0.6.2" 1418 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 1419 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 1420 | 1421 | node-forge@^0.10.0: 1422 | version "0.10.0" 1423 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" 1424 | integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== 1425 | 1426 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1427 | version "3.0.0" 1428 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1429 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1430 | 1431 | npm-run-path@^4.0.0: 1432 | version "4.0.1" 1433 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1434 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1435 | dependencies: 1436 | path-key "^3.0.0" 1437 | 1438 | on-finished@^2.3.0: 1439 | version "2.3.0" 1440 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1441 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 1442 | dependencies: 1443 | ee-first "1.1.1" 1444 | 1445 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1446 | version "1.4.0" 1447 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1448 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1449 | dependencies: 1450 | wrappy "1" 1451 | 1452 | onetime@^5.1.0: 1453 | version "5.1.2" 1454 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1455 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 1456 | dependencies: 1457 | mimic-fn "^2.1.0" 1458 | 1459 | only@~0.0.2: 1460 | version "0.0.2" 1461 | resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4" 1462 | integrity sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q= 1463 | 1464 | open@^7.2.1: 1465 | version "7.3.0" 1466 | resolved "https://registry.yarnpkg.com/open/-/open-7.3.0.tgz#45461fdee46444f3645b6e14eb3ca94b82e1be69" 1467 | integrity sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw== 1468 | dependencies: 1469 | is-docker "^2.0.0" 1470 | is-wsl "^2.1.1" 1471 | 1472 | ora@^5.1.0: 1473 | version "5.1.0" 1474 | resolved "https://registry.yarnpkg.com/ora/-/ora-5.1.0.tgz#b188cf8cd2d4d9b13fd25383bc3e5cba352c94f8" 1475 | integrity sha512-9tXIMPvjZ7hPTbk8DFq1f7Kow/HU/pQYB60JbNq+QnGwcyhWVZaQ4hM9zQDEsPxw/muLpgiHSaumUZxCAmod/w== 1476 | dependencies: 1477 | chalk "^4.1.0" 1478 | cli-cursor "^3.1.0" 1479 | cli-spinners "^2.4.0" 1480 | is-interactive "^1.0.0" 1481 | log-symbols "^4.0.0" 1482 | mute-stream "0.0.8" 1483 | strip-ansi "^6.0.0" 1484 | wcwidth "^1.0.1" 1485 | 1486 | p-map-series@^2.1.0: 1487 | version "2.1.0" 1488 | resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2" 1489 | integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== 1490 | 1491 | parent-module@^1.0.0: 1492 | version "1.0.1" 1493 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1494 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1495 | dependencies: 1496 | callsites "^3.0.0" 1497 | 1498 | parse-json@^5.0.0: 1499 | version "5.1.0" 1500 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 1501 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 1502 | dependencies: 1503 | "@babel/code-frame" "^7.0.0" 1504 | error-ex "^1.3.1" 1505 | json-parse-even-better-errors "^2.3.0" 1506 | lines-and-columns "^1.1.6" 1507 | 1508 | parseurl@^1.3.2: 1509 | version "1.3.3" 1510 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 1511 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 1512 | 1513 | path-is-absolute@1.0.1, path-is-absolute@^1.0.0: 1514 | version "1.0.1" 1515 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1516 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1517 | 1518 | path-key@^3.0.0, path-key@^3.1.0: 1519 | version "3.1.1" 1520 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1521 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1522 | 1523 | path-match@^1.2.4: 1524 | version "1.2.4" 1525 | resolved "https://registry.yarnpkg.com/path-match/-/path-match-1.2.4.tgz#a62747f3c7e0c2514762697f24443585b09100ea" 1526 | integrity sha1-pidH88fgwlFHYml/JEQ1hbCRAOo= 1527 | dependencies: 1528 | http-errors "~1.4.0" 1529 | path-to-regexp "^1.0.0" 1530 | 1531 | path-parse@^1.0.6: 1532 | version "1.0.6" 1533 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1534 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1535 | 1536 | path-to-regexp@^1.0.0: 1537 | version "1.8.0" 1538 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" 1539 | integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== 1540 | dependencies: 1541 | isarray "0.0.1" 1542 | 1543 | path-type@^4.0.0: 1544 | version "4.0.0" 1545 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1546 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1547 | 1548 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1, picomatch@^2.2.2: 1549 | version "2.2.2" 1550 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 1551 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 1552 | 1553 | pify@^2.3.0: 1554 | version "2.3.0" 1555 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1556 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1557 | 1558 | "plyr@github:sampotts/plyr#develop": 1559 | version "3.6.2" 1560 | resolved "https://codeload.github.com/sampotts/plyr/tar.gz/5c02205a4f9955f1b8d44f6cc3f9f40f2cc96572" 1561 | dependencies: 1562 | core-js "^3.6.5" 1563 | custom-event-polyfill "^1.0.7" 1564 | loadjs "^4.2.0" 1565 | rangetouch "^2.0.1" 1566 | url-polyfill "^1.1.11" 1567 | 1568 | postcss-discard-comments@^4.0.2: 1569 | version "4.0.2" 1570 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" 1571 | integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== 1572 | dependencies: 1573 | postcss "^7.0.0" 1574 | 1575 | postcss-import@^12.0.1: 1576 | version "12.0.1" 1577 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-12.0.1.tgz#cf8c7ab0b5ccab5649024536e565f841928b7153" 1578 | integrity sha512-3Gti33dmCjyKBgimqGxL3vcV8w9+bsHwO5UrBawp796+jdardbcFl4RP5w/76BwNL7aGzpKstIfF9I+kdE8pTw== 1579 | dependencies: 1580 | postcss "^7.0.1" 1581 | postcss-value-parser "^3.2.3" 1582 | read-cache "^1.0.0" 1583 | resolve "^1.1.7" 1584 | 1585 | postcss-load-config@^3.0.0: 1586 | version "3.0.0" 1587 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.0.0.tgz#850bb066edd65b734329eacf83af0c0764226c87" 1588 | integrity sha512-lErrN8imuEF1cSiHBV8MiR7HeuzlDpCGNtaMyYHlOBuJHHOGw6S4xOMZp8BbXPr7AGQp14L6PZDlIOpfFJ6f7w== 1589 | dependencies: 1590 | cosmiconfig "^7.0.0" 1591 | import-cwd "^3.0.0" 1592 | 1593 | postcss-modules-extract-imports@^2.0.0: 1594 | version "2.0.0" 1595 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" 1596 | integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== 1597 | dependencies: 1598 | postcss "^7.0.5" 1599 | 1600 | postcss-modules-local-by-default@^3.0.2: 1601 | version "3.0.3" 1602 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" 1603 | integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== 1604 | dependencies: 1605 | icss-utils "^4.1.1" 1606 | postcss "^7.0.32" 1607 | postcss-selector-parser "^6.0.2" 1608 | postcss-value-parser "^4.1.0" 1609 | 1610 | postcss-modules-scope@^2.2.0: 1611 | version "2.2.0" 1612 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" 1613 | integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== 1614 | dependencies: 1615 | postcss "^7.0.6" 1616 | postcss-selector-parser "^6.0.0" 1617 | 1618 | postcss-modules-values@^3.0.0: 1619 | version "3.0.0" 1620 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" 1621 | integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== 1622 | dependencies: 1623 | icss-utils "^4.0.0" 1624 | postcss "^7.0.6" 1625 | 1626 | postcss-modules@^3.2.2: 1627 | version "3.2.2" 1628 | resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-3.2.2.tgz#ee390de0f9f18e761e1778dfb9be26685c02c51f" 1629 | integrity sha512-JQ8IAqHELxC0N6tyCg2UF40pACY5oiL6UpiqqcIFRWqgDYO8B0jnxzoQ0EOpPrWXvcpu6BSbQU/3vSiq7w8Nhw== 1630 | dependencies: 1631 | generic-names "^2.0.1" 1632 | icss-replace-symbols "^1.1.0" 1633 | lodash.camelcase "^4.3.0" 1634 | postcss "^7.0.32" 1635 | postcss-modules-extract-imports "^2.0.0" 1636 | postcss-modules-local-by-default "^3.0.2" 1637 | postcss-modules-scope "^2.2.0" 1638 | postcss-modules-values "^3.0.0" 1639 | string-hash "^1.1.1" 1640 | 1641 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: 1642 | version "6.0.4" 1643 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" 1644 | integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== 1645 | dependencies: 1646 | cssesc "^3.0.0" 1647 | indexes-of "^1.0.1" 1648 | uniq "^1.0.1" 1649 | util-deprecate "^1.0.2" 1650 | 1651 | postcss-value-parser@^3.2.3: 1652 | version "3.3.1" 1653 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 1654 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 1655 | 1656 | postcss-value-parser@^4.1.0: 1657 | version "4.1.0" 1658 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 1659 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 1660 | 1661 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: 1662 | version "7.0.35" 1663 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" 1664 | integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== 1665 | dependencies: 1666 | chalk "^2.4.2" 1667 | source-map "^0.6.1" 1668 | supports-color "^6.1.0" 1669 | 1670 | pump@^3.0.0: 1671 | version "3.0.0" 1672 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1673 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1674 | dependencies: 1675 | end-of-stream "^1.1.0" 1676 | once "^1.3.1" 1677 | 1678 | randombytes@^2.1.0: 1679 | version "2.1.0" 1680 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1681 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 1682 | dependencies: 1683 | safe-buffer "^5.1.0" 1684 | 1685 | rangetouch@^2.0.1: 1686 | version "2.0.1" 1687 | resolved "https://registry.yarnpkg.com/rangetouch/-/rangetouch-2.0.1.tgz#c01105110fd3afca2adcb1a580692837d883cb70" 1688 | integrity sha512-sln+pNSc8NGaHoLzwNBssFSf/rSYkqeBXzX1AtJlkJiUaVSJSbRAWJk+4omsXkN+EJalzkZhWQ3th1m0FpR5xA== 1689 | 1690 | read-cache@^1.0.0: 1691 | version "1.0.0" 1692 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 1693 | integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= 1694 | dependencies: 1695 | pify "^2.3.0" 1696 | 1697 | readdirp@~3.5.0: 1698 | version "3.5.0" 1699 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 1700 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 1701 | dependencies: 1702 | picomatch "^2.2.1" 1703 | 1704 | requires-port@^1.0.0: 1705 | version "1.0.0" 1706 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 1707 | integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= 1708 | 1709 | resolve-from@^4.0.0: 1710 | version "4.0.0" 1711 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1712 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1713 | 1714 | resolve-from@^5.0.0: 1715 | version "5.0.0" 1716 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 1717 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 1718 | 1719 | resolve-path@^1.4.0: 1720 | version "1.4.0" 1721 | resolved "https://registry.yarnpkg.com/resolve-path/-/resolve-path-1.4.0.tgz#c4bda9f5efb2fce65247873ab36bb4d834fe16f7" 1722 | integrity sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc= 1723 | dependencies: 1724 | http-errors "~1.6.2" 1725 | path-is-absolute "1.0.1" 1726 | 1727 | resolve@^1.1.7, resolve@^1.17.0: 1728 | version "1.18.1" 1729 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130" 1730 | integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA== 1731 | dependencies: 1732 | is-core-module "^2.0.0" 1733 | path-parse "^1.0.6" 1734 | 1735 | restore-cursor@^3.1.0: 1736 | version "3.1.0" 1737 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 1738 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 1739 | dependencies: 1740 | onetime "^5.1.0" 1741 | signal-exit "^3.0.2" 1742 | 1743 | reusify@^1.0.4: 1744 | version "1.0.4" 1745 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1746 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1747 | 1748 | rollup-plugin-dynamic-import-variables@^1.1.0: 1749 | version "1.1.0" 1750 | resolved "https://registry.yarnpkg.com/rollup-plugin-dynamic-import-variables/-/rollup-plugin-dynamic-import-variables-1.1.0.tgz#4981d38907a471b35234398a09047bef47a2006a" 1751 | integrity sha512-C1avEmnXC8cC4aAQ5dB63O9oQf7IrhEHc98bQw9Qd6H36FxtZooLCvVfcO4SNYrqaNrzH3ErucQt/zdFSLPHNw== 1752 | dependencies: 1753 | "@rollup/pluginutils" "^3.0.9" 1754 | estree-walker "^2.0.1" 1755 | globby "^11.0.0" 1756 | magic-string "^0.25.7" 1757 | 1758 | rollup-plugin-terser@^7.0.2: 1759 | version "7.0.2" 1760 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" 1761 | integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== 1762 | dependencies: 1763 | "@babel/code-frame" "^7.10.4" 1764 | jest-worker "^26.2.1" 1765 | serialize-javascript "^4.0.0" 1766 | terser "^5.0.0" 1767 | 1768 | rollup-plugin-vue@^6.0.0-beta.10: 1769 | version "6.0.0-beta.11" 1770 | resolved "https://registry.yarnpkg.com/rollup-plugin-vue/-/rollup-plugin-vue-6.0.0-beta.11.tgz#fdbc6b7484a361ef8c5e8009cef4a6bd45435013" 1771 | integrity sha512-osqLkFc7N76TOI0CeW0BOujlMFsMIoytyTRVUivaeYSMponNfk1iSuqyoeciUB3EjFqyL/dTTFPi+7rhaAm73w== 1772 | dependencies: 1773 | debug "^4.1.1" 1774 | hash-sum "^2.0.0" 1775 | rollup-pluginutils "^2.8.2" 1776 | 1777 | rollup-plugin-web-worker-loader@^1.3.1: 1778 | version "1.4.0" 1779 | resolved "https://registry.yarnpkg.com/rollup-plugin-web-worker-loader/-/rollup-plugin-web-worker-loader-1.4.0.tgz#b4fd711118758c2111c30e794e2f2757b75a27b8" 1780 | integrity sha512-jhlOwSkrXkAVFY2Fded0M1AS9iqZDNjUJxNz4BFjBlaKuUzTx8Ikey+b3LSegUJE4mzAAw2DqJD8pX12R0ZdDw== 1781 | 1782 | rollup-pluginutils@^2.8.2: 1783 | version "2.8.2" 1784 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 1785 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 1786 | dependencies: 1787 | estree-walker "^0.6.1" 1788 | 1789 | rollup@^2.32.1: 1790 | version "2.33.1" 1791 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.33.1.tgz#802795164164ee63cd47769d8879c33ec8ae0c40" 1792 | integrity sha512-uY4O/IoL9oNW8MMcbA5hcOaz6tZTMIh7qJHx/tzIJm+n1wLoY38BLn6fuy7DhR57oNFLMbDQtDeJoFURt5933w== 1793 | optionalDependencies: 1794 | fsevents "~2.1.2" 1795 | 1796 | run-parallel@^1.1.9: 1797 | version "1.1.10" 1798 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef" 1799 | integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== 1800 | 1801 | safe-buffer@5.1.2: 1802 | version "5.1.2" 1803 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1804 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1805 | 1806 | safe-buffer@^5.1.0: 1807 | version "5.2.1" 1808 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1809 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1810 | 1811 | selfsigned@^1.10.8: 1812 | version "1.10.8" 1813 | resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz#0d17208b7d12c33f8eac85c41835f27fc3d81a30" 1814 | integrity sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w== 1815 | dependencies: 1816 | node-forge "^0.10.0" 1817 | 1818 | serialize-javascript@^4.0.0: 1819 | version "4.0.0" 1820 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 1821 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 1822 | dependencies: 1823 | randombytes "^2.1.0" 1824 | 1825 | setprototypeof@1.1.0: 1826 | version "1.1.0" 1827 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 1828 | integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== 1829 | 1830 | setprototypeof@1.1.1: 1831 | version "1.1.1" 1832 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 1833 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 1834 | 1835 | setprototypeof@1.2.0: 1836 | version "1.2.0" 1837 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" 1838 | integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== 1839 | 1840 | shebang-command@^2.0.0: 1841 | version "2.0.0" 1842 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1843 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1844 | dependencies: 1845 | shebang-regex "^3.0.0" 1846 | 1847 | shebang-regex@^3.0.0: 1848 | version "3.0.0" 1849 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1850 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1851 | 1852 | signal-exit@^3.0.2: 1853 | version "3.0.3" 1854 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1855 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1856 | 1857 | slash@^3.0.0: 1858 | version "3.0.0" 1859 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1860 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1861 | 1862 | source-map-support@~0.5.19: 1863 | version "0.5.19" 1864 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 1865 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 1866 | dependencies: 1867 | buffer-from "^1.0.0" 1868 | source-map "^0.6.0" 1869 | 1870 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: 1871 | version "0.6.1" 1872 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1873 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1874 | 1875 | source-map@~0.7.2: 1876 | version "0.7.3" 1877 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 1878 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 1879 | 1880 | sourcemap-codec@^1.4.4: 1881 | version "1.4.8" 1882 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 1883 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 1884 | 1885 | "statuses@>= 1.2.1 < 2", "statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@^1.5.0: 1886 | version "1.5.0" 1887 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 1888 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 1889 | 1890 | string-hash@^1.1.1: 1891 | version "1.1.3" 1892 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" 1893 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= 1894 | 1895 | strip-ansi@^6.0.0: 1896 | version "6.0.0" 1897 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1898 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1899 | dependencies: 1900 | ansi-regex "^5.0.0" 1901 | 1902 | strip-final-newline@^2.0.0: 1903 | version "2.0.0" 1904 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 1905 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 1906 | 1907 | supports-color@^5.3.0: 1908 | version "5.5.0" 1909 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1910 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1911 | dependencies: 1912 | has-flag "^3.0.0" 1913 | 1914 | supports-color@^6.1.0: 1915 | version "6.1.0" 1916 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 1917 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 1918 | dependencies: 1919 | has-flag "^3.0.0" 1920 | 1921 | supports-color@^7.0.0, supports-color@^7.1.0: 1922 | version "7.2.0" 1923 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1924 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1925 | dependencies: 1926 | has-flag "^4.0.0" 1927 | 1928 | terser@^5.0.0: 1929 | version "5.3.8" 1930 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.3.8.tgz#991ae8ba21a3d990579b54aa9af11586197a75dd" 1931 | integrity sha512-zVotuHoIfnYjtlurOouTazciEfL7V38QMAOhGqpXDEg6yT13cF4+fEP9b0rrCEQTn+tT46uxgFsTZzhygk+CzQ== 1932 | dependencies: 1933 | commander "^2.20.0" 1934 | source-map "~0.7.2" 1935 | source-map-support "~0.5.19" 1936 | 1937 | to-fast-properties@^2.0.0: 1938 | version "2.0.0" 1939 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1940 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1941 | 1942 | to-regex-range@^5.0.1: 1943 | version "5.0.1" 1944 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1945 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1946 | dependencies: 1947 | is-number "^7.0.0" 1948 | 1949 | toidentifier@1.0.0: 1950 | version "1.0.0" 1951 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 1952 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 1953 | 1954 | tsscmp@1.0.6: 1955 | version "1.0.6" 1956 | resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" 1957 | integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== 1958 | 1959 | type-is@^1.6.16: 1960 | version "1.6.18" 1961 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 1962 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 1963 | dependencies: 1964 | media-typer "0.3.0" 1965 | mime-types "~2.1.24" 1966 | 1967 | uniq@^1.0.1: 1968 | version "1.0.1" 1969 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 1970 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 1971 | 1972 | universalify@^1.0.0: 1973 | version "1.0.0" 1974 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" 1975 | integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== 1976 | 1977 | universalify@^2.0.0: 1978 | version "2.0.0" 1979 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 1980 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 1981 | 1982 | url-polyfill@^1.1.11: 1983 | version "1.1.12" 1984 | resolved "https://registry.yarnpkg.com/url-polyfill/-/url-polyfill-1.1.12.tgz#6cdaa17f6b022841b3aec0bf8dbd87ac0cd33331" 1985 | integrity sha512-mYFmBHCapZjtcNHW0MDq9967t+z4Dmg5CJ0KqysK3+ZbyoNOWQHksGCTWwDhxGXllkWlOc10Xfko6v4a3ucM6A== 1986 | 1987 | util-deprecate@^1.0.2: 1988 | version "1.0.2" 1989 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1990 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1991 | 1992 | vary@^1.1.2: 1993 | version "1.1.2" 1994 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 1995 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 1996 | 1997 | vite@^1.0.0-rc.8: 1998 | version "1.0.0-rc.9" 1999 | resolved "https://registry.yarnpkg.com/vite/-/vite-1.0.0-rc.9.tgz#63621a39cf36fe9a6dccafdb11360a5ebbdb2663" 2000 | integrity sha512-u0PT2sKMes2RtE5rZsLY0nFm6kEmce7IhVRWKFXmrsjn0MBOCNEi+S6iNnJDmsj1nzvU2dMZ5MHhFyXIqTgjzA== 2001 | dependencies: 2002 | "@babel/parser" "^7.12.3" 2003 | "@koa/cors" "^3.1.0" 2004 | "@rollup/plugin-commonjs" "^15.1.0" 2005 | "@rollup/plugin-json" "^4.1.0" 2006 | "@rollup/plugin-node-resolve" "^9.0.0" 2007 | "@rollup/pluginutils" "^4.0.0" 2008 | "@types/koa" "^2.11.4" 2009 | "@types/lru-cache" "^5.1.0" 2010 | "@vue/compiler-dom" "^3.0.2" 2011 | "@vue/compiler-sfc" "^3.0.2" 2012 | brotli-size "^4.0.0" 2013 | chalk "^4.1.0" 2014 | chokidar "^3.4.2" 2015 | clean-css "^4.2.3" 2016 | debug "^4.1.1" 2017 | dotenv "^8.2.0" 2018 | dotenv-expand "^5.1.0" 2019 | es-module-lexer "^0.3.25" 2020 | esbuild "^0.7.21" 2021 | etag "^1.8.1" 2022 | execa "^4.0.3" 2023 | fs-extra "^9.0.1" 2024 | hash-sum "^2.0.0" 2025 | isbuiltin "^1.0.0" 2026 | klona "^2.0.4" 2027 | koa "^2.13.0" 2028 | koa-conditional-get "^3.0.0" 2029 | koa-etag "^4.0.0" 2030 | koa-proxies "^0.11.0" 2031 | koa-send "^5.0.1" 2032 | koa-static "^5.0.0" 2033 | lru-cache "^6.0.0" 2034 | magic-string "^0.25.7" 2035 | merge-source-map "^1.1.0" 2036 | mime-types "^2.1.27" 2037 | minimist "^1.2.5" 2038 | open "^7.2.1" 2039 | ora "^5.1.0" 2040 | p-map-series "^2.1.0" 2041 | postcss-discard-comments "^4.0.2" 2042 | postcss-import "^12.0.1" 2043 | postcss-load-config "^3.0.0" 2044 | resolve "^1.17.0" 2045 | rollup "^2.32.1" 2046 | rollup-plugin-dynamic-import-variables "^1.1.0" 2047 | rollup-plugin-terser "^7.0.2" 2048 | rollup-plugin-vue "^6.0.0-beta.10" 2049 | rollup-plugin-web-worker-loader "^1.3.1" 2050 | selfsigned "^1.10.8" 2051 | slash "^3.0.0" 2052 | vue "^3.0.2" 2053 | ws "^7.3.1" 2054 | 2055 | vue-plyr@^7.0.0-beta.1: 2056 | version "7.0.0-beta.1" 2057 | resolved "https://registry.yarnpkg.com/vue-plyr/-/vue-plyr-7.0.0-beta.1.tgz#da7c37636860090c96a91076e0c25c1d3428dcf7" 2058 | integrity sha512-RN16XuZcXfIpCsTFsdZrO5IaCyK3H/7bcLq9xdEBpYsWqMZRwyMjTTPjFqclXDa78ZSfpfsVDxZZ4AurtwJwIg== 2059 | dependencies: 2060 | plyr "github:sampotts/plyr#develop" 2061 | vue "^2.6.12" 2062 | 2063 | vue@^2.6.12: 2064 | version "2.6.12" 2065 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz#f5ebd4fa6bd2869403e29a896aed4904456c9123" 2066 | integrity sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg== 2067 | 2068 | vue@^3.0.2: 2069 | version "3.0.2" 2070 | resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.2.tgz#9d5b7b2983f35e64a34d13c7c9d6831239feca3c" 2071 | integrity sha512-ciKFjutKRs+2Vbvgrist1oDd5wZQqtOel/K//ku54zLbf8tcTV+XbyAfanTHcTkML9CUj09vnC+y+5uaOz2/9g== 2072 | dependencies: 2073 | "@vue/compiler-dom" "3.0.2" 2074 | "@vue/runtime-dom" "3.0.2" 2075 | "@vue/shared" "3.0.2" 2076 | 2077 | wcwidth@^1.0.1: 2078 | version "1.0.1" 2079 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 2080 | integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= 2081 | dependencies: 2082 | defaults "^1.0.3" 2083 | 2084 | which@^2.0.1: 2085 | version "2.0.2" 2086 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2087 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2088 | dependencies: 2089 | isexe "^2.0.0" 2090 | 2091 | wrappy@1: 2092 | version "1.0.2" 2093 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2094 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2095 | 2096 | ws@^7.3.1: 2097 | version "7.3.1" 2098 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8" 2099 | integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA== 2100 | 2101 | yallist@^3.0.2: 2102 | version "3.1.1" 2103 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2104 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2105 | 2106 | yallist@^4.0.0: 2107 | version "4.0.0" 2108 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2109 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2110 | 2111 | yaml@^1.10.0: 2112 | version "1.10.0" 2113 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 2114 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 2115 | 2116 | ylru@^1.2.0: 2117 | version "1.2.1" 2118 | resolved "https://registry.yarnpkg.com/ylru/-/ylru-1.2.1.tgz#f576b63341547989c1de7ba288760923b27fe84f" 2119 | integrity sha512-faQrqNMzcPCHGVC2aaOINk13K+aaBDUPjGWl0teOXywElLjyVAB6Oe2jj62jHYtwsU49jXhScYbvPENK+6zAvQ== 2120 | --------------------------------------------------------------------------------