├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc.js ├── LICENSE ├── README.md ├── config ├── tsconfig.cjs.json ├── tsconfig.esm.json └── tsconfig.types.json ├── package.json ├── src ├── VueSupabaseClient.ts ├── composables.ts ├── index.ts └── symbol.ts ├── tsconfig.json ├── vue-supabase.d.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: "@typescript-eslint/parser", 3 | extends: ["prettier"], 4 | plugins: ["@typescript-eslint", "prettier"], 5 | rules: { 6 | "prettier/prettier": ["error"], 7 | }, 8 | }; 9 | -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- 1 | name: Publish to NPM 2 | 3 | on: 4 | workflow_dispatch: 5 | release: 6 | types: [published] 7 | 8 | jobs: 9 | publish-npm: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | - uses: actions/setup-node@v2 14 | with: 15 | node-version: 12 16 | registry-url: https://registry.npmjs.org/ 17 | - run: yarn install 18 | - run: npm publish 19 | env: 20 | NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | 63 | dist 64 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.3 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trailingComma: "es5", 3 | arrowParens: "avoid", 4 | }; 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Supabase 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vue + Supabase 2 | 3 | A supa simple wrapper around Supabase.js to enable usage within Vue. 4 | 5 | ## Installation 6 | 7 | ```bash 8 | # Vue 3.x 9 | yarn add vue-supabase 10 | 11 | # Vue 2.x 12 | yarn add @vue/composition-api vue-supabase 13 | ``` 14 | 15 | Note: Currently `@vue/composition-api` is required for this package to work for projects using Vue 2.x. 16 | 17 | ## Usage 18 | 19 | ### Vue 2.x 20 | 21 | ```js 22 | import VueSupabase from "vue-supabase"; 23 | 24 | Vue.use(VueSupabase, { 25 | supabaseUrl: "", 26 | supabaseKey: "", 27 | supabaseOptions: {}, 28 | }); 29 | ``` 30 | 31 | ```js 32 | const { data, error } = await this.$supabase.from("events").select("*"); 33 | ``` 34 | 35 | ### Vue 3.x 36 | 37 | ```js 38 | import VueSupabase from 'vue-supabase' 39 | 40 | const app = createApp(...) 41 | 42 | app.use(VueSupabase, { 43 | supabaseUrl: '', 44 | supabaseKey: '', 45 | supabaseOptions: {} 46 | }) 47 | 48 | app.mount(...) 49 | ``` 50 | 51 | #### Options API 52 | 53 | ```js 54 | const { data, error } = await this.$supabase.from("events").select("*"); 55 | ``` 56 | 57 | #### Composition API 58 | 59 | ```js 60 | import { useSupabase } from "vue-supabase"; 61 | 62 | const supabase = useSupabase(); 63 | 64 | const { data, error } = await supabase.from("events").select("*"); 65 | ``` 66 | 67 | Here are a couple of composables available with Vue 3.x or Vue 2.x + Composition API 68 | 69 | ```js 70 | import { useSupabaseAuth, useSupabaseStorage } from "vue-supabase"; 71 | 72 | const auth = useSupabaseAuth(); 73 | const storage = useSupabaseStorage(); 74 | const { data } = await storage.listBuckets(); 75 | await auth.signOut(); 76 | ``` 77 | -------------------------------------------------------------------------------- /config/tsconfig.cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig", 3 | "compilerOptions": { 4 | "module": "commonjs" , 5 | "outDir": "../dist/cjs" 6 | } 7 | } -------------------------------------------------------------------------------- /config/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig", 3 | "compilerOptions": { 4 | "module": "ESNext", 5 | "outDir": "../dist/esm" 6 | } 7 | } -------------------------------------------------------------------------------- /config/tsconfig.types.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig", 3 | "compilerOptions": { 4 | "declaration": true , 5 | "emitDeclarationOnly": true, 6 | "outDir": "../dist/types" 7 | } 8 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-supabase", 3 | "version": "2.3.0", 4 | "description": "A small wrapper for integrating supabase to Vuejs", 5 | "keywords": [ 6 | "vue", 7 | "custom", 8 | "supabase", 9 | "vue-supabase" 10 | ], 11 | "author": "Supabase Community", 12 | "license": "MIT", 13 | "homepage": "https://github.com/supabase-community/vue-supabase#readme", 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/supabase-community/vue-supabase.git" 17 | }, 18 | "bugs": { 19 | "url": "https://github.com/supabase-community/vue-supabase/issues" 20 | }, 21 | "engine": { 22 | "node": ">= 1" 23 | }, 24 | "scripts": { 25 | "prepare": "npm run build", 26 | "test": "echo 'no tests to run'", 27 | "lint": "eslint . --ext .ts", 28 | "build": "tsc -p config/tsconfig.cjs.json && tsc -p config/tsconfig.esm.json && tsc -p config/tsconfig.types.json" 29 | }, 30 | "main": "dist/cjs/index.js", 31 | "module": "dist/esm/index.js", 32 | "types": "dist/types/index.d.ts", 33 | "dependencies": { 34 | "@supabase/supabase-js": "^1.35.2", 35 | "@vue/composition-api": "^1.6.0", 36 | "vue-demi": "^0.12.5" 37 | }, 38 | "peerDependencies": { 39 | "@vue/composition-api": "^1.0.4", 40 | "vue": "^2.0.0 || >=3.0.0" 41 | }, 42 | "devDependencies": { 43 | "@typescript-eslint/eslint-plugin": "^5.21.0", 44 | "@typescript-eslint/parser": "^5.21.0", 45 | "eslint": "^8.14.0", 46 | "eslint-config-prettier": "^8.5.0", 47 | "eslint-plugin-prettier": "^4.0.0", 48 | "prettier": "^2.6.2", 49 | "typescript": "^4.6.4" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/VueSupabaseClient.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | import { Vue2, App, isVue3 } from "vue-demi"; 3 | import { SupabaseClient, SupabaseClientOptions } from "@supabase/supabase-js"; 4 | import supabaseSymbol from "./symbol"; 5 | export class VueSupabaseClient extends SupabaseClient { 6 | constructor( 7 | supabaseUrl: string, 8 | supabaseKey: string, 9 | supabaseOptions?: SupabaseClientOptions 10 | ) { 11 | super(supabaseUrl, supabaseKey, supabaseOptions); 12 | } 13 | 14 | install(app: typeof Vue2 | App) { 15 | const self = this; 16 | if (isVue3) { 17 | app.provide(supabaseSymbol, self); 18 | Object.defineProperty(app.config.globalProperties, "$supabase", { 19 | get: () => self, 20 | configurable: true, 21 | }); 22 | } else { 23 | app.mixin({ 24 | provide: () => ({ 25 | [supabaseSymbol]: self, 26 | }), 27 | }); 28 | Object.defineProperty(app.prototype, "$supabase", { 29 | get: () => self, 30 | configurable: true, 31 | }); 32 | app.$supabase = self; 33 | } 34 | } 35 | } 36 | 37 | export function createVueSupabase({ 38 | supabaseUrl, 39 | supabaseKey, 40 | supabaseOptions, 41 | }: { 42 | supabaseUrl: string; 43 | supabaseKey: string; 44 | supabaseOptions?: SupabaseClientOptions; 45 | }) { 46 | return new VueSupabaseClient(supabaseUrl, supabaseKey, supabaseOptions); 47 | } 48 | -------------------------------------------------------------------------------- /src/composables.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | import { inject, onMounted, onUnmounted } from "vue-demi"; 3 | import { 4 | SupabaseClient, 5 | AuthChangeEvent, 6 | Session, 7 | } from "@supabase/supabase-js"; 8 | import supabaseSymbol from "./symbol"; 9 | 10 | export function useSupabase(): SupabaseClient { 11 | const supabase = inject(supabaseSymbol); 12 | if (!supabase) { 13 | throw new Error("Supabase provider not found"); 14 | } 15 | return supabase; 16 | } 17 | 18 | export function useSupabaseAuth(): SupabaseClient["auth"] { 19 | const supabase = useSupabase(); 20 | return supabase.auth; 21 | } 22 | 23 | export function useSupabaseStorage(): SupabaseClient["storage"] { 24 | const supabase = useSupabase(); 25 | return supabase.storage; 26 | } 27 | 28 | export function useSupabaseFrom(): SupabaseClient["from"] { 29 | const supabase = useSupabase(); 30 | return supabase.from; 31 | } 32 | 33 | export function useSupabaseFunctions(): SupabaseClient["functions"] { 34 | const supabase = useSupabase(); 35 | return supabase.functions; 36 | } 37 | 38 | type AuthChangeHandler = ( 39 | event: AuthChangeEvent, 40 | session: Session | null 41 | ) => void; 42 | 43 | export function useOnAuthStateChange(callback: AuthChangeHandler): void { 44 | const client = useSupabase(); 45 | 46 | onMounted(() => { 47 | if (client.auth.session()) { 48 | callback("SIGNED_IN", client.auth.session()); 49 | } 50 | }); 51 | 52 | const { data: authListener } = client.auth.onAuthStateChange( 53 | (event, session) => { 54 | callback(event, session); 55 | } 56 | ); 57 | 58 | onUnmounted(() => { 59 | authListener?.unsubscribe(); 60 | }); 61 | } 62 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | /** @ts-ignore , vue-demi seems to be not strongly typed so typescript freaks out. */ 2 | import { App, Vue2, Plugin, PluginObject } from "vue-demi"; 3 | import { SupabaseClient, SupabaseClientOptions } from "@supabase/supabase-js"; 4 | import { VueSupabaseClient } from "./VueSupabaseClient"; 5 | 6 | // @ts-expect-error: Module vue/types/vue cannot be found. 7 | declare module "vue/types/vue" { 8 | interface Vue { 9 | $supabase: SupabaseClient; 10 | } 11 | } 12 | 13 | export type SupabasePluginOptions = { 14 | supabaseUrl: string; 15 | supabaseKey: string; 16 | supabaseOptions: SupabaseClientOptions; 17 | }; 18 | 19 | export function install( 20 | app: typeof Vue2 | App, 21 | options: SupabasePluginOptions 22 | ) { 23 | const supabase = new VueSupabaseClient( 24 | options.supabaseUrl, 25 | options.supabaseKey, 26 | options.supabaseOptions 27 | ); 28 | supabase.install(app); 29 | } 30 | 31 | const VueSupabasePlugin: PluginObject | Plugin = { 32 | install, 33 | }; 34 | 35 | export { 36 | SupabaseClient, 37 | SupabaseClientOptions, 38 | SupabaseRealtimePayload, 39 | AuthUser, 40 | AuthUser as User, 41 | AuthSession, 42 | AuthSession as Session, 43 | Subscription, 44 | } from "@supabase/supabase-js"; 45 | 46 | export * from "./composables"; 47 | 48 | export { createVueSupabase } from "./VueSupabaseClient"; 49 | 50 | export default VueSupabasePlugin; 51 | -------------------------------------------------------------------------------- /src/symbol.ts: -------------------------------------------------------------------------------- 1 | const supabaseSymbol = Symbol("supabase"); 2 | 3 | export default supabaseSymbol; 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "strictNullChecks": true, 5 | "module": "commonjs", 6 | "strict": true, 7 | "esModuleInterop": true, 8 | "moduleResolution": "node", 9 | "rootDir": "src", 10 | "sourceMap": true, 11 | "skipLibCheck": true, 12 | "forceConsistentCasingInFileNames": true 13 | }, 14 | "include": ["src/**/*"], 15 | "exclude": ["node_modules", "dist"] 16 | } 17 | -------------------------------------------------------------------------------- /vue-supabase.d.ts: -------------------------------------------------------------------------------- 1 | import { SupabaseClient, SupabaseClientOptions } from "@supabase/supabase-js"; 2 | export type Options = { 3 | supabaseUrl: string; 4 | supabaseKey: string; 5 | supabaseOptions: SupabaseClientOptions; 6 | }; 7 | declare module "vue/types/vue" { 8 | interface Vue { 9 | $supabase: SupabaseClient; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@eslint/eslintrc@^1.2.2": 6 | version "1.2.2" 7 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.2.tgz#4989b9e8c0216747ee7cca314ae73791bb281aae" 8 | integrity sha512-lTVWHs7O2hjBFZunXTZYnYqtB9GakA1lnxIf+gKq2nY5gxkkNi/lQvveW6t8gFdOHTg6nG50Xs95PrLqVpcaLg== 9 | dependencies: 10 | ajv "^6.12.4" 11 | debug "^4.3.2" 12 | espree "^9.3.1" 13 | globals "^13.9.0" 14 | ignore "^5.2.0" 15 | import-fresh "^3.2.1" 16 | js-yaml "^4.1.0" 17 | minimatch "^3.0.4" 18 | strip-json-comments "^3.1.1" 19 | 20 | "@humanwhocodes/config-array@^0.9.2": 21 | version "0.9.5" 22 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" 23 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== 24 | dependencies: 25 | "@humanwhocodes/object-schema" "^1.2.1" 26 | debug "^4.1.1" 27 | minimatch "^3.0.4" 28 | 29 | "@humanwhocodes/object-schema@^1.2.1": 30 | version "1.2.1" 31 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 32 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 33 | 34 | "@nodelib/fs.scandir@2.1.5": 35 | version "2.1.5" 36 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 37 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 38 | dependencies: 39 | "@nodelib/fs.stat" "2.0.5" 40 | run-parallel "^1.1.9" 41 | 42 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 43 | version "2.0.5" 44 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 45 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 46 | 47 | "@nodelib/fs.walk@^1.2.3": 48 | version "1.2.8" 49 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 50 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 51 | dependencies: 52 | "@nodelib/fs.scandir" "2.1.5" 53 | fastq "^1.6.0" 54 | 55 | "@supabase/functions-js@^1.3.3": 56 | version "1.3.3" 57 | resolved "https://registry.yarnpkg.com/@supabase/functions-js/-/functions-js-1.3.3.tgz#74803fec71f1e3b734d32a3b116ea494cfcc122d" 58 | integrity sha512-35vO9niHRtzGe1QSvXKdOfvGPiX2KC44dGpWU6y0/gZCfTIgog/soU9HqABzQC/maVowO3hGLWfez5aN0MKfow== 59 | dependencies: 60 | cross-fetch "^3.1.5" 61 | 62 | "@supabase/gotrue-js@^1.22.13": 63 | version "1.22.13" 64 | resolved "https://registry.yarnpkg.com/@supabase/gotrue-js/-/gotrue-js-1.22.13.tgz#4b680b40e34f2ea37f4d227ae0147d60dd6288fa" 65 | integrity sha512-Ylus1KWkLRo6Hy9wLzzE4jAr+Fkt8Bi8a1YnX9aWIXPl/R8PxMb4fL928UAEm9fuyFZ1Z1F+BTTK2RM6NLReUQ== 66 | dependencies: 67 | cross-fetch "^3.0.6" 68 | 69 | "@supabase/postgrest-js@^0.37.2": 70 | version "0.37.2" 71 | resolved "https://registry.yarnpkg.com/@supabase/postgrest-js/-/postgrest-js-0.37.2.tgz#4243587eea5ad9507371fcdc4b3ec096d652ad03" 72 | integrity sha512-3Dgx5k3RvtKqc8DvR2BEyh2fVyjZe5P4e0zD1r8dyuVmpaYDaASZ2YeNVgyWXMCWH7xzrj4vepTYlKwfj78QLg== 73 | dependencies: 74 | cross-fetch "^3.0.6" 75 | 76 | "@supabase/realtime-js@^1.7.2": 77 | version "1.7.2" 78 | resolved "https://registry.yarnpkg.com/@supabase/realtime-js/-/realtime-js-1.7.2.tgz#9670d02b8283d7780f4970660609077feab37296" 79 | integrity sha512-DMUaFIKj7KszGtWTTQbhMmUzZf7UnwYqySsmY+G8HgYxvY3ZaVa+DZD0I6ofgr4OLNr0po/ODM2a4lf5m5GNBg== 80 | dependencies: 81 | "@types/phoenix" "^1.5.4" 82 | websocket "^1.0.34" 83 | 84 | "@supabase/storage-js@^1.7.0": 85 | version "1.7.0" 86 | resolved "https://registry.yarnpkg.com/@supabase/storage-js/-/storage-js-1.7.0.tgz#42536489d8807d3feefe8fff9acff14efc0bad74" 87 | integrity sha512-f5EBw0wM96hKmnrXhgiqq2Reh9O0NgjKE+jkaKY4jQmfutefqaCAWn+cBzlmHs9h135H2ldaGmhWRFHUSkLt2g== 88 | dependencies: 89 | cross-fetch "^3.1.0" 90 | 91 | "@supabase/supabase-js@^1.35.2": 92 | version "1.35.2" 93 | resolved "https://registry.yarnpkg.com/@supabase/supabase-js/-/supabase-js-1.35.2.tgz#f8a71f2ff0d88f7cd49596ee093319c6a3d97aa8" 94 | integrity sha512-ItXfniG+GRFVYvYEoc7L0uXj6Zp8MZz7aQDCz9qbYdt6dUvIWxeu0cfcy/qkUcPJfpFzSYCOt8nsus0QJCjgbg== 95 | dependencies: 96 | "@supabase/functions-js" "^1.3.3" 97 | "@supabase/gotrue-js" "^1.22.13" 98 | "@supabase/postgrest-js" "^0.37.2" 99 | "@supabase/realtime-js" "^1.7.2" 100 | "@supabase/storage-js" "^1.7.0" 101 | 102 | "@types/json-schema@^7.0.9": 103 | version "7.0.9" 104 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" 105 | integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== 106 | 107 | "@types/phoenix@^1.5.4": 108 | version "1.5.4" 109 | resolved "https://registry.yarnpkg.com/@types/phoenix/-/phoenix-1.5.4.tgz#c08a1da6d7b4e365f6a1fe1ff9aada55f5356d24" 110 | integrity sha512-L5eZmzw89eXBKkiqVBcJfU1QGx9y+wurRIEgt0cuLH0hwNtVUxtx+6cu0R2STwWj468sjXyBYPYDtGclUd1kjQ== 111 | 112 | "@typescript-eslint/eslint-plugin@^5.21.0": 113 | version "5.21.0" 114 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.21.0.tgz#bfc22e0191e6404ab1192973b3b4ea0461c1e878" 115 | integrity sha512-fTU85q8v5ZLpoZEyn/u1S2qrFOhi33Edo2CZ0+q1gDaWWm0JuPh3bgOyU8lM0edIEYgKLDkPFiZX2MOupgjlyg== 116 | dependencies: 117 | "@typescript-eslint/scope-manager" "5.21.0" 118 | "@typescript-eslint/type-utils" "5.21.0" 119 | "@typescript-eslint/utils" "5.21.0" 120 | debug "^4.3.2" 121 | functional-red-black-tree "^1.0.1" 122 | ignore "^5.1.8" 123 | regexpp "^3.2.0" 124 | semver "^7.3.5" 125 | tsutils "^3.21.0" 126 | 127 | "@typescript-eslint/parser@^5.21.0": 128 | version "5.21.0" 129 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.21.0.tgz#6cb72673dbf3e1905b9c432175a3c86cdaf2071f" 130 | integrity sha512-8RUwTO77hstXUr3pZoWZbRQUxXcSXafZ8/5gpnQCfXvgmP9gpNlRGlWzvfbEQ14TLjmtU8eGnONkff8U2ui2Eg== 131 | dependencies: 132 | "@typescript-eslint/scope-manager" "5.21.0" 133 | "@typescript-eslint/types" "5.21.0" 134 | "@typescript-eslint/typescript-estree" "5.21.0" 135 | debug "^4.3.2" 136 | 137 | "@typescript-eslint/scope-manager@5.21.0": 138 | version "5.21.0" 139 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.21.0.tgz#a4b7ed1618f09f95e3d17d1c0ff7a341dac7862e" 140 | integrity sha512-XTX0g0IhvzcH/e3393SvjRCfYQxgxtYzL3UREteUneo72EFlt7UNoiYnikUtmGVobTbhUDByhJ4xRBNe+34kOQ== 141 | dependencies: 142 | "@typescript-eslint/types" "5.21.0" 143 | "@typescript-eslint/visitor-keys" "5.21.0" 144 | 145 | "@typescript-eslint/type-utils@5.21.0": 146 | version "5.21.0" 147 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.21.0.tgz#ff89668786ad596d904c21b215e5285da1b6262e" 148 | integrity sha512-MxmLZj0tkGlkcZCSE17ORaHl8Th3JQwBzyXL/uvC6sNmu128LsgjTX0NIzy+wdH2J7Pd02GN8FaoudJntFvSOw== 149 | dependencies: 150 | "@typescript-eslint/utils" "5.21.0" 151 | debug "^4.3.2" 152 | tsutils "^3.21.0" 153 | 154 | "@typescript-eslint/types@5.21.0": 155 | version "5.21.0" 156 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.21.0.tgz#8cdb9253c0dfce3f2ab655b9d36c03f72e684017" 157 | integrity sha512-XnOOo5Wc2cBlq8Lh5WNvAgHzpjnEzxn4CJBwGkcau7b/tZ556qrWXQz4DJyChYg8JZAD06kczrdgFPpEQZfDsA== 158 | 159 | "@typescript-eslint/typescript-estree@5.21.0": 160 | version "5.21.0" 161 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.21.0.tgz#9f0c233e28be2540eaed3df050f0d54fb5aa52de" 162 | integrity sha512-Y8Y2T2FNvm08qlcoSMoNchh9y2Uj3QmjtwNMdRQkcFG7Muz//wfJBGBxh8R7HAGQFpgYpdHqUpEoPQk+q9Kjfg== 163 | dependencies: 164 | "@typescript-eslint/types" "5.21.0" 165 | "@typescript-eslint/visitor-keys" "5.21.0" 166 | debug "^4.3.2" 167 | globby "^11.0.4" 168 | is-glob "^4.0.3" 169 | semver "^7.3.5" 170 | tsutils "^3.21.0" 171 | 172 | "@typescript-eslint/utils@5.21.0": 173 | version "5.21.0" 174 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.21.0.tgz#51d7886a6f0575e23706e5548c7e87bce42d7c18" 175 | integrity sha512-q/emogbND9wry7zxy7VYri+7ydawo2HDZhRZ5k6yggIvXa7PvBbAAZ4PFH/oZLem72ezC4Pr63rJvDK/sTlL8Q== 176 | dependencies: 177 | "@types/json-schema" "^7.0.9" 178 | "@typescript-eslint/scope-manager" "5.21.0" 179 | "@typescript-eslint/types" "5.21.0" 180 | "@typescript-eslint/typescript-estree" "5.21.0" 181 | eslint-scope "^5.1.1" 182 | eslint-utils "^3.0.0" 183 | 184 | "@typescript-eslint/visitor-keys@5.21.0": 185 | version "5.21.0" 186 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.21.0.tgz#453fb3662409abaf2f8b1f65d515699c888dd8ae" 187 | integrity sha512-SX8jNN+iHqAF0riZQMkm7e8+POXa/fXw5cxL+gjpyP+FI+JVNhii53EmQgDAfDcBpFekYSlO0fGytMQwRiMQCA== 188 | dependencies: 189 | "@typescript-eslint/types" "5.21.0" 190 | eslint-visitor-keys "^3.0.0" 191 | 192 | "@vue/composition-api@^1.6.0": 193 | version "1.6.0" 194 | resolved "https://registry.yarnpkg.com/@vue/composition-api/-/composition-api-1.6.0.tgz#41c45672245fff2181f8be1f757c95cb6c9b0316" 195 | integrity sha512-m/FbsCXn0Ov2QCYUEIt4yupWJLCL6nfZg/Xx2L5VlFUqgJb2iOrbLnkYSV0TO2VUxkBLSFtTZMyG8IIHZFdKNA== 196 | 197 | acorn-jsx@^5.3.1: 198 | version "5.3.2" 199 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 200 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 201 | 202 | acorn@^8.7.0: 203 | version "8.7.1" 204 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" 205 | integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== 206 | 207 | ajv@^6.10.0, ajv@^6.12.4: 208 | version "6.12.6" 209 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 210 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 211 | dependencies: 212 | fast-deep-equal "^3.1.1" 213 | fast-json-stable-stringify "^2.0.0" 214 | json-schema-traverse "^0.4.1" 215 | uri-js "^4.2.2" 216 | 217 | ansi-regex@^5.0.1: 218 | version "5.0.1" 219 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 220 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 221 | 222 | ansi-styles@^4.1.0: 223 | version "4.3.0" 224 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 225 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 226 | dependencies: 227 | color-convert "^2.0.1" 228 | 229 | argparse@^2.0.1: 230 | version "2.0.1" 231 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 232 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 233 | 234 | array-union@^2.1.0: 235 | version "2.1.0" 236 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 237 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 238 | 239 | balanced-match@^1.0.0: 240 | version "1.0.2" 241 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 242 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 243 | 244 | brace-expansion@^1.1.7: 245 | version "1.1.11" 246 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 247 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 248 | dependencies: 249 | balanced-match "^1.0.0" 250 | concat-map "0.0.1" 251 | 252 | braces@^3.0.1: 253 | version "3.0.2" 254 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 255 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 256 | dependencies: 257 | fill-range "^7.0.1" 258 | 259 | bufferutil@^4.0.1: 260 | version "4.0.5" 261 | resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.5.tgz#da9ea8166911cc276bf677b8aed2d02d31f59028" 262 | integrity sha512-HTm14iMQKK2FjFLRTM5lAVcyaUzOnqbPtesFIvREgXpJHdQm8bWS+GkQgIkfaBYRHuCnea7w8UVNfwiAQhlr9A== 263 | dependencies: 264 | node-gyp-build "^4.3.0" 265 | 266 | callsites@^3.0.0: 267 | version "3.1.0" 268 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 269 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 270 | 271 | chalk@^4.0.0: 272 | version "4.1.2" 273 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 274 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 275 | dependencies: 276 | ansi-styles "^4.1.0" 277 | supports-color "^7.1.0" 278 | 279 | color-convert@^2.0.1: 280 | version "2.0.1" 281 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 282 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 283 | dependencies: 284 | color-name "~1.1.4" 285 | 286 | color-name@~1.1.4: 287 | version "1.1.4" 288 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 289 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 290 | 291 | concat-map@0.0.1: 292 | version "0.0.1" 293 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 294 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 295 | 296 | cross-fetch@^3.0.6, cross-fetch@^3.1.0, cross-fetch@^3.1.5: 297 | version "3.1.5" 298 | resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" 299 | integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== 300 | dependencies: 301 | node-fetch "2.6.7" 302 | 303 | cross-spawn@^7.0.2: 304 | version "7.0.3" 305 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 306 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 307 | dependencies: 308 | path-key "^3.1.0" 309 | shebang-command "^2.0.0" 310 | which "^2.0.1" 311 | 312 | d@1, d@^1.0.1: 313 | version "1.0.1" 314 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" 315 | integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== 316 | dependencies: 317 | es5-ext "^0.10.50" 318 | type "^1.0.1" 319 | 320 | debug@^2.2.0: 321 | version "2.6.9" 322 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 323 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 324 | dependencies: 325 | ms "2.0.0" 326 | 327 | debug@^4.1.1, debug@^4.3.2: 328 | version "4.3.2" 329 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 330 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 331 | dependencies: 332 | ms "2.1.2" 333 | 334 | deep-is@^0.1.3: 335 | version "0.1.4" 336 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 337 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 338 | 339 | dir-glob@^3.0.1: 340 | version "3.0.1" 341 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 342 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 343 | dependencies: 344 | path-type "^4.0.0" 345 | 346 | doctrine@^3.0.0: 347 | version "3.0.0" 348 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 349 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 350 | dependencies: 351 | esutils "^2.0.2" 352 | 353 | es5-ext@^0.10.35, es5-ext@^0.10.50: 354 | version "0.10.53" 355 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" 356 | integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== 357 | dependencies: 358 | es6-iterator "~2.0.3" 359 | es6-symbol "~3.1.3" 360 | next-tick "~1.0.0" 361 | 362 | es6-iterator@~2.0.3: 363 | version "2.0.3" 364 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 365 | integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= 366 | dependencies: 367 | d "1" 368 | es5-ext "^0.10.35" 369 | es6-symbol "^3.1.1" 370 | 371 | es6-symbol@^3.1.1, es6-symbol@~3.1.3: 372 | version "3.1.3" 373 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" 374 | integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== 375 | dependencies: 376 | d "^1.0.1" 377 | ext "^1.1.2" 378 | 379 | escape-string-regexp@^4.0.0: 380 | version "4.0.0" 381 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 382 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 383 | 384 | eslint-config-prettier@^8.5.0: 385 | version "8.5.0" 386 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" 387 | integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== 388 | 389 | eslint-plugin-prettier@^4.0.0: 390 | version "4.0.0" 391 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz#8b99d1e4b8b24a762472b4567992023619cb98e0" 392 | integrity sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ== 393 | dependencies: 394 | prettier-linter-helpers "^1.0.0" 395 | 396 | eslint-scope@^5.1.1: 397 | version "5.1.1" 398 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 399 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 400 | dependencies: 401 | esrecurse "^4.3.0" 402 | estraverse "^4.1.1" 403 | 404 | eslint-scope@^7.1.1: 405 | version "7.1.1" 406 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 407 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 408 | dependencies: 409 | esrecurse "^4.3.0" 410 | estraverse "^5.2.0" 411 | 412 | eslint-utils@^3.0.0: 413 | version "3.0.0" 414 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 415 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 416 | dependencies: 417 | eslint-visitor-keys "^2.0.0" 418 | 419 | eslint-visitor-keys@^2.0.0: 420 | version "2.1.0" 421 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 422 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 423 | 424 | eslint-visitor-keys@^3.0.0: 425 | version "3.0.0" 426 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz#e32e99c6cdc2eb063f204eda5db67bfe58bb4186" 427 | integrity sha512-mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q== 428 | 429 | eslint-visitor-keys@^3.3.0: 430 | version "3.3.0" 431 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 432 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 433 | 434 | eslint@^8.14.0: 435 | version "8.14.0" 436 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.14.0.tgz#62741f159d9eb4a79695b28ec4989fcdec623239" 437 | integrity sha512-3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw== 438 | dependencies: 439 | "@eslint/eslintrc" "^1.2.2" 440 | "@humanwhocodes/config-array" "^0.9.2" 441 | ajv "^6.10.0" 442 | chalk "^4.0.0" 443 | cross-spawn "^7.0.2" 444 | debug "^4.3.2" 445 | doctrine "^3.0.0" 446 | escape-string-regexp "^4.0.0" 447 | eslint-scope "^7.1.1" 448 | eslint-utils "^3.0.0" 449 | eslint-visitor-keys "^3.3.0" 450 | espree "^9.3.1" 451 | esquery "^1.4.0" 452 | esutils "^2.0.2" 453 | fast-deep-equal "^3.1.3" 454 | file-entry-cache "^6.0.1" 455 | functional-red-black-tree "^1.0.1" 456 | glob-parent "^6.0.1" 457 | globals "^13.6.0" 458 | ignore "^5.2.0" 459 | import-fresh "^3.0.0" 460 | imurmurhash "^0.1.4" 461 | is-glob "^4.0.0" 462 | js-yaml "^4.1.0" 463 | json-stable-stringify-without-jsonify "^1.0.1" 464 | levn "^0.4.1" 465 | lodash.merge "^4.6.2" 466 | minimatch "^3.0.4" 467 | natural-compare "^1.4.0" 468 | optionator "^0.9.1" 469 | regexpp "^3.2.0" 470 | strip-ansi "^6.0.1" 471 | strip-json-comments "^3.1.0" 472 | text-table "^0.2.0" 473 | v8-compile-cache "^2.0.3" 474 | 475 | espree@^9.3.1: 476 | version "9.3.1" 477 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd" 478 | integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ== 479 | dependencies: 480 | acorn "^8.7.0" 481 | acorn-jsx "^5.3.1" 482 | eslint-visitor-keys "^3.3.0" 483 | 484 | esquery@^1.4.0: 485 | version "1.4.0" 486 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 487 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 488 | dependencies: 489 | estraverse "^5.1.0" 490 | 491 | esrecurse@^4.3.0: 492 | version "4.3.0" 493 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 494 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 495 | dependencies: 496 | estraverse "^5.2.0" 497 | 498 | estraverse@^4.1.1: 499 | version "4.3.0" 500 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 501 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 502 | 503 | estraverse@^5.1.0, estraverse@^5.2.0: 504 | version "5.3.0" 505 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 506 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 507 | 508 | esutils@^2.0.2: 509 | version "2.0.3" 510 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 511 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 512 | 513 | ext@^1.1.2: 514 | version "1.6.0" 515 | resolved "https://registry.yarnpkg.com/ext/-/ext-1.6.0.tgz#3871d50641e874cc172e2b53f919842d19db4c52" 516 | integrity sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg== 517 | dependencies: 518 | type "^2.5.0" 519 | 520 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 521 | version "3.1.3" 522 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 523 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 524 | 525 | fast-diff@^1.1.2: 526 | version "1.2.0" 527 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 528 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 529 | 530 | fast-glob@^3.1.1: 531 | version "3.2.7" 532 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" 533 | integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== 534 | dependencies: 535 | "@nodelib/fs.stat" "^2.0.2" 536 | "@nodelib/fs.walk" "^1.2.3" 537 | glob-parent "^5.1.2" 538 | merge2 "^1.3.0" 539 | micromatch "^4.0.4" 540 | 541 | fast-json-stable-stringify@^2.0.0: 542 | version "2.1.0" 543 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 544 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 545 | 546 | fast-levenshtein@^2.0.6: 547 | version "2.0.6" 548 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 549 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 550 | 551 | fastq@^1.6.0: 552 | version "1.13.0" 553 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 554 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 555 | dependencies: 556 | reusify "^1.0.4" 557 | 558 | file-entry-cache@^6.0.1: 559 | version "6.0.1" 560 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 561 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 562 | dependencies: 563 | flat-cache "^3.0.4" 564 | 565 | fill-range@^7.0.1: 566 | version "7.0.1" 567 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 568 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 569 | dependencies: 570 | to-regex-range "^5.0.1" 571 | 572 | flat-cache@^3.0.4: 573 | version "3.0.4" 574 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 575 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 576 | dependencies: 577 | flatted "^3.1.0" 578 | rimraf "^3.0.2" 579 | 580 | flatted@^3.1.0: 581 | version "3.2.2" 582 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" 583 | integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== 584 | 585 | fs.realpath@^1.0.0: 586 | version "1.0.0" 587 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 588 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 589 | 590 | functional-red-black-tree@^1.0.1: 591 | version "1.0.1" 592 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 593 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 594 | 595 | glob-parent@^5.1.2: 596 | version "5.1.2" 597 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 598 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 599 | dependencies: 600 | is-glob "^4.0.1" 601 | 602 | glob-parent@^6.0.1: 603 | version "6.0.2" 604 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 605 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 606 | dependencies: 607 | is-glob "^4.0.3" 608 | 609 | glob@^7.1.3: 610 | version "7.2.0" 611 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 612 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 613 | dependencies: 614 | fs.realpath "^1.0.0" 615 | inflight "^1.0.4" 616 | inherits "2" 617 | minimatch "^3.0.4" 618 | once "^1.3.0" 619 | path-is-absolute "^1.0.0" 620 | 621 | globals@^13.6.0, globals@^13.9.0: 622 | version "13.12.0" 623 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e" 624 | integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg== 625 | dependencies: 626 | type-fest "^0.20.2" 627 | 628 | globby@^11.0.4: 629 | version "11.0.4" 630 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" 631 | integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== 632 | dependencies: 633 | array-union "^2.1.0" 634 | dir-glob "^3.0.1" 635 | fast-glob "^3.1.1" 636 | ignore "^5.1.4" 637 | merge2 "^1.3.0" 638 | slash "^3.0.0" 639 | 640 | has-flag@^4.0.0: 641 | version "4.0.0" 642 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 643 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 644 | 645 | ignore@^5.1.4, ignore@^5.1.8: 646 | version "5.1.9" 647 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.9.tgz#9ec1a5cbe8e1446ec60d4420060d43aa6e7382fb" 648 | integrity sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ== 649 | 650 | ignore@^5.2.0: 651 | version "5.2.0" 652 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 653 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 654 | 655 | import-fresh@^3.0.0, import-fresh@^3.2.1: 656 | version "3.3.0" 657 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 658 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 659 | dependencies: 660 | parent-module "^1.0.0" 661 | resolve-from "^4.0.0" 662 | 663 | imurmurhash@^0.1.4: 664 | version "0.1.4" 665 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 666 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 667 | 668 | inflight@^1.0.4: 669 | version "1.0.6" 670 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 671 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 672 | dependencies: 673 | once "^1.3.0" 674 | wrappy "1" 675 | 676 | inherits@2: 677 | version "2.0.4" 678 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 679 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 680 | 681 | is-extglob@^2.1.1: 682 | version "2.1.1" 683 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 684 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 685 | 686 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 687 | version "4.0.3" 688 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 689 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 690 | dependencies: 691 | is-extglob "^2.1.1" 692 | 693 | is-number@^7.0.0: 694 | version "7.0.0" 695 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 696 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 697 | 698 | is-typedarray@^1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 701 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 702 | 703 | isexe@^2.0.0: 704 | version "2.0.0" 705 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 706 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 707 | 708 | js-yaml@^4.1.0: 709 | version "4.1.0" 710 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 711 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 712 | dependencies: 713 | argparse "^2.0.1" 714 | 715 | json-schema-traverse@^0.4.1: 716 | version "0.4.1" 717 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 718 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 719 | 720 | json-stable-stringify-without-jsonify@^1.0.1: 721 | version "1.0.1" 722 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 723 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 724 | 725 | levn@^0.4.1: 726 | version "0.4.1" 727 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 728 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 729 | dependencies: 730 | prelude-ls "^1.2.1" 731 | type-check "~0.4.0" 732 | 733 | lodash.merge@^4.6.2: 734 | version "4.6.2" 735 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 736 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 737 | 738 | lru-cache@^6.0.0: 739 | version "6.0.0" 740 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 741 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 742 | dependencies: 743 | yallist "^4.0.0" 744 | 745 | merge2@^1.3.0: 746 | version "1.4.1" 747 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 748 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 749 | 750 | micromatch@^4.0.4: 751 | version "4.0.4" 752 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 753 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 754 | dependencies: 755 | braces "^3.0.1" 756 | picomatch "^2.2.3" 757 | 758 | minimatch@^3.0.4: 759 | version "3.1.2" 760 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 761 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 762 | dependencies: 763 | brace-expansion "^1.1.7" 764 | 765 | ms@2.0.0: 766 | version "2.0.0" 767 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 768 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 769 | 770 | ms@2.1.2: 771 | version "2.1.2" 772 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 773 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 774 | 775 | natural-compare@^1.4.0: 776 | version "1.4.0" 777 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 778 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 779 | 780 | next-tick@~1.0.0: 781 | version "1.0.0" 782 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 783 | integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= 784 | 785 | node-fetch@2.6.7: 786 | version "2.6.7" 787 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 788 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 789 | dependencies: 790 | whatwg-url "^5.0.0" 791 | 792 | node-gyp-build@^4.3.0: 793 | version "4.3.0" 794 | resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.3.0.tgz#9f256b03e5826150be39c764bf51e993946d71a3" 795 | integrity sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q== 796 | 797 | once@^1.3.0: 798 | version "1.4.0" 799 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 800 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 801 | dependencies: 802 | wrappy "1" 803 | 804 | optionator@^0.9.1: 805 | version "0.9.1" 806 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 807 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 808 | dependencies: 809 | deep-is "^0.1.3" 810 | fast-levenshtein "^2.0.6" 811 | levn "^0.4.1" 812 | prelude-ls "^1.2.1" 813 | type-check "^0.4.0" 814 | word-wrap "^1.2.3" 815 | 816 | parent-module@^1.0.0: 817 | version "1.0.1" 818 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 819 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 820 | dependencies: 821 | callsites "^3.0.0" 822 | 823 | path-is-absolute@^1.0.0: 824 | version "1.0.1" 825 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 826 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 827 | 828 | path-key@^3.1.0: 829 | version "3.1.1" 830 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 831 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 832 | 833 | path-type@^4.0.0: 834 | version "4.0.0" 835 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 836 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 837 | 838 | picomatch@^2.2.3: 839 | version "2.3.0" 840 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 841 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 842 | 843 | prelude-ls@^1.2.1: 844 | version "1.2.1" 845 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 846 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 847 | 848 | prettier-linter-helpers@^1.0.0: 849 | version "1.0.0" 850 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 851 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 852 | dependencies: 853 | fast-diff "^1.1.2" 854 | 855 | prettier@^2.6.2: 856 | version "2.6.2" 857 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032" 858 | integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew== 859 | 860 | punycode@^2.1.0: 861 | version "2.1.1" 862 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 863 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 864 | 865 | queue-microtask@^1.2.2: 866 | version "1.2.3" 867 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 868 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 869 | 870 | regexpp@^3.2.0: 871 | version "3.2.0" 872 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 873 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 874 | 875 | resolve-from@^4.0.0: 876 | version "4.0.0" 877 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 878 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 879 | 880 | reusify@^1.0.4: 881 | version "1.0.4" 882 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 883 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 884 | 885 | rimraf@^3.0.2: 886 | version "3.0.2" 887 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 888 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 889 | dependencies: 890 | glob "^7.1.3" 891 | 892 | run-parallel@^1.1.9: 893 | version "1.2.0" 894 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 895 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 896 | dependencies: 897 | queue-microtask "^1.2.2" 898 | 899 | semver@^7.3.5: 900 | version "7.3.5" 901 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 902 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 903 | dependencies: 904 | lru-cache "^6.0.0" 905 | 906 | shebang-command@^2.0.0: 907 | version "2.0.0" 908 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 909 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 910 | dependencies: 911 | shebang-regex "^3.0.0" 912 | 913 | shebang-regex@^3.0.0: 914 | version "3.0.0" 915 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 916 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 917 | 918 | slash@^3.0.0: 919 | version "3.0.0" 920 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 921 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 922 | 923 | strip-ansi@^6.0.1: 924 | version "6.0.1" 925 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 926 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 927 | dependencies: 928 | ansi-regex "^5.0.1" 929 | 930 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 931 | version "3.1.1" 932 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 933 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 934 | 935 | supports-color@^7.1.0: 936 | version "7.2.0" 937 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 938 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 939 | dependencies: 940 | has-flag "^4.0.0" 941 | 942 | text-table@^0.2.0: 943 | version "0.2.0" 944 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 945 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 946 | 947 | to-regex-range@^5.0.1: 948 | version "5.0.1" 949 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 950 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 951 | dependencies: 952 | is-number "^7.0.0" 953 | 954 | tr46@~0.0.3: 955 | version "0.0.3" 956 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 957 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== 958 | 959 | tslib@^1.8.1: 960 | version "1.14.1" 961 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 962 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 963 | 964 | tsutils@^3.21.0: 965 | version "3.21.0" 966 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 967 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 968 | dependencies: 969 | tslib "^1.8.1" 970 | 971 | type-check@^0.4.0, type-check@~0.4.0: 972 | version "0.4.0" 973 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 974 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 975 | dependencies: 976 | prelude-ls "^1.2.1" 977 | 978 | type-fest@^0.20.2: 979 | version "0.20.2" 980 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 981 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 982 | 983 | type@^1.0.1: 984 | version "1.2.0" 985 | resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" 986 | integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== 987 | 988 | type@^2.5.0: 989 | version "2.5.0" 990 | resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d" 991 | integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw== 992 | 993 | typedarray-to-buffer@^3.1.5: 994 | version "3.1.5" 995 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 996 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 997 | dependencies: 998 | is-typedarray "^1.0.0" 999 | 1000 | typescript@^4.6.4: 1001 | version "4.6.4" 1002 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.4.tgz#caa78bbc3a59e6a5c510d35703f6a09877ce45e9" 1003 | integrity sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg== 1004 | 1005 | uri-js@^4.2.2: 1006 | version "4.4.1" 1007 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1008 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1009 | dependencies: 1010 | punycode "^2.1.0" 1011 | 1012 | utf-8-validate@^5.0.2: 1013 | version "5.0.7" 1014 | resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.7.tgz#c15a19a6af1f7ad9ec7ddc425747ca28c3644922" 1015 | integrity sha512-vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q== 1016 | dependencies: 1017 | node-gyp-build "^4.3.0" 1018 | 1019 | v8-compile-cache@^2.0.3: 1020 | version "2.3.0" 1021 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 1022 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 1023 | 1024 | vue-demi@^0.12.5: 1025 | version "0.12.5" 1026 | resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.12.5.tgz#8eeed566a7d86eb090209a11723f887d28aeb2d1" 1027 | integrity sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q== 1028 | 1029 | webidl-conversions@^3.0.0: 1030 | version "3.0.1" 1031 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1032 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== 1033 | 1034 | websocket@^1.0.34: 1035 | version "1.0.34" 1036 | resolved "https://registry.yarnpkg.com/websocket/-/websocket-1.0.34.tgz#2bdc2602c08bf2c82253b730655c0ef7dcab3111" 1037 | integrity sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ== 1038 | dependencies: 1039 | bufferutil "^4.0.1" 1040 | debug "^2.2.0" 1041 | es5-ext "^0.10.50" 1042 | typedarray-to-buffer "^3.1.5" 1043 | utf-8-validate "^5.0.2" 1044 | yaeti "^0.0.6" 1045 | 1046 | whatwg-url@^5.0.0: 1047 | version "5.0.0" 1048 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 1049 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== 1050 | dependencies: 1051 | tr46 "~0.0.3" 1052 | webidl-conversions "^3.0.0" 1053 | 1054 | which@^2.0.1: 1055 | version "2.0.2" 1056 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1057 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1058 | dependencies: 1059 | isexe "^2.0.0" 1060 | 1061 | word-wrap@^1.2.3: 1062 | version "1.2.3" 1063 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1064 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1065 | 1066 | wrappy@1: 1067 | version "1.0.2" 1068 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1069 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1070 | 1071 | yaeti@^0.0.6: 1072 | version "0.0.6" 1073 | resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577" 1074 | integrity sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc= 1075 | 1076 | yallist@^4.0.0: 1077 | version "4.0.0" 1078 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1079 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1080 | --------------------------------------------------------------------------------