├── .gitignore
├── LICENSE
├── README.md
├── dist
├── aframe-transparent-video-shader.cjs
├── aframe-transparent-video-shader.cjs.map
├── aframe-transparent-video-shader.modern.js
├── aframe-transparent-video-shader.modern.js.map
├── aframe-transparent-video-shader.module.js
├── aframe-transparent-video-shader.module.js.map
├── aframe-transparent-video-shader.umd.js
└── aframe-transparent-video-shader.umd.js.map
├── index.js
├── package.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Augusto Zanoni
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 | # Aframe Transparent Video Shader
2 |
3 | This is a shader to display videos with transparency (Alpha Channel) such as WebM and HEVC H265.
4 |
5 | ## Demo
6 |
7 | https://aframe-transparent-video.glitch.me/
8 |
9 | ## Browser Installation
10 |
11 | 1. Install by declaring this [script](./dist/aframe-transparent-video-shader.umd.js) after aframe
12 |
13 | ```
14 |
15 | My Scene
16 |
17 |
18 |
19 | ```
20 |
21 | ## NPM Installation
22 |
23 | 1. Install the package:
24 | ```
25 | npm i aframe-transparent-video-shader
26 | ```
27 |
28 | 2. Import after aframe:
29 | ```
30 | import 'aframe'
31 | import 'aframe-transparent-video-shader'
32 | ```
33 |
34 | ## Usage
35 |
36 | 1. Create a video element into `a-assets` tag and declare an id.
37 |
38 | 2. Create an entity and assign a `material="shader: transparent-video; src: #videoId"` attribute
39 |
40 | ```
41 |
42 |
43 | My Scene
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
71 |
72 |
73 |
74 |
75 | ```
76 |
77 | ## Notes
78 |
79 | ### Video autoplay
80 |
81 | On the latest chrome versions, the autoplay is blocked by default until there is an user interaction.
82 | You can read more [here](https://aframe.io/docs/1.2.0/components/material.html#video-textures).
83 |
84 | Some solutions you can use:
85 |
86 | * Add a button to play the video:
87 | You can find a full example [here](https://github.com/aframevr/aframe/blob/master/examples/test/video/index.html).
88 | Or use the [play-on-click](https://github.com/aframevr/aframe/blob/master/examples/js/play-on-click.js) component.
89 |
90 | * Add a `click` event listener to the whole page:
91 | ```
92 | document.addEventListener('click', () => {
93 | video = document.querySelector('video');
94 | video.play();
95 | });
96 | ```
97 |
98 | ### Safari Support
99 |
100 | Safari doesn't currently support `webm` videos with transparency, so you will need to add an extra `.mp4` or `.mov` video file with the `HEVC H.265` codec encoded with transparency enabled. See the demo code [here](https://glitch.com/edit/#!/aframe-transparent-video) for an example implementation.
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.cjs:
--------------------------------------------------------------------------------
1 | AFRAME.registerShader("transparent-video",{schema:{src:{type:"map"}},applyWebmShader:function(e){var a=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,this.material=new THREE.MeshBasicMaterial({map:a,transparent:!0})},applyHEVCShader:function(e){var a=new THREE.VideoTexture(e),r=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,r.format=THREE.AlphaFormat,this.material=new THREE.ShaderMaterial({vertexShader:"\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n ",fragmentShader:"\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n ",uniforms:{videoTexture:{type:"t",value:a},alphaTexture:{type:"t",value:r}},transparent:!0})},init:function(e){var a,r=e.src,t=new URL(r.currentSrc).pathname.split("."),n=null==(a=t[t.length-1])?void 0:a.toLowerCase();e.transparent=!0,"webm"===n?this.applyWebmShader(r):this.applyHEVCShader(r)}});
2 | //# sourceMappingURL=aframe-transparent-video-shader.cjs.map
3 |
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.cjs.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"aframe-transparent-video-shader.cjs","sources":["../index.js"],"sourcesContent":["AFRAME.registerShader('transparent-video', {\n schema: {\n src: { type: 'map' },\n },\n\n applyWebmShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n\n this.material = new THREE.MeshBasicMaterial({\n map: videoTexture, transparent: true,\n });\n },\n \n applyHEVCShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n const alphaTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n alphaTexture.format = THREE.AlphaFormat;\n \n this.material = new THREE.ShaderMaterial({\n vertexShader: `\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n `,\n fragmentShader: `\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n `,\n uniforms: {\n videoTexture: { type: 't', value: videoTexture },\n alphaTexture: { type: 't', value: alphaTexture }\n },\n transparent: true\n });\n },\n \n init: function (data) {\n const videoEl = data.src;\n const videoUrl = new URL(videoEl.currentSrc);\n const splitedUrl = videoUrl.pathname.split('.');\n const videoType = splitedUrl[splitedUrl.length - 1]?.toLowerCase();\n\n data.transparent = true;\n \n if (videoType === 'webm') {\n this.applyWebmShader(videoEl);\n } else {\n this.applyHEVCShader(videoEl);\n }\n },\n});"],"names":["AFRAME","registerShader","schema","src","type","applyWebmShader","videoEl","videoTexture","THREE","VideoTexture","format","RGBAFormat","this","material","MeshBasicMaterial","map","transparent","applyHEVCShader","alphaTexture","AlphaFormat","ShaderMaterial","vertexShader","fragmentShader","uniforms","value","init","data","_splitedUrl","splitedUrl","URL","currentSrc","pathname","split","videoType","length","toLowerCase"],"mappings":"AAAAA,OAAOC,eAAe,oBAAqB,CACzCC,OAAQ,CACNC,IAAK,CAAEC,KAAM,QAGfC,gBAAiB,SAASC,GACxB,IAAMC,EAAe,IAAIC,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAE5BC,KAAKC,SAAW,IAAIL,MAAMM,kBAAkB,CAC1CC,IAAKR,EAAcS,aAAa,GAEpC,EAEAC,gBAAiB,SAASX,GACxB,IAAMC,EAAe,IAAIC,MAAMC,aAAaH,GACtCY,EAAe,IAAIV,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAC5BO,EAAaR,OAASF,MAAMW,YAE5BP,KAAKC,SAAW,IAAIL,MAAMY,eAAe,CACvCC,aAOC,0LACDC,eAAc,kVAYdC,SAAU,CACRhB,aAAc,CAAEH,KAAM,IAAKoB,MAAOjB,GAClCW,aAAc,CAAEd,KAAM,IAAKoB,MAAON,IAEpCF,aAAa,GAEjB,EAEAS,KAAM,SAAUC,GAAM,IAAAC,EACdrB,EAAUoB,EAAKvB,IAEfyB,EADW,IAAIC,IAAIvB,EAAQwB,YACLC,SAASC,MAAM,KACrCC,EAAYN,OAAHA,EAAGC,EAAWA,EAAWM,OAAS,SAA/BP,EAAAA,EAAmCQ,cAErDT,EAAKV,aAAc,EAED,SAAdiB,EACFrB,KAAKP,gBAAgBC,GAErBM,KAAKK,gBAAgBX,EAEzB"}
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.modern.js:
--------------------------------------------------------------------------------
1 | AFRAME.registerShader("transparent-video",{schema:{src:{type:"map"}},applyWebmShader:function(e){const a=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,this.material=new THREE.MeshBasicMaterial({map:a,transparent:!0})},applyHEVCShader:function(e){const a=new THREE.VideoTexture(e),r=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,r.format=THREE.AlphaFormat,this.material=new THREE.ShaderMaterial({vertexShader:"\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n ",fragmentShader:"\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n ",uniforms:{videoTexture:{type:"t",value:a},alphaTexture:{type:"t",value:r}},transparent:!0})},init:function(e){var a;const r=e.src,t=new URL(r.currentSrc).pathname.split("."),n=null==(a=t[t.length-1])?void 0:a.toLowerCase();e.transparent=!0,"webm"===n?this.applyWebmShader(r):this.applyHEVCShader(r)}});
2 | //# sourceMappingURL=aframe-transparent-video-shader.modern.js.map
3 |
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.modern.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"aframe-transparent-video-shader.modern.js","sources":["../index.js"],"sourcesContent":["AFRAME.registerShader('transparent-video', {\n schema: {\n src: { type: 'map' },\n },\n\n applyWebmShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n\n this.material = new THREE.MeshBasicMaterial({\n map: videoTexture, transparent: true,\n });\n },\n \n applyHEVCShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n const alphaTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n alphaTexture.format = THREE.AlphaFormat;\n \n this.material = new THREE.ShaderMaterial({\n vertexShader: `\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n `,\n fragmentShader: `\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n `,\n uniforms: {\n videoTexture: { type: 't', value: videoTexture },\n alphaTexture: { type: 't', value: alphaTexture }\n },\n transparent: true\n });\n },\n \n init: function (data) {\n const videoEl = data.src;\n const videoUrl = new URL(videoEl.currentSrc);\n const splitedUrl = videoUrl.pathname.split('.');\n const videoType = splitedUrl[splitedUrl.length - 1]?.toLowerCase();\n\n data.transparent = true;\n \n if (videoType === 'webm') {\n this.applyWebmShader(videoEl);\n } else {\n this.applyHEVCShader(videoEl);\n }\n },\n});"],"names":["AFRAME","registerShader","schema","src","type","applyWebmShader","videoEl","videoTexture","THREE","VideoTexture","format","RGBAFormat","this","material","MeshBasicMaterial","map","transparent","applyHEVCShader","alphaTexture","AlphaFormat","ShaderMaterial","vertexShader","fragmentShader","uniforms","value","init","data","_splitedUrl","splitedUrl","URL","currentSrc","pathname","split","videoType","length","toLowerCase"],"mappings":"AAAAA,OAAOC,eAAe,oBAAqB,CACzCC,OAAQ,CACNC,IAAK,CAAEC,KAAM,QAGfC,gBAAiB,SAASC,GACxB,MAAMC,EAAe,IAAIC,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAE5BC,KAAKC,SAAW,IAAIL,MAAMM,kBAAkB,CAC1CC,IAAKR,EAAcS,aAAa,GAEpC,EAEAC,gBAAiB,SAASX,GACxB,MAAMC,EAAe,IAAIC,MAAMC,aAAaH,GACtCY,EAAe,IAAIV,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAC5BO,EAAaR,OAASF,MAAMW,YAE5BP,KAAKC,SAAW,IAAIL,MAAMY,eAAe,CACvCC,aAAe,0LAQfC,eAAiB,kVAYjBC,SAAU,CACRhB,aAAc,CAAEH,KAAM,IAAKoB,MAAOjB,GAClCW,aAAc,CAAEd,KAAM,IAAKoB,MAAON,IAEpCF,aAAa,GAEjB,EAEAS,KAAM,SAAUC,GAAM,IAAAC,EACpB,MAAMrB,EAAUoB,EAAKvB,IAEfyB,EADW,IAAIC,IAAIvB,EAAQwB,YACLC,SAASC,MAAM,KACrCC,EAAYN,OAAHA,EAAGC,EAAWA,EAAWM,OAAS,SAA/BP,EAAAA,EAAmCQ,cAErDT,EAAKV,aAAc,EAED,SAAdiB,EACFrB,KAAKP,gBAAgBC,GAErBM,KAAKK,gBAAgBX,EAEzB"}
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.module.js:
--------------------------------------------------------------------------------
1 | AFRAME.registerShader("transparent-video",{schema:{src:{type:"map"}},applyWebmShader:function(e){var a=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,this.material=new THREE.MeshBasicMaterial({map:a,transparent:!0})},applyHEVCShader:function(e){var a=new THREE.VideoTexture(e),r=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,r.format=THREE.AlphaFormat,this.material=new THREE.ShaderMaterial({vertexShader:"\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n ",fragmentShader:"\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n ",uniforms:{videoTexture:{type:"t",value:a},alphaTexture:{type:"t",value:r}},transparent:!0})},init:function(e){var a,r=e.src,t=new URL(r.currentSrc).pathname.split("."),n=null==(a=t[t.length-1])?void 0:a.toLowerCase();e.transparent=!0,"webm"===n?this.applyWebmShader(r):this.applyHEVCShader(r)}});
2 | //# sourceMappingURL=aframe-transparent-video-shader.module.js.map
3 |
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.module.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"aframe-transparent-video-shader.module.js","sources":["../index.js"],"sourcesContent":["AFRAME.registerShader('transparent-video', {\n schema: {\n src: { type: 'map' },\n },\n\n applyWebmShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n\n this.material = new THREE.MeshBasicMaterial({\n map: videoTexture, transparent: true,\n });\n },\n \n applyHEVCShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n const alphaTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n alphaTexture.format = THREE.AlphaFormat;\n \n this.material = new THREE.ShaderMaterial({\n vertexShader: `\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n `,\n fragmentShader: `\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n `,\n uniforms: {\n videoTexture: { type: 't', value: videoTexture },\n alphaTexture: { type: 't', value: alphaTexture }\n },\n transparent: true\n });\n },\n \n init: function (data) {\n const videoEl = data.src;\n const videoUrl = new URL(videoEl.currentSrc);\n const splitedUrl = videoUrl.pathname.split('.');\n const videoType = splitedUrl[splitedUrl.length - 1]?.toLowerCase();\n\n data.transparent = true;\n \n if (videoType === 'webm') {\n this.applyWebmShader(videoEl);\n } else {\n this.applyHEVCShader(videoEl);\n }\n },\n});"],"names":["AFRAME","registerShader","schema","src","type","applyWebmShader","videoEl","videoTexture","THREE","VideoTexture","format","RGBAFormat","this","material","MeshBasicMaterial","map","transparent","applyHEVCShader","alphaTexture","AlphaFormat","ShaderMaterial","vertexShader","fragmentShader","uniforms","value","init","data","_splitedUrl","splitedUrl","URL","currentSrc","pathname","split","videoType","length","toLowerCase"],"mappings":"AAAAA,OAAOC,eAAe,oBAAqB,CACzCC,OAAQ,CACNC,IAAK,CAAEC,KAAM,QAGfC,gBAAiB,SAASC,GACxB,IAAMC,EAAe,IAAIC,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAE5BC,KAAKC,SAAW,IAAIL,MAAMM,kBAAkB,CAC1CC,IAAKR,EAAcS,aAAa,GAEpC,EAEAC,gBAAiB,SAASX,GACxB,IAAMC,EAAe,IAAIC,MAAMC,aAAaH,GACtCY,EAAe,IAAIV,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAC5BO,EAAaR,OAASF,MAAMW,YAE5BP,KAAKC,SAAW,IAAIL,MAAMY,eAAe,CACvCC,aAOC,0LACDC,eAAc,kVAYdC,SAAU,CACRhB,aAAc,CAAEH,KAAM,IAAKoB,MAAOjB,GAClCW,aAAc,CAAEd,KAAM,IAAKoB,MAAON,IAEpCF,aAAa,GAEjB,EAEAS,KAAM,SAAUC,GAAM,IAAAC,EACdrB,EAAUoB,EAAKvB,IAEfyB,EADW,IAAIC,IAAIvB,EAAQwB,YACLC,SAASC,MAAM,KACrCC,EAAYN,OAAHA,EAAGC,EAAWA,EAAWM,OAAS,SAA/BP,EAAAA,EAAmCQ,cAErDT,EAAKV,aAAc,EAED,SAAdiB,EACFrB,KAAKP,gBAAgBC,GAErBM,KAAKK,gBAAgBX,EAEzB"}
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.umd.js:
--------------------------------------------------------------------------------
1 | !function(e){"function"==typeof define&&define.amd?define(e):e()}(function(){AFRAME.registerShader("transparent-video",{schema:{src:{type:"map"}},applyWebmShader:function(e){var a=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,this.material=new THREE.MeshBasicMaterial({map:a,transparent:!0})},applyHEVCShader:function(e){var a=new THREE.VideoTexture(e),r=new THREE.VideoTexture(e);a.format=THREE.RGBAFormat,r.format=THREE.AlphaFormat,this.material=new THREE.ShaderMaterial({vertexShader:"\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n ",fragmentShader:"\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n ",uniforms:{videoTexture:{type:"t",value:a},alphaTexture:{type:"t",value:r}},transparent:!0})},init:function(e){var a,r=e.src,n=new URL(r.currentSrc).pathname.split("."),t=null==(a=n[n.length-1])?void 0:a.toLowerCase();e.transparent=!0,"webm"===t?this.applyWebmShader(r):this.applyHEVCShader(r)}})});
2 | //# sourceMappingURL=aframe-transparent-video-shader.umd.js.map
3 |
--------------------------------------------------------------------------------
/dist/aframe-transparent-video-shader.umd.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"aframe-transparent-video-shader.umd.js","sources":["../index.js"],"sourcesContent":["AFRAME.registerShader('transparent-video', {\n schema: {\n src: { type: 'map' },\n },\n\n applyWebmShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n\n this.material = new THREE.MeshBasicMaterial({\n map: videoTexture, transparent: true,\n });\n },\n \n applyHEVCShader: function(videoEl) {\n const videoTexture = new THREE.VideoTexture(videoEl);\n const alphaTexture = new THREE.VideoTexture(videoEl);\n\n videoTexture.format = THREE.RGBAFormat;\n alphaTexture.format = THREE.AlphaFormat;\n \n this.material = new THREE.ShaderMaterial({\n vertexShader: `\n varying vec2 vUv;\n \n void main() {\n vUv = uv;\n gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);\n }\n `,\n fragmentShader: `\n varying vec2 vUv;\n uniform sampler2D videoTexture;\n uniform sampler2D alphaTexture;\n\n void main() {\n vec4 videoColor = texture2D(videoTexture, vUv);\n vec4 alphaColor = texture2D(alphaTexture, vUv);\n\n gl_FragColor = vec4(videoColor.rgb, alphaColor.a);\n }\n `,\n uniforms: {\n videoTexture: { type: 't', value: videoTexture },\n alphaTexture: { type: 't', value: alphaTexture }\n },\n transparent: true\n });\n },\n \n init: function (data) {\n const videoEl = data.src;\n const videoUrl = new URL(videoEl.currentSrc);\n const splitedUrl = videoUrl.pathname.split('.');\n const videoType = splitedUrl[splitedUrl.length - 1]?.toLowerCase();\n\n data.transparent = true;\n \n if (videoType === 'webm') {\n this.applyWebmShader(videoEl);\n } else {\n this.applyHEVCShader(videoEl);\n }\n },\n});"],"names":["AFRAME","registerShader","schema","src","type","applyWebmShader","videoEl","videoTexture","THREE","VideoTexture","format","RGBAFormat","this","material","MeshBasicMaterial","map","transparent","applyHEVCShader","alphaTexture","AlphaFormat","ShaderMaterial","vertexShader","fragmentShader","uniforms","value","init","data","_splitedUrl","splitedUrl","URL","currentSrc","pathname","split","videoType","length","toLowerCase"],"mappings":"6EAAAA,OAAOC,eAAe,oBAAqB,CACzCC,OAAQ,CACNC,IAAK,CAAEC,KAAM,QAGfC,gBAAiB,SAASC,GACxB,IAAMC,EAAe,IAAIC,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAE5BC,KAAKC,SAAW,IAAIL,MAAMM,kBAAkB,CAC1CC,IAAKR,EAAcS,aAAa,GAEpC,EAEAC,gBAAiB,SAASX,GACxB,IAAMC,EAAe,IAAIC,MAAMC,aAAaH,GACtCY,EAAe,IAAIV,MAAMC,aAAaH,GAE5CC,EAAaG,OAASF,MAAMG,WAC5BO,EAAaR,OAASF,MAAMW,YAE5BP,KAAKC,SAAW,IAAIL,MAAMY,eAAe,CACvCC,aAOC,0LACDC,eAAc,kVAYdC,SAAU,CACRhB,aAAc,CAAEH,KAAM,IAAKoB,MAAOjB,GAClCW,aAAc,CAAEd,KAAM,IAAKoB,MAAON,IAEpCF,aAAa,GAEjB,EAEAS,KAAM,SAAUC,GAAM,IAAAC,EACdrB,EAAUoB,EAAKvB,IAEfyB,EADW,IAAIC,IAAIvB,EAAQwB,YACLC,SAASC,MAAM,KACrCC,EAAYN,OAAHA,EAAGC,EAAWA,EAAWM,OAAS,SAA/BP,EAAAA,EAAmCQ,cAErDT,EAAKV,aAAc,EAED,SAAdiB,EACFrB,KAAKP,gBAAgBC,GAErBM,KAAKK,gBAAgBX,EAEzB"}
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | AFRAME.registerShader('transparent-video', {
2 | schema: {
3 | src: { type: 'map' },
4 | },
5 |
6 | applyWebmShader: function(videoEl) {
7 | const videoTexture = new THREE.VideoTexture(videoEl);
8 |
9 | videoTexture.format = THREE.RGBAFormat;
10 |
11 | this.material = new THREE.MeshBasicMaterial({
12 | map: videoTexture, transparent: true,
13 | });
14 | },
15 |
16 | applyHEVCShader: function(videoEl) {
17 | const videoTexture = new THREE.VideoTexture(videoEl);
18 | const alphaTexture = new THREE.VideoTexture(videoEl);
19 |
20 | videoTexture.format = THREE.RGBAFormat;
21 | alphaTexture.format = THREE.AlphaFormat;
22 |
23 | this.material = new THREE.ShaderMaterial({
24 | vertexShader: `
25 | varying vec2 vUv;
26 |
27 | void main() {
28 | vUv = uv;
29 | gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
30 | }
31 | `,
32 | fragmentShader: `
33 | varying vec2 vUv;
34 | uniform sampler2D videoTexture;
35 | uniform sampler2D alphaTexture;
36 |
37 | void main() {
38 | vec4 videoColor = texture2D(videoTexture, vUv);
39 | vec4 alphaColor = texture2D(alphaTexture, vUv);
40 |
41 | gl_FragColor = vec4(videoColor.rgb, alphaColor.a);
42 | }
43 | `,
44 | uniforms: {
45 | videoTexture: { type: 't', value: videoTexture },
46 | alphaTexture: { type: 't', value: alphaTexture }
47 | },
48 | transparent: true
49 | });
50 | },
51 |
52 | init: function (data) {
53 | const videoEl = data.src;
54 | const videoUrl = new URL(videoEl.currentSrc);
55 | const splitedUrl = videoUrl.pathname.split('.');
56 | const videoType = splitedUrl[splitedUrl.length - 1]?.toLowerCase();
57 |
58 | data.transparent = true;
59 |
60 | if (videoType === 'webm') {
61 | this.applyWebmShader(videoEl);
62 | } else {
63 | this.applyHEVCShader(videoEl);
64 | }
65 | },
66 | });
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "aframe-transparent-video-shader",
3 | "version": "1.0.6",
4 | "description": "A shader to display videos with transparency (alpha channel) for A-Frame.",
5 | "type": "module",
6 | "source": "index.js",
7 | "exports": {
8 | "require": "./dist/aframe-transparent-video-shader.cjs",
9 | "default": "./dist/aframe-transparent-video-shader.modern.js"
10 | },
11 | "main": "./dist/aframe-transparent-video-shader.cjs",
12 | "module": "./dist/aframe-transparent-video-shader.module.js",
13 | "unpkg": "./dist/aframe-transparent-video-shader.umd.js",
14 | "author": "Augusto Zanoni",
15 | "license": "MIT",
16 | "private": false,
17 | "repository": {
18 | "type": "git",
19 | "url": "https://github.com/balataca/aframe-transparent-video-shader"
20 | },
21 | "keywords": [
22 | "aframe",
23 | "aframe-component",
24 | "aframe-shader",
25 | "aframe-vr",
26 | "vr",
27 | "mozvr",
28 | "webvr",
29 | "webxr",
30 | "video-shader"
31 | ],
32 | "scripts": {
33 | "build": "microbundle --target browser",
34 | "dev": "microbundle watch"
35 | },
36 | "peerDependencies": {
37 | "aframe": "^1.4.2"
38 | },
39 | "devDependencies": {
40 | "microbundle": "^0.15.1"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ampproject/remapping@^2.2.0":
6 | version "2.2.1"
7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
8 | integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
9 | dependencies:
10 | "@jridgewell/gen-mapping" "^0.3.0"
11 | "@jridgewell/trace-mapping" "^0.3.9"
12 |
13 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.22.5":
14 | version "7.22.5"
15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
16 | integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==
17 | dependencies:
18 | "@babel/highlight" "^7.22.5"
19 |
20 | "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
21 | version "7.22.9"
22 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
23 | integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
24 |
25 | "@babel/core@^7.12.10":
26 | version "7.22.9"
27 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.9.tgz#bd96492c68822198f33e8a256061da3cf391f58f"
28 | integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==
29 | dependencies:
30 | "@ampproject/remapping" "^2.2.0"
31 | "@babel/code-frame" "^7.22.5"
32 | "@babel/generator" "^7.22.9"
33 | "@babel/helper-compilation-targets" "^7.22.9"
34 | "@babel/helper-module-transforms" "^7.22.9"
35 | "@babel/helpers" "^7.22.6"
36 | "@babel/parser" "^7.22.7"
37 | "@babel/template" "^7.22.5"
38 | "@babel/traverse" "^7.22.8"
39 | "@babel/types" "^7.22.5"
40 | convert-source-map "^1.7.0"
41 | debug "^4.1.0"
42 | gensync "^1.0.0-beta.2"
43 | json5 "^2.2.2"
44 | semver "^6.3.1"
45 |
46 | "@babel/generator@^7.22.7", "@babel/generator@^7.22.9":
47 | version "7.22.9"
48 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.9.tgz#572ecfa7a31002fa1de2a9d91621fd895da8493d"
49 | integrity sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==
50 | dependencies:
51 | "@babel/types" "^7.22.5"
52 | "@jridgewell/gen-mapping" "^0.3.2"
53 | "@jridgewell/trace-mapping" "^0.3.17"
54 | jsesc "^2.5.1"
55 |
56 | "@babel/helper-annotate-as-pure@^7.22.5":
57 | version "7.22.5"
58 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
59 | integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
60 | dependencies:
61 | "@babel/types" "^7.22.5"
62 |
63 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
64 | version "7.22.5"
65 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878"
66 | integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==
67 | dependencies:
68 | "@babel/types" "^7.22.5"
69 |
70 | "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.22.9":
71 | version "7.22.9"
72 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz#f9d0a7aaaa7cd32a3f31c9316a69f5a9bcacb892"
73 | integrity sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==
74 | dependencies:
75 | "@babel/compat-data" "^7.22.9"
76 | "@babel/helper-validator-option" "^7.22.5"
77 | browserslist "^4.21.9"
78 | lru-cache "^5.1.1"
79 | semver "^6.3.1"
80 |
81 | "@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.22.5":
82 | version "7.22.9"
83 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz#c36ea240bb3348f942f08b0fbe28d6d979fab236"
84 | integrity sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==
85 | dependencies:
86 | "@babel/helper-annotate-as-pure" "^7.22.5"
87 | "@babel/helper-environment-visitor" "^7.22.5"
88 | "@babel/helper-function-name" "^7.22.5"
89 | "@babel/helper-member-expression-to-functions" "^7.22.5"
90 | "@babel/helper-optimise-call-expression" "^7.22.5"
91 | "@babel/helper-replace-supers" "^7.22.9"
92 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
93 | "@babel/helper-split-export-declaration" "^7.22.6"
94 | semver "^6.3.1"
95 |
96 | "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
97 | version "7.22.9"
98 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz#9d8e61a8d9366fe66198f57c40565663de0825f6"
99 | integrity sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==
100 | dependencies:
101 | "@babel/helper-annotate-as-pure" "^7.22.5"
102 | regexpu-core "^5.3.1"
103 | semver "^6.3.1"
104 |
105 | "@babel/helper-define-polyfill-provider@^0.4.2":
106 | version "0.4.2"
107 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7"
108 | integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==
109 | dependencies:
110 | "@babel/helper-compilation-targets" "^7.22.6"
111 | "@babel/helper-plugin-utils" "^7.22.5"
112 | debug "^4.1.1"
113 | lodash.debounce "^4.0.8"
114 | resolve "^1.14.2"
115 |
116 | "@babel/helper-environment-visitor@^7.22.5":
117 | version "7.22.5"
118 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
119 | integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==
120 |
121 | "@babel/helper-function-name@^7.22.5":
122 | version "7.22.5"
123 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
124 | integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==
125 | dependencies:
126 | "@babel/template" "^7.22.5"
127 | "@babel/types" "^7.22.5"
128 |
129 | "@babel/helper-hoist-variables@^7.22.5":
130 | version "7.22.5"
131 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
132 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
133 | dependencies:
134 | "@babel/types" "^7.22.5"
135 |
136 | "@babel/helper-member-expression-to-functions@^7.22.5":
137 | version "7.22.5"
138 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2"
139 | integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==
140 | dependencies:
141 | "@babel/types" "^7.22.5"
142 |
143 | "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.5":
144 | version "7.22.5"
145 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
146 | integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
147 | dependencies:
148 | "@babel/types" "^7.22.5"
149 |
150 | "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9":
151 | version "7.22.9"
152 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129"
153 | integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==
154 | dependencies:
155 | "@babel/helper-environment-visitor" "^7.22.5"
156 | "@babel/helper-module-imports" "^7.22.5"
157 | "@babel/helper-simple-access" "^7.22.5"
158 | "@babel/helper-split-export-declaration" "^7.22.6"
159 | "@babel/helper-validator-identifier" "^7.22.5"
160 |
161 | "@babel/helper-optimise-call-expression@^7.22.5":
162 | version "7.22.5"
163 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
164 | integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
165 | dependencies:
166 | "@babel/types" "^7.22.5"
167 |
168 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
169 | version "7.22.5"
170 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
171 | integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
172 |
173 | "@babel/helper-remap-async-to-generator@^7.22.5":
174 | version "7.22.9"
175 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82"
176 | integrity sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==
177 | dependencies:
178 | "@babel/helper-annotate-as-pure" "^7.22.5"
179 | "@babel/helper-environment-visitor" "^7.22.5"
180 | "@babel/helper-wrap-function" "^7.22.9"
181 |
182 | "@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9":
183 | version "7.22.9"
184 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz#cbdc27d6d8d18cd22c81ae4293765a5d9afd0779"
185 | integrity sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==
186 | dependencies:
187 | "@babel/helper-environment-visitor" "^7.22.5"
188 | "@babel/helper-member-expression-to-functions" "^7.22.5"
189 | "@babel/helper-optimise-call-expression" "^7.22.5"
190 |
191 | "@babel/helper-simple-access@^7.22.5":
192 | version "7.22.5"
193 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
194 | integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
195 | dependencies:
196 | "@babel/types" "^7.22.5"
197 |
198 | "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
199 | version "7.22.5"
200 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
201 | integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
202 | dependencies:
203 | "@babel/types" "^7.22.5"
204 |
205 | "@babel/helper-split-export-declaration@^7.22.6":
206 | version "7.22.6"
207 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
208 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
209 | dependencies:
210 | "@babel/types" "^7.22.5"
211 |
212 | "@babel/helper-string-parser@^7.22.5":
213 | version "7.22.5"
214 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
215 | integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
216 |
217 | "@babel/helper-validator-identifier@^7.22.5":
218 | version "7.22.5"
219 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
220 | integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
221 |
222 | "@babel/helper-validator-option@^7.22.5":
223 | version "7.22.5"
224 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
225 | integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
226 |
227 | "@babel/helper-wrap-function@^7.22.9":
228 | version "7.22.9"
229 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.9.tgz#189937248c45b0182c1dcf32f3444ca153944cb9"
230 | integrity sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==
231 | dependencies:
232 | "@babel/helper-function-name" "^7.22.5"
233 | "@babel/template" "^7.22.5"
234 | "@babel/types" "^7.22.5"
235 |
236 | "@babel/helpers@^7.22.6":
237 | version "7.22.6"
238 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd"
239 | integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==
240 | dependencies:
241 | "@babel/template" "^7.22.5"
242 | "@babel/traverse" "^7.22.6"
243 | "@babel/types" "^7.22.5"
244 |
245 | "@babel/highlight@^7.22.5":
246 | version "7.22.5"
247 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031"
248 | integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==
249 | dependencies:
250 | "@babel/helper-validator-identifier" "^7.22.5"
251 | chalk "^2.0.0"
252 | js-tokens "^4.0.0"
253 |
254 | "@babel/parser@^7.22.5", "@babel/parser@^7.22.7", "@babel/parser@^7.3.3":
255 | version "7.22.7"
256 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae"
257 | integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==
258 |
259 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
260 | version "7.22.5"
261 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e"
262 | integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==
263 | dependencies:
264 | "@babel/helper-plugin-utils" "^7.22.5"
265 |
266 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5":
267 | version "7.22.5"
268 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca"
269 | integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==
270 | dependencies:
271 | "@babel/helper-plugin-utils" "^7.22.5"
272 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
273 | "@babel/plugin-transform-optional-chaining" "^7.22.5"
274 |
275 | "@babel/plugin-proposal-class-properties@7.12.1":
276 | version "7.12.1"
277 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
278 | integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
279 | dependencies:
280 | "@babel/helper-create-class-features-plugin" "^7.12.1"
281 | "@babel/helper-plugin-utils" "^7.10.4"
282 |
283 | "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
284 | version "7.21.0-placeholder-for-preset-env.2"
285 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
286 | integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
287 |
288 | "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
289 | version "7.18.6"
290 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
291 | integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
292 | dependencies:
293 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
294 | "@babel/helper-plugin-utils" "^7.18.6"
295 |
296 | "@babel/plugin-syntax-async-generators@^7.8.4":
297 | version "7.8.4"
298 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
299 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
300 | dependencies:
301 | "@babel/helper-plugin-utils" "^7.8.0"
302 |
303 | "@babel/plugin-syntax-class-properties@^7.12.13":
304 | version "7.12.13"
305 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
306 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
307 | dependencies:
308 | "@babel/helper-plugin-utils" "^7.12.13"
309 |
310 | "@babel/plugin-syntax-class-static-block@^7.14.5":
311 | version "7.14.5"
312 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
313 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
314 | dependencies:
315 | "@babel/helper-plugin-utils" "^7.14.5"
316 |
317 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
318 | version "7.8.3"
319 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
320 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
321 | dependencies:
322 | "@babel/helper-plugin-utils" "^7.8.0"
323 |
324 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
325 | version "7.8.3"
326 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
327 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
328 | dependencies:
329 | "@babel/helper-plugin-utils" "^7.8.3"
330 |
331 | "@babel/plugin-syntax-flow@^7.22.5":
332 | version "7.22.5"
333 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859"
334 | integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==
335 | dependencies:
336 | "@babel/helper-plugin-utils" "^7.22.5"
337 |
338 | "@babel/plugin-syntax-import-assertions@^7.22.5":
339 | version "7.22.5"
340 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98"
341 | integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==
342 | dependencies:
343 | "@babel/helper-plugin-utils" "^7.22.5"
344 |
345 | "@babel/plugin-syntax-import-attributes@^7.22.5":
346 | version "7.22.5"
347 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb"
348 | integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==
349 | dependencies:
350 | "@babel/helper-plugin-utils" "^7.22.5"
351 |
352 | "@babel/plugin-syntax-import-meta@^7.10.4":
353 | version "7.10.4"
354 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
355 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
356 | dependencies:
357 | "@babel/helper-plugin-utils" "^7.10.4"
358 |
359 | "@babel/plugin-syntax-json-strings@^7.8.3":
360 | version "7.8.3"
361 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
362 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
363 | dependencies:
364 | "@babel/helper-plugin-utils" "^7.8.0"
365 |
366 | "@babel/plugin-syntax-jsx@^7.12.1", "@babel/plugin-syntax-jsx@^7.22.5":
367 | version "7.22.5"
368 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
369 | integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
370 | dependencies:
371 | "@babel/helper-plugin-utils" "^7.22.5"
372 |
373 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
374 | version "7.10.4"
375 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
376 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
377 | dependencies:
378 | "@babel/helper-plugin-utils" "^7.10.4"
379 |
380 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
381 | version "7.8.3"
382 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
383 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
384 | dependencies:
385 | "@babel/helper-plugin-utils" "^7.8.0"
386 |
387 | "@babel/plugin-syntax-numeric-separator@^7.10.4":
388 | version "7.10.4"
389 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
390 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
391 | dependencies:
392 | "@babel/helper-plugin-utils" "^7.10.4"
393 |
394 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
395 | version "7.8.3"
396 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
397 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
398 | dependencies:
399 | "@babel/helper-plugin-utils" "^7.8.0"
400 |
401 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
402 | version "7.8.3"
403 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
404 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
405 | dependencies:
406 | "@babel/helper-plugin-utils" "^7.8.0"
407 |
408 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
409 | version "7.8.3"
410 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
411 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
412 | dependencies:
413 | "@babel/helper-plugin-utils" "^7.8.0"
414 |
415 | "@babel/plugin-syntax-private-property-in-object@^7.14.5":
416 | version "7.14.5"
417 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
418 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
419 | dependencies:
420 | "@babel/helper-plugin-utils" "^7.14.5"
421 |
422 | "@babel/plugin-syntax-top-level-await@^7.14.5":
423 | version "7.14.5"
424 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
425 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
426 | dependencies:
427 | "@babel/helper-plugin-utils" "^7.14.5"
428 |
429 | "@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
430 | version "7.18.6"
431 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
432 | integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
433 | dependencies:
434 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
435 | "@babel/helper-plugin-utils" "^7.18.6"
436 |
437 | "@babel/plugin-transform-arrow-functions@^7.22.5":
438 | version "7.22.5"
439 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
440 | integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
441 | dependencies:
442 | "@babel/helper-plugin-utils" "^7.22.5"
443 |
444 | "@babel/plugin-transform-async-generator-functions@^7.22.7":
445 | version "7.22.7"
446 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b"
447 | integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==
448 | dependencies:
449 | "@babel/helper-environment-visitor" "^7.22.5"
450 | "@babel/helper-plugin-utils" "^7.22.5"
451 | "@babel/helper-remap-async-to-generator" "^7.22.5"
452 | "@babel/plugin-syntax-async-generators" "^7.8.4"
453 |
454 | "@babel/plugin-transform-async-to-generator@^7.22.5":
455 | version "7.22.5"
456 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
457 | integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
458 | dependencies:
459 | "@babel/helper-module-imports" "^7.22.5"
460 | "@babel/helper-plugin-utils" "^7.22.5"
461 | "@babel/helper-remap-async-to-generator" "^7.22.5"
462 |
463 | "@babel/plugin-transform-block-scoped-functions@^7.22.5":
464 | version "7.22.5"
465 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
466 | integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
467 | dependencies:
468 | "@babel/helper-plugin-utils" "^7.22.5"
469 |
470 | "@babel/plugin-transform-block-scoping@^7.22.5":
471 | version "7.22.5"
472 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b"
473 | integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==
474 | dependencies:
475 | "@babel/helper-plugin-utils" "^7.22.5"
476 |
477 | "@babel/plugin-transform-class-properties@^7.22.5":
478 | version "7.22.5"
479 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77"
480 | integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==
481 | dependencies:
482 | "@babel/helper-create-class-features-plugin" "^7.22.5"
483 | "@babel/helper-plugin-utils" "^7.22.5"
484 |
485 | "@babel/plugin-transform-class-static-block@^7.22.5":
486 | version "7.22.5"
487 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba"
488 | integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==
489 | dependencies:
490 | "@babel/helper-create-class-features-plugin" "^7.22.5"
491 | "@babel/helper-plugin-utils" "^7.22.5"
492 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
493 |
494 | "@babel/plugin-transform-classes@^7.22.6":
495 | version "7.22.6"
496 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363"
497 | integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==
498 | dependencies:
499 | "@babel/helper-annotate-as-pure" "^7.22.5"
500 | "@babel/helper-compilation-targets" "^7.22.6"
501 | "@babel/helper-environment-visitor" "^7.22.5"
502 | "@babel/helper-function-name" "^7.22.5"
503 | "@babel/helper-optimise-call-expression" "^7.22.5"
504 | "@babel/helper-plugin-utils" "^7.22.5"
505 | "@babel/helper-replace-supers" "^7.22.5"
506 | "@babel/helper-split-export-declaration" "^7.22.6"
507 | globals "^11.1.0"
508 |
509 | "@babel/plugin-transform-computed-properties@^7.22.5":
510 | version "7.22.5"
511 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
512 | integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
513 | dependencies:
514 | "@babel/helper-plugin-utils" "^7.22.5"
515 | "@babel/template" "^7.22.5"
516 |
517 | "@babel/plugin-transform-destructuring@^7.22.5":
518 | version "7.22.5"
519 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc"
520 | integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==
521 | dependencies:
522 | "@babel/helper-plugin-utils" "^7.22.5"
523 |
524 | "@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
525 | version "7.22.5"
526 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
527 | integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
528 | dependencies:
529 | "@babel/helper-create-regexp-features-plugin" "^7.22.5"
530 | "@babel/helper-plugin-utils" "^7.22.5"
531 |
532 | "@babel/plugin-transform-duplicate-keys@^7.22.5":
533 | version "7.22.5"
534 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
535 | integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
536 | dependencies:
537 | "@babel/helper-plugin-utils" "^7.22.5"
538 |
539 | "@babel/plugin-transform-dynamic-import@^7.22.5":
540 | version "7.22.5"
541 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e"
542 | integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==
543 | dependencies:
544 | "@babel/helper-plugin-utils" "^7.22.5"
545 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
546 |
547 | "@babel/plugin-transform-exponentiation-operator@^7.22.5":
548 | version "7.22.5"
549 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
550 | integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
551 | dependencies:
552 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
553 | "@babel/helper-plugin-utils" "^7.22.5"
554 |
555 | "@babel/plugin-transform-export-namespace-from@^7.22.5":
556 | version "7.22.5"
557 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b"
558 | integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==
559 | dependencies:
560 | "@babel/helper-plugin-utils" "^7.22.5"
561 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
562 |
563 | "@babel/plugin-transform-flow-strip-types@^7.12.10", "@babel/plugin-transform-flow-strip-types@^7.22.5":
564 | version "7.22.5"
565 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2"
566 | integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==
567 | dependencies:
568 | "@babel/helper-plugin-utils" "^7.22.5"
569 | "@babel/plugin-syntax-flow" "^7.22.5"
570 |
571 | "@babel/plugin-transform-for-of@^7.22.5":
572 | version "7.22.5"
573 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f"
574 | integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==
575 | dependencies:
576 | "@babel/helper-plugin-utils" "^7.22.5"
577 |
578 | "@babel/plugin-transform-function-name@^7.22.5":
579 | version "7.22.5"
580 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
581 | integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
582 | dependencies:
583 | "@babel/helper-compilation-targets" "^7.22.5"
584 | "@babel/helper-function-name" "^7.22.5"
585 | "@babel/helper-plugin-utils" "^7.22.5"
586 |
587 | "@babel/plugin-transform-json-strings@^7.22.5":
588 | version "7.22.5"
589 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0"
590 | integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==
591 | dependencies:
592 | "@babel/helper-plugin-utils" "^7.22.5"
593 | "@babel/plugin-syntax-json-strings" "^7.8.3"
594 |
595 | "@babel/plugin-transform-literals@^7.22.5":
596 | version "7.22.5"
597 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
598 | integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
599 | dependencies:
600 | "@babel/helper-plugin-utils" "^7.22.5"
601 |
602 | "@babel/plugin-transform-logical-assignment-operators@^7.22.5":
603 | version "7.22.5"
604 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c"
605 | integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==
606 | dependencies:
607 | "@babel/helper-plugin-utils" "^7.22.5"
608 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
609 |
610 | "@babel/plugin-transform-member-expression-literals@^7.22.5":
611 | version "7.22.5"
612 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
613 | integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
614 | dependencies:
615 | "@babel/helper-plugin-utils" "^7.22.5"
616 |
617 | "@babel/plugin-transform-modules-amd@^7.22.5":
618 | version "7.22.5"
619 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526"
620 | integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==
621 | dependencies:
622 | "@babel/helper-module-transforms" "^7.22.5"
623 | "@babel/helper-plugin-utils" "^7.22.5"
624 |
625 | "@babel/plugin-transform-modules-commonjs@^7.22.5":
626 | version "7.22.5"
627 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa"
628 | integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==
629 | dependencies:
630 | "@babel/helper-module-transforms" "^7.22.5"
631 | "@babel/helper-plugin-utils" "^7.22.5"
632 | "@babel/helper-simple-access" "^7.22.5"
633 |
634 | "@babel/plugin-transform-modules-systemjs@^7.22.5":
635 | version "7.22.5"
636 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496"
637 | integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==
638 | dependencies:
639 | "@babel/helper-hoist-variables" "^7.22.5"
640 | "@babel/helper-module-transforms" "^7.22.5"
641 | "@babel/helper-plugin-utils" "^7.22.5"
642 | "@babel/helper-validator-identifier" "^7.22.5"
643 |
644 | "@babel/plugin-transform-modules-umd@^7.22.5":
645 | version "7.22.5"
646 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
647 | integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
648 | dependencies:
649 | "@babel/helper-module-transforms" "^7.22.5"
650 | "@babel/helper-plugin-utils" "^7.22.5"
651 |
652 | "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
653 | version "7.22.5"
654 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f"
655 | integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==
656 | dependencies:
657 | "@babel/helper-create-regexp-features-plugin" "^7.22.5"
658 | "@babel/helper-plugin-utils" "^7.22.5"
659 |
660 | "@babel/plugin-transform-new-target@^7.22.5":
661 | version "7.22.5"
662 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
663 | integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
664 | dependencies:
665 | "@babel/helper-plugin-utils" "^7.22.5"
666 |
667 | "@babel/plugin-transform-nullish-coalescing-operator@^7.22.5":
668 | version "7.22.5"
669 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381"
670 | integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==
671 | dependencies:
672 | "@babel/helper-plugin-utils" "^7.22.5"
673 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
674 |
675 | "@babel/plugin-transform-numeric-separator@^7.22.5":
676 | version "7.22.5"
677 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58"
678 | integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==
679 | dependencies:
680 | "@babel/helper-plugin-utils" "^7.22.5"
681 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
682 |
683 | "@babel/plugin-transform-object-rest-spread@^7.22.5":
684 | version "7.22.5"
685 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1"
686 | integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==
687 | dependencies:
688 | "@babel/compat-data" "^7.22.5"
689 | "@babel/helper-compilation-targets" "^7.22.5"
690 | "@babel/helper-plugin-utils" "^7.22.5"
691 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
692 | "@babel/plugin-transform-parameters" "^7.22.5"
693 |
694 | "@babel/plugin-transform-object-super@^7.22.5":
695 | version "7.22.5"
696 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
697 | integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
698 | dependencies:
699 | "@babel/helper-plugin-utils" "^7.22.5"
700 | "@babel/helper-replace-supers" "^7.22.5"
701 |
702 | "@babel/plugin-transform-optional-catch-binding@^7.22.5":
703 | version "7.22.5"
704 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333"
705 | integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==
706 | dependencies:
707 | "@babel/helper-plugin-utils" "^7.22.5"
708 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
709 |
710 | "@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6":
711 | version "7.22.6"
712 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564"
713 | integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==
714 | dependencies:
715 | "@babel/helper-plugin-utils" "^7.22.5"
716 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
717 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
718 |
719 | "@babel/plugin-transform-parameters@^7.22.5":
720 | version "7.22.5"
721 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18"
722 | integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==
723 | dependencies:
724 | "@babel/helper-plugin-utils" "^7.22.5"
725 |
726 | "@babel/plugin-transform-private-methods@^7.22.5":
727 | version "7.22.5"
728 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722"
729 | integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==
730 | dependencies:
731 | "@babel/helper-create-class-features-plugin" "^7.22.5"
732 | "@babel/helper-plugin-utils" "^7.22.5"
733 |
734 | "@babel/plugin-transform-private-property-in-object@^7.22.5":
735 | version "7.22.5"
736 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32"
737 | integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==
738 | dependencies:
739 | "@babel/helper-annotate-as-pure" "^7.22.5"
740 | "@babel/helper-create-class-features-plugin" "^7.22.5"
741 | "@babel/helper-plugin-utils" "^7.22.5"
742 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
743 |
744 | "@babel/plugin-transform-property-literals@^7.22.5":
745 | version "7.22.5"
746 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
747 | integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
748 | dependencies:
749 | "@babel/helper-plugin-utils" "^7.22.5"
750 |
751 | "@babel/plugin-transform-react-display-name@^7.22.5":
752 | version "7.22.5"
753 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b"
754 | integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==
755 | dependencies:
756 | "@babel/helper-plugin-utils" "^7.22.5"
757 |
758 | "@babel/plugin-transform-react-jsx-development@^7.22.5":
759 | version "7.22.5"
760 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87"
761 | integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==
762 | dependencies:
763 | "@babel/plugin-transform-react-jsx" "^7.22.5"
764 |
765 | "@babel/plugin-transform-react-jsx@^7.12.11", "@babel/plugin-transform-react-jsx@^7.22.5":
766 | version "7.22.5"
767 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz#932c291eb6dd1153359e2a90cb5e557dcf068416"
768 | integrity sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==
769 | dependencies:
770 | "@babel/helper-annotate-as-pure" "^7.22.5"
771 | "@babel/helper-module-imports" "^7.22.5"
772 | "@babel/helper-plugin-utils" "^7.22.5"
773 | "@babel/plugin-syntax-jsx" "^7.22.5"
774 | "@babel/types" "^7.22.5"
775 |
776 | "@babel/plugin-transform-react-pure-annotations@^7.22.5":
777 | version "7.22.5"
778 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0"
779 | integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==
780 | dependencies:
781 | "@babel/helper-annotate-as-pure" "^7.22.5"
782 | "@babel/helper-plugin-utils" "^7.22.5"
783 |
784 | "@babel/plugin-transform-regenerator@^7.12.1", "@babel/plugin-transform-regenerator@^7.22.5":
785 | version "7.22.5"
786 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa"
787 | integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==
788 | dependencies:
789 | "@babel/helper-plugin-utils" "^7.22.5"
790 | regenerator-transform "^0.15.1"
791 |
792 | "@babel/plugin-transform-reserved-words@^7.22.5":
793 | version "7.22.5"
794 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
795 | integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
796 | dependencies:
797 | "@babel/helper-plugin-utils" "^7.22.5"
798 |
799 | "@babel/plugin-transform-shorthand-properties@^7.22.5":
800 | version "7.22.5"
801 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
802 | integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
803 | dependencies:
804 | "@babel/helper-plugin-utils" "^7.22.5"
805 |
806 | "@babel/plugin-transform-spread@^7.22.5":
807 | version "7.22.5"
808 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
809 | integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
810 | dependencies:
811 | "@babel/helper-plugin-utils" "^7.22.5"
812 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
813 |
814 | "@babel/plugin-transform-sticky-regex@^7.22.5":
815 | version "7.22.5"
816 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
817 | integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
818 | dependencies:
819 | "@babel/helper-plugin-utils" "^7.22.5"
820 |
821 | "@babel/plugin-transform-template-literals@^7.22.5":
822 | version "7.22.5"
823 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
824 | integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
825 | dependencies:
826 | "@babel/helper-plugin-utils" "^7.22.5"
827 |
828 | "@babel/plugin-transform-typeof-symbol@^7.22.5":
829 | version "7.22.5"
830 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
831 | integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
832 | dependencies:
833 | "@babel/helper-plugin-utils" "^7.22.5"
834 |
835 | "@babel/plugin-transform-unicode-escapes@^7.22.5":
836 | version "7.22.5"
837 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c"
838 | integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==
839 | dependencies:
840 | "@babel/helper-plugin-utils" "^7.22.5"
841 |
842 | "@babel/plugin-transform-unicode-property-regex@^7.22.5":
843 | version "7.22.5"
844 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81"
845 | integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==
846 | dependencies:
847 | "@babel/helper-create-regexp-features-plugin" "^7.22.5"
848 | "@babel/helper-plugin-utils" "^7.22.5"
849 |
850 | "@babel/plugin-transform-unicode-regex@^7.22.5":
851 | version "7.22.5"
852 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
853 | integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
854 | dependencies:
855 | "@babel/helper-create-regexp-features-plugin" "^7.22.5"
856 | "@babel/helper-plugin-utils" "^7.22.5"
857 |
858 | "@babel/plugin-transform-unicode-sets-regex@^7.22.5":
859 | version "7.22.5"
860 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91"
861 | integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==
862 | dependencies:
863 | "@babel/helper-create-regexp-features-plugin" "^7.22.5"
864 | "@babel/helper-plugin-utils" "^7.22.5"
865 |
866 | "@babel/preset-env@^7.12.11":
867 | version "7.22.9"
868 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.9.tgz#57f17108eb5dfd4c5c25a44c1977eba1df310ac7"
869 | integrity sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==
870 | dependencies:
871 | "@babel/compat-data" "^7.22.9"
872 | "@babel/helper-compilation-targets" "^7.22.9"
873 | "@babel/helper-plugin-utils" "^7.22.5"
874 | "@babel/helper-validator-option" "^7.22.5"
875 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5"
876 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5"
877 | "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
878 | "@babel/plugin-syntax-async-generators" "^7.8.4"
879 | "@babel/plugin-syntax-class-properties" "^7.12.13"
880 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
881 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
882 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
883 | "@babel/plugin-syntax-import-assertions" "^7.22.5"
884 | "@babel/plugin-syntax-import-attributes" "^7.22.5"
885 | "@babel/plugin-syntax-import-meta" "^7.10.4"
886 | "@babel/plugin-syntax-json-strings" "^7.8.3"
887 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
888 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
889 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
890 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
891 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
892 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
893 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
894 | "@babel/plugin-syntax-top-level-await" "^7.14.5"
895 | "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
896 | "@babel/plugin-transform-arrow-functions" "^7.22.5"
897 | "@babel/plugin-transform-async-generator-functions" "^7.22.7"
898 | "@babel/plugin-transform-async-to-generator" "^7.22.5"
899 | "@babel/plugin-transform-block-scoped-functions" "^7.22.5"
900 | "@babel/plugin-transform-block-scoping" "^7.22.5"
901 | "@babel/plugin-transform-class-properties" "^7.22.5"
902 | "@babel/plugin-transform-class-static-block" "^7.22.5"
903 | "@babel/plugin-transform-classes" "^7.22.6"
904 | "@babel/plugin-transform-computed-properties" "^7.22.5"
905 | "@babel/plugin-transform-destructuring" "^7.22.5"
906 | "@babel/plugin-transform-dotall-regex" "^7.22.5"
907 | "@babel/plugin-transform-duplicate-keys" "^7.22.5"
908 | "@babel/plugin-transform-dynamic-import" "^7.22.5"
909 | "@babel/plugin-transform-exponentiation-operator" "^7.22.5"
910 | "@babel/plugin-transform-export-namespace-from" "^7.22.5"
911 | "@babel/plugin-transform-for-of" "^7.22.5"
912 | "@babel/plugin-transform-function-name" "^7.22.5"
913 | "@babel/plugin-transform-json-strings" "^7.22.5"
914 | "@babel/plugin-transform-literals" "^7.22.5"
915 | "@babel/plugin-transform-logical-assignment-operators" "^7.22.5"
916 | "@babel/plugin-transform-member-expression-literals" "^7.22.5"
917 | "@babel/plugin-transform-modules-amd" "^7.22.5"
918 | "@babel/plugin-transform-modules-commonjs" "^7.22.5"
919 | "@babel/plugin-transform-modules-systemjs" "^7.22.5"
920 | "@babel/plugin-transform-modules-umd" "^7.22.5"
921 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5"
922 | "@babel/plugin-transform-new-target" "^7.22.5"
923 | "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5"
924 | "@babel/plugin-transform-numeric-separator" "^7.22.5"
925 | "@babel/plugin-transform-object-rest-spread" "^7.22.5"
926 | "@babel/plugin-transform-object-super" "^7.22.5"
927 | "@babel/plugin-transform-optional-catch-binding" "^7.22.5"
928 | "@babel/plugin-transform-optional-chaining" "^7.22.6"
929 | "@babel/plugin-transform-parameters" "^7.22.5"
930 | "@babel/plugin-transform-private-methods" "^7.22.5"
931 | "@babel/plugin-transform-private-property-in-object" "^7.22.5"
932 | "@babel/plugin-transform-property-literals" "^7.22.5"
933 | "@babel/plugin-transform-regenerator" "^7.22.5"
934 | "@babel/plugin-transform-reserved-words" "^7.22.5"
935 | "@babel/plugin-transform-shorthand-properties" "^7.22.5"
936 | "@babel/plugin-transform-spread" "^7.22.5"
937 | "@babel/plugin-transform-sticky-regex" "^7.22.5"
938 | "@babel/plugin-transform-template-literals" "^7.22.5"
939 | "@babel/plugin-transform-typeof-symbol" "^7.22.5"
940 | "@babel/plugin-transform-unicode-escapes" "^7.22.5"
941 | "@babel/plugin-transform-unicode-property-regex" "^7.22.5"
942 | "@babel/plugin-transform-unicode-regex" "^7.22.5"
943 | "@babel/plugin-transform-unicode-sets-regex" "^7.22.5"
944 | "@babel/preset-modules" "^0.1.5"
945 | "@babel/types" "^7.22.5"
946 | babel-plugin-polyfill-corejs2 "^0.4.4"
947 | babel-plugin-polyfill-corejs3 "^0.8.2"
948 | babel-plugin-polyfill-regenerator "^0.5.1"
949 | core-js-compat "^3.31.0"
950 | semver "^6.3.1"
951 |
952 | "@babel/preset-flow@^7.12.1":
953 | version "7.22.5"
954 | resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.22.5.tgz#876f24ab6b38bd79703a93f32020ca2162312784"
955 | integrity sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==
956 | dependencies:
957 | "@babel/helper-plugin-utils" "^7.22.5"
958 | "@babel/helper-validator-option" "^7.22.5"
959 | "@babel/plugin-transform-flow-strip-types" "^7.22.5"
960 |
961 | "@babel/preset-modules@^0.1.5":
962 | version "0.1.6"
963 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458"
964 | integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==
965 | dependencies:
966 | "@babel/helper-plugin-utils" "^7.0.0"
967 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
968 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
969 | "@babel/types" "^7.4.4"
970 | esutils "^2.0.2"
971 |
972 | "@babel/preset-react@^7.12.10":
973 | version "7.22.5"
974 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.5.tgz#c4d6058fbf80bccad02dd8c313a9aaa67e3c3dd6"
975 | integrity sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==
976 | dependencies:
977 | "@babel/helper-plugin-utils" "^7.22.5"
978 | "@babel/helper-validator-option" "^7.22.5"
979 | "@babel/plugin-transform-react-display-name" "^7.22.5"
980 | "@babel/plugin-transform-react-jsx" "^7.22.5"
981 | "@babel/plugin-transform-react-jsx-development" "^7.22.5"
982 | "@babel/plugin-transform-react-pure-annotations" "^7.22.5"
983 |
984 | "@babel/regjsgen@^0.8.0":
985 | version "0.8.0"
986 | resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
987 | integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
988 |
989 | "@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4":
990 | version "7.22.6"
991 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438"
992 | integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
993 | dependencies:
994 | regenerator-runtime "^0.13.11"
995 |
996 | "@babel/template@^7.22.5":
997 | version "7.22.5"
998 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec"
999 | integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
1000 | dependencies:
1001 | "@babel/code-frame" "^7.22.5"
1002 | "@babel/parser" "^7.22.5"
1003 | "@babel/types" "^7.22.5"
1004 |
1005 | "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8":
1006 | version "7.22.8"
1007 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e"
1008 | integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==
1009 | dependencies:
1010 | "@babel/code-frame" "^7.22.5"
1011 | "@babel/generator" "^7.22.7"
1012 | "@babel/helper-environment-visitor" "^7.22.5"
1013 | "@babel/helper-function-name" "^7.22.5"
1014 | "@babel/helper-hoist-variables" "^7.22.5"
1015 | "@babel/helper-split-export-declaration" "^7.22.6"
1016 | "@babel/parser" "^7.22.7"
1017 | "@babel/types" "^7.22.5"
1018 | debug "^4.1.0"
1019 | globals "^11.1.0"
1020 |
1021 | "@babel/types@^7.22.5", "@babel/types@^7.4.4":
1022 | version "7.22.5"
1023 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe"
1024 | integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==
1025 | dependencies:
1026 | "@babel/helper-string-parser" "^7.22.5"
1027 | "@babel/helper-validator-identifier" "^7.22.5"
1028 | to-fast-properties "^2.0.0"
1029 |
1030 | "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
1031 | version "0.3.3"
1032 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
1033 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
1034 | dependencies:
1035 | "@jridgewell/set-array" "^1.0.1"
1036 | "@jridgewell/sourcemap-codec" "^1.4.10"
1037 | "@jridgewell/trace-mapping" "^0.3.9"
1038 |
1039 | "@jridgewell/resolve-uri@3.1.0":
1040 | version "3.1.0"
1041 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
1042 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
1043 |
1044 | "@jridgewell/set-array@^1.0.1":
1045 | version "1.1.2"
1046 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
1047 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
1048 |
1049 | "@jridgewell/source-map@^0.3.3":
1050 | version "0.3.5"
1051 | resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91"
1052 | integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==
1053 | dependencies:
1054 | "@jridgewell/gen-mapping" "^0.3.0"
1055 | "@jridgewell/trace-mapping" "^0.3.9"
1056 |
1057 | "@jridgewell/sourcemap-codec@1.4.14":
1058 | version "1.4.14"
1059 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
1060 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
1061 |
1062 | "@jridgewell/sourcemap-codec@^1.4.10":
1063 | version "1.4.15"
1064 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
1065 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
1066 |
1067 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
1068 | version "0.3.18"
1069 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
1070 | integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
1071 | dependencies:
1072 | "@jridgewell/resolve-uri" "3.1.0"
1073 | "@jridgewell/sourcemap-codec" "1.4.14"
1074 |
1075 | "@rollup/plugin-alias@^3.1.1":
1076 | version "3.1.9"
1077 | resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-3.1.9.tgz#a5d267548fe48441f34be8323fb64d1d4a1b3fdf"
1078 | integrity sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==
1079 | dependencies:
1080 | slash "^3.0.0"
1081 |
1082 | "@rollup/plugin-babel@^5.2.2":
1083 | version "5.3.1"
1084 | resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
1085 | integrity sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==
1086 | dependencies:
1087 | "@babel/helper-module-imports" "^7.10.4"
1088 | "@rollup/pluginutils" "^3.1.0"
1089 |
1090 | "@rollup/plugin-commonjs@^17.0.0":
1091 | version "17.1.0"
1092 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-17.1.0.tgz#757ec88737dffa8aa913eb392fade2e45aef2a2d"
1093 | integrity sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==
1094 | dependencies:
1095 | "@rollup/pluginutils" "^3.1.0"
1096 | commondir "^1.0.1"
1097 | estree-walker "^2.0.1"
1098 | glob "^7.1.6"
1099 | is-reference "^1.2.1"
1100 | magic-string "^0.25.7"
1101 | resolve "^1.17.0"
1102 |
1103 | "@rollup/plugin-json@^4.1.0":
1104 | version "4.1.0"
1105 | resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3"
1106 | integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==
1107 | dependencies:
1108 | "@rollup/pluginutils" "^3.0.8"
1109 |
1110 | "@rollup/plugin-node-resolve@^11.0.1":
1111 | version "11.2.1"
1112 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60"
1113 | integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==
1114 | dependencies:
1115 | "@rollup/pluginutils" "^3.1.0"
1116 | "@types/resolve" "1.17.1"
1117 | builtin-modules "^3.1.0"
1118 | deepmerge "^4.2.2"
1119 | is-module "^1.0.0"
1120 | resolve "^1.19.0"
1121 |
1122 | "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
1123 | version "3.1.0"
1124 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
1125 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
1126 | dependencies:
1127 | "@types/estree" "0.0.39"
1128 | estree-walker "^1.0.1"
1129 | picomatch "^2.2.2"
1130 |
1131 | "@rollup/pluginutils@^4.1.2":
1132 | version "4.2.1"
1133 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d"
1134 | integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
1135 | dependencies:
1136 | estree-walker "^2.0.1"
1137 | picomatch "^2.2.2"
1138 |
1139 | "@surma/rollup-plugin-off-main-thread@^2.2.2":
1140 | version "2.2.3"
1141 | resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053"
1142 | integrity sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==
1143 | dependencies:
1144 | ejs "^3.1.6"
1145 | json5 "^2.2.0"
1146 | magic-string "^0.25.0"
1147 | string.prototype.matchall "^4.0.6"
1148 |
1149 | "@trysound/sax@0.2.0":
1150 | version "0.2.0"
1151 | resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
1152 | integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
1153 |
1154 | "@types/estree@*":
1155 | version "1.0.1"
1156 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194"
1157 | integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==
1158 |
1159 | "@types/estree@0.0.39":
1160 | version "0.0.39"
1161 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
1162 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
1163 |
1164 | "@types/node@*":
1165 | version "20.4.5"
1166 | resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.5.tgz#9dc0a5cb1ccce4f7a731660935ab70b9c00a5d69"
1167 | integrity sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==
1168 |
1169 | "@types/parse-json@^4.0.0":
1170 | version "4.0.0"
1171 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
1172 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
1173 |
1174 | "@types/resolve@1.17.1":
1175 | version "1.17.1"
1176 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
1177 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==
1178 | dependencies:
1179 | "@types/node" "*"
1180 |
1181 | acorn@^8.8.2:
1182 | version "8.10.0"
1183 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
1184 | integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
1185 |
1186 | ansi-regex@^2.0.0:
1187 | version "2.1.1"
1188 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
1189 | integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
1190 |
1191 | ansi-regex@^5.0.1:
1192 | version "5.0.1"
1193 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
1194 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
1195 |
1196 | ansi-styles@^2.2.1:
1197 | version "2.2.1"
1198 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
1199 | integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==
1200 |
1201 | ansi-styles@^3.2.1:
1202 | version "3.2.1"
1203 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
1204 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
1205 | dependencies:
1206 | color-convert "^1.9.0"
1207 |
1208 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1209 | version "4.3.0"
1210 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
1211 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
1212 | dependencies:
1213 | color-convert "^2.0.1"
1214 |
1215 | array-buffer-byte-length@^1.0.0:
1216 | version "1.0.0"
1217 | resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
1218 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
1219 | dependencies:
1220 | call-bind "^1.0.2"
1221 | is-array-buffer "^3.0.1"
1222 |
1223 | arraybuffer.prototype.slice@^1.0.1:
1224 | version "1.0.1"
1225 | resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb"
1226 | integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==
1227 | dependencies:
1228 | array-buffer-byte-length "^1.0.0"
1229 | call-bind "^1.0.2"
1230 | define-properties "^1.2.0"
1231 | get-intrinsic "^1.2.1"
1232 | is-array-buffer "^3.0.2"
1233 | is-shared-array-buffer "^1.0.2"
1234 |
1235 | async@^3.2.3:
1236 | version "3.2.4"
1237 | resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
1238 | integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==
1239 |
1240 | asyncro@^3.0.0:
1241 | version "3.0.0"
1242 | resolved "https://registry.yarnpkg.com/asyncro/-/asyncro-3.0.0.tgz#3c7a732e263bc4a42499042f48d7d858e9c0134e"
1243 | integrity sha512-nEnWYfrBmA3taTiuiOoZYmgJ/CNrSoQLeLs29SeLcPu60yaw/mHDBHV0iOZ051fTvsTHxpCY+gXibqT9wbQYfg==
1244 |
1245 | autoprefixer@^10.1.0:
1246 | version "10.4.14"
1247 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d"
1248 | integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==
1249 | dependencies:
1250 | browserslist "^4.21.5"
1251 | caniuse-lite "^1.0.30001464"
1252 | fraction.js "^4.2.0"
1253 | normalize-range "^0.1.2"
1254 | picocolors "^1.0.0"
1255 | postcss-value-parser "^4.2.0"
1256 |
1257 | available-typed-arrays@^1.0.5:
1258 | version "1.0.5"
1259 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
1260 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
1261 |
1262 | babel-plugin-macros@^3.0.1:
1263 | version "3.1.0"
1264 | resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
1265 | integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
1266 | dependencies:
1267 | "@babel/runtime" "^7.12.5"
1268 | cosmiconfig "^7.0.0"
1269 | resolve "^1.19.0"
1270 |
1271 | babel-plugin-polyfill-corejs2@^0.4.4:
1272 | version "0.4.5"
1273 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c"
1274 | integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==
1275 | dependencies:
1276 | "@babel/compat-data" "^7.22.6"
1277 | "@babel/helper-define-polyfill-provider" "^0.4.2"
1278 | semver "^6.3.1"
1279 |
1280 | babel-plugin-polyfill-corejs3@^0.8.2:
1281 | version "0.8.3"
1282 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52"
1283 | integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==
1284 | dependencies:
1285 | "@babel/helper-define-polyfill-provider" "^0.4.2"
1286 | core-js-compat "^3.31.0"
1287 |
1288 | babel-plugin-polyfill-regenerator@^0.5.1:
1289 | version "0.5.2"
1290 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326"
1291 | integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==
1292 | dependencies:
1293 | "@babel/helper-define-polyfill-provider" "^0.4.2"
1294 |
1295 | babel-plugin-transform-async-to-promises@^0.8.18:
1296 | version "0.8.18"
1297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-promises/-/babel-plugin-transform-async-to-promises-0.8.18.tgz#f4dc5980b8afa0fc9c784b8d931afde913413e39"
1298 | integrity sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==
1299 |
1300 | babel-plugin-transform-replace-expressions@^0.2.0:
1301 | version "0.2.0"
1302 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-replace-expressions/-/babel-plugin-transform-replace-expressions-0.2.0.tgz#59cba8df4b4a675e7c78cd21548f8e7685bbc30d"
1303 | integrity sha512-Eh1rRd9hWEYgkgoA3D0kGp7xJ/wgVshgsqmq60iC4HVWD+Lux+fNHSHBa2v1Hsv+dHflShC71qKhiH40OiPtDA==
1304 | dependencies:
1305 | "@babel/parser" "^7.3.3"
1306 |
1307 | balanced-match@^1.0.0:
1308 | version "1.0.2"
1309 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1310 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1311 |
1312 | boolbase@^1.0.0:
1313 | version "1.0.0"
1314 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
1315 | integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
1316 |
1317 | brace-expansion@^1.1.7:
1318 | version "1.1.11"
1319 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1320 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1321 | dependencies:
1322 | balanced-match "^1.0.0"
1323 | concat-map "0.0.1"
1324 |
1325 | brace-expansion@^2.0.1:
1326 | version "2.0.1"
1327 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
1328 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
1329 | dependencies:
1330 | balanced-match "^1.0.0"
1331 |
1332 | brotli-size@^4.0.0:
1333 | version "4.0.0"
1334 | resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-4.0.0.tgz#a05ee3faad3c0e700a2f2da826ba6b4d76e69e5e"
1335 | integrity sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==
1336 | dependencies:
1337 | duplexer "0.1.1"
1338 |
1339 | browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9:
1340 | version "4.21.10"
1341 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0"
1342 | integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==
1343 | dependencies:
1344 | caniuse-lite "^1.0.30001517"
1345 | electron-to-chromium "^1.4.477"
1346 | node-releases "^2.0.13"
1347 | update-browserslist-db "^1.0.11"
1348 |
1349 | buffer-from@^1.0.0:
1350 | version "1.1.2"
1351 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
1352 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
1353 |
1354 | builtin-modules@^3.1.0:
1355 | version "3.3.0"
1356 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
1357 | integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
1358 |
1359 | call-bind@^1.0.0, call-bind@^1.0.2:
1360 | version "1.0.2"
1361 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
1362 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
1363 | dependencies:
1364 | function-bind "^1.1.1"
1365 | get-intrinsic "^1.0.2"
1366 |
1367 | callsites@^3.0.0:
1368 | version "3.1.0"
1369 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1370 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1371 |
1372 | camelcase@^6.2.0:
1373 | version "6.3.0"
1374 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
1375 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
1376 |
1377 | caniuse-api@^3.0.0:
1378 | version "3.0.0"
1379 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
1380 | integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
1381 | dependencies:
1382 | browserslist "^4.0.0"
1383 | caniuse-lite "^1.0.0"
1384 | lodash.memoize "^4.1.2"
1385 | lodash.uniq "^4.5.0"
1386 |
1387 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001517:
1388 | version "1.0.30001518"
1389 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001518.tgz#b3ca93904cb4699c01218246c4d77a71dbe97150"
1390 | integrity sha512-rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA==
1391 |
1392 | chalk@^1.0.0, chalk@^1.1.3:
1393 | version "1.1.3"
1394 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1395 | integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==
1396 | dependencies:
1397 | ansi-styles "^2.2.1"
1398 | escape-string-regexp "^1.0.2"
1399 | has-ansi "^2.0.0"
1400 | strip-ansi "^3.0.0"
1401 | supports-color "^2.0.0"
1402 |
1403 | chalk@^2.0.0:
1404 | version "2.4.2"
1405 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1406 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1407 | dependencies:
1408 | ansi-styles "^3.2.1"
1409 | escape-string-regexp "^1.0.5"
1410 | supports-color "^5.3.0"
1411 |
1412 | chalk@^4.0.2, chalk@^4.1.0:
1413 | version "4.1.2"
1414 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
1415 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
1416 | dependencies:
1417 | ansi-styles "^4.1.0"
1418 | supports-color "^7.1.0"
1419 |
1420 | cliui@^8.0.1:
1421 | version "8.0.1"
1422 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
1423 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
1424 | dependencies:
1425 | string-width "^4.2.0"
1426 | strip-ansi "^6.0.1"
1427 | wrap-ansi "^7.0.0"
1428 |
1429 | color-convert@^1.9.0:
1430 | version "1.9.3"
1431 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1432 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1433 | dependencies:
1434 | color-name "1.1.3"
1435 |
1436 | color-convert@^2.0.1:
1437 | version "2.0.1"
1438 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
1439 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
1440 | dependencies:
1441 | color-name "~1.1.4"
1442 |
1443 | color-name@1.1.3:
1444 | version "1.1.3"
1445 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1446 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
1447 |
1448 | color-name@~1.1.4:
1449 | version "1.1.4"
1450 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1451 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1452 |
1453 | colord@^2.9.1:
1454 | version "2.9.3"
1455 | resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
1456 | integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
1457 |
1458 | commander@^2.20.0:
1459 | version "2.20.3"
1460 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
1461 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
1462 |
1463 | commander@^7.2.0:
1464 | version "7.2.0"
1465 | resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
1466 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
1467 |
1468 | commondir@^1.0.1:
1469 | version "1.0.1"
1470 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1471 | integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
1472 |
1473 | concat-map@0.0.1:
1474 | version "0.0.1"
1475 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1476 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1477 |
1478 | concat-with-sourcemaps@^1.1.0:
1479 | version "1.1.0"
1480 | resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e"
1481 | integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==
1482 | dependencies:
1483 | source-map "^0.6.1"
1484 |
1485 | convert-source-map@^1.7.0:
1486 | version "1.9.0"
1487 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
1488 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
1489 |
1490 | core-js-compat@^3.31.0:
1491 | version "3.32.0"
1492 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.0.tgz#f41574b6893ab15ddb0ac1693681bd56c8550a90"
1493 | integrity sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==
1494 | dependencies:
1495 | browserslist "^4.21.9"
1496 |
1497 | cosmiconfig@^7.0.0:
1498 | version "7.1.0"
1499 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
1500 | integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
1501 | dependencies:
1502 | "@types/parse-json" "^4.0.0"
1503 | import-fresh "^3.2.1"
1504 | parse-json "^5.0.0"
1505 | path-type "^4.0.0"
1506 | yaml "^1.10.0"
1507 |
1508 | css-declaration-sorter@^6.3.1:
1509 | version "6.4.1"
1510 | resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71"
1511 | integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==
1512 |
1513 | css-select@^4.1.3:
1514 | version "4.3.0"
1515 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b"
1516 | integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==
1517 | dependencies:
1518 | boolbase "^1.0.0"
1519 | css-what "^6.0.1"
1520 | domhandler "^4.3.1"
1521 | domutils "^2.8.0"
1522 | nth-check "^2.0.1"
1523 |
1524 | css-tree@^1.1.2, css-tree@^1.1.3:
1525 | version "1.1.3"
1526 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
1527 | integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
1528 | dependencies:
1529 | mdn-data "2.0.14"
1530 | source-map "^0.6.1"
1531 |
1532 | css-what@^6.0.1:
1533 | version "6.1.0"
1534 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
1535 | integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
1536 |
1537 | cssesc@^3.0.0:
1538 | version "3.0.0"
1539 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
1540 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
1541 |
1542 | cssnano-preset-default@^5.2.14:
1543 | version "5.2.14"
1544 | resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
1545 | integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
1546 | dependencies:
1547 | css-declaration-sorter "^6.3.1"
1548 | cssnano-utils "^3.1.0"
1549 | postcss-calc "^8.2.3"
1550 | postcss-colormin "^5.3.1"
1551 | postcss-convert-values "^5.1.3"
1552 | postcss-discard-comments "^5.1.2"
1553 | postcss-discard-duplicates "^5.1.0"
1554 | postcss-discard-empty "^5.1.1"
1555 | postcss-discard-overridden "^5.1.0"
1556 | postcss-merge-longhand "^5.1.7"
1557 | postcss-merge-rules "^5.1.4"
1558 | postcss-minify-font-values "^5.1.0"
1559 | postcss-minify-gradients "^5.1.1"
1560 | postcss-minify-params "^5.1.4"
1561 | postcss-minify-selectors "^5.2.1"
1562 | postcss-normalize-charset "^5.1.0"
1563 | postcss-normalize-display-values "^5.1.0"
1564 | postcss-normalize-positions "^5.1.1"
1565 | postcss-normalize-repeat-style "^5.1.1"
1566 | postcss-normalize-string "^5.1.0"
1567 | postcss-normalize-timing-functions "^5.1.0"
1568 | postcss-normalize-unicode "^5.1.1"
1569 | postcss-normalize-url "^5.1.0"
1570 | postcss-normalize-whitespace "^5.1.1"
1571 | postcss-ordered-values "^5.1.3"
1572 | postcss-reduce-initial "^5.1.2"
1573 | postcss-reduce-transforms "^5.1.0"
1574 | postcss-svgo "^5.1.0"
1575 | postcss-unique-selectors "^5.1.1"
1576 |
1577 | cssnano-utils@^3.1.0:
1578 | version "3.1.0"
1579 | resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861"
1580 | integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
1581 |
1582 | cssnano@^5.0.1:
1583 | version "5.1.15"
1584 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
1585 | integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
1586 | dependencies:
1587 | cssnano-preset-default "^5.2.14"
1588 | lilconfig "^2.0.3"
1589 | yaml "^1.10.2"
1590 |
1591 | csso@^4.2.0:
1592 | version "4.2.0"
1593 | resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
1594 | integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
1595 | dependencies:
1596 | css-tree "^1.1.2"
1597 |
1598 | debug@^4.1.0, debug@^4.1.1:
1599 | version "4.3.4"
1600 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
1601 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
1602 | dependencies:
1603 | ms "2.1.2"
1604 |
1605 | deepmerge@^4.2.2:
1606 | version "4.3.1"
1607 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
1608 | integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
1609 |
1610 | define-lazy-prop@^2.0.0:
1611 | version "2.0.0"
1612 | resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
1613 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
1614 |
1615 | define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0:
1616 | version "1.2.0"
1617 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
1618 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==
1619 | dependencies:
1620 | has-property-descriptors "^1.0.0"
1621 | object-keys "^1.1.1"
1622 |
1623 | dom-serializer@^1.0.1:
1624 | version "1.4.1"
1625 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30"
1626 | integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==
1627 | dependencies:
1628 | domelementtype "^2.0.1"
1629 | domhandler "^4.2.0"
1630 | entities "^2.0.0"
1631 |
1632 | domelementtype@^2.0.1, domelementtype@^2.2.0:
1633 | version "2.3.0"
1634 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
1635 | integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
1636 |
1637 | domhandler@^4.2.0, domhandler@^4.3.1:
1638 | version "4.3.1"
1639 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c"
1640 | integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==
1641 | dependencies:
1642 | domelementtype "^2.2.0"
1643 |
1644 | domutils@^2.8.0:
1645 | version "2.8.0"
1646 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
1647 | integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
1648 | dependencies:
1649 | dom-serializer "^1.0.1"
1650 | domelementtype "^2.2.0"
1651 | domhandler "^4.2.0"
1652 |
1653 | duplexer@0.1.1:
1654 | version "0.1.1"
1655 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
1656 | integrity sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==
1657 |
1658 | duplexer@^0.1.1, duplexer@^0.1.2:
1659 | version "0.1.2"
1660 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
1661 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
1662 |
1663 | ejs@^3.1.6:
1664 | version "3.1.9"
1665 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361"
1666 | integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==
1667 | dependencies:
1668 | jake "^10.8.5"
1669 |
1670 | electron-to-chromium@^1.4.477:
1671 | version "1.4.480"
1672 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.480.tgz#40e32849ca50bc23ce29c1516c5adb3fddac919d"
1673 | integrity sha512-IXTgg+bITkQv/FLP9FjX6f9KFCs5hQWeh5uNSKxB9mqYj/JXhHDbu+ekS43LVvbkL3eW6/oZy4+r9Om6lan1Uw==
1674 |
1675 | emoji-regex@^8.0.0:
1676 | version "8.0.0"
1677 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
1678 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
1679 |
1680 | entities@^2.0.0:
1681 | version "2.2.0"
1682 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
1683 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
1684 |
1685 | error-ex@^1.3.1:
1686 | version "1.3.2"
1687 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1688 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
1689 | dependencies:
1690 | is-arrayish "^0.2.1"
1691 |
1692 | es-abstract@^1.19.0, es-abstract@^1.20.4:
1693 | version "1.22.1"
1694 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc"
1695 | integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==
1696 | dependencies:
1697 | array-buffer-byte-length "^1.0.0"
1698 | arraybuffer.prototype.slice "^1.0.1"
1699 | available-typed-arrays "^1.0.5"
1700 | call-bind "^1.0.2"
1701 | es-set-tostringtag "^2.0.1"
1702 | es-to-primitive "^1.2.1"
1703 | function.prototype.name "^1.1.5"
1704 | get-intrinsic "^1.2.1"
1705 | get-symbol-description "^1.0.0"
1706 | globalthis "^1.0.3"
1707 | gopd "^1.0.1"
1708 | has "^1.0.3"
1709 | has-property-descriptors "^1.0.0"
1710 | has-proto "^1.0.1"
1711 | has-symbols "^1.0.3"
1712 | internal-slot "^1.0.5"
1713 | is-array-buffer "^3.0.2"
1714 | is-callable "^1.2.7"
1715 | is-negative-zero "^2.0.2"
1716 | is-regex "^1.1.4"
1717 | is-shared-array-buffer "^1.0.2"
1718 | is-string "^1.0.7"
1719 | is-typed-array "^1.1.10"
1720 | is-weakref "^1.0.2"
1721 | object-inspect "^1.12.3"
1722 | object-keys "^1.1.1"
1723 | object.assign "^4.1.4"
1724 | regexp.prototype.flags "^1.5.0"
1725 | safe-array-concat "^1.0.0"
1726 | safe-regex-test "^1.0.0"
1727 | string.prototype.trim "^1.2.7"
1728 | string.prototype.trimend "^1.0.6"
1729 | string.prototype.trimstart "^1.0.6"
1730 | typed-array-buffer "^1.0.0"
1731 | typed-array-byte-length "^1.0.0"
1732 | typed-array-byte-offset "^1.0.0"
1733 | typed-array-length "^1.0.4"
1734 | unbox-primitive "^1.0.2"
1735 | which-typed-array "^1.1.10"
1736 |
1737 | es-set-tostringtag@^2.0.1:
1738 | version "2.0.1"
1739 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
1740 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
1741 | dependencies:
1742 | get-intrinsic "^1.1.3"
1743 | has "^1.0.3"
1744 | has-tostringtag "^1.0.0"
1745 |
1746 | es-to-primitive@^1.2.1:
1747 | version "1.2.1"
1748 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
1749 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
1750 | dependencies:
1751 | is-callable "^1.1.4"
1752 | is-date-object "^1.0.1"
1753 | is-symbol "^1.0.2"
1754 |
1755 | escalade@^3.1.1:
1756 | version "3.1.1"
1757 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1758 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1759 |
1760 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1761 | version "1.0.5"
1762 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1763 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
1764 |
1765 | escape-string-regexp@^4.0.0:
1766 | version "4.0.0"
1767 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
1768 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
1769 |
1770 | estree-walker@^0.6.1:
1771 | version "0.6.1"
1772 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
1773 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
1774 |
1775 | estree-walker@^1.0.1:
1776 | version "1.0.1"
1777 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
1778 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
1779 |
1780 | estree-walker@^2.0.1:
1781 | version "2.0.2"
1782 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
1783 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
1784 |
1785 | esutils@^2.0.2:
1786 | version "2.0.3"
1787 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1788 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1789 |
1790 | eventemitter3@^4.0.4:
1791 | version "4.0.7"
1792 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
1793 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
1794 |
1795 | figures@^1.0.1:
1796 | version "1.7.0"
1797 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1798 | integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==
1799 | dependencies:
1800 | escape-string-regexp "^1.0.5"
1801 | object-assign "^4.1.0"
1802 |
1803 | filelist@^1.0.4:
1804 | version "1.0.4"
1805 | resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5"
1806 | integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==
1807 | dependencies:
1808 | minimatch "^5.0.1"
1809 |
1810 | filesize@^6.1.0:
1811 | version "6.4.0"
1812 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.4.0.tgz#914f50471dd66fdca3cefe628bd0cde4ef769bcd"
1813 | integrity sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==
1814 |
1815 | find-cache-dir@^3.3.2:
1816 | version "3.3.2"
1817 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"
1818 | integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
1819 | dependencies:
1820 | commondir "^1.0.1"
1821 | make-dir "^3.0.2"
1822 | pkg-dir "^4.1.0"
1823 |
1824 | find-up@^4.0.0:
1825 | version "4.1.0"
1826 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
1827 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1828 | dependencies:
1829 | locate-path "^5.0.0"
1830 | path-exists "^4.0.0"
1831 |
1832 | for-each@^0.3.3:
1833 | version "0.3.3"
1834 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
1835 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
1836 | dependencies:
1837 | is-callable "^1.1.3"
1838 |
1839 | fraction.js@^4.2.0:
1840 | version "4.2.0"
1841 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
1842 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
1843 |
1844 | fs-extra@^10.0.0:
1845 | version "10.1.0"
1846 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
1847 | integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
1848 | dependencies:
1849 | graceful-fs "^4.2.0"
1850 | jsonfile "^6.0.1"
1851 | universalify "^2.0.0"
1852 |
1853 | fs.realpath@^1.0.0:
1854 | version "1.0.0"
1855 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1856 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1857 |
1858 | fsevents@~2.3.2:
1859 | version "2.3.2"
1860 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1861 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1862 |
1863 | function-bind@^1.1.1:
1864 | version "1.1.1"
1865 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1866 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1867 |
1868 | function.prototype.name@^1.1.5:
1869 | version "1.1.5"
1870 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
1871 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
1872 | dependencies:
1873 | call-bind "^1.0.2"
1874 | define-properties "^1.1.3"
1875 | es-abstract "^1.19.0"
1876 | functions-have-names "^1.2.2"
1877 |
1878 | functions-have-names@^1.2.2, functions-have-names@^1.2.3:
1879 | version "1.2.3"
1880 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
1881 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
1882 |
1883 | generic-names@^4.0.0:
1884 | version "4.0.0"
1885 | resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-4.0.0.tgz#0bd8a2fd23fe8ea16cbd0a279acd69c06933d9a3"
1886 | integrity sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==
1887 | dependencies:
1888 | loader-utils "^3.2.0"
1889 |
1890 | gensync@^1.0.0-beta.2:
1891 | version "1.0.0-beta.2"
1892 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1893 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1894 |
1895 | get-caller-file@^2.0.5:
1896 | version "2.0.5"
1897 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
1898 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
1899 |
1900 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1:
1901 | version "1.2.1"
1902 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
1903 | integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
1904 | dependencies:
1905 | function-bind "^1.1.1"
1906 | has "^1.0.3"
1907 | has-proto "^1.0.1"
1908 | has-symbols "^1.0.3"
1909 |
1910 | get-symbol-description@^1.0.0:
1911 | version "1.0.0"
1912 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
1913 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
1914 | dependencies:
1915 | call-bind "^1.0.2"
1916 | get-intrinsic "^1.1.1"
1917 |
1918 | glob@^7.1.6:
1919 | version "7.2.3"
1920 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
1921 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1922 | dependencies:
1923 | fs.realpath "^1.0.0"
1924 | inflight "^1.0.4"
1925 | inherits "2"
1926 | minimatch "^3.1.1"
1927 | once "^1.3.0"
1928 | path-is-absolute "^1.0.0"
1929 |
1930 | globals@^11.1.0:
1931 | version "11.12.0"
1932 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1933 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1934 |
1935 | globalthis@^1.0.3:
1936 | version "1.0.3"
1937 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
1938 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
1939 | dependencies:
1940 | define-properties "^1.1.3"
1941 |
1942 | globalyzer@0.1.0:
1943 | version "0.1.0"
1944 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465"
1945 | integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==
1946 |
1947 | globrex@^0.1.2:
1948 | version "0.1.2"
1949 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098"
1950 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==
1951 |
1952 | gopd@^1.0.1:
1953 | version "1.0.1"
1954 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
1955 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
1956 | dependencies:
1957 | get-intrinsic "^1.1.3"
1958 |
1959 | graceful-fs@^4.1.6, graceful-fs@^4.2.0:
1960 | version "4.2.11"
1961 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
1962 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
1963 |
1964 | gzip-size@^3.0.0:
1965 | version "3.0.0"
1966 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520"
1967 | integrity sha512-6s8trQiK+OMzSaCSVXX+iqIcLV9tC+E73jrJrJTyS4h/AJhlxHvzFKqM1YLDJWRGgHX8uLkBeXkA0njNj39L4w==
1968 | dependencies:
1969 | duplexer "^0.1.1"
1970 |
1971 | gzip-size@^6.0.0:
1972 | version "6.0.0"
1973 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462"
1974 | integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==
1975 | dependencies:
1976 | duplexer "^0.1.2"
1977 |
1978 | has-ansi@^2.0.0:
1979 | version "2.0.0"
1980 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1981 | integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==
1982 | dependencies:
1983 | ansi-regex "^2.0.0"
1984 |
1985 | has-bigints@^1.0.1, has-bigints@^1.0.2:
1986 | version "1.0.2"
1987 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
1988 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
1989 |
1990 | has-flag@^3.0.0:
1991 | version "3.0.0"
1992 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1993 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
1994 |
1995 | has-flag@^4.0.0:
1996 | version "4.0.0"
1997 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1998 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1999 |
2000 | has-property-descriptors@^1.0.0:
2001 | version "1.0.0"
2002 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
2003 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
2004 | dependencies:
2005 | get-intrinsic "^1.1.1"
2006 |
2007 | has-proto@^1.0.1:
2008 | version "1.0.1"
2009 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
2010 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
2011 |
2012 | has-symbols@^1.0.2, has-symbols@^1.0.3:
2013 | version "1.0.3"
2014 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
2015 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
2016 |
2017 | has-tostringtag@^1.0.0:
2018 | version "1.0.0"
2019 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
2020 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
2021 | dependencies:
2022 | has-symbols "^1.0.2"
2023 |
2024 | has@^1.0.3:
2025 | version "1.0.3"
2026 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
2027 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
2028 | dependencies:
2029 | function-bind "^1.1.1"
2030 |
2031 | icss-replace-symbols@^1.1.0:
2032 | version "1.1.0"
2033 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
2034 | integrity sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==
2035 |
2036 | icss-utils@^5.0.0:
2037 | version "5.1.0"
2038 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
2039 | integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
2040 |
2041 | import-cwd@^3.0.0:
2042 | version "3.0.0"
2043 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92"
2044 | integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==
2045 | dependencies:
2046 | import-from "^3.0.0"
2047 |
2048 | import-fresh@^3.2.1:
2049 | version "3.3.0"
2050 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
2051 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
2052 | dependencies:
2053 | parent-module "^1.0.0"
2054 | resolve-from "^4.0.0"
2055 |
2056 | import-from@^3.0.0:
2057 | version "3.0.0"
2058 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
2059 | integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
2060 | dependencies:
2061 | resolve-from "^5.0.0"
2062 |
2063 | inflight@^1.0.4:
2064 | version "1.0.6"
2065 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2066 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
2067 | dependencies:
2068 | once "^1.3.0"
2069 | wrappy "1"
2070 |
2071 | inherits@2:
2072 | version "2.0.4"
2073 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
2074 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
2075 |
2076 | internal-slot@^1.0.3, internal-slot@^1.0.5:
2077 | version "1.0.5"
2078 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
2079 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
2080 | dependencies:
2081 | get-intrinsic "^1.2.0"
2082 | has "^1.0.3"
2083 | side-channel "^1.0.4"
2084 |
2085 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
2086 | version "3.0.2"
2087 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
2088 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
2089 | dependencies:
2090 | call-bind "^1.0.2"
2091 | get-intrinsic "^1.2.0"
2092 | is-typed-array "^1.1.10"
2093 |
2094 | is-arrayish@^0.2.1:
2095 | version "0.2.1"
2096 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2097 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
2098 |
2099 | is-bigint@^1.0.1:
2100 | version "1.0.4"
2101 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
2102 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
2103 | dependencies:
2104 | has-bigints "^1.0.1"
2105 |
2106 | is-boolean-object@^1.1.0:
2107 | version "1.1.2"
2108 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
2109 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
2110 | dependencies:
2111 | call-bind "^1.0.2"
2112 | has-tostringtag "^1.0.0"
2113 |
2114 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
2115 | version "1.2.7"
2116 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
2117 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
2118 |
2119 | is-core-module@^2.11.0:
2120 | version "2.12.1"
2121 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
2122 | integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
2123 | dependencies:
2124 | has "^1.0.3"
2125 |
2126 | is-date-object@^1.0.1:
2127 | version "1.0.5"
2128 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
2129 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
2130 | dependencies:
2131 | has-tostringtag "^1.0.0"
2132 |
2133 | is-docker@^2.0.0, is-docker@^2.1.1:
2134 | version "2.2.1"
2135 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
2136 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
2137 |
2138 | is-fullwidth-code-point@^3.0.0:
2139 | version "3.0.0"
2140 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
2141 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
2142 |
2143 | is-module@^1.0.0:
2144 | version "1.0.0"
2145 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
2146 | integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
2147 |
2148 | is-negative-zero@^2.0.2:
2149 | version "2.0.2"
2150 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
2151 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
2152 |
2153 | is-number-object@^1.0.4:
2154 | version "1.0.7"
2155 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
2156 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
2157 | dependencies:
2158 | has-tostringtag "^1.0.0"
2159 |
2160 | is-reference@^1.2.1:
2161 | version "1.2.1"
2162 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7"
2163 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==
2164 | dependencies:
2165 | "@types/estree" "*"
2166 |
2167 | is-regex@^1.1.4:
2168 | version "1.1.4"
2169 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
2170 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
2171 | dependencies:
2172 | call-bind "^1.0.2"
2173 | has-tostringtag "^1.0.0"
2174 |
2175 | is-shared-array-buffer@^1.0.2:
2176 | version "1.0.2"
2177 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
2178 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
2179 | dependencies:
2180 | call-bind "^1.0.2"
2181 |
2182 | is-string@^1.0.5, is-string@^1.0.7:
2183 | version "1.0.7"
2184 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
2185 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
2186 | dependencies:
2187 | has-tostringtag "^1.0.0"
2188 |
2189 | is-symbol@^1.0.2, is-symbol@^1.0.3:
2190 | version "1.0.4"
2191 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
2192 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
2193 | dependencies:
2194 | has-symbols "^1.0.2"
2195 |
2196 | is-typed-array@^1.1.10, is-typed-array@^1.1.9:
2197 | version "1.1.12"
2198 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a"
2199 | integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
2200 | dependencies:
2201 | which-typed-array "^1.1.11"
2202 |
2203 | is-weakref@^1.0.2:
2204 | version "1.0.2"
2205 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
2206 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
2207 | dependencies:
2208 | call-bind "^1.0.2"
2209 |
2210 | is-wsl@^2.2.0:
2211 | version "2.2.0"
2212 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
2213 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
2214 | dependencies:
2215 | is-docker "^2.0.0"
2216 |
2217 | isarray@^2.0.5:
2218 | version "2.0.5"
2219 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
2220 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
2221 |
2222 | jake@^10.8.5:
2223 | version "10.8.7"
2224 | resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f"
2225 | integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==
2226 | dependencies:
2227 | async "^3.2.3"
2228 | chalk "^4.0.2"
2229 | filelist "^1.0.4"
2230 | minimatch "^3.1.2"
2231 |
2232 | jest-worker@^26.2.1:
2233 | version "26.6.2"
2234 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
2235 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
2236 | dependencies:
2237 | "@types/node" "*"
2238 | merge-stream "^2.0.0"
2239 | supports-color "^7.0.0"
2240 |
2241 | js-tokens@^4.0.0:
2242 | version "4.0.0"
2243 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2244 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2245 |
2246 | jsesc@^2.5.1:
2247 | version "2.5.2"
2248 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2249 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
2250 |
2251 | jsesc@~0.5.0:
2252 | version "0.5.0"
2253 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2254 | integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
2255 |
2256 | json-parse-even-better-errors@^2.3.0:
2257 | version "2.3.1"
2258 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
2259 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
2260 |
2261 | json5@^2.2.0, json5@^2.2.2:
2262 | version "2.2.3"
2263 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
2264 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
2265 |
2266 | jsonfile@^6.0.1:
2267 | version "6.1.0"
2268 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
2269 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
2270 | dependencies:
2271 | universalify "^2.0.0"
2272 | optionalDependencies:
2273 | graceful-fs "^4.1.6"
2274 |
2275 | kleur@^4.1.3:
2276 | version "4.1.5"
2277 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
2278 | integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
2279 |
2280 | lilconfig@^2.0.3, lilconfig@^2.0.5:
2281 | version "2.1.0"
2282 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
2283 | integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
2284 |
2285 | lines-and-columns@^1.1.6:
2286 | version "1.2.4"
2287 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
2288 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
2289 |
2290 | loader-utils@^3.2.0:
2291 | version "3.2.1"
2292 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576"
2293 | integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==
2294 |
2295 | locate-path@^5.0.0:
2296 | version "5.0.0"
2297 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
2298 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
2299 | dependencies:
2300 | p-locate "^4.1.0"
2301 |
2302 | lodash.camelcase@^4.3.0:
2303 | version "4.3.0"
2304 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
2305 | integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==
2306 |
2307 | lodash.debounce@^4.0.8:
2308 | version "4.0.8"
2309 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2310 | integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
2311 |
2312 | lodash.memoize@^4.1.2:
2313 | version "4.1.2"
2314 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
2315 | integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
2316 |
2317 | lodash.merge@^4.6.2:
2318 | version "4.6.2"
2319 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
2320 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
2321 |
2322 | lodash.uniq@^4.5.0:
2323 | version "4.5.0"
2324 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
2325 | integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
2326 |
2327 | lru-cache@^5.1.1:
2328 | version "5.1.1"
2329 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
2330 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
2331 | dependencies:
2332 | yallist "^3.0.2"
2333 |
2334 | magic-string@^0.25.0, magic-string@^0.25.7:
2335 | version "0.25.9"
2336 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
2337 | integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
2338 | dependencies:
2339 | sourcemap-codec "^1.4.8"
2340 |
2341 | make-dir@^3.0.2:
2342 | version "3.1.0"
2343 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
2344 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
2345 | dependencies:
2346 | semver "^6.0.0"
2347 |
2348 | maxmin@^2.1.0:
2349 | version "2.1.0"
2350 | resolved "https://registry.yarnpkg.com/maxmin/-/maxmin-2.1.0.tgz#4d3b220903d95eee7eb7ac7fa864e72dc09a3166"
2351 | integrity sha512-NWlApBjW9az9qRPaeg7CX4sQBWwytqz32bIEo1PW9pRW+kBP9KLRfJO3UC+TV31EcQZEUq7eMzikC7zt3zPJcw==
2352 | dependencies:
2353 | chalk "^1.0.0"
2354 | figures "^1.0.1"
2355 | gzip-size "^3.0.0"
2356 | pretty-bytes "^3.0.0"
2357 |
2358 | mdn-data@2.0.14:
2359 | version "2.0.14"
2360 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
2361 | integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
2362 |
2363 | merge-stream@^2.0.0:
2364 | version "2.0.0"
2365 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
2366 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
2367 |
2368 | microbundle@^0.15.1:
2369 | version "0.15.1"
2370 | resolved "https://registry.yarnpkg.com/microbundle/-/microbundle-0.15.1.tgz#3fa67128934b31736823b5c868dae4b92d94e766"
2371 | integrity sha512-aAF+nwFbkSIJGfrJk+HyzmJOq3KFaimH6OIFBU6J2DPjQeg1jXIYlIyEv81Gyisb9moUkudn+wj7zLNYMOv75Q==
2372 | dependencies:
2373 | "@babel/core" "^7.12.10"
2374 | "@babel/plugin-proposal-class-properties" "7.12.1"
2375 | "@babel/plugin-syntax-import-meta" "^7.10.4"
2376 | "@babel/plugin-syntax-jsx" "^7.12.1"
2377 | "@babel/plugin-transform-flow-strip-types" "^7.12.10"
2378 | "@babel/plugin-transform-react-jsx" "^7.12.11"
2379 | "@babel/plugin-transform-regenerator" "^7.12.1"
2380 | "@babel/preset-env" "^7.12.11"
2381 | "@babel/preset-flow" "^7.12.1"
2382 | "@babel/preset-react" "^7.12.10"
2383 | "@rollup/plugin-alias" "^3.1.1"
2384 | "@rollup/plugin-babel" "^5.2.2"
2385 | "@rollup/plugin-commonjs" "^17.0.0"
2386 | "@rollup/plugin-json" "^4.1.0"
2387 | "@rollup/plugin-node-resolve" "^11.0.1"
2388 | "@surma/rollup-plugin-off-main-thread" "^2.2.2"
2389 | asyncro "^3.0.0"
2390 | autoprefixer "^10.1.0"
2391 | babel-plugin-macros "^3.0.1"
2392 | babel-plugin-transform-async-to-promises "^0.8.18"
2393 | babel-plugin-transform-replace-expressions "^0.2.0"
2394 | brotli-size "^4.0.0"
2395 | builtin-modules "^3.1.0"
2396 | camelcase "^6.2.0"
2397 | escape-string-regexp "^4.0.0"
2398 | filesize "^6.1.0"
2399 | gzip-size "^6.0.0"
2400 | kleur "^4.1.3"
2401 | lodash.merge "^4.6.2"
2402 | postcss "^8.2.1"
2403 | pretty-bytes "^5.4.1"
2404 | rollup "^2.35.1"
2405 | rollup-plugin-bundle-size "^1.0.3"
2406 | rollup-plugin-postcss "^4.0.0"
2407 | rollup-plugin-terser "^7.0.2"
2408 | rollup-plugin-typescript2 "^0.32.0"
2409 | rollup-plugin-visualizer "^5.6.0"
2410 | sade "^1.7.4"
2411 | terser "^5.7.0"
2412 | tiny-glob "^0.2.8"
2413 | tslib "^2.0.3"
2414 | typescript "^4.1.3"
2415 |
2416 | minimatch@^3.1.1, minimatch@^3.1.2:
2417 | version "3.1.2"
2418 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
2419 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
2420 | dependencies:
2421 | brace-expansion "^1.1.7"
2422 |
2423 | minimatch@^5.0.1:
2424 | version "5.1.6"
2425 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
2426 | integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
2427 | dependencies:
2428 | brace-expansion "^2.0.1"
2429 |
2430 | mri@^1.1.0:
2431 | version "1.2.0"
2432 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
2433 | integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
2434 |
2435 | ms@2.1.2:
2436 | version "2.1.2"
2437 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2438 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2439 |
2440 | nanoid@^3.3.6:
2441 | version "3.3.6"
2442 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
2443 | integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
2444 |
2445 | node-releases@^2.0.13:
2446 | version "2.0.13"
2447 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
2448 | integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
2449 |
2450 | normalize-range@^0.1.2:
2451 | version "0.1.2"
2452 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2453 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
2454 |
2455 | normalize-url@^6.0.1:
2456 | version "6.1.0"
2457 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
2458 | integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
2459 |
2460 | nth-check@^2.0.1:
2461 | version "2.1.1"
2462 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
2463 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
2464 | dependencies:
2465 | boolbase "^1.0.0"
2466 |
2467 | number-is-nan@^1.0.0:
2468 | version "1.0.1"
2469 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2470 | integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==
2471 |
2472 | object-assign@^4.1.0:
2473 | version "4.1.1"
2474 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2475 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
2476 |
2477 | object-inspect@^1.12.3, object-inspect@^1.9.0:
2478 | version "1.12.3"
2479 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
2480 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
2481 |
2482 | object-keys@^1.1.1:
2483 | version "1.1.1"
2484 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2485 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2486 |
2487 | object.assign@^4.1.4:
2488 | version "4.1.4"
2489 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
2490 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
2491 | dependencies:
2492 | call-bind "^1.0.2"
2493 | define-properties "^1.1.4"
2494 | has-symbols "^1.0.3"
2495 | object-keys "^1.1.1"
2496 |
2497 | once@^1.3.0:
2498 | version "1.4.0"
2499 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2500 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
2501 | dependencies:
2502 | wrappy "1"
2503 |
2504 | open@^8.4.0:
2505 | version "8.4.2"
2506 | resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
2507 | integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
2508 | dependencies:
2509 | define-lazy-prop "^2.0.0"
2510 | is-docker "^2.1.1"
2511 | is-wsl "^2.2.0"
2512 |
2513 | p-finally@^1.0.0:
2514 | version "1.0.0"
2515 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2516 | integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
2517 |
2518 | p-limit@^2.2.0:
2519 | version "2.3.0"
2520 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
2521 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
2522 | dependencies:
2523 | p-try "^2.0.0"
2524 |
2525 | p-locate@^4.1.0:
2526 | version "4.1.0"
2527 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
2528 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
2529 | dependencies:
2530 | p-limit "^2.2.0"
2531 |
2532 | p-queue@^6.6.2:
2533 | version "6.6.2"
2534 | resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426"
2535 | integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
2536 | dependencies:
2537 | eventemitter3 "^4.0.4"
2538 | p-timeout "^3.2.0"
2539 |
2540 | p-timeout@^3.2.0:
2541 | version "3.2.0"
2542 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
2543 | integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
2544 | dependencies:
2545 | p-finally "^1.0.0"
2546 |
2547 | p-try@^2.0.0:
2548 | version "2.2.0"
2549 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2550 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2551 |
2552 | parent-module@^1.0.0:
2553 | version "1.0.1"
2554 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2555 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2556 | dependencies:
2557 | callsites "^3.0.0"
2558 |
2559 | parse-json@^5.0.0:
2560 | version "5.2.0"
2561 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
2562 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
2563 | dependencies:
2564 | "@babel/code-frame" "^7.0.0"
2565 | error-ex "^1.3.1"
2566 | json-parse-even-better-errors "^2.3.0"
2567 | lines-and-columns "^1.1.6"
2568 |
2569 | path-exists@^4.0.0:
2570 | version "4.0.0"
2571 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
2572 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
2573 |
2574 | path-is-absolute@^1.0.0:
2575 | version "1.0.1"
2576 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2577 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
2578 |
2579 | path-parse@^1.0.7:
2580 | version "1.0.7"
2581 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2582 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2583 |
2584 | path-type@^4.0.0:
2585 | version "4.0.0"
2586 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
2587 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
2588 |
2589 | picocolors@^1.0.0:
2590 | version "1.0.0"
2591 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
2592 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
2593 |
2594 | picomatch@^2.2.2, picomatch@^2.3.1:
2595 | version "2.3.1"
2596 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
2597 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
2598 |
2599 | pify@^5.0.0:
2600 | version "5.0.0"
2601 | resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f"
2602 | integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
2603 |
2604 | pkg-dir@^4.1.0:
2605 | version "4.2.0"
2606 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
2607 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
2608 | dependencies:
2609 | find-up "^4.0.0"
2610 |
2611 | postcss-calc@^8.2.3:
2612 | version "8.2.4"
2613 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5"
2614 | integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==
2615 | dependencies:
2616 | postcss-selector-parser "^6.0.9"
2617 | postcss-value-parser "^4.2.0"
2618 |
2619 | postcss-colormin@^5.3.1:
2620 | version "5.3.1"
2621 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f"
2622 | integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==
2623 | dependencies:
2624 | browserslist "^4.21.4"
2625 | caniuse-api "^3.0.0"
2626 | colord "^2.9.1"
2627 | postcss-value-parser "^4.2.0"
2628 |
2629 | postcss-convert-values@^5.1.3:
2630 | version "5.1.3"
2631 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393"
2632 | integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==
2633 | dependencies:
2634 | browserslist "^4.21.4"
2635 | postcss-value-parser "^4.2.0"
2636 |
2637 | postcss-discard-comments@^5.1.2:
2638 | version "5.1.2"
2639 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696"
2640 | integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==
2641 |
2642 | postcss-discard-duplicates@^5.1.0:
2643 | version "5.1.0"
2644 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848"
2645 | integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==
2646 |
2647 | postcss-discard-empty@^5.1.1:
2648 | version "5.1.1"
2649 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c"
2650 | integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==
2651 |
2652 | postcss-discard-overridden@^5.1.0:
2653 | version "5.1.0"
2654 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e"
2655 | integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==
2656 |
2657 | postcss-load-config@^3.0.0:
2658 | version "3.1.4"
2659 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855"
2660 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
2661 | dependencies:
2662 | lilconfig "^2.0.5"
2663 | yaml "^1.10.2"
2664 |
2665 | postcss-merge-longhand@^5.1.7:
2666 | version "5.1.7"
2667 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16"
2668 | integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==
2669 | dependencies:
2670 | postcss-value-parser "^4.2.0"
2671 | stylehacks "^5.1.1"
2672 |
2673 | postcss-merge-rules@^5.1.4:
2674 | version "5.1.4"
2675 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
2676 | integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==
2677 | dependencies:
2678 | browserslist "^4.21.4"
2679 | caniuse-api "^3.0.0"
2680 | cssnano-utils "^3.1.0"
2681 | postcss-selector-parser "^6.0.5"
2682 |
2683 | postcss-minify-font-values@^5.1.0:
2684 | version "5.1.0"
2685 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b"
2686 | integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==
2687 | dependencies:
2688 | postcss-value-parser "^4.2.0"
2689 |
2690 | postcss-minify-gradients@^5.1.1:
2691 | version "5.1.1"
2692 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c"
2693 | integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==
2694 | dependencies:
2695 | colord "^2.9.1"
2696 | cssnano-utils "^3.1.0"
2697 | postcss-value-parser "^4.2.0"
2698 |
2699 | postcss-minify-params@^5.1.4:
2700 | version "5.1.4"
2701 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352"
2702 | integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==
2703 | dependencies:
2704 | browserslist "^4.21.4"
2705 | cssnano-utils "^3.1.0"
2706 | postcss-value-parser "^4.2.0"
2707 |
2708 | postcss-minify-selectors@^5.2.1:
2709 | version "5.2.1"
2710 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6"
2711 | integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==
2712 | dependencies:
2713 | postcss-selector-parser "^6.0.5"
2714 |
2715 | postcss-modules-extract-imports@^3.0.0:
2716 | version "3.0.0"
2717 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
2718 | integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
2719 |
2720 | postcss-modules-local-by-default@^4.0.0:
2721 | version "4.0.3"
2722 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524"
2723 | integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==
2724 | dependencies:
2725 | icss-utils "^5.0.0"
2726 | postcss-selector-parser "^6.0.2"
2727 | postcss-value-parser "^4.1.0"
2728 |
2729 | postcss-modules-scope@^3.0.0:
2730 | version "3.0.0"
2731 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
2732 | integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==
2733 | dependencies:
2734 | postcss-selector-parser "^6.0.4"
2735 |
2736 | postcss-modules-values@^4.0.0:
2737 | version "4.0.0"
2738 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
2739 | integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==
2740 | dependencies:
2741 | icss-utils "^5.0.0"
2742 |
2743 | postcss-modules@^4.0.0:
2744 | version "4.3.1"
2745 | resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-4.3.1.tgz#517c06c09eab07d133ae0effca2c510abba18048"
2746 | integrity sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==
2747 | dependencies:
2748 | generic-names "^4.0.0"
2749 | icss-replace-symbols "^1.1.0"
2750 | lodash.camelcase "^4.3.0"
2751 | postcss-modules-extract-imports "^3.0.0"
2752 | postcss-modules-local-by-default "^4.0.0"
2753 | postcss-modules-scope "^3.0.0"
2754 | postcss-modules-values "^4.0.0"
2755 | string-hash "^1.1.1"
2756 |
2757 | postcss-normalize-charset@^5.1.0:
2758 | version "5.1.0"
2759 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed"
2760 | integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==
2761 |
2762 | postcss-normalize-display-values@^5.1.0:
2763 | version "5.1.0"
2764 | resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8"
2765 | integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==
2766 | dependencies:
2767 | postcss-value-parser "^4.2.0"
2768 |
2769 | postcss-normalize-positions@^5.1.1:
2770 | version "5.1.1"
2771 | resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92"
2772 | integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==
2773 | dependencies:
2774 | postcss-value-parser "^4.2.0"
2775 |
2776 | postcss-normalize-repeat-style@^5.1.1:
2777 | version "5.1.1"
2778 | resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2"
2779 | integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==
2780 | dependencies:
2781 | postcss-value-parser "^4.2.0"
2782 |
2783 | postcss-normalize-string@^5.1.0:
2784 | version "5.1.0"
2785 | resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228"
2786 | integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==
2787 | dependencies:
2788 | postcss-value-parser "^4.2.0"
2789 |
2790 | postcss-normalize-timing-functions@^5.1.0:
2791 | version "5.1.0"
2792 | resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb"
2793 | integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==
2794 | dependencies:
2795 | postcss-value-parser "^4.2.0"
2796 |
2797 | postcss-normalize-unicode@^5.1.1:
2798 | version "5.1.1"
2799 | resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030"
2800 | integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==
2801 | dependencies:
2802 | browserslist "^4.21.4"
2803 | postcss-value-parser "^4.2.0"
2804 |
2805 | postcss-normalize-url@^5.1.0:
2806 | version "5.1.0"
2807 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc"
2808 | integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==
2809 | dependencies:
2810 | normalize-url "^6.0.1"
2811 | postcss-value-parser "^4.2.0"
2812 |
2813 | postcss-normalize-whitespace@^5.1.1:
2814 | version "5.1.1"
2815 | resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa"
2816 | integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==
2817 | dependencies:
2818 | postcss-value-parser "^4.2.0"
2819 |
2820 | postcss-ordered-values@^5.1.3:
2821 | version "5.1.3"
2822 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38"
2823 | integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==
2824 | dependencies:
2825 | cssnano-utils "^3.1.0"
2826 | postcss-value-parser "^4.2.0"
2827 |
2828 | postcss-reduce-initial@^5.1.2:
2829 | version "5.1.2"
2830 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6"
2831 | integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==
2832 | dependencies:
2833 | browserslist "^4.21.4"
2834 | caniuse-api "^3.0.0"
2835 |
2836 | postcss-reduce-transforms@^5.1.0:
2837 | version "5.1.0"
2838 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9"
2839 | integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==
2840 | dependencies:
2841 | postcss-value-parser "^4.2.0"
2842 |
2843 | postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
2844 | version "6.0.13"
2845 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
2846 | integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
2847 | dependencies:
2848 | cssesc "^3.0.0"
2849 | util-deprecate "^1.0.2"
2850 |
2851 | postcss-svgo@^5.1.0:
2852 | version "5.1.0"
2853 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d"
2854 | integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==
2855 | dependencies:
2856 | postcss-value-parser "^4.2.0"
2857 | svgo "^2.7.0"
2858 |
2859 | postcss-unique-selectors@^5.1.1:
2860 | version "5.1.1"
2861 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6"
2862 | integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==
2863 | dependencies:
2864 | postcss-selector-parser "^6.0.5"
2865 |
2866 | postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
2867 | version "4.2.0"
2868 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
2869 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
2870 |
2871 | postcss@^8.2.1:
2872 | version "8.4.27"
2873 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057"
2874 | integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==
2875 | dependencies:
2876 | nanoid "^3.3.6"
2877 | picocolors "^1.0.0"
2878 | source-map-js "^1.0.2"
2879 |
2880 | pretty-bytes@^3.0.0:
2881 | version "3.0.1"
2882 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-3.0.1.tgz#27d0008d778063a0b4811bb35c79f1bd5d5fbccf"
2883 | integrity sha512-eb7ZAeUTgfh294cElcu51w+OTRp/6ItW758LjwJSK72LDevcuJn0P4eD71PLMDGPwwatXmAmYHTkzvpKlJE3ow==
2884 | dependencies:
2885 | number-is-nan "^1.0.0"
2886 |
2887 | pretty-bytes@^5.4.1:
2888 | version "5.6.0"
2889 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
2890 | integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
2891 |
2892 | promise.series@^0.2.0:
2893 | version "0.2.0"
2894 | resolved "https://registry.yarnpkg.com/promise.series/-/promise.series-0.2.0.tgz#2cc7ebe959fc3a6619c04ab4dbdc9e452d864bbd"
2895 | integrity sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==
2896 |
2897 | randombytes@^2.1.0:
2898 | version "2.1.0"
2899 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
2900 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
2901 | dependencies:
2902 | safe-buffer "^5.1.0"
2903 |
2904 | regenerate-unicode-properties@^10.1.0:
2905 | version "10.1.0"
2906 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
2907 | integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
2908 | dependencies:
2909 | regenerate "^1.4.2"
2910 |
2911 | regenerate@^1.4.2:
2912 | version "1.4.2"
2913 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
2914 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
2915 |
2916 | regenerator-runtime@^0.13.11:
2917 | version "0.13.11"
2918 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
2919 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
2920 |
2921 | regenerator-transform@^0.15.1:
2922 | version "0.15.1"
2923 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
2924 | integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
2925 | dependencies:
2926 | "@babel/runtime" "^7.8.4"
2927 |
2928 | regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0:
2929 | version "1.5.0"
2930 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb"
2931 | integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==
2932 | dependencies:
2933 | call-bind "^1.0.2"
2934 | define-properties "^1.2.0"
2935 | functions-have-names "^1.2.3"
2936 |
2937 | regexpu-core@^5.3.1:
2938 | version "5.3.2"
2939 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
2940 | integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
2941 | dependencies:
2942 | "@babel/regjsgen" "^0.8.0"
2943 | regenerate "^1.4.2"
2944 | regenerate-unicode-properties "^10.1.0"
2945 | regjsparser "^0.9.1"
2946 | unicode-match-property-ecmascript "^2.0.0"
2947 | unicode-match-property-value-ecmascript "^2.1.0"
2948 |
2949 | regjsparser@^0.9.1:
2950 | version "0.9.1"
2951 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
2952 | integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
2953 | dependencies:
2954 | jsesc "~0.5.0"
2955 |
2956 | require-directory@^2.1.1:
2957 | version "2.1.1"
2958 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2959 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
2960 |
2961 | resolve-from@^4.0.0:
2962 | version "4.0.0"
2963 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
2964 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
2965 |
2966 | resolve-from@^5.0.0:
2967 | version "5.0.0"
2968 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
2969 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
2970 |
2971 | resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0:
2972 | version "1.22.2"
2973 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
2974 | integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
2975 | dependencies:
2976 | is-core-module "^2.11.0"
2977 | path-parse "^1.0.7"
2978 | supports-preserve-symlinks-flag "^1.0.0"
2979 |
2980 | rollup-plugin-bundle-size@^1.0.3:
2981 | version "1.0.3"
2982 | resolved "https://registry.yarnpkg.com/rollup-plugin-bundle-size/-/rollup-plugin-bundle-size-1.0.3.tgz#d245cd988486b4040279f9fd33f357f61673e90f"
2983 | integrity sha512-aWj0Pvzq90fqbI5vN1IvUrlf4utOqy+AERYxwWjegH1G8PzheMnrRIgQ5tkwKVtQMDP0bHZEACW/zLDF+XgfXQ==
2984 | dependencies:
2985 | chalk "^1.1.3"
2986 | maxmin "^2.1.0"
2987 |
2988 | rollup-plugin-postcss@^4.0.0:
2989 | version "4.0.2"
2990 | resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz#15e9462f39475059b368ce0e49c800fa4b1f7050"
2991 | integrity sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==
2992 | dependencies:
2993 | chalk "^4.1.0"
2994 | concat-with-sourcemaps "^1.1.0"
2995 | cssnano "^5.0.1"
2996 | import-cwd "^3.0.0"
2997 | p-queue "^6.6.2"
2998 | pify "^5.0.0"
2999 | postcss-load-config "^3.0.0"
3000 | postcss-modules "^4.0.0"
3001 | promise.series "^0.2.0"
3002 | resolve "^1.19.0"
3003 | rollup-pluginutils "^2.8.2"
3004 | safe-identifier "^0.4.2"
3005 | style-inject "^0.3.0"
3006 |
3007 | rollup-plugin-terser@^7.0.2:
3008 | version "7.0.2"
3009 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d"
3010 | integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==
3011 | dependencies:
3012 | "@babel/code-frame" "^7.10.4"
3013 | jest-worker "^26.2.1"
3014 | serialize-javascript "^4.0.0"
3015 | terser "^5.0.0"
3016 |
3017 | rollup-plugin-typescript2@^0.32.0:
3018 | version "0.32.1"
3019 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.32.1.tgz#470ded8e1965efac02043cc0ef4a7fa36bed83b9"
3020 | integrity sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==
3021 | dependencies:
3022 | "@rollup/pluginutils" "^4.1.2"
3023 | find-cache-dir "^3.3.2"
3024 | fs-extra "^10.0.0"
3025 | resolve "^1.20.0"
3026 | tslib "^2.4.0"
3027 |
3028 | rollup-plugin-visualizer@^5.6.0:
3029 | version "5.9.2"
3030 | resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.2.tgz#f1aa2d9b1be8ebd6869223c742324897464d8891"
3031 | integrity sha512-waHktD5mlWrYFrhOLbti4YgQCn1uR24nYsNuXxg7LkPH8KdTXVWR9DNY1WU0QqokyMixVXJS4J04HNrVTMP01A==
3032 | dependencies:
3033 | open "^8.4.0"
3034 | picomatch "^2.3.1"
3035 | source-map "^0.7.4"
3036 | yargs "^17.5.1"
3037 |
3038 | rollup-pluginutils@^2.8.2:
3039 | version "2.8.2"
3040 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
3041 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
3042 | dependencies:
3043 | estree-walker "^0.6.1"
3044 |
3045 | rollup@^2.35.1:
3046 | version "2.79.1"
3047 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7"
3048 | integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==
3049 | optionalDependencies:
3050 | fsevents "~2.3.2"
3051 |
3052 | sade@^1.7.4:
3053 | version "1.8.1"
3054 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701"
3055 | integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
3056 | dependencies:
3057 | mri "^1.1.0"
3058 |
3059 | safe-array-concat@^1.0.0:
3060 | version "1.0.0"
3061 | resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060"
3062 | integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==
3063 | dependencies:
3064 | call-bind "^1.0.2"
3065 | get-intrinsic "^1.2.0"
3066 | has-symbols "^1.0.3"
3067 | isarray "^2.0.5"
3068 |
3069 | safe-buffer@^5.1.0:
3070 | version "5.2.1"
3071 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
3072 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
3073 |
3074 | safe-identifier@^0.4.2:
3075 | version "0.4.2"
3076 | resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb"
3077 | integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==
3078 |
3079 | safe-regex-test@^1.0.0:
3080 | version "1.0.0"
3081 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
3082 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
3083 | dependencies:
3084 | call-bind "^1.0.2"
3085 | get-intrinsic "^1.1.3"
3086 | is-regex "^1.1.4"
3087 |
3088 | semver@^6.0.0, semver@^6.3.1:
3089 | version "6.3.1"
3090 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
3091 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
3092 |
3093 | serialize-javascript@^4.0.0:
3094 | version "4.0.0"
3095 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
3096 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
3097 | dependencies:
3098 | randombytes "^2.1.0"
3099 |
3100 | side-channel@^1.0.4:
3101 | version "1.0.4"
3102 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
3103 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
3104 | dependencies:
3105 | call-bind "^1.0.0"
3106 | get-intrinsic "^1.0.2"
3107 | object-inspect "^1.9.0"
3108 |
3109 | slash@^3.0.0:
3110 | version "3.0.0"
3111 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
3112 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
3113 |
3114 | source-map-js@^1.0.2:
3115 | version "1.0.2"
3116 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
3117 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
3118 |
3119 | source-map-support@~0.5.20:
3120 | version "0.5.21"
3121 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
3122 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
3123 | dependencies:
3124 | buffer-from "^1.0.0"
3125 | source-map "^0.6.0"
3126 |
3127 | source-map@^0.6.0, source-map@^0.6.1:
3128 | version "0.6.1"
3129 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3130 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
3131 |
3132 | source-map@^0.7.4:
3133 | version "0.7.4"
3134 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
3135 | integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
3136 |
3137 | sourcemap-codec@^1.4.8:
3138 | version "1.4.8"
3139 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
3140 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
3141 |
3142 | stable@^0.1.8:
3143 | version "0.1.8"
3144 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
3145 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
3146 |
3147 | string-hash@^1.1.1:
3148 | version "1.1.3"
3149 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
3150 | integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==
3151 |
3152 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
3153 | version "4.2.3"
3154 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
3155 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
3156 | dependencies:
3157 | emoji-regex "^8.0.0"
3158 | is-fullwidth-code-point "^3.0.0"
3159 | strip-ansi "^6.0.1"
3160 |
3161 | string.prototype.matchall@^4.0.6:
3162 | version "4.0.8"
3163 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3"
3164 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
3165 | dependencies:
3166 | call-bind "^1.0.2"
3167 | define-properties "^1.1.4"
3168 | es-abstract "^1.20.4"
3169 | get-intrinsic "^1.1.3"
3170 | has-symbols "^1.0.3"
3171 | internal-slot "^1.0.3"
3172 | regexp.prototype.flags "^1.4.3"
3173 | side-channel "^1.0.4"
3174 |
3175 | string.prototype.trim@^1.2.7:
3176 | version "1.2.7"
3177 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
3178 | integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
3179 | dependencies:
3180 | call-bind "^1.0.2"
3181 | define-properties "^1.1.4"
3182 | es-abstract "^1.20.4"
3183 |
3184 | string.prototype.trimend@^1.0.6:
3185 | version "1.0.6"
3186 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
3187 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
3188 | dependencies:
3189 | call-bind "^1.0.2"
3190 | define-properties "^1.1.4"
3191 | es-abstract "^1.20.4"
3192 |
3193 | string.prototype.trimstart@^1.0.6:
3194 | version "1.0.6"
3195 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
3196 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
3197 | dependencies:
3198 | call-bind "^1.0.2"
3199 | define-properties "^1.1.4"
3200 | es-abstract "^1.20.4"
3201 |
3202 | strip-ansi@^3.0.0:
3203 | version "3.0.1"
3204 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3205 | integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
3206 | dependencies:
3207 | ansi-regex "^2.0.0"
3208 |
3209 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
3210 | version "6.0.1"
3211 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
3212 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
3213 | dependencies:
3214 | ansi-regex "^5.0.1"
3215 |
3216 | style-inject@^0.3.0:
3217 | version "0.3.0"
3218 | resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.3.0.tgz#d21c477affec91811cc82355832a700d22bf8dd3"
3219 | integrity sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==
3220 |
3221 | stylehacks@^5.1.1:
3222 | version "5.1.1"
3223 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9"
3224 | integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==
3225 | dependencies:
3226 | browserslist "^4.21.4"
3227 | postcss-selector-parser "^6.0.4"
3228 |
3229 | supports-color@^2.0.0:
3230 | version "2.0.0"
3231 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3232 | integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==
3233 |
3234 | supports-color@^5.3.0:
3235 | version "5.5.0"
3236 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3237 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
3238 | dependencies:
3239 | has-flag "^3.0.0"
3240 |
3241 | supports-color@^7.0.0, supports-color@^7.1.0:
3242 | version "7.2.0"
3243 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
3244 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
3245 | dependencies:
3246 | has-flag "^4.0.0"
3247 |
3248 | supports-preserve-symlinks-flag@^1.0.0:
3249 | version "1.0.0"
3250 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
3251 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
3252 |
3253 | svgo@^2.7.0:
3254 | version "2.8.0"
3255 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
3256 | integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
3257 | dependencies:
3258 | "@trysound/sax" "0.2.0"
3259 | commander "^7.2.0"
3260 | css-select "^4.1.3"
3261 | css-tree "^1.1.3"
3262 | csso "^4.2.0"
3263 | picocolors "^1.0.0"
3264 | stable "^0.1.8"
3265 |
3266 | terser@^5.0.0, terser@^5.7.0:
3267 | version "5.19.2"
3268 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.19.2.tgz#bdb8017a9a4a8de4663a7983f45c506534f9234e"
3269 | integrity sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==
3270 | dependencies:
3271 | "@jridgewell/source-map" "^0.3.3"
3272 | acorn "^8.8.2"
3273 | commander "^2.20.0"
3274 | source-map-support "~0.5.20"
3275 |
3276 | tiny-glob@^0.2.8:
3277 | version "0.2.9"
3278 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.9.tgz#2212d441ac17928033b110f8b3640683129d31e2"
3279 | integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==
3280 | dependencies:
3281 | globalyzer "0.1.0"
3282 | globrex "^0.1.2"
3283 |
3284 | to-fast-properties@^2.0.0:
3285 | version "2.0.0"
3286 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
3287 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
3288 |
3289 | tslib@^2.0.3, tslib@^2.4.0:
3290 | version "2.6.1"
3291 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
3292 | integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
3293 |
3294 | typed-array-buffer@^1.0.0:
3295 | version "1.0.0"
3296 | resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60"
3297 | integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
3298 | dependencies:
3299 | call-bind "^1.0.2"
3300 | get-intrinsic "^1.2.1"
3301 | is-typed-array "^1.1.10"
3302 |
3303 | typed-array-byte-length@^1.0.0:
3304 | version "1.0.0"
3305 | resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0"
3306 | integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
3307 | dependencies:
3308 | call-bind "^1.0.2"
3309 | for-each "^0.3.3"
3310 | has-proto "^1.0.1"
3311 | is-typed-array "^1.1.10"
3312 |
3313 | typed-array-byte-offset@^1.0.0:
3314 | version "1.0.0"
3315 | resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b"
3316 | integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
3317 | dependencies:
3318 | available-typed-arrays "^1.0.5"
3319 | call-bind "^1.0.2"
3320 | for-each "^0.3.3"
3321 | has-proto "^1.0.1"
3322 | is-typed-array "^1.1.10"
3323 |
3324 | typed-array-length@^1.0.4:
3325 | version "1.0.4"
3326 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
3327 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
3328 | dependencies:
3329 | call-bind "^1.0.2"
3330 | for-each "^0.3.3"
3331 | is-typed-array "^1.1.9"
3332 |
3333 | typescript@^4.1.3:
3334 | version "4.9.5"
3335 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
3336 | integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
3337 |
3338 | unbox-primitive@^1.0.2:
3339 | version "1.0.2"
3340 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
3341 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
3342 | dependencies:
3343 | call-bind "^1.0.2"
3344 | has-bigints "^1.0.2"
3345 | has-symbols "^1.0.3"
3346 | which-boxed-primitive "^1.0.2"
3347 |
3348 | unicode-canonical-property-names-ecmascript@^2.0.0:
3349 | version "2.0.0"
3350 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
3351 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
3352 |
3353 | unicode-match-property-ecmascript@^2.0.0:
3354 | version "2.0.0"
3355 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
3356 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
3357 | dependencies:
3358 | unicode-canonical-property-names-ecmascript "^2.0.0"
3359 | unicode-property-aliases-ecmascript "^2.0.0"
3360 |
3361 | unicode-match-property-value-ecmascript@^2.1.0:
3362 | version "2.1.0"
3363 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
3364 | integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
3365 |
3366 | unicode-property-aliases-ecmascript@^2.0.0:
3367 | version "2.1.0"
3368 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
3369 | integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
3370 |
3371 | universalify@^2.0.0:
3372 | version "2.0.0"
3373 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
3374 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
3375 |
3376 | update-browserslist-db@^1.0.11:
3377 | version "1.0.11"
3378 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
3379 | integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
3380 | dependencies:
3381 | escalade "^3.1.1"
3382 | picocolors "^1.0.0"
3383 |
3384 | util-deprecate@^1.0.2:
3385 | version "1.0.2"
3386 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3387 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
3388 |
3389 | which-boxed-primitive@^1.0.2:
3390 | version "1.0.2"
3391 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
3392 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
3393 | dependencies:
3394 | is-bigint "^1.0.1"
3395 | is-boolean-object "^1.1.0"
3396 | is-number-object "^1.0.4"
3397 | is-string "^1.0.5"
3398 | is-symbol "^1.0.3"
3399 |
3400 | which-typed-array@^1.1.10, which-typed-array@^1.1.11:
3401 | version "1.1.11"
3402 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a"
3403 | integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==
3404 | dependencies:
3405 | available-typed-arrays "^1.0.5"
3406 | call-bind "^1.0.2"
3407 | for-each "^0.3.3"
3408 | gopd "^1.0.1"
3409 | has-tostringtag "^1.0.0"
3410 |
3411 | wrap-ansi@^7.0.0:
3412 | version "7.0.0"
3413 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
3414 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
3415 | dependencies:
3416 | ansi-styles "^4.0.0"
3417 | string-width "^4.1.0"
3418 | strip-ansi "^6.0.0"
3419 |
3420 | wrappy@1:
3421 | version "1.0.2"
3422 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3423 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
3424 |
3425 | y18n@^5.0.5:
3426 | version "5.0.8"
3427 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
3428 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
3429 |
3430 | yallist@^3.0.2:
3431 | version "3.1.1"
3432 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
3433 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
3434 |
3435 | yaml@^1.10.0, yaml@^1.10.2:
3436 | version "1.10.2"
3437 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
3438 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
3439 |
3440 | yargs-parser@^21.1.1:
3441 | version "21.1.1"
3442 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
3443 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
3444 |
3445 | yargs@^17.5.1:
3446 | version "17.7.2"
3447 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
3448 | integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
3449 | dependencies:
3450 | cliui "^8.0.1"
3451 | escalade "^3.1.1"
3452 | get-caller-file "^2.0.5"
3453 | require-directory "^2.1.1"
3454 | string-width "^4.2.3"
3455 | y18n "^5.0.5"
3456 | yargs-parser "^21.1.1"
3457 |
--------------------------------------------------------------------------------