├── .eslintrc ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RNDeviceBrightness.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RNDeviceBrightness ├── RNDeviceBrightness.h └── RNDeviceBrightness.m ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── org │ └── capslock │ └── RNDeviceBrightness │ ├── RNDeviceBrightness.java │ └── RNDeviceBrightnessModule.java ├── index.ts ├── package.json ├── react-native-device-brightness.podspec ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | // Use this file as a starting point for your project's .eslintrc. 2 | // Copy this file, and add rule overrides as needed. 3 | { 4 | "root": true, 5 | "parser": "@typescript-eslint/parser", 6 | "plugins": ["@typescript-eslint"], 7 | "extends": [ 8 | "eslint:recommended", 9 | "plugin:@typescript-eslint/eslint-recommended", 10 | "plugin:@typescript-eslint/recommended" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | 4 | .DS_Store 5 | 6 | # Xcode 7 | # 8 | build/ 9 | *.pbxuser 10 | !default.pbxuser 11 | *.mode1v3 12 | !default.mode1v3 13 | *.mode2v3 14 | !default.mode2v3 15 | *.perspectivev3 16 | !default.perspectivev3 17 | xcuserdata 18 | *.xccheckout 19 | *.moved-aside 20 | DerivedData 21 | *.hmap 22 | *.ipa 23 | *.xcuserstate 24 | 25 | # CocoaPods 26 | # 27 | # We recommend against adding the Pods directory to your .gitignore. However 28 | # you should judge for yourself, the pros and cons are mentioned at: 29 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 30 | # 31 | #Pods/ 32 | 33 | .idea/.name 34 | 35 | .idea/compiler.xml 36 | 37 | .idea/copyright/profiles_settings.xml 38 | 39 | .idea/encodings.xml 40 | 41 | .idea/misc.xml 42 | 43 | .idea/modules.xml 44 | 45 | .idea/react-native-device-info.iml 46 | 47 | .idea/vcs.xml 48 | 49 | .idea/workspace.xml 50 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .eslintignore 2 | .eslintrc 3 | .prettierrc 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## 1.2.6 4 | 5 | - Convert to Typescript 6 | - Update gradle for React Native 0.68+ compatibility 7 | 8 | ## 1.2.5 9 | 10 | - Update gradle for React Native 0.64+ compatibility 11 | - Update devDependencies 12 | 13 | ## 1.2.4 14 | 15 | - Chore: Update devDependencies 16 | 17 | ## 1.2.3 18 | 19 | - Fix Android build warnings 20 | 21 | ## 1.2.2 22 | 23 | - Fix Cocoapod build errors for scoped packages 24 | 25 | ## 1.2.1 26 | 27 | - Rename package to use scopes 28 | - iOS 13 support 29 | - React Native 0.60+ autolinking support 30 | 31 | ## 1.2.0 (Set. 9, 2017) 32 | 33 | - Android [#10](https://github.com/Calvin-Huang/react-native-device-brightness/pull/10) Remove unused registration of JS module to fix building version of 0.47+. 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Adrian So 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 | # @adrianso/react-native-device-brightness 2 | 3 | [![npm version](https://badge.fury.io/js/%40adrianso%2Freact-native-device-brightness.svg)](https://badge.fury.io/js/%40adrianso%2Freact-native-device-brightness) 4 | 5 | This is a native module for React Native to control the screen brightness. 6 | 7 | It is a fork of https://github.com/Calvin-Huang/react-native-device-brightness, and has added the following features: 8 | 9 | - React Native 0.60 compatibility 10 | - iOS 13 compatibility 11 | 12 | ## Installation 13 | 14 | ``` 15 | yarn add @adrianso/react-native-device-brightness 16 | ``` 17 | 18 | ## Linking 19 | 20 | This module supports auto-linking for React Native version 0.60 and above. No additional steps are required. 21 | 22 | ## Usage 23 | 24 | **Important: Brightness Level only accept value 0 to 1.** 25 | 26 | - _Adjusting screen brightness will make iOS's Auto-Brightness function do nothing._ 27 | - _Adjusting screen brightness in Android only works in App and will reset to system setting exiting App._ 28 | 29 | ```javascript 30 | import DeviceBrightness from 'react-native-device-brightness'; 31 | 32 | // Setting brightness 33 | DeviceBrightness.setBrightnessLevel(brightness); 34 | 35 | // Getting brightness 36 | const brightness = await DeviceBrightness.getBrightnessLevel(); 37 | console.log(brightness); 38 | 39 | // Getting system brightness (Android only) 40 | const brightness = await DeviceBrightness.getSystemBrightnessLevel(); 41 | console.log(brightness); 42 | ``` 43 | 44 | ## License 45 | 46 | This software is licensed under the [MIT License](https://github.com/adrianso/react-native-device-brightness/blob/master/LICENSE). 47 | -------------------------------------------------------------------------------- /RNDeviceBrightness.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 189E4F981E73FA6B00C0D8E0 /* RNDeviceBrightness.m in Sources */ = {isa = PBXBuildFile; fileRef = 189E4F971E73FA6B00C0D8E0 /* RNDeviceBrightness.m */; }; 11 | 189E4F991E73FA6B00C0D8E0 /* RNDeviceBrightness.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 189E4F961E73FA6B00C0D8E0 /* RNDeviceBrightness.h */; }; 12 | /* End PBXBuildFile section */ 13 | 14 | /* Begin PBXCopyFilesBuildPhase section */ 15 | 189E4F911E73FA6B00C0D8E0 /* CopyFiles */ = { 16 | isa = PBXCopyFilesBuildPhase; 17 | buildActionMask = 2147483647; 18 | dstPath = "include/$(PRODUCT_NAME)"; 19 | dstSubfolderSpec = 16; 20 | files = ( 21 | 189E4F991E73FA6B00C0D8E0 /* RNDeviceBrightness.h in CopyFiles */, 22 | ); 23 | runOnlyForDeploymentPostprocessing = 0; 24 | }; 25 | /* End PBXCopyFilesBuildPhase section */ 26 | 27 | /* Begin PBXFileReference section */ 28 | 189E4F931E73FA6B00C0D8E0 /* libRNDeviceBrightness.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNDeviceBrightness.a; sourceTree = BUILT_PRODUCTS_DIR; }; 29 | 189E4F961E73FA6B00C0D8E0 /* RNDeviceBrightness.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RNDeviceBrightness.h; sourceTree = ""; }; 30 | 189E4F971E73FA6B00C0D8E0 /* RNDeviceBrightness.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNDeviceBrightness.m; sourceTree = ""; }; 31 | /* End PBXFileReference section */ 32 | 33 | /* Begin PBXFrameworksBuildPhase section */ 34 | 189E4F901E73FA6B00C0D8E0 /* Frameworks */ = { 35 | isa = PBXFrameworksBuildPhase; 36 | buildActionMask = 2147483647; 37 | files = ( 38 | ); 39 | runOnlyForDeploymentPostprocessing = 0; 40 | }; 41 | /* End PBXFrameworksBuildPhase section */ 42 | 43 | /* Begin PBXGroup section */ 44 | 189E4F8A1E73FA6B00C0D8E0 = { 45 | isa = PBXGroup; 46 | children = ( 47 | 189E4F951E73FA6B00C0D8E0 /* RNDeviceBrightness */, 48 | 189E4F941E73FA6B00C0D8E0 /* Products */, 49 | ); 50 | sourceTree = ""; 51 | }; 52 | 189E4F941E73FA6B00C0D8E0 /* Products */ = { 53 | isa = PBXGroup; 54 | children = ( 55 | 189E4F931E73FA6B00C0D8E0 /* libRNDeviceBrightness.a */, 56 | ); 57 | name = Products; 58 | sourceTree = ""; 59 | }; 60 | 189E4F951E73FA6B00C0D8E0 /* RNDeviceBrightness */ = { 61 | isa = PBXGroup; 62 | children = ( 63 | 189E4F961E73FA6B00C0D8E0 /* RNDeviceBrightness.h */, 64 | 189E4F971E73FA6B00C0D8E0 /* RNDeviceBrightness.m */, 65 | ); 66 | path = RNDeviceBrightness; 67 | sourceTree = ""; 68 | }; 69 | /* End PBXGroup section */ 70 | 71 | /* Begin PBXNativeTarget section */ 72 | 189E4F921E73FA6B00C0D8E0 /* RNDeviceBrightness */ = { 73 | isa = PBXNativeTarget; 74 | buildConfigurationList = 189E4F9C1E73FA6B00C0D8E0 /* Build configuration list for PBXNativeTarget "RNDeviceBrightness" */; 75 | buildPhases = ( 76 | 189E4F8F1E73FA6B00C0D8E0 /* Sources */, 77 | 189E4F901E73FA6B00C0D8E0 /* Frameworks */, 78 | 189E4F911E73FA6B00C0D8E0 /* CopyFiles */, 79 | ); 80 | buildRules = ( 81 | ); 82 | dependencies = ( 83 | ); 84 | name = RNDeviceBrightness; 85 | productName = RNDeviceBrightness; 86 | productReference = 189E4F931E73FA6B00C0D8E0 /* libRNDeviceBrightness.a */; 87 | productType = "com.apple.product-type.library.static"; 88 | }; 89 | /* End PBXNativeTarget section */ 90 | 91 | /* Begin PBXProject section */ 92 | 189E4F8B1E73FA6B00C0D8E0 /* Project object */ = { 93 | isa = PBXProject; 94 | attributes = { 95 | LastUpgradeCheck = 0820; 96 | ORGANIZATIONNAME = CapsLock; 97 | TargetAttributes = { 98 | 189E4F921E73FA6B00C0D8E0 = { 99 | CreatedOnToolsVersion = 8.2.1; 100 | DevelopmentTeam = ZT2WJ442QP; 101 | ProvisioningStyle = Automatic; 102 | }; 103 | }; 104 | }; 105 | buildConfigurationList = 189E4F8E1E73FA6B00C0D8E0 /* Build configuration list for PBXProject "RNDeviceBrightness" */; 106 | compatibilityVersion = "Xcode 3.2"; 107 | developmentRegion = English; 108 | hasScannedForEncodings = 0; 109 | knownRegions = ( 110 | en, 111 | ); 112 | mainGroup = 189E4F8A1E73FA6B00C0D8E0; 113 | productRefGroup = 189E4F941E73FA6B00C0D8E0 /* Products */; 114 | projectDirPath = ""; 115 | projectRoot = ""; 116 | targets = ( 117 | 189E4F921E73FA6B00C0D8E0 /* RNDeviceBrightness */, 118 | ); 119 | }; 120 | /* End PBXProject section */ 121 | 122 | /* Begin PBXSourcesBuildPhase section */ 123 | 189E4F8F1E73FA6B00C0D8E0 /* Sources */ = { 124 | isa = PBXSourcesBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | 189E4F981E73FA6B00C0D8E0 /* RNDeviceBrightness.m in Sources */, 128 | ); 129 | runOnlyForDeploymentPostprocessing = 0; 130 | }; 131 | /* End PBXSourcesBuildPhase section */ 132 | 133 | /* Begin XCBuildConfiguration section */ 134 | 189E4F9A1E73FA6B00C0D8E0 /* Debug */ = { 135 | isa = XCBuildConfiguration; 136 | buildSettings = { 137 | ALWAYS_SEARCH_USER_PATHS = NO; 138 | CLANG_ANALYZER_NONNULL = YES; 139 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 140 | CLANG_CXX_LIBRARY = "libc++"; 141 | CLANG_ENABLE_MODULES = YES; 142 | CLANG_ENABLE_OBJC_ARC = YES; 143 | CLANG_WARN_BOOL_CONVERSION = YES; 144 | CLANG_WARN_CONSTANT_CONVERSION = YES; 145 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 146 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 147 | CLANG_WARN_EMPTY_BODY = YES; 148 | CLANG_WARN_ENUM_CONVERSION = YES; 149 | CLANG_WARN_INFINITE_RECURSION = YES; 150 | CLANG_WARN_INT_CONVERSION = YES; 151 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 152 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 153 | CLANG_WARN_UNREACHABLE_CODE = YES; 154 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 155 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 156 | COPY_PHASE_STRIP = NO; 157 | DEBUG_INFORMATION_FORMAT = dwarf; 158 | ENABLE_STRICT_OBJC_MSGSEND = YES; 159 | ENABLE_TESTABILITY = YES; 160 | GCC_C_LANGUAGE_STANDARD = gnu99; 161 | GCC_DYNAMIC_NO_PIC = NO; 162 | GCC_NO_COMMON_BLOCKS = YES; 163 | GCC_OPTIMIZATION_LEVEL = 0; 164 | GCC_PREPROCESSOR_DEFINITIONS = ( 165 | "DEBUG=1", 166 | "$(inherited)", 167 | ); 168 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 169 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 170 | GCC_WARN_UNDECLARED_SELECTOR = YES; 171 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 172 | GCC_WARN_UNUSED_FUNCTION = YES; 173 | GCC_WARN_UNUSED_VARIABLE = YES; 174 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 175 | MTL_ENABLE_DEBUG_INFO = YES; 176 | ONLY_ACTIVE_ARCH = YES; 177 | SDKROOT = iphoneos; 178 | }; 179 | name = Debug; 180 | }; 181 | 189E4F9B1E73FA6B00C0D8E0 /* Release */ = { 182 | isa = XCBuildConfiguration; 183 | buildSettings = { 184 | ALWAYS_SEARCH_USER_PATHS = NO; 185 | CLANG_ANALYZER_NONNULL = YES; 186 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 187 | CLANG_CXX_LIBRARY = "libc++"; 188 | CLANG_ENABLE_MODULES = YES; 189 | CLANG_ENABLE_OBJC_ARC = YES; 190 | CLANG_WARN_BOOL_CONVERSION = YES; 191 | CLANG_WARN_CONSTANT_CONVERSION = YES; 192 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 193 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 194 | CLANG_WARN_EMPTY_BODY = YES; 195 | CLANG_WARN_ENUM_CONVERSION = YES; 196 | CLANG_WARN_INFINITE_RECURSION = YES; 197 | CLANG_WARN_INT_CONVERSION = YES; 198 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 199 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 200 | CLANG_WARN_UNREACHABLE_CODE = YES; 201 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 202 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 203 | COPY_PHASE_STRIP = NO; 204 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 205 | ENABLE_NS_ASSERTIONS = NO; 206 | ENABLE_STRICT_OBJC_MSGSEND = YES; 207 | GCC_C_LANGUAGE_STANDARD = gnu99; 208 | GCC_NO_COMMON_BLOCKS = YES; 209 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 210 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 211 | GCC_WARN_UNDECLARED_SELECTOR = YES; 212 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 213 | GCC_WARN_UNUSED_FUNCTION = YES; 214 | GCC_WARN_UNUSED_VARIABLE = YES; 215 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 216 | MTL_ENABLE_DEBUG_INFO = NO; 217 | SDKROOT = iphoneos; 218 | VALIDATE_PRODUCT = YES; 219 | }; 220 | name = Release; 221 | }; 222 | 189E4F9D1E73FA6B00C0D8E0 /* Debug */ = { 223 | isa = XCBuildConfiguration; 224 | buildSettings = { 225 | DEVELOPMENT_TEAM = ZT2WJ442QP; 226 | OTHER_LDFLAGS = "-ObjC"; 227 | PRODUCT_NAME = "$(TARGET_NAME)"; 228 | SKIP_INSTALL = YES; 229 | }; 230 | name = Debug; 231 | }; 232 | 189E4F9E1E73FA6B00C0D8E0 /* Release */ = { 233 | isa = XCBuildConfiguration; 234 | buildSettings = { 235 | DEVELOPMENT_TEAM = ZT2WJ442QP; 236 | OTHER_LDFLAGS = "-ObjC"; 237 | PRODUCT_NAME = "$(TARGET_NAME)"; 238 | SKIP_INSTALL = YES; 239 | }; 240 | name = Release; 241 | }; 242 | /* End XCBuildConfiguration section */ 243 | 244 | /* Begin XCConfigurationList section */ 245 | 189E4F8E1E73FA6B00C0D8E0 /* Build configuration list for PBXProject "RNDeviceBrightness" */ = { 246 | isa = XCConfigurationList; 247 | buildConfigurations = ( 248 | 189E4F9A1E73FA6B00C0D8E0 /* Debug */, 249 | 189E4F9B1E73FA6B00C0D8E0 /* Release */, 250 | ); 251 | defaultConfigurationIsVisible = 0; 252 | defaultConfigurationName = Release; 253 | }; 254 | 189E4F9C1E73FA6B00C0D8E0 /* Build configuration list for PBXNativeTarget "RNDeviceBrightness" */ = { 255 | isa = XCConfigurationList; 256 | buildConfigurations = ( 257 | 189E4F9D1E73FA6B00C0D8E0 /* Debug */, 258 | 189E4F9E1E73FA6B00C0D8E0 /* Release */, 259 | ); 260 | defaultConfigurationIsVisible = 0; 261 | }; 262 | /* End XCConfigurationList section */ 263 | }; 264 | rootObject = 189E4F8B1E73FA6B00C0D8E0 /* Project object */; 265 | } 266 | -------------------------------------------------------------------------------- /RNDeviceBrightness.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RNDeviceBrightness/RNDeviceBrightness.h: -------------------------------------------------------------------------------- 1 | // 2 | // RNDeviceBrightness.h 3 | // RNDeviceBrightness 4 | // 5 | // Created by Calvin on 3/11/17. 6 | // Copyright © 2017 CapsLock. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface RNDeviceBrightness : NSObject 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /RNDeviceBrightness/RNDeviceBrightness.m: -------------------------------------------------------------------------------- 1 | // 2 | // RNDeviceBrightness.m 3 | // RNDeviceBrightness 4 | // 5 | // Created by Calvin on 3/11/17. 6 | // Copyright © 2017 CapsLock. All rights reserved. 7 | // 8 | 9 | #import "RNDeviceBrightness.h" 10 | 11 | @implementation RNDeviceBrightness 12 | 13 | RCT_EXPORT_MODULE() 14 | 15 | RCT_EXPORT_METHOD(setBrightnessLevel:(float)brightnessLevel) 16 | { 17 | dispatch_async(dispatch_get_main_queue(), ^{ 18 | [UIScreen mainScreen].brightness = brightnessLevel; 19 | }); 20 | } 21 | 22 | RCT_REMAP_METHOD(getBrightnessLevel, 23 | resolver:(RCTPromiseResolveBlock)resolve 24 | rejecter:(RCTPromiseRejectBlock)reject) 25 | { 26 | resolve(@([UIScreen mainScreen].brightness)); 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 31 5 | 6 | defaultConfig { 7 | minSdkVersion 21 8 | targetSdkVersion 31 9 | versionCode 2 10 | versionName "1.1" 11 | ndk { 12 | abiFilters "armeabi-v7a", "x86" 13 | } 14 | } 15 | } 16 | 17 | dependencies { 18 | implementation 'com.facebook.react:react-native:+' 19 | } 20 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /android/src/main/java/org/capslock/RNDeviceBrightness/RNDeviceBrightness.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by Calvin Huang on 3/11/17. 3 | */ 4 | 5 | package org.capslock.RNDeviceBrightness; 6 | 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.bridge.JavaScriptModule; 9 | import com.facebook.react.bridge.NativeModule; 10 | import com.facebook.react.bridge.ReactApplicationContext; 11 | import com.facebook.react.uimanager.ViewManager; 12 | 13 | import java.util.ArrayList; 14 | import java.util.Collections; 15 | import java.util.List; 16 | 17 | public class RNDeviceBrightness implements ReactPackage { 18 | 19 | // Deprecated in RN 0.47 - facebook/react-native@ce6fb33 20 | public List> createJSModules() { 21 | return Collections.emptyList(); 22 | } 23 | 24 | @Override 25 | public List createViewManagers(ReactApplicationContext reactContext) { 26 | return Collections.emptyList(); 27 | } 28 | 29 | @Override 30 | public List createNativeModules(ReactApplicationContext reactContext) { 31 | List modules = new ArrayList<>(); 32 | 33 | modules.add(new RNDeviceBrightnessModule(reactContext)); 34 | 35 | return modules; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /android/src/main/java/org/capslock/RNDeviceBrightness/RNDeviceBrightnessModule.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by Calvin Huang on 3/11/17. 3 | */ 4 | 5 | package org.capslock.RNDeviceBrightness; 6 | 7 | import android.app.Activity; 8 | import android.view.WindowManager; 9 | import android.provider.Settings; 10 | 11 | import com.facebook.react.bridge.NativeModule; 12 | import com.facebook.react.bridge.ReactApplicationContext; 13 | import com.facebook.react.bridge.ReactContext; 14 | import com.facebook.react.bridge.ReactContextBaseJavaModule; 15 | import com.facebook.react.bridge.ReactMethod; 16 | import com.facebook.react.bridge.Promise; 17 | 18 | public class RNDeviceBrightnessModule extends ReactContextBaseJavaModule { 19 | public RNDeviceBrightnessModule(ReactApplicationContext reactContext) { 20 | super(reactContext); 21 | } 22 | 23 | @Override 24 | public String getName() { 25 | return "RNDeviceBrightness"; 26 | } 27 | 28 | @ReactMethod 29 | public void setBrightnessLevel(final float brightnessLevel) { 30 | final Activity activity = getCurrentActivity(); 31 | if (activity == null) { 32 | return; 33 | } 34 | 35 | activity.runOnUiThread(new Runnable() { 36 | @Override 37 | public void run() { 38 | WindowManager.LayoutParams lp = activity.getWindow().getAttributes(); 39 | lp.screenBrightness = brightnessLevel; 40 | activity.getWindow().setAttributes(lp); 41 | } 42 | }); 43 | } 44 | 45 | @ReactMethod 46 | public void getBrightnessLevel(Promise promise) { 47 | WindowManager.LayoutParams lp = getCurrentActivity().getWindow().getAttributes(); 48 | promise.resolve(lp.screenBrightness); 49 | } 50 | 51 | @ReactMethod 52 | public void getSystemBrightnessLevel(Promise promise){ 53 | String brightness = Settings.System.getString(getCurrentActivity().getContentResolver(), "screen_brightness"); 54 | promise.resolve(Integer.parseInt(brightness)/255f); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | import { NativeModules, Platform } from 'react-native'; 2 | 3 | const { RNDeviceBrightness } = NativeModules; 4 | 5 | export const setBrightnessLevel = async ( 6 | brightnessLevel: number 7 | ): Promise => { 8 | if (brightnessLevel < 0 || brightnessLevel > 1) { 9 | if (!(Platform.OS === 'android' && brightnessLevel === -1)) { 10 | throw Error('⚠️ BrightnessLevel value must betweens 0 to 1 ⚠️'); 11 | } 12 | } 13 | 14 | await RNDeviceBrightness.setBrightnessLevel(brightnessLevel); 15 | }; 16 | 17 | export const getBrightnessLevel = async (): Promise => { 18 | return RNDeviceBrightness.getBrightnessLevel(); 19 | }; 20 | 21 | export const getSystemBrightnessLevel = (): Promise => { 22 | if (Platform.OS !== 'android') { 23 | throw Error('⚠️ Android only supported ⚠️'); 24 | } 25 | return RNDeviceBrightness.getSystemBrightnessLevel(); 26 | }; 27 | 28 | export default { 29 | setBrightnessLevel, 30 | getBrightnessLevel, 31 | getSystemBrightnessLevel, 32 | }; 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@adrianso/react-native-device-brightness", 3 | "version": "1.2.7", 4 | "description": "Screen brightness adjustment tool for React Native", 5 | "homepage": "https://github.com/adrianso/react-native-device-brightness#readme", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/adrianso/react-native-device-brightness" 9 | }, 10 | "keywords": [ 11 | "react-native", 12 | "ios", 13 | "android", 14 | "screen-brightness", 15 | "device-brightness", 16 | "brightness" 17 | ], 18 | "author": "Adrian So (https://github.com/adrianso)", 19 | "license": "MIT", 20 | "main": "lib/index.js", 21 | "types": "lib/index.d.ts", 22 | "scripts": { 23 | "prepublish": "tsc", 24 | "lint": "eslint '**/*.{ts,tsx}'" 25 | }, 26 | "devDependencies": { 27 | "@types/react-native": "^0.71.0", 28 | "@typescript-eslint/eslint-plugin": "^5.48.2", 29 | "@typescript-eslint/parser": "^5.48.2", 30 | "eslint": "^8.32.0", 31 | "typescript": "^4.9.4" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /react-native-device-brightness.podspec: -------------------------------------------------------------------------------- 1 | require "json" 2 | 3 | package = JSON.parse(File.read(File.join(__dir__, "package.json"))) 4 | 5 | Pod::Spec.new do |s| 6 | s.name = "react-native-device-brightness" 7 | s.version = package["version"] 8 | s.summary = package["description"] 9 | s.license = package['license'] 10 | s.homepage = package['homepage'] 11 | s.authors = package['author'] 12 | s.platform = :ios, "9.0" 13 | s.source = { :path => "RNDeviceBrightness/" } 14 | s.source_files = "**/*.{h,m}" 15 | 16 | s.dependency "React" 17 | end -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */, 5 | "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, 6 | "lib": [ 7 | "es2017" 8 | ] /* Specify library files to be included in the compilation. */, 9 | "allowJs": true /* Allow javascript files to be compiled. */, 10 | // "checkJs": true, /* Report errors in .js files. */ 11 | "jsx": "react-native" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, 12 | "declaration": true /* Generates corresponding '.d.ts' file. */, 13 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 14 | // "outFile": "./", /* Concatenate and emit output to single file. */ 15 | "outDir": "lib" /* Redirect output structure to the directory. */, 16 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 17 | // "removeComments": true, /* Do not emit comments to output. */ 18 | "noEmit": false /* Do not emit outputs. */, 19 | // "incremental": true, /* Enable incremental compilation */ 20 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 21 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 22 | "isolatedModules": true /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */, 23 | 24 | /* Strict Type-Checking Options */ 25 | "strict": true /* Enable all strict type-checking options. */, 26 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 27 | // "strictNullChecks": true, /* Enable strict null checks. */ 28 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 29 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 30 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 31 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 32 | 33 | /* Additional Checks */ 34 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 35 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 36 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 37 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 38 | 39 | /* Module Resolution Options */ 40 | "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, 41 | "resolveJsonModule": true, 42 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 43 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 44 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 45 | // "typeRoots": [], /* List of folders to include type definitions from. */ 46 | "types": [ 47 | "react" 48 | ] /* Type declaration files to be included in compilation. */, 49 | "allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */, 50 | "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, 51 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 52 | "skipLibCheck": true /* Skip type checking of declaration files. */, 53 | 54 | /* Source Map Options */ 55 | // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 56 | // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */ 57 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 58 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 59 | 60 | /* Experimental Options */ 61 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 62 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 63 | "useUnknownInCatchVariables": false 64 | }, 65 | "exclude": ["node_modules", "lib", "Example"] 66 | } 67 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@eslint/eslintrc@^1.4.1": 6 | version "1.4.1" 7 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz#af58772019a2d271b7e2d4c23ff4ddcba3ccfb3e" 8 | integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== 9 | dependencies: 10 | ajv "^6.12.4" 11 | debug "^4.3.2" 12 | espree "^9.4.0" 13 | globals "^13.19.0" 14 | ignore "^5.2.0" 15 | import-fresh "^3.2.1" 16 | js-yaml "^4.1.0" 17 | minimatch "^3.1.2" 18 | strip-json-comments "^3.1.1" 19 | 20 | "@humanwhocodes/config-array@^0.11.8": 21 | version "0.11.8" 22 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 23 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 24 | dependencies: 25 | "@humanwhocodes/object-schema" "^1.2.1" 26 | debug "^4.1.1" 27 | minimatch "^3.0.5" 28 | 29 | "@humanwhocodes/module-importer@^1.0.1": 30 | version "1.0.1" 31 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 32 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 33 | 34 | "@humanwhocodes/object-schema@^1.2.1": 35 | version "1.2.1" 36 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 37 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 38 | 39 | "@nodelib/fs.scandir@2.1.5": 40 | version "2.1.5" 41 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 42 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 43 | dependencies: 44 | "@nodelib/fs.stat" "2.0.5" 45 | run-parallel "^1.1.9" 46 | 47 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 48 | version "2.0.5" 49 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 50 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 51 | 52 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 53 | version "1.2.8" 54 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 55 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 56 | dependencies: 57 | "@nodelib/fs.scandir" "2.1.5" 58 | fastq "^1.6.0" 59 | 60 | "@types/json-schema@^7.0.9": 61 | version "7.0.11" 62 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" 63 | integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== 64 | 65 | "@types/prop-types@*": 66 | version "15.7.5" 67 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 68 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 69 | 70 | "@types/react-native@^0.71.0": 71 | version "0.71.0" 72 | resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.71.0.tgz#a6f4d2d6c3730e86ceef0870d3cf221a54ec94c2" 73 | integrity sha512-4MAoseGM8zv5PKQyc2SvKldvOmCJX4mNqj+mDqh0J9yJMzWQnGenk2vQCi+jxMXa3xWYIgx+ewaCSw0XiiGGSw== 74 | dependencies: 75 | "@types/react" "*" 76 | 77 | "@types/react@*": 78 | version "18.0.27" 79 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.27.tgz#d9425abe187a00f8a5ec182b010d4fd9da703b71" 80 | integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== 81 | dependencies: 82 | "@types/prop-types" "*" 83 | "@types/scheduler" "*" 84 | csstype "^3.0.2" 85 | 86 | "@types/scheduler@*": 87 | version "0.16.2" 88 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 89 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 90 | 91 | "@types/semver@^7.3.12": 92 | version "7.3.13" 93 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" 94 | integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== 95 | 96 | "@typescript-eslint/eslint-plugin@^5.48.2": 97 | version "5.48.2" 98 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.48.2.tgz#112e6ae1e23a1dc8333ce82bb9c65c2608b4d8a3" 99 | integrity sha512-sR0Gja9Ky1teIq4qJOl0nC+Tk64/uYdX+mi+5iB//MH8gwyx8e3SOyhEzeLZEFEEfCaLf8KJq+Bd/6je1t+CAg== 100 | dependencies: 101 | "@typescript-eslint/scope-manager" "5.48.2" 102 | "@typescript-eslint/type-utils" "5.48.2" 103 | "@typescript-eslint/utils" "5.48.2" 104 | debug "^4.3.4" 105 | ignore "^5.2.0" 106 | natural-compare-lite "^1.4.0" 107 | regexpp "^3.2.0" 108 | semver "^7.3.7" 109 | tsutils "^3.21.0" 110 | 111 | "@typescript-eslint/parser@^5.48.2": 112 | version "5.48.2" 113 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.48.2.tgz#c9edef2a0922d26a37dba03be20c5fff378313b3" 114 | integrity sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw== 115 | dependencies: 116 | "@typescript-eslint/scope-manager" "5.48.2" 117 | "@typescript-eslint/types" "5.48.2" 118 | "@typescript-eslint/typescript-estree" "5.48.2" 119 | debug "^4.3.4" 120 | 121 | "@typescript-eslint/scope-manager@5.48.2": 122 | version "5.48.2" 123 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz#bb7676cb78f1e94921eaab637a4b5d596f838abc" 124 | integrity sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw== 125 | dependencies: 126 | "@typescript-eslint/types" "5.48.2" 127 | "@typescript-eslint/visitor-keys" "5.48.2" 128 | 129 | "@typescript-eslint/type-utils@5.48.2": 130 | version "5.48.2" 131 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.48.2.tgz#7d3aeca9fa37a7ab7e3d9056a99b42f342c48ad7" 132 | integrity sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew== 133 | dependencies: 134 | "@typescript-eslint/typescript-estree" "5.48.2" 135 | "@typescript-eslint/utils" "5.48.2" 136 | debug "^4.3.4" 137 | tsutils "^3.21.0" 138 | 139 | "@typescript-eslint/types@5.48.2": 140 | version "5.48.2" 141 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.48.2.tgz#635706abb1ec164137f92148f06f794438c97b8e" 142 | integrity sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA== 143 | 144 | "@typescript-eslint/typescript-estree@5.48.2": 145 | version "5.48.2" 146 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz#6e206b462942b32383582a6c9251c05021cc21b0" 147 | integrity sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg== 148 | dependencies: 149 | "@typescript-eslint/types" "5.48.2" 150 | "@typescript-eslint/visitor-keys" "5.48.2" 151 | debug "^4.3.4" 152 | globby "^11.1.0" 153 | is-glob "^4.0.3" 154 | semver "^7.3.7" 155 | tsutils "^3.21.0" 156 | 157 | "@typescript-eslint/utils@5.48.2": 158 | version "5.48.2" 159 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.48.2.tgz#3777a91dcb22b8499a25519e06eef2e9569295a3" 160 | integrity sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow== 161 | dependencies: 162 | "@types/json-schema" "^7.0.9" 163 | "@types/semver" "^7.3.12" 164 | "@typescript-eslint/scope-manager" "5.48.2" 165 | "@typescript-eslint/types" "5.48.2" 166 | "@typescript-eslint/typescript-estree" "5.48.2" 167 | eslint-scope "^5.1.1" 168 | eslint-utils "^3.0.0" 169 | semver "^7.3.7" 170 | 171 | "@typescript-eslint/visitor-keys@5.48.2": 172 | version "5.48.2" 173 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz#c247582a0bcce467461d7b696513bf9455000060" 174 | integrity sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ== 175 | dependencies: 176 | "@typescript-eslint/types" "5.48.2" 177 | eslint-visitor-keys "^3.3.0" 178 | 179 | acorn-jsx@^5.3.2: 180 | version "5.3.2" 181 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 182 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 183 | 184 | acorn@^8.8.0: 185 | version "8.8.1" 186 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" 187 | integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== 188 | 189 | ajv@^6.10.0, ajv@^6.12.4: 190 | version "6.12.6" 191 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 192 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 193 | dependencies: 194 | fast-deep-equal "^3.1.1" 195 | fast-json-stable-stringify "^2.0.0" 196 | json-schema-traverse "^0.4.1" 197 | uri-js "^4.2.2" 198 | 199 | ansi-regex@^5.0.1: 200 | version "5.0.1" 201 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 202 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 203 | 204 | ansi-styles@^4.1.0: 205 | version "4.3.0" 206 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 207 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 208 | dependencies: 209 | color-convert "^2.0.1" 210 | 211 | argparse@^2.0.1: 212 | version "2.0.1" 213 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 214 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 215 | 216 | array-union@^2.1.0: 217 | version "2.1.0" 218 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 219 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 220 | 221 | balanced-match@^1.0.0: 222 | version "1.0.2" 223 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 224 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 225 | 226 | brace-expansion@^1.1.7: 227 | version "1.1.11" 228 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 229 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 230 | dependencies: 231 | balanced-match "^1.0.0" 232 | concat-map "0.0.1" 233 | 234 | braces@^3.0.2: 235 | version "3.0.2" 236 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 237 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 238 | dependencies: 239 | fill-range "^7.0.1" 240 | 241 | callsites@^3.0.0: 242 | version "3.1.0" 243 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 244 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 245 | 246 | chalk@^4.0.0: 247 | version "4.1.2" 248 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 249 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 250 | dependencies: 251 | ansi-styles "^4.1.0" 252 | supports-color "^7.1.0" 253 | 254 | color-convert@^2.0.1: 255 | version "2.0.1" 256 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 257 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 258 | dependencies: 259 | color-name "~1.1.4" 260 | 261 | color-name@~1.1.4: 262 | version "1.1.4" 263 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 264 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 265 | 266 | concat-map@0.0.1: 267 | version "0.0.1" 268 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 269 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 270 | 271 | cross-spawn@^7.0.2: 272 | version "7.0.3" 273 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 274 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 275 | dependencies: 276 | path-key "^3.1.0" 277 | shebang-command "^2.0.0" 278 | which "^2.0.1" 279 | 280 | csstype@^3.0.2: 281 | version "3.1.1" 282 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" 283 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 284 | 285 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 286 | version "4.3.4" 287 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 288 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 289 | dependencies: 290 | ms "2.1.2" 291 | 292 | deep-is@^0.1.3: 293 | version "0.1.4" 294 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 295 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 296 | 297 | dir-glob@^3.0.1: 298 | version "3.0.1" 299 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 300 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 301 | dependencies: 302 | path-type "^4.0.0" 303 | 304 | doctrine@^3.0.0: 305 | version "3.0.0" 306 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 307 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 308 | dependencies: 309 | esutils "^2.0.2" 310 | 311 | escape-string-regexp@^4.0.0: 312 | version "4.0.0" 313 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 314 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 315 | 316 | eslint-scope@^5.1.1: 317 | version "5.1.1" 318 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 319 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 320 | dependencies: 321 | esrecurse "^4.3.0" 322 | estraverse "^4.1.1" 323 | 324 | eslint-scope@^7.1.1: 325 | version "7.1.1" 326 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 327 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 328 | dependencies: 329 | esrecurse "^4.3.0" 330 | estraverse "^5.2.0" 331 | 332 | eslint-utils@^3.0.0: 333 | version "3.0.0" 334 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 335 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 336 | dependencies: 337 | eslint-visitor-keys "^2.0.0" 338 | 339 | eslint-visitor-keys@^2.0.0: 340 | version "2.1.0" 341 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 342 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 343 | 344 | eslint-visitor-keys@^3.3.0: 345 | version "3.3.0" 346 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 347 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 348 | 349 | eslint@^8.32.0: 350 | version "8.32.0" 351 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.32.0.tgz#d9690056bb6f1a302bd991e7090f5b68fbaea861" 352 | integrity sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ== 353 | dependencies: 354 | "@eslint/eslintrc" "^1.4.1" 355 | "@humanwhocodes/config-array" "^0.11.8" 356 | "@humanwhocodes/module-importer" "^1.0.1" 357 | "@nodelib/fs.walk" "^1.2.8" 358 | ajv "^6.10.0" 359 | chalk "^4.0.0" 360 | cross-spawn "^7.0.2" 361 | debug "^4.3.2" 362 | doctrine "^3.0.0" 363 | escape-string-regexp "^4.0.0" 364 | eslint-scope "^7.1.1" 365 | eslint-utils "^3.0.0" 366 | eslint-visitor-keys "^3.3.0" 367 | espree "^9.4.0" 368 | esquery "^1.4.0" 369 | esutils "^2.0.2" 370 | fast-deep-equal "^3.1.3" 371 | file-entry-cache "^6.0.1" 372 | find-up "^5.0.0" 373 | glob-parent "^6.0.2" 374 | globals "^13.19.0" 375 | grapheme-splitter "^1.0.4" 376 | ignore "^5.2.0" 377 | import-fresh "^3.0.0" 378 | imurmurhash "^0.1.4" 379 | is-glob "^4.0.0" 380 | is-path-inside "^3.0.3" 381 | js-sdsl "^4.1.4" 382 | js-yaml "^4.1.0" 383 | json-stable-stringify-without-jsonify "^1.0.1" 384 | levn "^0.4.1" 385 | lodash.merge "^4.6.2" 386 | minimatch "^3.1.2" 387 | natural-compare "^1.4.0" 388 | optionator "^0.9.1" 389 | regexpp "^3.2.0" 390 | strip-ansi "^6.0.1" 391 | strip-json-comments "^3.1.0" 392 | text-table "^0.2.0" 393 | 394 | espree@^9.4.0: 395 | version "9.4.1" 396 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" 397 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 398 | dependencies: 399 | acorn "^8.8.0" 400 | acorn-jsx "^5.3.2" 401 | eslint-visitor-keys "^3.3.0" 402 | 403 | esquery@^1.4.0: 404 | version "1.4.0" 405 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 406 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 407 | dependencies: 408 | estraverse "^5.1.0" 409 | 410 | esrecurse@^4.3.0: 411 | version "4.3.0" 412 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 413 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 414 | dependencies: 415 | estraverse "^5.2.0" 416 | 417 | estraverse@^4.1.1: 418 | version "4.3.0" 419 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 420 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 421 | 422 | estraverse@^5.1.0, estraverse@^5.2.0: 423 | version "5.3.0" 424 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 425 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 426 | 427 | esutils@^2.0.2: 428 | version "2.0.3" 429 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 430 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 431 | 432 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 433 | version "3.1.3" 434 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 435 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 436 | 437 | fast-glob@^3.2.9: 438 | version "3.2.12" 439 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 440 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 441 | dependencies: 442 | "@nodelib/fs.stat" "^2.0.2" 443 | "@nodelib/fs.walk" "^1.2.3" 444 | glob-parent "^5.1.2" 445 | merge2 "^1.3.0" 446 | micromatch "^4.0.4" 447 | 448 | fast-json-stable-stringify@^2.0.0: 449 | version "2.1.0" 450 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 451 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 452 | 453 | fast-levenshtein@^2.0.6: 454 | version "2.0.6" 455 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 456 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 457 | 458 | fastq@^1.6.0: 459 | version "1.15.0" 460 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 461 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 462 | dependencies: 463 | reusify "^1.0.4" 464 | 465 | file-entry-cache@^6.0.1: 466 | version "6.0.1" 467 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 468 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 469 | dependencies: 470 | flat-cache "^3.0.4" 471 | 472 | fill-range@^7.0.1: 473 | version "7.0.1" 474 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 475 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 476 | dependencies: 477 | to-regex-range "^5.0.1" 478 | 479 | find-up@^5.0.0: 480 | version "5.0.0" 481 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 482 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 483 | dependencies: 484 | locate-path "^6.0.0" 485 | path-exists "^4.0.0" 486 | 487 | flat-cache@^3.0.4: 488 | version "3.0.4" 489 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 490 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 491 | dependencies: 492 | flatted "^3.1.0" 493 | rimraf "^3.0.2" 494 | 495 | flatted@^3.1.0: 496 | version "3.2.7" 497 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 498 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 499 | 500 | fs.realpath@^1.0.0: 501 | version "1.0.0" 502 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 503 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 504 | 505 | glob-parent@^5.1.2: 506 | version "5.1.2" 507 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 508 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 509 | dependencies: 510 | is-glob "^4.0.1" 511 | 512 | glob-parent@^6.0.2: 513 | version "6.0.2" 514 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 515 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 516 | dependencies: 517 | is-glob "^4.0.3" 518 | 519 | glob@^7.1.3: 520 | version "7.2.3" 521 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 522 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 523 | dependencies: 524 | fs.realpath "^1.0.0" 525 | inflight "^1.0.4" 526 | inherits "2" 527 | minimatch "^3.1.1" 528 | once "^1.3.0" 529 | path-is-absolute "^1.0.0" 530 | 531 | globals@^13.19.0: 532 | version "13.19.0" 533 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8" 534 | integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ== 535 | dependencies: 536 | type-fest "^0.20.2" 537 | 538 | globby@^11.1.0: 539 | version "11.1.0" 540 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 541 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 542 | dependencies: 543 | array-union "^2.1.0" 544 | dir-glob "^3.0.1" 545 | fast-glob "^3.2.9" 546 | ignore "^5.2.0" 547 | merge2 "^1.4.1" 548 | slash "^3.0.0" 549 | 550 | grapheme-splitter@^1.0.4: 551 | version "1.0.4" 552 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 553 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 554 | 555 | has-flag@^4.0.0: 556 | version "4.0.0" 557 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 558 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 559 | 560 | ignore@^5.2.0: 561 | version "5.2.4" 562 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 563 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 564 | 565 | import-fresh@^3.0.0, import-fresh@^3.2.1: 566 | version "3.3.0" 567 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 568 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 569 | dependencies: 570 | parent-module "^1.0.0" 571 | resolve-from "^4.0.0" 572 | 573 | imurmurhash@^0.1.4: 574 | version "0.1.4" 575 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 576 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 577 | 578 | inflight@^1.0.4: 579 | version "1.0.6" 580 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 581 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 582 | dependencies: 583 | once "^1.3.0" 584 | wrappy "1" 585 | 586 | inherits@2: 587 | version "2.0.4" 588 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 589 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 590 | 591 | is-extglob@^2.1.1: 592 | version "2.1.1" 593 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 594 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 595 | 596 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 597 | version "4.0.3" 598 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 599 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 600 | dependencies: 601 | is-extglob "^2.1.1" 602 | 603 | is-number@^7.0.0: 604 | version "7.0.0" 605 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 606 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 607 | 608 | is-path-inside@^3.0.3: 609 | version "3.0.3" 610 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 611 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 612 | 613 | isexe@^2.0.0: 614 | version "2.0.0" 615 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 616 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 617 | 618 | js-sdsl@^4.1.4: 619 | version "4.2.0" 620 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0" 621 | integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ== 622 | 623 | js-yaml@^4.1.0: 624 | version "4.1.0" 625 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 626 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 627 | dependencies: 628 | argparse "^2.0.1" 629 | 630 | json-schema-traverse@^0.4.1: 631 | version "0.4.1" 632 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 633 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 634 | 635 | json-stable-stringify-without-jsonify@^1.0.1: 636 | version "1.0.1" 637 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 638 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 639 | 640 | levn@^0.4.1: 641 | version "0.4.1" 642 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 643 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 644 | dependencies: 645 | prelude-ls "^1.2.1" 646 | type-check "~0.4.0" 647 | 648 | locate-path@^6.0.0: 649 | version "6.0.0" 650 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 651 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 652 | dependencies: 653 | p-locate "^5.0.0" 654 | 655 | lodash.merge@^4.6.2: 656 | version "4.6.2" 657 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 658 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 659 | 660 | lru-cache@^6.0.0: 661 | version "6.0.0" 662 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 663 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 664 | dependencies: 665 | yallist "^4.0.0" 666 | 667 | merge2@^1.3.0, merge2@^1.4.1: 668 | version "1.4.1" 669 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 670 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 671 | 672 | micromatch@^4.0.4: 673 | version "4.0.5" 674 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 675 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 676 | dependencies: 677 | braces "^3.0.2" 678 | picomatch "^2.3.1" 679 | 680 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 681 | version "3.1.2" 682 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 683 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 684 | dependencies: 685 | brace-expansion "^1.1.7" 686 | 687 | ms@2.1.2: 688 | version "2.1.2" 689 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 690 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 691 | 692 | natural-compare-lite@^1.4.0: 693 | version "1.4.0" 694 | resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" 695 | integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== 696 | 697 | natural-compare@^1.4.0: 698 | version "1.4.0" 699 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 700 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 701 | 702 | once@^1.3.0: 703 | version "1.4.0" 704 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 705 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 706 | dependencies: 707 | wrappy "1" 708 | 709 | optionator@^0.9.1: 710 | version "0.9.1" 711 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 712 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 713 | dependencies: 714 | deep-is "^0.1.3" 715 | fast-levenshtein "^2.0.6" 716 | levn "^0.4.1" 717 | prelude-ls "^1.2.1" 718 | type-check "^0.4.0" 719 | word-wrap "^1.2.3" 720 | 721 | p-limit@^3.0.2: 722 | version "3.1.0" 723 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 724 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 725 | dependencies: 726 | yocto-queue "^0.1.0" 727 | 728 | p-locate@^5.0.0: 729 | version "5.0.0" 730 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 731 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 732 | dependencies: 733 | p-limit "^3.0.2" 734 | 735 | parent-module@^1.0.0: 736 | version "1.0.1" 737 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 738 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 739 | dependencies: 740 | callsites "^3.0.0" 741 | 742 | path-exists@^4.0.0: 743 | version "4.0.0" 744 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 745 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 746 | 747 | path-is-absolute@^1.0.0: 748 | version "1.0.1" 749 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 750 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 751 | 752 | path-key@^3.1.0: 753 | version "3.1.1" 754 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 755 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 756 | 757 | path-type@^4.0.0: 758 | version "4.0.0" 759 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 760 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 761 | 762 | picomatch@^2.3.1: 763 | version "2.3.1" 764 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 765 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 766 | 767 | prelude-ls@^1.2.1: 768 | version "1.2.1" 769 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 770 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 771 | 772 | punycode@^2.1.0: 773 | version "2.2.0" 774 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.2.0.tgz#2092cc57cd2582c38e4e7e8bb869dc8d3148bc74" 775 | integrity sha512-LN6QV1IJ9ZhxWTNdktaPClrNfp8xdSAYS0Zk2ddX7XsXZAxckMHPCBcHRo0cTcEIgYPRiGEkmji3Idkh2yFtYw== 776 | 777 | queue-microtask@^1.2.2: 778 | version "1.2.3" 779 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 780 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 781 | 782 | regexpp@^3.2.0: 783 | version "3.2.0" 784 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 785 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 786 | 787 | resolve-from@^4.0.0: 788 | version "4.0.0" 789 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 790 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 791 | 792 | reusify@^1.0.4: 793 | version "1.0.4" 794 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 795 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 796 | 797 | rimraf@^3.0.2: 798 | version "3.0.2" 799 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 800 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 801 | dependencies: 802 | glob "^7.1.3" 803 | 804 | run-parallel@^1.1.9: 805 | version "1.2.0" 806 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 807 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 808 | dependencies: 809 | queue-microtask "^1.2.2" 810 | 811 | semver@^7.3.7: 812 | version "7.3.8" 813 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 814 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 815 | dependencies: 816 | lru-cache "^6.0.0" 817 | 818 | shebang-command@^2.0.0: 819 | version "2.0.0" 820 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 821 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 822 | dependencies: 823 | shebang-regex "^3.0.0" 824 | 825 | shebang-regex@^3.0.0: 826 | version "3.0.0" 827 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 828 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 829 | 830 | slash@^3.0.0: 831 | version "3.0.0" 832 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 833 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 834 | 835 | strip-ansi@^6.0.1: 836 | version "6.0.1" 837 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 838 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 839 | dependencies: 840 | ansi-regex "^5.0.1" 841 | 842 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 843 | version "3.1.1" 844 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 845 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 846 | 847 | supports-color@^7.1.0: 848 | version "7.2.0" 849 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 850 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 851 | dependencies: 852 | has-flag "^4.0.0" 853 | 854 | text-table@^0.2.0: 855 | version "0.2.0" 856 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 857 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 858 | 859 | to-regex-range@^5.0.1: 860 | version "5.0.1" 861 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 862 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 863 | dependencies: 864 | is-number "^7.0.0" 865 | 866 | tslib@^1.8.1: 867 | version "1.14.1" 868 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 869 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 870 | 871 | tsutils@^3.21.0: 872 | version "3.21.0" 873 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 874 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 875 | dependencies: 876 | tslib "^1.8.1" 877 | 878 | type-check@^0.4.0, type-check@~0.4.0: 879 | version "0.4.0" 880 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 881 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 882 | dependencies: 883 | prelude-ls "^1.2.1" 884 | 885 | type-fest@^0.20.2: 886 | version "0.20.2" 887 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 888 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 889 | 890 | typescript@^4.9.4: 891 | version "4.9.4" 892 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" 893 | integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== 894 | 895 | uri-js@^4.2.2: 896 | version "4.4.1" 897 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 898 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 899 | dependencies: 900 | punycode "^2.1.0" 901 | 902 | which@^2.0.1: 903 | version "2.0.2" 904 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 905 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 906 | dependencies: 907 | isexe "^2.0.0" 908 | 909 | word-wrap@^1.2.3: 910 | version "1.2.3" 911 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 912 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 913 | 914 | wrappy@1: 915 | version "1.0.2" 916 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 917 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 918 | 919 | yallist@^4.0.0: 920 | version "4.0.0" 921 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 922 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 923 | 924 | yocto-queue@^0.1.0: 925 | version "0.1.0" 926 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 927 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 928 | --------------------------------------------------------------------------------