@regulaforensics/document-reader 8.2.186-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (439) hide show
  1. package/README.md +18 -0
  2. package/RNDocumentReader.podspec +21 -0
  3. package/android/CVDDocumentReader.kt +74 -0
  4. package/android/build.gradle +36 -0
  5. package/android/cordova.gradle +12 -0
  6. package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
  7. package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
  8. package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
  9. package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
  10. package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
  11. package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
  12. package/examples/capacitor/README.md +12 -0
  13. package/examples/capacitor/android/app/build.gradle +50 -0
  14. package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
  15. package/examples/capacitor/android/app/proguard-rules.pro +21 -0
  16. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
  17. package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
  18. package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
  19. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
  20. package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
  21. package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
  22. package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
  23. package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
  24. package/examples/capacitor/android/build.gradle +30 -0
  25. package/examples/capacitor/android/capacitor.settings.gradle +15 -0
  26. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  27. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  28. package/examples/capacitor/android/gradle.properties +22 -0
  29. package/examples/capacitor/android/gradlew +252 -0
  30. package/examples/capacitor/android/gradlew.bat +94 -0
  31. package/examples/capacitor/android/settings.gradle +5 -0
  32. package/examples/capacitor/android/variables.gradle +16 -0
  33. package/examples/capacitor/index.html +10 -0
  34. package/examples/capacitor/ionic.config.json +7 -0
  35. package/examples/capacitor/ios/App/App/App.entitlements +5 -0
  36. package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
  37. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
  38. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
  39. package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
  40. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
  41. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
  42. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
  43. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
  44. package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
  45. package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
  46. package/examples/capacitor/ios/App/App/Info.plist +53 -0
  47. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
  48. package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  49. package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
  50. package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  51. package/examples/capacitor/ios/App/Podfile +26 -0
  52. package/examples/capacitor/ios/App/Podfile.lock +56 -0
  53. package/examples/capacitor/package-lock.json +3467 -0
  54. package/examples/capacitor/package.json +29 -0
  55. package/examples/capacitor/public/assets/.gitkeep +0 -0
  56. package/examples/capacitor/public/images/document.png +0 -0
  57. package/examples/capacitor/public/images/portrait.png +0 -0
  58. package/examples/capacitor/scripts/android.sh +9 -0
  59. package/examples/capacitor/scripts/ios.sh +8 -0
  60. package/examples/capacitor/scripts/setup.sh +6 -0
  61. package/examples/capacitor/src/extra/bt_device.tsx +32 -0
  62. package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
  63. package/examples/capacitor/src/main.css +131 -0
  64. package/examples/capacitor/src/main.html +41 -0
  65. package/examples/capacitor/src/main.tsx +175 -0
  66. package/examples/capacitor/tsconfig.json +5 -0
  67. package/examples/capacitor/vite.config.ts +17 -0
  68. package/examples/cordova/.vscode/launch.json +28 -0
  69. package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
  70. package/examples/cordova/README.md +12 -0
  71. package/examples/cordova/config.xml +29 -0
  72. package/examples/cordova/package-lock.json +1314 -0
  73. package/examples/cordova/package.json +32 -0
  74. package/examples/cordova/scripts/android.sh +8 -0
  75. package/examples/cordova/scripts/ios.sh +8 -0
  76. package/examples/cordova/scripts/setup.sh +8 -0
  77. package/examples/cordova/www/images/document.png +0 -0
  78. package/examples/cordova/www/images/logo.png +0 -0
  79. package/examples/cordova/www/images/portrait.png +0 -0
  80. package/examples/cordova/www/index.html +21 -0
  81. package/examples/cordova/www/src/main.css +130 -0
  82. package/examples/cordova/www/src/main.html +63 -0
  83. package/examples/cordova/www/src/main.js +50 -0
  84. package/examples/ionic/README.md +12 -0
  85. package/examples/ionic/angular.json +39 -0
  86. package/examples/ionic/config.xml +28 -0
  87. package/examples/ionic/index.html +19 -0
  88. package/examples/ionic/index.ts +17 -0
  89. package/examples/ionic/ionic.config.json +7 -0
  90. package/examples/ionic/package-lock.json +16559 -0
  91. package/examples/ionic/package.json +47 -0
  92. package/examples/ionic/scripts/android.sh +8 -0
  93. package/examples/ionic/scripts/ios.sh +8 -0
  94. package/examples/ionic/scripts/setup.sh +8 -0
  95. package/examples/ionic/src/assets/.gitkeep +0 -0
  96. package/examples/ionic/src/images/document.png +0 -0
  97. package/examples/ionic/src/images/icon.png +0 -0
  98. package/examples/ionic/src/images/portrait.png +0 -0
  99. package/examples/ionic/src/main.css +130 -0
  100. package/examples/ionic/src/main.html +63 -0
  101. package/examples/ionic/src/main.ts +66 -0
  102. package/examples/ionic/tsconfig.json +12 -0
  103. package/examples/react_native/README.md +12 -0
  104. package/examples/react_native/app.config.ts +53 -0
  105. package/examples/react_native/assets/.gitkeep +0 -0
  106. package/examples/react_native/images/document.png +0 -0
  107. package/examples/react_native/images/icon/adaptive-icon.png +0 -0
  108. package/examples/react_native/images/icon/icon.png +0 -0
  109. package/examples/react_native/images/portrait.png +0 -0
  110. package/examples/react_native/index.html +11 -0
  111. package/examples/react_native/index.tsx +52 -0
  112. package/examples/react_native/metro.config.js +7 -0
  113. package/examples/react_native/package-lock.json +9254 -0
  114. package/examples/react_native/package.json +27 -0
  115. package/examples/react_native/scripts/android.sh +12 -0
  116. package/examples/react_native/scripts/ios.sh +11 -0
  117. package/examples/react_native/scripts/setup.sh +8 -0
  118. package/examples/react_native/src/main.css +130 -0
  119. package/examples/react_native/src/main.html +63 -0
  120. package/examples/react_native/src/main.tsx +50 -0
  121. package/ios/CVDDocumentReader.h +7 -0
  122. package/ios/CVDDocumentReader.m +39 -0
  123. package/ios/RGLWConfig.h +42 -0
  124. package/ios/RGLWConfig.m +1398 -0
  125. package/ios/RGLWJSONConstructor.h +185 -0
  126. package/ios/RGLWJSONConstructor.m +2379 -0
  127. package/ios/RGLWMain.h +36 -0
  128. package/ios/RGLWMain.m +610 -0
  129. package/ios/RNDocumentReader.h +8 -0
  130. package/ios/RNDocumentReader.m +49 -0
  131. package/package.json +36 -0
  132. package/plugin.xml +51 -0
  133. package/www/capacitor/config/InitConfig.js +25 -0
  134. package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
  135. package/www/capacitor/config/RFIDConfig.js +31 -0
  136. package/www/capacitor/config/RecognizeConfig.js +103 -0
  137. package/www/capacitor/config/ScannerConfig.js +38 -0
  138. package/www/capacitor/index.js +486 -0
  139. package/www/capacitor/info/DocReaderException.js +57 -0
  140. package/www/capacitor/info/DocReaderScenario.js +71 -0
  141. package/www/capacitor/info/DocReaderVersion.js +23 -0
  142. package/www/capacitor/info/DocumentsDatabase.js +27 -0
  143. package/www/capacitor/info/License.js +22 -0
  144. package/www/capacitor/info/PrepareProgress.js +23 -0
  145. package/www/capacitor/info/RFIDException.js +19 -0
  146. package/www/capacitor/internal/bridge.js +98 -0
  147. package/www/capacitor/internal/cordova.js +17 -0
  148. package/www/capacitor/params/Functionality.js +303 -0
  149. package/www/capacitor/params/customization/Customization.js +550 -0
  150. package/www/capacitor/params/customization/CustomizationColors.js +74 -0
  151. package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
  152. package/www/capacitor/params/customization/CustomizationImages.js +25 -0
  153. package/www/capacitor/params/customization/Font.js +28 -0
  154. package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
  155. package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
  156. package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
  157. package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
  158. package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
  159. package/www/capacitor/params/process_params/ImageQA.js +97 -0
  160. package/www/capacitor/params/process_params/LivenessParams.js +67 -0
  161. package/www/capacitor/params/process_params/ProcessParams.js +570 -0
  162. package/www/capacitor/params/process_params/RfidParams.js +15 -0
  163. package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
  164. package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
  165. package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
  166. package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
  167. package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
  168. package/www/capacitor/results/DocumentType.js +285 -0
  169. package/www/capacitor/results/Position.js +60 -0
  170. package/www/capacitor/results/Results.js +318 -0
  171. package/www/capacitor/results/TransactionInfo.js +16 -0
  172. package/www/capacitor/results/authenticity/Authenticity.js +23 -0
  173. package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
  174. package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
  175. package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
  176. package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
  177. package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
  178. package/www/capacitor/results/barcode/BarcodeField.js +24 -0
  179. package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
  180. package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
  181. package/www/capacitor/results/barcode/BarcodeType.js +21 -0
  182. package/www/capacitor/results/barcode/PDF417Info.js +16 -0
  183. package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
  184. package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
  185. package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
  186. package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
  187. package/www/capacitor/results/rfid/Application.js +47 -0
  188. package/www/capacitor/results/rfid/Attribute.js +16 -0
  189. package/www/capacitor/results/rfid/Authority.js +28 -0
  190. package/www/capacitor/results/rfid/CardProperties.js +38 -0
  191. package/www/capacitor/results/rfid/CertificateChain.js +51 -0
  192. package/www/capacitor/results/rfid/CertificateData.js +14 -0
  193. package/www/capacitor/results/rfid/DataField.js +16 -0
  194. package/www/capacitor/results/rfid/Extension.js +14 -0
  195. package/www/capacitor/results/rfid/File.js +39 -0
  196. package/www/capacitor/results/rfid/FileData.js +18 -0
  197. package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  198. package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
  199. package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
  200. package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
  201. package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
  202. package/www/capacitor/results/rfid/RFIDValue.js +20 -0
  203. package/www/capacitor/results/rfid/SecurityObject.js +31 -0
  204. package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
  205. package/www/capacitor/results/rfid/SignerInfo.js +57 -0
  206. package/www/capacitor/results/status/CheckResult.js +5 -0
  207. package/www/capacitor/results/status/OpticalStatus.js +30 -0
  208. package/www/capacitor/results/status/RFIDStatus.js +26 -0
  209. package/www/capacitor/results/status/ResultsStatus.js +28 -0
  210. package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
  211. package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  212. package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  213. package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
  214. package/www/capacitor/results/visual_results/Comparison.js +19 -0
  215. package/www/capacitor/results/visual_results/FieldType.js +658 -0
  216. package/www/capacitor/results/visual_results/GraphicField.js +33 -0
  217. package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
  218. package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
  219. package/www/capacitor/results/visual_results/LCID.js +174 -0
  220. package/www/capacitor/results/visual_results/Lights.js +11 -0
  221. package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
  222. package/www/capacitor/results/visual_results/Rect.js +18 -0
  223. package/www/capacitor/results/visual_results/Symbol.js +18 -0
  224. package/www/capacitor/results/visual_results/TextField.js +68 -0
  225. package/www/capacitor/results/visual_results/TextResult.js +42 -0
  226. package/www/capacitor/results/visual_results/TextSource.js +19 -0
  227. package/www/capacitor/results/visual_results/Validity.js +17 -0
  228. package/www/capacitor/results/visual_results/Value.js +39 -0
  229. package/www/capacitor/rfid/PAAttribute.js +17 -0
  230. package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
  231. package/www/capacitor/rfid/PKDCertificate.js +54 -0
  232. package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
  233. package/www/capacitor/rfid/RFIDNotification.js +60 -0
  234. package/www/capacitor/rfid/TAChallenge.js +23 -0
  235. package/www/capacitor/rfid/TccParams.js +24 -0
  236. package/www/cordova.js +9816 -0
  237. package/www/react-native/config/InitConfig.js +25 -0
  238. package/www/react-native/config/OnlineProcessingConfig.js +41 -0
  239. package/www/react-native/config/RFIDConfig.js +31 -0
  240. package/www/react-native/config/RecognizeConfig.js +103 -0
  241. package/www/react-native/config/ScannerConfig.js +38 -0
  242. package/www/react-native/index.js +486 -0
  243. package/www/react-native/info/DocReaderException.js +57 -0
  244. package/www/react-native/info/DocReaderScenario.js +71 -0
  245. package/www/react-native/info/DocReaderVersion.js +23 -0
  246. package/www/react-native/info/DocumentsDatabase.js +27 -0
  247. package/www/react-native/info/License.js +22 -0
  248. package/www/react-native/info/PrepareProgress.js +23 -0
  249. package/www/react-native/info/RFIDException.js +19 -0
  250. package/www/react-native/internal/bridge.js +98 -0
  251. package/www/react-native/params/Functionality.js +303 -0
  252. package/www/react-native/params/customization/Customization.js +550 -0
  253. package/www/react-native/params/customization/CustomizationColors.js +74 -0
  254. package/www/react-native/params/customization/CustomizationFonts.js +40 -0
  255. package/www/react-native/params/customization/CustomizationImages.js +25 -0
  256. package/www/react-native/params/customization/Font.js +28 -0
  257. package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
  258. package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
  259. package/www/react-native/params/process_params/FaceApiParams.js +38 -0
  260. package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
  261. package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
  262. package/www/react-native/params/process_params/ImageQA.js +97 -0
  263. package/www/react-native/params/process_params/LivenessParams.js +67 -0
  264. package/www/react-native/params/process_params/ProcessParams.js +570 -0
  265. package/www/react-native/params/process_params/RfidParams.js +15 -0
  266. package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
  267. package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
  268. package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
  269. package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
  270. package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
  271. package/www/react-native/results/DocumentType.js +285 -0
  272. package/www/react-native/results/Position.js +60 -0
  273. package/www/react-native/results/Results.js +318 -0
  274. package/www/react-native/results/TransactionInfo.js +16 -0
  275. package/www/react-native/results/authenticity/Authenticity.js +23 -0
  276. package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
  277. package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
  278. package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
  279. package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
  280. package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
  281. package/www/react-native/results/barcode/BarcodeField.js +24 -0
  282. package/www/react-native/results/barcode/BarcodeResult.js +24 -0
  283. package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
  284. package/www/react-native/results/barcode/BarcodeType.js +21 -0
  285. package/www/react-native/results/barcode/PDF417Info.js +16 -0
  286. package/www/react-native/results/image_quality/ImageQuality.js +31 -0
  287. package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
  288. package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
  289. package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
  290. package/www/react-native/results/rfid/Application.js +47 -0
  291. package/www/react-native/results/rfid/Attribute.js +16 -0
  292. package/www/react-native/results/rfid/Authority.js +28 -0
  293. package/www/react-native/results/rfid/CardProperties.js +38 -0
  294. package/www/react-native/results/rfid/CertificateChain.js +51 -0
  295. package/www/react-native/results/rfid/CertificateData.js +14 -0
  296. package/www/react-native/results/rfid/DataField.js +16 -0
  297. package/www/react-native/results/rfid/Extension.js +14 -0
  298. package/www/react-native/results/rfid/File.js +39 -0
  299. package/www/react-native/results/rfid/FileData.js +18 -0
  300. package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  301. package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
  302. package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
  303. package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
  304. package/www/react-native/results/rfid/RFIDValidity.js +16 -0
  305. package/www/react-native/results/rfid/RFIDValue.js +20 -0
  306. package/www/react-native/results/rfid/SecurityObject.js +31 -0
  307. package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
  308. package/www/react-native/results/rfid/SignerInfo.js +57 -0
  309. package/www/react-native/results/status/CheckResult.js +5 -0
  310. package/www/react-native/results/status/OpticalStatus.js +30 -0
  311. package/www/react-native/results/status/RFIDStatus.js +26 -0
  312. package/www/react-native/results/status/ResultsStatus.js +28 -0
  313. package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
  314. package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  315. package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  316. package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
  317. package/www/react-native/results/visual_results/Comparison.js +19 -0
  318. package/www/react-native/results/visual_results/FieldType.js +658 -0
  319. package/www/react-native/results/visual_results/GraphicField.js +33 -0
  320. package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
  321. package/www/react-native/results/visual_results/GraphicResult.js +22 -0
  322. package/www/react-native/results/visual_results/LCID.js +174 -0
  323. package/www/react-native/results/visual_results/Lights.js +11 -0
  324. package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
  325. package/www/react-native/results/visual_results/Rect.js +18 -0
  326. package/www/react-native/results/visual_results/Symbol.js +18 -0
  327. package/www/react-native/results/visual_results/TextField.js +68 -0
  328. package/www/react-native/results/visual_results/TextResult.js +42 -0
  329. package/www/react-native/results/visual_results/TextSource.js +19 -0
  330. package/www/react-native/results/visual_results/Validity.js +17 -0
  331. package/www/react-native/results/visual_results/Value.js +39 -0
  332. package/www/react-native/rfid/PAAttribute.js +17 -0
  333. package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
  334. package/www/react-native/rfid/PKDCertificate.js +54 -0
  335. package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
  336. package/www/react-native/rfid/RFIDNotification.js +60 -0
  337. package/www/react-native/rfid/TAChallenge.js +23 -0
  338. package/www/react-native/rfid/TccParams.js +24 -0
  339. package/www/types/config/InitConfig.d.ts +63 -0
  340. package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
  341. package/www/types/config/RFIDConfig.d.ts +131 -0
  342. package/www/types/config/RecognizeConfig.d.ts +119 -0
  343. package/www/types/config/ScannerConfig.d.ts +54 -0
  344. package/www/types/index.d.ts +421 -0
  345. package/www/types/info/DocReaderException.d.ts +79 -0
  346. package/www/types/info/DocReaderScenario.d.ts +90 -0
  347. package/www/types/info/DocReaderVersion.d.ts +28 -0
  348. package/www/types/info/DocumentsDatabase.d.ts +42 -0
  349. package/www/types/info/License.d.ts +23 -0
  350. package/www/types/info/PrepareProgress.d.ts +15 -0
  351. package/www/types/info/RFIDException.d.ts +8 -0
  352. package/www/types/params/Functionality.d.ts +316 -0
  353. package/www/types/params/customization/Customization.d.ts +558 -0
  354. package/www/types/params/customization/CustomizationColors.d.ts +16 -0
  355. package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
  356. package/www/types/params/customization/CustomizationImages.d.ts +12 -0
  357. package/www/types/params/customization/Font.d.ts +36 -0
  358. package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
  359. package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
  360. package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
  361. package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
  362. package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
  363. package/www/types/params/process_params/ImageQA.d.ts +79 -0
  364. package/www/types/params/process_params/LivenessParams.d.ts +20 -0
  365. package/www/types/params/process_params/ProcessParams.d.ts +465 -0
  366. package/www/types/params/process_params/RfidParams.d.ts +19 -0
  367. package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
  368. package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
  369. package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
  370. package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
  371. package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
  372. package/www/types/results/DocumentType.d.ts +525 -0
  373. package/www/types/results/Position.d.ts +50 -0
  374. package/www/types/results/Results.d.ts +283 -0
  375. package/www/types/results/TransactionInfo.d.ts +9 -0
  376. package/www/types/results/authenticity/Authenticity.d.ts +67 -0
  377. package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
  378. package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
  379. package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
  380. package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
  381. package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
  382. package/www/types/results/barcode/BarcodeField.d.ts +37 -0
  383. package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
  384. package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
  385. package/www/types/results/barcode/BarcodeType.d.ts +45 -0
  386. package/www/types/results/barcode/PDF417Info.d.ts +15 -0
  387. package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
  388. package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
  389. package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
  390. package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
  391. package/www/types/results/rfid/Application.d.ts +44 -0
  392. package/www/types/results/rfid/Attribute.d.ts +9 -0
  393. package/www/types/results/rfid/Authority.d.ts +11 -0
  394. package/www/types/results/rfid/CardProperties.d.ts +48 -0
  395. package/www/types/results/rfid/CertificateChain.d.ts +28 -0
  396. package/www/types/results/rfid/CertificateData.d.ts +7 -0
  397. package/www/types/results/rfid/DataField.d.ts +9 -0
  398. package/www/types/results/rfid/Extension.d.ts +7 -0
  399. package/www/types/results/rfid/File.d.ts +22 -0
  400. package/www/types/results/rfid/FileData.d.ts +9 -0
  401. package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
  402. package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
  403. package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
  404. package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
  405. package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
  406. package/www/types/results/rfid/RFIDValue.d.ts +10 -0
  407. package/www/types/results/rfid/SecurityObject.d.ts +28 -0
  408. package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
  409. package/www/types/results/rfid/SignerInfo.d.ts +41 -0
  410. package/www/types/results/status/CheckResult.d.ts +8 -0
  411. package/www/types/results/status/OpticalStatus.d.ts +29 -0
  412. package/www/types/results/status/RFIDStatus.d.ts +22 -0
  413. package/www/types/results/status/ResultsStatus.d.ts +24 -0
  414. package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
  415. package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
  416. package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
  417. package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
  418. package/www/types/results/visual_results/Comparison.d.ts +15 -0
  419. package/www/types/results/visual_results/FieldType.d.ts +1310 -0
  420. package/www/types/results/visual_results/GraphicField.d.ts +29 -0
  421. package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
  422. package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
  423. package/www/types/results/visual_results/LCID.d.ts +173 -0
  424. package/www/types/results/visual_results/Lights.d.ts +23 -0
  425. package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
  426. package/www/types/results/visual_results/Rect.d.ts +9 -0
  427. package/www/types/results/visual_results/Symbol.d.ts +14 -0
  428. package/www/types/results/visual_results/TextField.d.ts +40 -0
  429. package/www/types/results/visual_results/TextResult.d.ts +23 -0
  430. package/www/types/results/visual_results/TextSource.d.ts +15 -0
  431. package/www/types/results/visual_results/Validity.d.ts +13 -0
  432. package/www/types/results/visual_results/Value.d.ts +27 -0
  433. package/www/types/rfid/PAAttribute.d.ts +4 -0
  434. package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
  435. package/www/types/rfid/PKDCertificate.d.ts +34 -0
  436. package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
  437. package/www/types/rfid/RFIDNotification.d.ts +153 -0
  438. package/www/types/rfid/TAChallenge.d.ts +7 -0
  439. package/www/types/rfid/TccParams.d.ts +25 -0
@@ -0,0 +1,3467 @@
1
+ {
2
+ "name": "document-reader",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "document-reader",
8
+ "dependencies": {
9
+ "@awesome-cordova-plugins/camera": "6.6.0",
10
+ "@awesome-cordova-plugins/dialogs": "6.6.0",
11
+ "@awesome-cordova-plugins/file": "6.6.0",
12
+ "@capacitor/android": "7.0.1",
13
+ "@capacitor/app": "7.0.0",
14
+ "@capacitor/cli": "7.0.1",
15
+ "@capacitor/core": "7.0.1",
16
+ "@capacitor/ios": "7.0.1",
17
+ "@capacitor/status-bar": "7.0.0",
18
+ "@ionic/react": "8.4.3",
19
+ "@types/react-router-dom": "5.3.3",
20
+ "@vitejs/plugin-react": "4.3.4",
21
+ "cordova-plugin-camera": "8.0.0",
22
+ "cordova-plugin-dialogs": "2.0.2",
23
+ "cordova-plugin-file": "8.1.3",
24
+ "vite-plugin-static-copy": "^2.3.1"
25
+ }
26
+ },
27
+ "node_modules/@ampproject/remapping": {
28
+ "version": "2.3.0",
29
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
30
+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
31
+ "license": "Apache-2.0",
32
+ "dependencies": {
33
+ "@jridgewell/gen-mapping": "^0.3.5",
34
+ "@jridgewell/trace-mapping": "^0.3.24"
35
+ },
36
+ "engines": {
37
+ "node": ">=6.0.0"
38
+ }
39
+ },
40
+ "node_modules/@awesome-cordova-plugins/camera": {
41
+ "version": "6.6.0",
42
+ "resolved": "https://registry.npmjs.org/@awesome-cordova-plugins/camera/-/camera-6.6.0.tgz",
43
+ "integrity": "sha512-ddsn0GvsLdjcejrUkeRxL1S8jeXHvd778x9RERD156IjJ6MNNA/NiEFPMuTpVJdcHAWzulL9ZhsVa+6dKr/V6A==",
44
+ "license": "MIT",
45
+ "dependencies": {
46
+ "@types/cordova": "latest"
47
+ },
48
+ "peerDependencies": {
49
+ "@awesome-cordova-plugins/core": "^6.0.1",
50
+ "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
51
+ }
52
+ },
53
+ "node_modules/@awesome-cordova-plugins/core": {
54
+ "version": "6.14.0",
55
+ "resolved": "https://registry.npmjs.org/@awesome-cordova-plugins/core/-/core-6.14.0.tgz",
56
+ "integrity": "sha512-oJdmzR8DA/dyZnKlXBnjav0ZNTCacGMEWZOxnrnXqr3I7nVEK0Kr2EIJx7CtAIXxFCpEjQQTH7loFur86O3xpw==",
57
+ "license": "MIT",
58
+ "peer": true,
59
+ "dependencies": {
60
+ "@types/cordova": "latest"
61
+ },
62
+ "peerDependencies": {
63
+ "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
64
+ }
65
+ },
66
+ "node_modules/@awesome-cordova-plugins/dialogs": {
67
+ "version": "6.6.0",
68
+ "resolved": "https://registry.npmjs.org/@awesome-cordova-plugins/dialogs/-/dialogs-6.6.0.tgz",
69
+ "integrity": "sha512-XGQWtJNF0dVxACY9a38FxORXXSWvlMNeXPTe/Dh0WZWEuUH3V/Jswi45oWNFBjLiPcEJ3dCr1psko5Z7ml491g==",
70
+ "license": "MIT",
71
+ "dependencies": {
72
+ "@types/cordova": "latest"
73
+ },
74
+ "peerDependencies": {
75
+ "@awesome-cordova-plugins/core": "^6.0.1",
76
+ "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
77
+ }
78
+ },
79
+ "node_modules/@awesome-cordova-plugins/file": {
80
+ "version": "6.6.0",
81
+ "resolved": "https://registry.npmjs.org/@awesome-cordova-plugins/file/-/file-6.6.0.tgz",
82
+ "integrity": "sha512-Scr8DLGXiUAXWmzBkgOcHEn5ka75kDG63jDEV3lSDvvqSmoqgSoekD+zYtZLMgKuGD+9XMIFoOB9GBtGyA/+fA==",
83
+ "license": "MIT",
84
+ "dependencies": {
85
+ "@types/cordova": "latest"
86
+ },
87
+ "peerDependencies": {
88
+ "@awesome-cordova-plugins/core": "^6.0.1",
89
+ "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
90
+ }
91
+ },
92
+ "node_modules/@babel/code-frame": {
93
+ "version": "7.26.2",
94
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
95
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
96
+ "license": "MIT",
97
+ "dependencies": {
98
+ "@babel/helper-validator-identifier": "^7.25.9",
99
+ "js-tokens": "^4.0.0",
100
+ "picocolors": "^1.0.0"
101
+ },
102
+ "engines": {
103
+ "node": ">=6.9.0"
104
+ }
105
+ },
106
+ "node_modules/@babel/compat-data": {
107
+ "version": "7.26.8",
108
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
109
+ "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
110
+ "license": "MIT",
111
+ "engines": {
112
+ "node": ">=6.9.0"
113
+ }
114
+ },
115
+ "node_modules/@babel/core": {
116
+ "version": "7.26.9",
117
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz",
118
+ "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==",
119
+ "license": "MIT",
120
+ "dependencies": {
121
+ "@ampproject/remapping": "^2.2.0",
122
+ "@babel/code-frame": "^7.26.2",
123
+ "@babel/generator": "^7.26.9",
124
+ "@babel/helper-compilation-targets": "^7.26.5",
125
+ "@babel/helper-module-transforms": "^7.26.0",
126
+ "@babel/helpers": "^7.26.9",
127
+ "@babel/parser": "^7.26.9",
128
+ "@babel/template": "^7.26.9",
129
+ "@babel/traverse": "^7.26.9",
130
+ "@babel/types": "^7.26.9",
131
+ "convert-source-map": "^2.0.0",
132
+ "debug": "^4.1.0",
133
+ "gensync": "^1.0.0-beta.2",
134
+ "json5": "^2.2.3",
135
+ "semver": "^6.3.1"
136
+ },
137
+ "engines": {
138
+ "node": ">=6.9.0"
139
+ },
140
+ "funding": {
141
+ "type": "opencollective",
142
+ "url": "https://opencollective.com/babel"
143
+ }
144
+ },
145
+ "node_modules/@babel/core/node_modules/semver": {
146
+ "version": "6.3.1",
147
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
148
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
149
+ "license": "ISC",
150
+ "bin": {
151
+ "semver": "bin/semver.js"
152
+ }
153
+ },
154
+ "node_modules/@babel/generator": {
155
+ "version": "7.26.9",
156
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz",
157
+ "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==",
158
+ "license": "MIT",
159
+ "dependencies": {
160
+ "@babel/parser": "^7.26.9",
161
+ "@babel/types": "^7.26.9",
162
+ "@jridgewell/gen-mapping": "^0.3.5",
163
+ "@jridgewell/trace-mapping": "^0.3.25",
164
+ "jsesc": "^3.0.2"
165
+ },
166
+ "engines": {
167
+ "node": ">=6.9.0"
168
+ }
169
+ },
170
+ "node_modules/@babel/helper-compilation-targets": {
171
+ "version": "7.26.5",
172
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
173
+ "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
174
+ "license": "MIT",
175
+ "dependencies": {
176
+ "@babel/compat-data": "^7.26.5",
177
+ "@babel/helper-validator-option": "^7.25.9",
178
+ "browserslist": "^4.24.0",
179
+ "lru-cache": "^5.1.1",
180
+ "semver": "^6.3.1"
181
+ },
182
+ "engines": {
183
+ "node": ">=6.9.0"
184
+ }
185
+ },
186
+ "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
187
+ "version": "6.3.1",
188
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
189
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
190
+ "license": "ISC",
191
+ "bin": {
192
+ "semver": "bin/semver.js"
193
+ }
194
+ },
195
+ "node_modules/@babel/helper-module-imports": {
196
+ "version": "7.25.9",
197
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
198
+ "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
199
+ "license": "MIT",
200
+ "dependencies": {
201
+ "@babel/traverse": "^7.25.9",
202
+ "@babel/types": "^7.25.9"
203
+ },
204
+ "engines": {
205
+ "node": ">=6.9.0"
206
+ }
207
+ },
208
+ "node_modules/@babel/helper-module-transforms": {
209
+ "version": "7.26.0",
210
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
211
+ "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
212
+ "license": "MIT",
213
+ "dependencies": {
214
+ "@babel/helper-module-imports": "^7.25.9",
215
+ "@babel/helper-validator-identifier": "^7.25.9",
216
+ "@babel/traverse": "^7.25.9"
217
+ },
218
+ "engines": {
219
+ "node": ">=6.9.0"
220
+ },
221
+ "peerDependencies": {
222
+ "@babel/core": "^7.0.0"
223
+ }
224
+ },
225
+ "node_modules/@babel/helper-plugin-utils": {
226
+ "version": "7.26.5",
227
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
228
+ "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
229
+ "license": "MIT",
230
+ "engines": {
231
+ "node": ">=6.9.0"
232
+ }
233
+ },
234
+ "node_modules/@babel/helper-string-parser": {
235
+ "version": "7.25.9",
236
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
237
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
238
+ "license": "MIT",
239
+ "engines": {
240
+ "node": ">=6.9.0"
241
+ }
242
+ },
243
+ "node_modules/@babel/helper-validator-identifier": {
244
+ "version": "7.25.9",
245
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
246
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
247
+ "license": "MIT",
248
+ "engines": {
249
+ "node": ">=6.9.0"
250
+ }
251
+ },
252
+ "node_modules/@babel/helper-validator-option": {
253
+ "version": "7.25.9",
254
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
255
+ "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
256
+ "license": "MIT",
257
+ "engines": {
258
+ "node": ">=6.9.0"
259
+ }
260
+ },
261
+ "node_modules/@babel/helpers": {
262
+ "version": "7.26.9",
263
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz",
264
+ "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==",
265
+ "license": "MIT",
266
+ "dependencies": {
267
+ "@babel/template": "^7.26.9",
268
+ "@babel/types": "^7.26.9"
269
+ },
270
+ "engines": {
271
+ "node": ">=6.9.0"
272
+ }
273
+ },
274
+ "node_modules/@babel/parser": {
275
+ "version": "7.26.9",
276
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz",
277
+ "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
278
+ "license": "MIT",
279
+ "dependencies": {
280
+ "@babel/types": "^7.26.9"
281
+ },
282
+ "bin": {
283
+ "parser": "bin/babel-parser.js"
284
+ },
285
+ "engines": {
286
+ "node": ">=6.0.0"
287
+ }
288
+ },
289
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
290
+ "version": "7.25.9",
291
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
292
+ "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
293
+ "license": "MIT",
294
+ "dependencies": {
295
+ "@babel/helper-plugin-utils": "^7.25.9"
296
+ },
297
+ "engines": {
298
+ "node": ">=6.9.0"
299
+ },
300
+ "peerDependencies": {
301
+ "@babel/core": "^7.0.0-0"
302
+ }
303
+ },
304
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
305
+ "version": "7.25.9",
306
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
307
+ "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
308
+ "license": "MIT",
309
+ "dependencies": {
310
+ "@babel/helper-plugin-utils": "^7.25.9"
311
+ },
312
+ "engines": {
313
+ "node": ">=6.9.0"
314
+ },
315
+ "peerDependencies": {
316
+ "@babel/core": "^7.0.0-0"
317
+ }
318
+ },
319
+ "node_modules/@babel/template": {
320
+ "version": "7.26.9",
321
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
322
+ "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
323
+ "license": "MIT",
324
+ "dependencies": {
325
+ "@babel/code-frame": "^7.26.2",
326
+ "@babel/parser": "^7.26.9",
327
+ "@babel/types": "^7.26.9"
328
+ },
329
+ "engines": {
330
+ "node": ">=6.9.0"
331
+ }
332
+ },
333
+ "node_modules/@babel/traverse": {
334
+ "version": "7.26.9",
335
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz",
336
+ "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==",
337
+ "license": "MIT",
338
+ "dependencies": {
339
+ "@babel/code-frame": "^7.26.2",
340
+ "@babel/generator": "^7.26.9",
341
+ "@babel/parser": "^7.26.9",
342
+ "@babel/template": "^7.26.9",
343
+ "@babel/types": "^7.26.9",
344
+ "debug": "^4.3.1",
345
+ "globals": "^11.1.0"
346
+ },
347
+ "engines": {
348
+ "node": ">=6.9.0"
349
+ }
350
+ },
351
+ "node_modules/@babel/types": {
352
+ "version": "7.26.9",
353
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
354
+ "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
355
+ "license": "MIT",
356
+ "dependencies": {
357
+ "@babel/helper-string-parser": "^7.25.9",
358
+ "@babel/helper-validator-identifier": "^7.25.9"
359
+ },
360
+ "engines": {
361
+ "node": ">=6.9.0"
362
+ }
363
+ },
364
+ "node_modules/@capacitor/android": {
365
+ "version": "7.0.1",
366
+ "resolved": "https://registry.npmjs.org/@capacitor/android/-/android-7.0.1.tgz",
367
+ "integrity": "sha512-jukJJHfkcyEBOkFBJRD3EwXMIIQo7lSv0ExPWgsIliPdGXLAj6ElvK2JaYEzec3vKyLc4RTNFVv0PMEU0vnImg==",
368
+ "license": "MIT",
369
+ "peerDependencies": {
370
+ "@capacitor/core": "^7.0.0"
371
+ }
372
+ },
373
+ "node_modules/@capacitor/app": {
374
+ "version": "7.0.0",
375
+ "resolved": "https://registry.npmjs.org/@capacitor/app/-/app-7.0.0.tgz",
376
+ "integrity": "sha512-/UFwfPFsw/Jen6vjrV0lfTBOQWSaDDdmrYXKpYg4Xn8hwj0xrrRPXxC43j7VmPoj9AFMVPA+hx94ygqjChPASQ==",
377
+ "license": "MIT",
378
+ "peerDependencies": {
379
+ "@capacitor/core": ">=7.0.0"
380
+ }
381
+ },
382
+ "node_modules/@capacitor/cli": {
383
+ "version": "7.0.1",
384
+ "resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-7.0.1.tgz",
385
+ "integrity": "sha512-KNKT25ZvNL8Gm+zxSxCq8n9FQYUBsZcAGs5lisQKHnDRz7tkTMmMNok+TlNlLn6to78J1k+OtBgpmfbFerpOng==",
386
+ "license": "MIT",
387
+ "dependencies": {
388
+ "@ionic/cli-framework-output": "^2.2.8",
389
+ "@ionic/utils-subprocess": "^3.0.1",
390
+ "@ionic/utils-terminal": "^2.3.5",
391
+ "commander": "^12.1.0",
392
+ "debug": "^4.4.0",
393
+ "env-paths": "^2.2.0",
394
+ "fs-extra": "^11.2.0",
395
+ "kleur": "^4.1.5",
396
+ "native-run": "^2.0.1",
397
+ "open": "^8.4.0",
398
+ "plist": "^3.1.0",
399
+ "prompts": "^2.4.2",
400
+ "rimraf": "^6.0.1",
401
+ "semver": "^7.6.3",
402
+ "tar": "^6.1.11",
403
+ "tslib": "^2.8.1",
404
+ "xml2js": "^0.6.2"
405
+ },
406
+ "bin": {
407
+ "cap": "bin/capacitor",
408
+ "capacitor": "bin/capacitor"
409
+ },
410
+ "engines": {
411
+ "node": ">=20.0.0"
412
+ }
413
+ },
414
+ "node_modules/@capacitor/core": {
415
+ "version": "7.0.1",
416
+ "resolved": "https://registry.npmjs.org/@capacitor/core/-/core-7.0.1.tgz",
417
+ "integrity": "sha512-1Ob9bvA/p8g8aNwK6VesxEekGXowLVf6APjkW4LRnr05H+7z/bke+Q5pn9zqh/GgTbIxAQ/rwZrAZvvxkdm1UA==",
418
+ "license": "MIT",
419
+ "dependencies": {
420
+ "tslib": "^2.1.0"
421
+ }
422
+ },
423
+ "node_modules/@capacitor/ios": {
424
+ "version": "7.0.1",
425
+ "resolved": "https://registry.npmjs.org/@capacitor/ios/-/ios-7.0.1.tgz",
426
+ "integrity": "sha512-RN6S1C1k7ue57DFmJM4EizzsYBrahTTiMhcnlHspFLaojgHbFWZbYq1VriuRKysPU1ka/P+klsdtRFsB5K9jyw==",
427
+ "license": "MIT",
428
+ "peerDependencies": {
429
+ "@capacitor/core": "^7.0.0"
430
+ }
431
+ },
432
+ "node_modules/@capacitor/status-bar": {
433
+ "version": "7.0.0",
434
+ "resolved": "https://registry.npmjs.org/@capacitor/status-bar/-/status-bar-7.0.0.tgz",
435
+ "integrity": "sha512-wsvPkWkoSOXMIgVHu4c6P1sOuDSZ1ClUo5OpLRwj7u8DYzlV4jlmNzztQn2Lvsiqx1z4kfukSaqe40k1Lo4c9g==",
436
+ "license": "MIT",
437
+ "peerDependencies": {
438
+ "@capacitor/core": ">=7.0.0"
439
+ }
440
+ },
441
+ "node_modules/@esbuild/aix-ppc64": {
442
+ "version": "0.25.0",
443
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz",
444
+ "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==",
445
+ "cpu": [
446
+ "ppc64"
447
+ ],
448
+ "license": "MIT",
449
+ "optional": true,
450
+ "os": [
451
+ "aix"
452
+ ],
453
+ "peer": true,
454
+ "engines": {
455
+ "node": ">=18"
456
+ }
457
+ },
458
+ "node_modules/@esbuild/android-arm": {
459
+ "version": "0.25.0",
460
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz",
461
+ "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==",
462
+ "cpu": [
463
+ "arm"
464
+ ],
465
+ "license": "MIT",
466
+ "optional": true,
467
+ "os": [
468
+ "android"
469
+ ],
470
+ "peer": true,
471
+ "engines": {
472
+ "node": ">=18"
473
+ }
474
+ },
475
+ "node_modules/@esbuild/android-arm64": {
476
+ "version": "0.25.0",
477
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz",
478
+ "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==",
479
+ "cpu": [
480
+ "arm64"
481
+ ],
482
+ "license": "MIT",
483
+ "optional": true,
484
+ "os": [
485
+ "android"
486
+ ],
487
+ "peer": true,
488
+ "engines": {
489
+ "node": ">=18"
490
+ }
491
+ },
492
+ "node_modules/@esbuild/android-x64": {
493
+ "version": "0.25.0",
494
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz",
495
+ "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==",
496
+ "cpu": [
497
+ "x64"
498
+ ],
499
+ "license": "MIT",
500
+ "optional": true,
501
+ "os": [
502
+ "android"
503
+ ],
504
+ "peer": true,
505
+ "engines": {
506
+ "node": ">=18"
507
+ }
508
+ },
509
+ "node_modules/@esbuild/darwin-arm64": {
510
+ "version": "0.25.0",
511
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz",
512
+ "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==",
513
+ "cpu": [
514
+ "arm64"
515
+ ],
516
+ "license": "MIT",
517
+ "optional": true,
518
+ "os": [
519
+ "darwin"
520
+ ],
521
+ "peer": true,
522
+ "engines": {
523
+ "node": ">=18"
524
+ }
525
+ },
526
+ "node_modules/@esbuild/darwin-x64": {
527
+ "version": "0.25.0",
528
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz",
529
+ "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==",
530
+ "cpu": [
531
+ "x64"
532
+ ],
533
+ "license": "MIT",
534
+ "optional": true,
535
+ "os": [
536
+ "darwin"
537
+ ],
538
+ "peer": true,
539
+ "engines": {
540
+ "node": ">=18"
541
+ }
542
+ },
543
+ "node_modules/@esbuild/freebsd-arm64": {
544
+ "version": "0.25.0",
545
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz",
546
+ "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==",
547
+ "cpu": [
548
+ "arm64"
549
+ ],
550
+ "license": "MIT",
551
+ "optional": true,
552
+ "os": [
553
+ "freebsd"
554
+ ],
555
+ "peer": true,
556
+ "engines": {
557
+ "node": ">=18"
558
+ }
559
+ },
560
+ "node_modules/@esbuild/freebsd-x64": {
561
+ "version": "0.25.0",
562
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz",
563
+ "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==",
564
+ "cpu": [
565
+ "x64"
566
+ ],
567
+ "license": "MIT",
568
+ "optional": true,
569
+ "os": [
570
+ "freebsd"
571
+ ],
572
+ "peer": true,
573
+ "engines": {
574
+ "node": ">=18"
575
+ }
576
+ },
577
+ "node_modules/@esbuild/linux-arm": {
578
+ "version": "0.25.0",
579
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz",
580
+ "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==",
581
+ "cpu": [
582
+ "arm"
583
+ ],
584
+ "license": "MIT",
585
+ "optional": true,
586
+ "os": [
587
+ "linux"
588
+ ],
589
+ "peer": true,
590
+ "engines": {
591
+ "node": ">=18"
592
+ }
593
+ },
594
+ "node_modules/@esbuild/linux-arm64": {
595
+ "version": "0.25.0",
596
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz",
597
+ "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==",
598
+ "cpu": [
599
+ "arm64"
600
+ ],
601
+ "license": "MIT",
602
+ "optional": true,
603
+ "os": [
604
+ "linux"
605
+ ],
606
+ "peer": true,
607
+ "engines": {
608
+ "node": ">=18"
609
+ }
610
+ },
611
+ "node_modules/@esbuild/linux-ia32": {
612
+ "version": "0.25.0",
613
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz",
614
+ "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==",
615
+ "cpu": [
616
+ "ia32"
617
+ ],
618
+ "license": "MIT",
619
+ "optional": true,
620
+ "os": [
621
+ "linux"
622
+ ],
623
+ "peer": true,
624
+ "engines": {
625
+ "node": ">=18"
626
+ }
627
+ },
628
+ "node_modules/@esbuild/linux-loong64": {
629
+ "version": "0.25.0",
630
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz",
631
+ "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==",
632
+ "cpu": [
633
+ "loong64"
634
+ ],
635
+ "license": "MIT",
636
+ "optional": true,
637
+ "os": [
638
+ "linux"
639
+ ],
640
+ "peer": true,
641
+ "engines": {
642
+ "node": ">=18"
643
+ }
644
+ },
645
+ "node_modules/@esbuild/linux-mips64el": {
646
+ "version": "0.25.0",
647
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz",
648
+ "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==",
649
+ "cpu": [
650
+ "mips64el"
651
+ ],
652
+ "license": "MIT",
653
+ "optional": true,
654
+ "os": [
655
+ "linux"
656
+ ],
657
+ "peer": true,
658
+ "engines": {
659
+ "node": ">=18"
660
+ }
661
+ },
662
+ "node_modules/@esbuild/linux-ppc64": {
663
+ "version": "0.25.0",
664
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz",
665
+ "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==",
666
+ "cpu": [
667
+ "ppc64"
668
+ ],
669
+ "license": "MIT",
670
+ "optional": true,
671
+ "os": [
672
+ "linux"
673
+ ],
674
+ "peer": true,
675
+ "engines": {
676
+ "node": ">=18"
677
+ }
678
+ },
679
+ "node_modules/@esbuild/linux-riscv64": {
680
+ "version": "0.25.0",
681
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz",
682
+ "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==",
683
+ "cpu": [
684
+ "riscv64"
685
+ ],
686
+ "license": "MIT",
687
+ "optional": true,
688
+ "os": [
689
+ "linux"
690
+ ],
691
+ "peer": true,
692
+ "engines": {
693
+ "node": ">=18"
694
+ }
695
+ },
696
+ "node_modules/@esbuild/linux-s390x": {
697
+ "version": "0.25.0",
698
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz",
699
+ "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==",
700
+ "cpu": [
701
+ "s390x"
702
+ ],
703
+ "license": "MIT",
704
+ "optional": true,
705
+ "os": [
706
+ "linux"
707
+ ],
708
+ "peer": true,
709
+ "engines": {
710
+ "node": ">=18"
711
+ }
712
+ },
713
+ "node_modules/@esbuild/linux-x64": {
714
+ "version": "0.25.0",
715
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz",
716
+ "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==",
717
+ "cpu": [
718
+ "x64"
719
+ ],
720
+ "license": "MIT",
721
+ "optional": true,
722
+ "os": [
723
+ "linux"
724
+ ],
725
+ "peer": true,
726
+ "engines": {
727
+ "node": ">=18"
728
+ }
729
+ },
730
+ "node_modules/@esbuild/netbsd-arm64": {
731
+ "version": "0.25.0",
732
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz",
733
+ "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==",
734
+ "cpu": [
735
+ "arm64"
736
+ ],
737
+ "license": "MIT",
738
+ "optional": true,
739
+ "os": [
740
+ "netbsd"
741
+ ],
742
+ "peer": true,
743
+ "engines": {
744
+ "node": ">=18"
745
+ }
746
+ },
747
+ "node_modules/@esbuild/netbsd-x64": {
748
+ "version": "0.25.0",
749
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz",
750
+ "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==",
751
+ "cpu": [
752
+ "x64"
753
+ ],
754
+ "license": "MIT",
755
+ "optional": true,
756
+ "os": [
757
+ "netbsd"
758
+ ],
759
+ "peer": true,
760
+ "engines": {
761
+ "node": ">=18"
762
+ }
763
+ },
764
+ "node_modules/@esbuild/openbsd-arm64": {
765
+ "version": "0.25.0",
766
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz",
767
+ "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==",
768
+ "cpu": [
769
+ "arm64"
770
+ ],
771
+ "license": "MIT",
772
+ "optional": true,
773
+ "os": [
774
+ "openbsd"
775
+ ],
776
+ "peer": true,
777
+ "engines": {
778
+ "node": ">=18"
779
+ }
780
+ },
781
+ "node_modules/@esbuild/openbsd-x64": {
782
+ "version": "0.25.0",
783
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz",
784
+ "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==",
785
+ "cpu": [
786
+ "x64"
787
+ ],
788
+ "license": "MIT",
789
+ "optional": true,
790
+ "os": [
791
+ "openbsd"
792
+ ],
793
+ "peer": true,
794
+ "engines": {
795
+ "node": ">=18"
796
+ }
797
+ },
798
+ "node_modules/@esbuild/sunos-x64": {
799
+ "version": "0.25.0",
800
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz",
801
+ "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==",
802
+ "cpu": [
803
+ "x64"
804
+ ],
805
+ "license": "MIT",
806
+ "optional": true,
807
+ "os": [
808
+ "sunos"
809
+ ],
810
+ "peer": true,
811
+ "engines": {
812
+ "node": ">=18"
813
+ }
814
+ },
815
+ "node_modules/@esbuild/win32-arm64": {
816
+ "version": "0.25.0",
817
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz",
818
+ "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==",
819
+ "cpu": [
820
+ "arm64"
821
+ ],
822
+ "license": "MIT",
823
+ "optional": true,
824
+ "os": [
825
+ "win32"
826
+ ],
827
+ "peer": true,
828
+ "engines": {
829
+ "node": ">=18"
830
+ }
831
+ },
832
+ "node_modules/@esbuild/win32-ia32": {
833
+ "version": "0.25.0",
834
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz",
835
+ "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==",
836
+ "cpu": [
837
+ "ia32"
838
+ ],
839
+ "license": "MIT",
840
+ "optional": true,
841
+ "os": [
842
+ "win32"
843
+ ],
844
+ "peer": true,
845
+ "engines": {
846
+ "node": ">=18"
847
+ }
848
+ },
849
+ "node_modules/@esbuild/win32-x64": {
850
+ "version": "0.25.0",
851
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz",
852
+ "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==",
853
+ "cpu": [
854
+ "x64"
855
+ ],
856
+ "license": "MIT",
857
+ "optional": true,
858
+ "os": [
859
+ "win32"
860
+ ],
861
+ "peer": true,
862
+ "engines": {
863
+ "node": ">=18"
864
+ }
865
+ },
866
+ "node_modules/@ionic/cli-framework-output": {
867
+ "version": "2.2.8",
868
+ "resolved": "https://registry.npmjs.org/@ionic/cli-framework-output/-/cli-framework-output-2.2.8.tgz",
869
+ "integrity": "sha512-TshtaFQsovB4NWRBydbNFawql6yul7d5bMiW1WYYf17hd99V6xdDdk3vtF51bw6sLkxON3bDQpWsnUc9/hVo3g==",
870
+ "license": "MIT",
871
+ "dependencies": {
872
+ "@ionic/utils-terminal": "2.3.5",
873
+ "debug": "^4.0.0",
874
+ "tslib": "^2.0.1"
875
+ },
876
+ "engines": {
877
+ "node": ">=16.0.0"
878
+ }
879
+ },
880
+ "node_modules/@ionic/core": {
881
+ "version": "8.4.3",
882
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.4.3.tgz",
883
+ "integrity": "sha512-U9HdZ32bre6OKA5akJVmQMxNB8Art3Nqdn3s7m2W83I5NhLg9Tehaf8ua8jxPZtxCa1nuN7tUbzHmMCkcdqDTw==",
884
+ "license": "MIT",
885
+ "dependencies": {
886
+ "@stencil/core": "4.20.0",
887
+ "ionicons": "^7.2.2",
888
+ "tslib": "^2.1.0"
889
+ }
890
+ },
891
+ "node_modules/@ionic/react": {
892
+ "version": "8.4.3",
893
+ "resolved": "https://registry.npmjs.org/@ionic/react/-/react-8.4.3.tgz",
894
+ "integrity": "sha512-AqwmoRCjTDBIgmywE6VnOOacOry21ma6TWMS8Dg8ZGu41rT6edDSmX/lKvAAV+jg4TkjE/U5n//OxzHBY/0+Zg==",
895
+ "license": "MIT",
896
+ "dependencies": {
897
+ "@ionic/core": "8.4.3",
898
+ "ionicons": "^7.0.0",
899
+ "tslib": "*"
900
+ },
901
+ "peerDependencies": {
902
+ "react": ">=16.8.6",
903
+ "react-dom": ">=16.8.6"
904
+ }
905
+ },
906
+ "node_modules/@ionic/utils-array": {
907
+ "version": "2.1.6",
908
+ "resolved": "https://registry.npmjs.org/@ionic/utils-array/-/utils-array-2.1.6.tgz",
909
+ "integrity": "sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg==",
910
+ "license": "MIT",
911
+ "dependencies": {
912
+ "debug": "^4.0.0",
913
+ "tslib": "^2.0.1"
914
+ },
915
+ "engines": {
916
+ "node": ">=16.0.0"
917
+ }
918
+ },
919
+ "node_modules/@ionic/utils-fs": {
920
+ "version": "3.1.7",
921
+ "resolved": "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-3.1.7.tgz",
922
+ "integrity": "sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==",
923
+ "license": "MIT",
924
+ "dependencies": {
925
+ "@types/fs-extra": "^8.0.0",
926
+ "debug": "^4.0.0",
927
+ "fs-extra": "^9.0.0",
928
+ "tslib": "^2.0.1"
929
+ },
930
+ "engines": {
931
+ "node": ">=16.0.0"
932
+ }
933
+ },
934
+ "node_modules/@ionic/utils-fs/node_modules/fs-extra": {
935
+ "version": "9.1.0",
936
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
937
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
938
+ "license": "MIT",
939
+ "dependencies": {
940
+ "at-least-node": "^1.0.0",
941
+ "graceful-fs": "^4.2.0",
942
+ "jsonfile": "^6.0.1",
943
+ "universalify": "^2.0.0"
944
+ },
945
+ "engines": {
946
+ "node": ">=10"
947
+ }
948
+ },
949
+ "node_modules/@ionic/utils-object": {
950
+ "version": "2.1.6",
951
+ "resolved": "https://registry.npmjs.org/@ionic/utils-object/-/utils-object-2.1.6.tgz",
952
+ "integrity": "sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==",
953
+ "license": "MIT",
954
+ "dependencies": {
955
+ "debug": "^4.0.0",
956
+ "tslib": "^2.0.1"
957
+ },
958
+ "engines": {
959
+ "node": ">=16.0.0"
960
+ }
961
+ },
962
+ "node_modules/@ionic/utils-process": {
963
+ "version": "2.1.12",
964
+ "resolved": "https://registry.npmjs.org/@ionic/utils-process/-/utils-process-2.1.12.tgz",
965
+ "integrity": "sha512-Jqkgyq7zBs/v/J3YvKtQQiIcxfJyplPgECMWgdO0E1fKrrH8EF0QGHNJ9mJCn6PYe2UtHNS8JJf5G21e09DfYg==",
966
+ "license": "MIT",
967
+ "dependencies": {
968
+ "@ionic/utils-object": "2.1.6",
969
+ "@ionic/utils-terminal": "2.3.5",
970
+ "debug": "^4.0.0",
971
+ "signal-exit": "^3.0.3",
972
+ "tree-kill": "^1.2.2",
973
+ "tslib": "^2.0.1"
974
+ },
975
+ "engines": {
976
+ "node": ">=16.0.0"
977
+ }
978
+ },
979
+ "node_modules/@ionic/utils-stream": {
980
+ "version": "3.1.7",
981
+ "resolved": "https://registry.npmjs.org/@ionic/utils-stream/-/utils-stream-3.1.7.tgz",
982
+ "integrity": "sha512-eSELBE7NWNFIHTbTC2jiMvh1ABKGIpGdUIvARsNPMNQhxJB3wpwdiVnoBoTYp+5a6UUIww4Kpg7v6S7iTctH1w==",
983
+ "license": "MIT",
984
+ "dependencies": {
985
+ "debug": "^4.0.0",
986
+ "tslib": "^2.0.1"
987
+ },
988
+ "engines": {
989
+ "node": ">=16.0.0"
990
+ }
991
+ },
992
+ "node_modules/@ionic/utils-subprocess": {
993
+ "version": "3.0.1",
994
+ "resolved": "https://registry.npmjs.org/@ionic/utils-subprocess/-/utils-subprocess-3.0.1.tgz",
995
+ "integrity": "sha512-cT4te3AQQPeIM9WCwIg8ohroJ8TjsYaMb2G4ZEgv9YzeDqHZ4JpeIKqG2SoaA3GmVQ3sOfhPM6Ox9sxphV/d1A==",
996
+ "license": "MIT",
997
+ "dependencies": {
998
+ "@ionic/utils-array": "2.1.6",
999
+ "@ionic/utils-fs": "3.1.7",
1000
+ "@ionic/utils-process": "2.1.12",
1001
+ "@ionic/utils-stream": "3.1.7",
1002
+ "@ionic/utils-terminal": "2.3.5",
1003
+ "cross-spawn": "^7.0.3",
1004
+ "debug": "^4.0.0",
1005
+ "tslib": "^2.0.1"
1006
+ },
1007
+ "engines": {
1008
+ "node": ">=16.0.0"
1009
+ }
1010
+ },
1011
+ "node_modules/@ionic/utils-terminal": {
1012
+ "version": "2.3.5",
1013
+ "resolved": "https://registry.npmjs.org/@ionic/utils-terminal/-/utils-terminal-2.3.5.tgz",
1014
+ "integrity": "sha512-3cKScz9Jx2/Pr9ijj1OzGlBDfcmx7OMVBt4+P1uRR0SSW4cm1/y3Mo4OY3lfkuaYifMNBW8Wz6lQHbs1bihr7A==",
1015
+ "license": "MIT",
1016
+ "dependencies": {
1017
+ "@types/slice-ansi": "^4.0.0",
1018
+ "debug": "^4.0.0",
1019
+ "signal-exit": "^3.0.3",
1020
+ "slice-ansi": "^4.0.0",
1021
+ "string-width": "^4.1.0",
1022
+ "strip-ansi": "^6.0.0",
1023
+ "tslib": "^2.0.1",
1024
+ "untildify": "^4.0.0",
1025
+ "wrap-ansi": "^7.0.0"
1026
+ },
1027
+ "engines": {
1028
+ "node": ">=16.0.0"
1029
+ }
1030
+ },
1031
+ "node_modules/@isaacs/cliui": {
1032
+ "version": "8.0.2",
1033
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
1034
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
1035
+ "license": "ISC",
1036
+ "dependencies": {
1037
+ "string-width": "^5.1.2",
1038
+ "string-width-cjs": "npm:string-width@^4.2.0",
1039
+ "strip-ansi": "^7.0.1",
1040
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
1041
+ "wrap-ansi": "^8.1.0",
1042
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
1043
+ },
1044
+ "engines": {
1045
+ "node": ">=12"
1046
+ }
1047
+ },
1048
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
1049
+ "version": "6.1.0",
1050
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
1051
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
1052
+ "license": "MIT",
1053
+ "engines": {
1054
+ "node": ">=12"
1055
+ },
1056
+ "funding": {
1057
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
1058
+ }
1059
+ },
1060
+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
1061
+ "version": "6.2.1",
1062
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
1063
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
1064
+ "license": "MIT",
1065
+ "engines": {
1066
+ "node": ">=12"
1067
+ },
1068
+ "funding": {
1069
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1070
+ }
1071
+ },
1072
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
1073
+ "version": "9.2.2",
1074
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
1075
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
1076
+ "license": "MIT"
1077
+ },
1078
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
1079
+ "version": "5.1.2",
1080
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
1081
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
1082
+ "license": "MIT",
1083
+ "dependencies": {
1084
+ "eastasianwidth": "^0.2.0",
1085
+ "emoji-regex": "^9.2.2",
1086
+ "strip-ansi": "^7.0.1"
1087
+ },
1088
+ "engines": {
1089
+ "node": ">=12"
1090
+ },
1091
+ "funding": {
1092
+ "url": "https://github.com/sponsors/sindresorhus"
1093
+ }
1094
+ },
1095
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
1096
+ "version": "7.1.0",
1097
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
1098
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
1099
+ "license": "MIT",
1100
+ "dependencies": {
1101
+ "ansi-regex": "^6.0.1"
1102
+ },
1103
+ "engines": {
1104
+ "node": ">=12"
1105
+ },
1106
+ "funding": {
1107
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
1108
+ }
1109
+ },
1110
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
1111
+ "version": "8.1.0",
1112
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
1113
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
1114
+ "license": "MIT",
1115
+ "dependencies": {
1116
+ "ansi-styles": "^6.1.0",
1117
+ "string-width": "^5.0.1",
1118
+ "strip-ansi": "^7.0.1"
1119
+ },
1120
+ "engines": {
1121
+ "node": ">=12"
1122
+ },
1123
+ "funding": {
1124
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
1125
+ }
1126
+ },
1127
+ "node_modules/@jridgewell/gen-mapping": {
1128
+ "version": "0.3.8",
1129
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
1130
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
1131
+ "license": "MIT",
1132
+ "dependencies": {
1133
+ "@jridgewell/set-array": "^1.2.1",
1134
+ "@jridgewell/sourcemap-codec": "^1.4.10",
1135
+ "@jridgewell/trace-mapping": "^0.3.24"
1136
+ },
1137
+ "engines": {
1138
+ "node": ">=6.0.0"
1139
+ }
1140
+ },
1141
+ "node_modules/@jridgewell/resolve-uri": {
1142
+ "version": "3.1.2",
1143
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1144
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1145
+ "license": "MIT",
1146
+ "engines": {
1147
+ "node": ">=6.0.0"
1148
+ }
1149
+ },
1150
+ "node_modules/@jridgewell/set-array": {
1151
+ "version": "1.2.1",
1152
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
1153
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
1154
+ "license": "MIT",
1155
+ "engines": {
1156
+ "node": ">=6.0.0"
1157
+ }
1158
+ },
1159
+ "node_modules/@jridgewell/sourcemap-codec": {
1160
+ "version": "1.5.0",
1161
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
1162
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
1163
+ "license": "MIT"
1164
+ },
1165
+ "node_modules/@jridgewell/trace-mapping": {
1166
+ "version": "0.3.25",
1167
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
1168
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
1169
+ "license": "MIT",
1170
+ "dependencies": {
1171
+ "@jridgewell/resolve-uri": "^3.1.0",
1172
+ "@jridgewell/sourcemap-codec": "^1.4.14"
1173
+ }
1174
+ },
1175
+ "node_modules/@nodelib/fs.scandir": {
1176
+ "version": "2.1.5",
1177
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
1178
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
1179
+ "license": "MIT",
1180
+ "dependencies": {
1181
+ "@nodelib/fs.stat": "2.0.5",
1182
+ "run-parallel": "^1.1.9"
1183
+ },
1184
+ "engines": {
1185
+ "node": ">= 8"
1186
+ }
1187
+ },
1188
+ "node_modules/@nodelib/fs.stat": {
1189
+ "version": "2.0.5",
1190
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
1191
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
1192
+ "license": "MIT",
1193
+ "engines": {
1194
+ "node": ">= 8"
1195
+ }
1196
+ },
1197
+ "node_modules/@nodelib/fs.walk": {
1198
+ "version": "1.2.8",
1199
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
1200
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
1201
+ "license": "MIT",
1202
+ "dependencies": {
1203
+ "@nodelib/fs.scandir": "2.1.5",
1204
+ "fastq": "^1.6.0"
1205
+ },
1206
+ "engines": {
1207
+ "node": ">= 8"
1208
+ }
1209
+ },
1210
+ "node_modules/@rollup/rollup-android-arm-eabi": {
1211
+ "version": "4.34.9",
1212
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.9.tgz",
1213
+ "integrity": "sha512-qZdlImWXur0CFakn2BJ2znJOdqYZKiedEPEVNTBrpfPjc/YuTGcaYZcdmNFTkUj3DU0ZM/AElcM8Ybww3xVLzA==",
1214
+ "cpu": [
1215
+ "arm"
1216
+ ],
1217
+ "license": "MIT",
1218
+ "optional": true,
1219
+ "os": [
1220
+ "android"
1221
+ ],
1222
+ "peer": true
1223
+ },
1224
+ "node_modules/@rollup/rollup-android-arm64": {
1225
+ "version": "4.34.9",
1226
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.9.tgz",
1227
+ "integrity": "sha512-4KW7P53h6HtJf5Y608T1ISKvNIYLWRKMvfnG0c44M6In4DQVU58HZFEVhWINDZKp7FZps98G3gxwC1sb0wXUUg==",
1228
+ "cpu": [
1229
+ "arm64"
1230
+ ],
1231
+ "license": "MIT",
1232
+ "optional": true,
1233
+ "os": [
1234
+ "android"
1235
+ ],
1236
+ "peer": true
1237
+ },
1238
+ "node_modules/@rollup/rollup-darwin-arm64": {
1239
+ "version": "4.34.9",
1240
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.9.tgz",
1241
+ "integrity": "sha512-0CY3/K54slrzLDjOA7TOjN1NuLKERBgk9nY5V34mhmuu673YNb+7ghaDUs6N0ujXR7fz5XaS5Aa6d2TNxZd0OQ==",
1242
+ "cpu": [
1243
+ "arm64"
1244
+ ],
1245
+ "license": "MIT",
1246
+ "optional": true,
1247
+ "os": [
1248
+ "darwin"
1249
+ ],
1250
+ "peer": true
1251
+ },
1252
+ "node_modules/@rollup/rollup-darwin-x64": {
1253
+ "version": "4.34.9",
1254
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.9.tgz",
1255
+ "integrity": "sha512-eOojSEAi/acnsJVYRxnMkPFqcxSMFfrw7r2iD9Q32SGkb/Q9FpUY1UlAu1DH9T7j++gZ0lHjnm4OyH2vCI7l7Q==",
1256
+ "cpu": [
1257
+ "x64"
1258
+ ],
1259
+ "license": "MIT",
1260
+ "optional": true,
1261
+ "os": [
1262
+ "darwin"
1263
+ ],
1264
+ "peer": true
1265
+ },
1266
+ "node_modules/@rollup/rollup-freebsd-arm64": {
1267
+ "version": "4.34.9",
1268
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.9.tgz",
1269
+ "integrity": "sha512-2lzjQPJbN5UnHm7bHIUKFMulGTQwdvOkouJDpPysJS+QFBGDJqcfh+CxxtG23Ik/9tEvnebQiylYoazFMAgrYw==",
1270
+ "cpu": [
1271
+ "arm64"
1272
+ ],
1273
+ "license": "MIT",
1274
+ "optional": true,
1275
+ "os": [
1276
+ "freebsd"
1277
+ ],
1278
+ "peer": true
1279
+ },
1280
+ "node_modules/@rollup/rollup-freebsd-x64": {
1281
+ "version": "4.34.9",
1282
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.9.tgz",
1283
+ "integrity": "sha512-SLl0hi2Ah2H7xQYd6Qaiu01kFPzQ+hqvdYSoOtHYg/zCIFs6t8sV95kaoqjzjFwuYQLtOI0RZre/Ke0nPaQV+g==",
1284
+ "cpu": [
1285
+ "x64"
1286
+ ],
1287
+ "license": "MIT",
1288
+ "optional": true,
1289
+ "os": [
1290
+ "freebsd"
1291
+ ],
1292
+ "peer": true
1293
+ },
1294
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1295
+ "version": "4.34.9",
1296
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.9.tgz",
1297
+ "integrity": "sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==",
1298
+ "cpu": [
1299
+ "arm"
1300
+ ],
1301
+ "license": "MIT",
1302
+ "optional": true,
1303
+ "os": [
1304
+ "linux"
1305
+ ],
1306
+ "peer": true
1307
+ },
1308
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1309
+ "version": "4.34.9",
1310
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.9.tgz",
1311
+ "integrity": "sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==",
1312
+ "cpu": [
1313
+ "arm"
1314
+ ],
1315
+ "license": "MIT",
1316
+ "optional": true,
1317
+ "os": [
1318
+ "linux"
1319
+ ],
1320
+ "peer": true
1321
+ },
1322
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
1323
+ "version": "4.34.9",
1324
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.9.tgz",
1325
+ "integrity": "sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==",
1326
+ "cpu": [
1327
+ "arm64"
1328
+ ],
1329
+ "license": "MIT",
1330
+ "optional": true,
1331
+ "os": [
1332
+ "linux"
1333
+ ],
1334
+ "peer": true
1335
+ },
1336
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
1337
+ "version": "4.34.9",
1338
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.9.tgz",
1339
+ "integrity": "sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==",
1340
+ "cpu": [
1341
+ "arm64"
1342
+ ],
1343
+ "license": "MIT",
1344
+ "optional": true,
1345
+ "os": [
1346
+ "linux"
1347
+ ],
1348
+ "peer": true
1349
+ },
1350
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
1351
+ "version": "4.34.9",
1352
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.9.tgz",
1353
+ "integrity": "sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==",
1354
+ "cpu": [
1355
+ "loong64"
1356
+ ],
1357
+ "license": "MIT",
1358
+ "optional": true,
1359
+ "os": [
1360
+ "linux"
1361
+ ],
1362
+ "peer": true
1363
+ },
1364
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
1365
+ "version": "4.34.9",
1366
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.9.tgz",
1367
+ "integrity": "sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==",
1368
+ "cpu": [
1369
+ "ppc64"
1370
+ ],
1371
+ "license": "MIT",
1372
+ "optional": true,
1373
+ "os": [
1374
+ "linux"
1375
+ ],
1376
+ "peer": true
1377
+ },
1378
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1379
+ "version": "4.34.9",
1380
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.9.tgz",
1381
+ "integrity": "sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==",
1382
+ "cpu": [
1383
+ "riscv64"
1384
+ ],
1385
+ "license": "MIT",
1386
+ "optional": true,
1387
+ "os": [
1388
+ "linux"
1389
+ ],
1390
+ "peer": true
1391
+ },
1392
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1393
+ "version": "4.34.9",
1394
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.9.tgz",
1395
+ "integrity": "sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==",
1396
+ "cpu": [
1397
+ "s390x"
1398
+ ],
1399
+ "license": "MIT",
1400
+ "optional": true,
1401
+ "os": [
1402
+ "linux"
1403
+ ],
1404
+ "peer": true
1405
+ },
1406
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1407
+ "version": "4.34.9",
1408
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.9.tgz",
1409
+ "integrity": "sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==",
1410
+ "cpu": [
1411
+ "x64"
1412
+ ],
1413
+ "license": "MIT",
1414
+ "optional": true,
1415
+ "os": [
1416
+ "linux"
1417
+ ],
1418
+ "peer": true
1419
+ },
1420
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1421
+ "version": "4.34.9",
1422
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.9.tgz",
1423
+ "integrity": "sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==",
1424
+ "cpu": [
1425
+ "x64"
1426
+ ],
1427
+ "license": "MIT",
1428
+ "optional": true,
1429
+ "os": [
1430
+ "linux"
1431
+ ],
1432
+ "peer": true
1433
+ },
1434
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1435
+ "version": "4.34.9",
1436
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.9.tgz",
1437
+ "integrity": "sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==",
1438
+ "cpu": [
1439
+ "arm64"
1440
+ ],
1441
+ "license": "MIT",
1442
+ "optional": true,
1443
+ "os": [
1444
+ "win32"
1445
+ ],
1446
+ "peer": true
1447
+ },
1448
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1449
+ "version": "4.34.9",
1450
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.9.tgz",
1451
+ "integrity": "sha512-KB48mPtaoHy1AwDNkAJfHXvHp24H0ryZog28spEs0V48l3H1fr4i37tiyHsgKZJnCmvxsbATdZGBpbmxTE3a9w==",
1452
+ "cpu": [
1453
+ "ia32"
1454
+ ],
1455
+ "license": "MIT",
1456
+ "optional": true,
1457
+ "os": [
1458
+ "win32"
1459
+ ],
1460
+ "peer": true
1461
+ },
1462
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1463
+ "version": "4.34.9",
1464
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.9.tgz",
1465
+ "integrity": "sha512-AyleYRPU7+rgkMWbEh71fQlrzRfeP6SyMnRf9XX4fCdDPAJumdSBqYEcWPMzVQ4ScAl7E4oFfK0GUVn77xSwbw==",
1466
+ "cpu": [
1467
+ "x64"
1468
+ ],
1469
+ "license": "MIT",
1470
+ "optional": true,
1471
+ "os": [
1472
+ "win32"
1473
+ ],
1474
+ "peer": true
1475
+ },
1476
+ "node_modules/@stencil/core": {
1477
+ "version": "4.20.0",
1478
+ "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.20.0.tgz",
1479
+ "integrity": "sha512-WPrTHFngvN081RY+dJPneKQLwnOFD60OMCOQGmmSHfCW0f4ujPMzzhwWU1gcSwXPWXz5O+8cBiiCaxAbJU7kAg==",
1480
+ "license": "MIT",
1481
+ "bin": {
1482
+ "stencil": "bin/stencil"
1483
+ },
1484
+ "engines": {
1485
+ "node": ">=16.0.0",
1486
+ "npm": ">=7.10.0"
1487
+ }
1488
+ },
1489
+ "node_modules/@types/babel__core": {
1490
+ "version": "7.20.5",
1491
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1492
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1493
+ "license": "MIT",
1494
+ "dependencies": {
1495
+ "@babel/parser": "^7.20.7",
1496
+ "@babel/types": "^7.20.7",
1497
+ "@types/babel__generator": "*",
1498
+ "@types/babel__template": "*",
1499
+ "@types/babel__traverse": "*"
1500
+ }
1501
+ },
1502
+ "node_modules/@types/babel__generator": {
1503
+ "version": "7.6.8",
1504
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
1505
+ "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
1506
+ "license": "MIT",
1507
+ "dependencies": {
1508
+ "@babel/types": "^7.0.0"
1509
+ }
1510
+ },
1511
+ "node_modules/@types/babel__template": {
1512
+ "version": "7.4.4",
1513
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1514
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1515
+ "license": "MIT",
1516
+ "dependencies": {
1517
+ "@babel/parser": "^7.1.0",
1518
+ "@babel/types": "^7.0.0"
1519
+ }
1520
+ },
1521
+ "node_modules/@types/babel__traverse": {
1522
+ "version": "7.20.6",
1523
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz",
1524
+ "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==",
1525
+ "license": "MIT",
1526
+ "dependencies": {
1527
+ "@babel/types": "^7.20.7"
1528
+ }
1529
+ },
1530
+ "node_modules/@types/cordova": {
1531
+ "version": "11.0.3",
1532
+ "resolved": "https://registry.npmjs.org/@types/cordova/-/cordova-11.0.3.tgz",
1533
+ "integrity": "sha512-kyuRQ40/NWQVhqGIHq78Ehu2Bf9Mlg0LhmSmis6ZFJK7z933FRfYi8tHe/k/0fB+PGfCf95rJC6TO7dopaFvAg==",
1534
+ "license": "MIT"
1535
+ },
1536
+ "node_modules/@types/estree": {
1537
+ "version": "1.0.6",
1538
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
1539
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
1540
+ "license": "MIT",
1541
+ "peer": true
1542
+ },
1543
+ "node_modules/@types/fs-extra": {
1544
+ "version": "8.1.5",
1545
+ "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.5.tgz",
1546
+ "integrity": "sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==",
1547
+ "license": "MIT",
1548
+ "dependencies": {
1549
+ "@types/node": "*"
1550
+ }
1551
+ },
1552
+ "node_modules/@types/history": {
1553
+ "version": "4.7.11",
1554
+ "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz",
1555
+ "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==",
1556
+ "license": "MIT"
1557
+ },
1558
+ "node_modules/@types/node": {
1559
+ "version": "22.13.9",
1560
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.9.tgz",
1561
+ "integrity": "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==",
1562
+ "license": "MIT",
1563
+ "dependencies": {
1564
+ "undici-types": "~6.20.0"
1565
+ }
1566
+ },
1567
+ "node_modules/@types/react": {
1568
+ "version": "19.0.10",
1569
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.10.tgz",
1570
+ "integrity": "sha512-JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==",
1571
+ "license": "MIT",
1572
+ "dependencies": {
1573
+ "csstype": "^3.0.2"
1574
+ }
1575
+ },
1576
+ "node_modules/@types/react-router": {
1577
+ "version": "5.1.20",
1578
+ "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz",
1579
+ "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==",
1580
+ "license": "MIT",
1581
+ "dependencies": {
1582
+ "@types/history": "^4.7.11",
1583
+ "@types/react": "*"
1584
+ }
1585
+ },
1586
+ "node_modules/@types/react-router-dom": {
1587
+ "version": "5.3.3",
1588
+ "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz",
1589
+ "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==",
1590
+ "license": "MIT",
1591
+ "dependencies": {
1592
+ "@types/history": "^4.7.11",
1593
+ "@types/react": "*",
1594
+ "@types/react-router": "*"
1595
+ }
1596
+ },
1597
+ "node_modules/@types/slice-ansi": {
1598
+ "version": "4.0.0",
1599
+ "resolved": "https://registry.npmjs.org/@types/slice-ansi/-/slice-ansi-4.0.0.tgz",
1600
+ "integrity": "sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ==",
1601
+ "license": "MIT"
1602
+ },
1603
+ "node_modules/@vitejs/plugin-react": {
1604
+ "version": "4.3.4",
1605
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz",
1606
+ "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==",
1607
+ "license": "MIT",
1608
+ "dependencies": {
1609
+ "@babel/core": "^7.26.0",
1610
+ "@babel/plugin-transform-react-jsx-self": "^7.25.9",
1611
+ "@babel/plugin-transform-react-jsx-source": "^7.25.9",
1612
+ "@types/babel__core": "^7.20.5",
1613
+ "react-refresh": "^0.14.2"
1614
+ },
1615
+ "engines": {
1616
+ "node": "^14.18.0 || >=16.0.0"
1617
+ },
1618
+ "peerDependencies": {
1619
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0"
1620
+ }
1621
+ },
1622
+ "node_modules/@xmldom/xmldom": {
1623
+ "version": "0.8.10",
1624
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz",
1625
+ "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==",
1626
+ "license": "MIT",
1627
+ "engines": {
1628
+ "node": ">=10.0.0"
1629
+ }
1630
+ },
1631
+ "node_modules/ansi-regex": {
1632
+ "version": "5.0.1",
1633
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1634
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1635
+ "license": "MIT",
1636
+ "engines": {
1637
+ "node": ">=8"
1638
+ }
1639
+ },
1640
+ "node_modules/ansi-styles": {
1641
+ "version": "4.3.0",
1642
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1643
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1644
+ "license": "MIT",
1645
+ "dependencies": {
1646
+ "color-convert": "^2.0.1"
1647
+ },
1648
+ "engines": {
1649
+ "node": ">=8"
1650
+ },
1651
+ "funding": {
1652
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1653
+ }
1654
+ },
1655
+ "node_modules/anymatch": {
1656
+ "version": "3.1.3",
1657
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1658
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1659
+ "license": "ISC",
1660
+ "dependencies": {
1661
+ "normalize-path": "^3.0.0",
1662
+ "picomatch": "^2.0.4"
1663
+ },
1664
+ "engines": {
1665
+ "node": ">= 8"
1666
+ }
1667
+ },
1668
+ "node_modules/astral-regex": {
1669
+ "version": "2.0.0",
1670
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
1671
+ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
1672
+ "license": "MIT",
1673
+ "engines": {
1674
+ "node": ">=8"
1675
+ }
1676
+ },
1677
+ "node_modules/at-least-node": {
1678
+ "version": "1.0.0",
1679
+ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
1680
+ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
1681
+ "license": "ISC",
1682
+ "engines": {
1683
+ "node": ">= 4.0.0"
1684
+ }
1685
+ },
1686
+ "node_modules/balanced-match": {
1687
+ "version": "1.0.2",
1688
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1689
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1690
+ "license": "MIT"
1691
+ },
1692
+ "node_modules/base64-js": {
1693
+ "version": "1.5.1",
1694
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1695
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
1696
+ "funding": [
1697
+ {
1698
+ "type": "github",
1699
+ "url": "https://github.com/sponsors/feross"
1700
+ },
1701
+ {
1702
+ "type": "patreon",
1703
+ "url": "https://www.patreon.com/feross"
1704
+ },
1705
+ {
1706
+ "type": "consulting",
1707
+ "url": "https://feross.org/support"
1708
+ }
1709
+ ],
1710
+ "license": "MIT"
1711
+ },
1712
+ "node_modules/big-integer": {
1713
+ "version": "1.6.52",
1714
+ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz",
1715
+ "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==",
1716
+ "license": "Unlicense",
1717
+ "engines": {
1718
+ "node": ">=0.6"
1719
+ }
1720
+ },
1721
+ "node_modules/binary-extensions": {
1722
+ "version": "2.3.0",
1723
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
1724
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
1725
+ "license": "MIT",
1726
+ "engines": {
1727
+ "node": ">=8"
1728
+ },
1729
+ "funding": {
1730
+ "url": "https://github.com/sponsors/sindresorhus"
1731
+ }
1732
+ },
1733
+ "node_modules/bplist-parser": {
1734
+ "version": "0.3.2",
1735
+ "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz",
1736
+ "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==",
1737
+ "license": "MIT",
1738
+ "dependencies": {
1739
+ "big-integer": "1.6.x"
1740
+ },
1741
+ "engines": {
1742
+ "node": ">= 5.10.0"
1743
+ }
1744
+ },
1745
+ "node_modules/brace-expansion": {
1746
+ "version": "2.0.1",
1747
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
1748
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
1749
+ "license": "MIT",
1750
+ "dependencies": {
1751
+ "balanced-match": "^1.0.0"
1752
+ }
1753
+ },
1754
+ "node_modules/braces": {
1755
+ "version": "3.0.3",
1756
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1757
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1758
+ "license": "MIT",
1759
+ "dependencies": {
1760
+ "fill-range": "^7.1.1"
1761
+ },
1762
+ "engines": {
1763
+ "node": ">=8"
1764
+ }
1765
+ },
1766
+ "node_modules/browserslist": {
1767
+ "version": "4.24.4",
1768
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
1769
+ "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
1770
+ "funding": [
1771
+ {
1772
+ "type": "opencollective",
1773
+ "url": "https://opencollective.com/browserslist"
1774
+ },
1775
+ {
1776
+ "type": "tidelift",
1777
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1778
+ },
1779
+ {
1780
+ "type": "github",
1781
+ "url": "https://github.com/sponsors/ai"
1782
+ }
1783
+ ],
1784
+ "license": "MIT",
1785
+ "dependencies": {
1786
+ "caniuse-lite": "^1.0.30001688",
1787
+ "electron-to-chromium": "^1.5.73",
1788
+ "node-releases": "^2.0.19",
1789
+ "update-browserslist-db": "^1.1.1"
1790
+ },
1791
+ "bin": {
1792
+ "browserslist": "cli.js"
1793
+ },
1794
+ "engines": {
1795
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1796
+ }
1797
+ },
1798
+ "node_modules/buffer-crc32": {
1799
+ "version": "0.2.13",
1800
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
1801
+ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
1802
+ "license": "MIT",
1803
+ "engines": {
1804
+ "node": "*"
1805
+ }
1806
+ },
1807
+ "node_modules/caniuse-lite": {
1808
+ "version": "1.0.30001701",
1809
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz",
1810
+ "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==",
1811
+ "funding": [
1812
+ {
1813
+ "type": "opencollective",
1814
+ "url": "https://opencollective.com/browserslist"
1815
+ },
1816
+ {
1817
+ "type": "tidelift",
1818
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1819
+ },
1820
+ {
1821
+ "type": "github",
1822
+ "url": "https://github.com/sponsors/ai"
1823
+ }
1824
+ ],
1825
+ "license": "CC-BY-4.0"
1826
+ },
1827
+ "node_modules/chokidar": {
1828
+ "version": "3.6.0",
1829
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
1830
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
1831
+ "license": "MIT",
1832
+ "dependencies": {
1833
+ "anymatch": "~3.1.2",
1834
+ "braces": "~3.0.2",
1835
+ "glob-parent": "~5.1.2",
1836
+ "is-binary-path": "~2.1.0",
1837
+ "is-glob": "~4.0.1",
1838
+ "normalize-path": "~3.0.0",
1839
+ "readdirp": "~3.6.0"
1840
+ },
1841
+ "engines": {
1842
+ "node": ">= 8.10.0"
1843
+ },
1844
+ "funding": {
1845
+ "url": "https://paulmillr.com/funding/"
1846
+ },
1847
+ "optionalDependencies": {
1848
+ "fsevents": "~2.3.2"
1849
+ }
1850
+ },
1851
+ "node_modules/chownr": {
1852
+ "version": "2.0.0",
1853
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
1854
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
1855
+ "license": "ISC",
1856
+ "engines": {
1857
+ "node": ">=10"
1858
+ }
1859
+ },
1860
+ "node_modules/color-convert": {
1861
+ "version": "2.0.1",
1862
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1863
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1864
+ "license": "MIT",
1865
+ "dependencies": {
1866
+ "color-name": "~1.1.4"
1867
+ },
1868
+ "engines": {
1869
+ "node": ">=7.0.0"
1870
+ }
1871
+ },
1872
+ "node_modules/color-name": {
1873
+ "version": "1.1.4",
1874
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1875
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1876
+ "license": "MIT"
1877
+ },
1878
+ "node_modules/commander": {
1879
+ "version": "12.1.0",
1880
+ "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
1881
+ "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
1882
+ "license": "MIT",
1883
+ "engines": {
1884
+ "node": ">=18"
1885
+ }
1886
+ },
1887
+ "node_modules/convert-source-map": {
1888
+ "version": "2.0.0",
1889
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1890
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1891
+ "license": "MIT"
1892
+ },
1893
+ "node_modules/cordova-plugin-camera": {
1894
+ "version": "8.0.0",
1895
+ "resolved": "https://registry.npmjs.org/cordova-plugin-camera/-/cordova-plugin-camera-8.0.0.tgz",
1896
+ "integrity": "sha512-8HgUd9AQTmLBdSgBS/sbPWaroVPjFmce2Rglwt9CTSpniFFGSOqGRx5URUdJ3tQiREisgy0R/4Zl+BfVv/gT2w==",
1897
+ "license": "Apache-2.0",
1898
+ "engines": {
1899
+ "cordovaDependencies": {
1900
+ "3.0.0": {
1901
+ "cordova-android": ">=6.3.0"
1902
+ },
1903
+ "4.1.0": {
1904
+ "cordova": ">=7.1.0",
1905
+ "cordova-android": ">=6.3.0"
1906
+ },
1907
+ "5.0.0": {
1908
+ "cordova": ">=9.0.0",
1909
+ "cordova-android": ">=9.0.0",
1910
+ "cordova-ios": ">=5.1.0"
1911
+ },
1912
+ "5.0.4-dev": {
1913
+ "cordova": ">=9.0.0",
1914
+ "cordova-android": "<10.0.0",
1915
+ "cordova-ios": ">=5.1.0"
1916
+ },
1917
+ "6.0.0": {
1918
+ "cordova": ">=9.0.0",
1919
+ "cordova-android": ">=10.0.0",
1920
+ "cordova-ios": ">=5.1.0"
1921
+ },
1922
+ "7.0.0": {
1923
+ "cordova": ">=9.0.0",
1924
+ "cordova-android": ">=12.0.0",
1925
+ "cordova-ios": ">=5.1.0"
1926
+ },
1927
+ "8.0.0": {
1928
+ "cordova": ">=9.0.0",
1929
+ "cordova-android": ">=12.0.0",
1930
+ "cordova-ios": ">=5.1.0"
1931
+ },
1932
+ "9.0.0": {
1933
+ "cordova": ">100"
1934
+ }
1935
+ }
1936
+ }
1937
+ },
1938
+ "node_modules/cordova-plugin-dialogs": {
1939
+ "version": "2.0.2",
1940
+ "resolved": "https://registry.npmjs.org/cordova-plugin-dialogs/-/cordova-plugin-dialogs-2.0.2.tgz",
1941
+ "integrity": "sha512-FUHI6eEVeoz2VkxbF0P56QlUQLGzXcvw3i4xuXyM9gEct6Y+FA3Xzgl2pJTZcTg5wRqLWzN08kgNoHPkom15pw==",
1942
+ "license": "Apache-2.0",
1943
+ "engines": {
1944
+ "cordovaDependencies": {
1945
+ "3.0.0": {
1946
+ "cordova": ">100"
1947
+ }
1948
+ }
1949
+ }
1950
+ },
1951
+ "node_modules/cordova-plugin-file": {
1952
+ "version": "8.1.3",
1953
+ "resolved": "https://registry.npmjs.org/cordova-plugin-file/-/cordova-plugin-file-8.1.3.tgz",
1954
+ "integrity": "sha512-KlnP3CapNIsKncoWV5lYcIFYDPl0aZ1J3AH3QESlQX1Cb6Ct0p6GrAUvINyrFsjPbWHj8i0b6la6udVsghbATg==",
1955
+ "license": "Apache-2.0",
1956
+ "engines": {
1957
+ "cordovaDependencies": {
1958
+ "5.0.0": {
1959
+ "cordova-android": ">=6.3.0"
1960
+ },
1961
+ "7.0.0": {
1962
+ "cordova-android": ">=10.0.0"
1963
+ },
1964
+ "8.0.0": {
1965
+ "cordova-android": ">=12.0.0"
1966
+ },
1967
+ "9.0.0": {
1968
+ "cordova": ">100"
1969
+ }
1970
+ }
1971
+ }
1972
+ },
1973
+ "node_modules/cross-spawn": {
1974
+ "version": "7.0.6",
1975
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1976
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1977
+ "license": "MIT",
1978
+ "dependencies": {
1979
+ "path-key": "^3.1.0",
1980
+ "shebang-command": "^2.0.0",
1981
+ "which": "^2.0.1"
1982
+ },
1983
+ "engines": {
1984
+ "node": ">= 8"
1985
+ }
1986
+ },
1987
+ "node_modules/csstype": {
1988
+ "version": "3.1.3",
1989
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1990
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1991
+ "license": "MIT"
1992
+ },
1993
+ "node_modules/debug": {
1994
+ "version": "4.4.0",
1995
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
1996
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
1997
+ "license": "MIT",
1998
+ "dependencies": {
1999
+ "ms": "^2.1.3"
2000
+ },
2001
+ "engines": {
2002
+ "node": ">=6.0"
2003
+ },
2004
+ "peerDependenciesMeta": {
2005
+ "supports-color": {
2006
+ "optional": true
2007
+ }
2008
+ }
2009
+ },
2010
+ "node_modules/define-lazy-prop": {
2011
+ "version": "2.0.0",
2012
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
2013
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
2014
+ "license": "MIT",
2015
+ "engines": {
2016
+ "node": ">=8"
2017
+ }
2018
+ },
2019
+ "node_modules/eastasianwidth": {
2020
+ "version": "0.2.0",
2021
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
2022
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
2023
+ "license": "MIT"
2024
+ },
2025
+ "node_modules/electron-to-chromium": {
2026
+ "version": "1.5.110",
2027
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.110.tgz",
2028
+ "integrity": "sha512-/p/OvOm6AfLtQteAHTUWwf+Vhh76PlluagzQlSnxMoOJ4R6SmAScWBrVev6rExJoUhP9zudN9+lBxoYUEmC1HQ==",
2029
+ "license": "ISC"
2030
+ },
2031
+ "node_modules/elementtree": {
2032
+ "version": "0.1.7",
2033
+ "resolved": "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz",
2034
+ "integrity": "sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==",
2035
+ "license": "Apache-2.0",
2036
+ "dependencies": {
2037
+ "sax": "1.1.4"
2038
+ },
2039
+ "engines": {
2040
+ "node": ">= 0.4.0"
2041
+ }
2042
+ },
2043
+ "node_modules/emoji-regex": {
2044
+ "version": "8.0.0",
2045
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2046
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2047
+ "license": "MIT"
2048
+ },
2049
+ "node_modules/env-paths": {
2050
+ "version": "2.2.1",
2051
+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
2052
+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
2053
+ "license": "MIT",
2054
+ "engines": {
2055
+ "node": ">=6"
2056
+ }
2057
+ },
2058
+ "node_modules/esbuild": {
2059
+ "version": "0.25.0",
2060
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz",
2061
+ "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==",
2062
+ "hasInstallScript": true,
2063
+ "license": "MIT",
2064
+ "peer": true,
2065
+ "bin": {
2066
+ "esbuild": "bin/esbuild"
2067
+ },
2068
+ "engines": {
2069
+ "node": ">=18"
2070
+ },
2071
+ "optionalDependencies": {
2072
+ "@esbuild/aix-ppc64": "0.25.0",
2073
+ "@esbuild/android-arm": "0.25.0",
2074
+ "@esbuild/android-arm64": "0.25.0",
2075
+ "@esbuild/android-x64": "0.25.0",
2076
+ "@esbuild/darwin-arm64": "0.25.0",
2077
+ "@esbuild/darwin-x64": "0.25.0",
2078
+ "@esbuild/freebsd-arm64": "0.25.0",
2079
+ "@esbuild/freebsd-x64": "0.25.0",
2080
+ "@esbuild/linux-arm": "0.25.0",
2081
+ "@esbuild/linux-arm64": "0.25.0",
2082
+ "@esbuild/linux-ia32": "0.25.0",
2083
+ "@esbuild/linux-loong64": "0.25.0",
2084
+ "@esbuild/linux-mips64el": "0.25.0",
2085
+ "@esbuild/linux-ppc64": "0.25.0",
2086
+ "@esbuild/linux-riscv64": "0.25.0",
2087
+ "@esbuild/linux-s390x": "0.25.0",
2088
+ "@esbuild/linux-x64": "0.25.0",
2089
+ "@esbuild/netbsd-arm64": "0.25.0",
2090
+ "@esbuild/netbsd-x64": "0.25.0",
2091
+ "@esbuild/openbsd-arm64": "0.25.0",
2092
+ "@esbuild/openbsd-x64": "0.25.0",
2093
+ "@esbuild/sunos-x64": "0.25.0",
2094
+ "@esbuild/win32-arm64": "0.25.0",
2095
+ "@esbuild/win32-ia32": "0.25.0",
2096
+ "@esbuild/win32-x64": "0.25.0"
2097
+ }
2098
+ },
2099
+ "node_modules/escalade": {
2100
+ "version": "3.2.0",
2101
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2102
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2103
+ "license": "MIT",
2104
+ "engines": {
2105
+ "node": ">=6"
2106
+ }
2107
+ },
2108
+ "node_modules/fast-glob": {
2109
+ "version": "3.3.3",
2110
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
2111
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
2112
+ "license": "MIT",
2113
+ "dependencies": {
2114
+ "@nodelib/fs.stat": "^2.0.2",
2115
+ "@nodelib/fs.walk": "^1.2.3",
2116
+ "glob-parent": "^5.1.2",
2117
+ "merge2": "^1.3.0",
2118
+ "micromatch": "^4.0.8"
2119
+ },
2120
+ "engines": {
2121
+ "node": ">=8.6.0"
2122
+ }
2123
+ },
2124
+ "node_modules/fastq": {
2125
+ "version": "1.19.1",
2126
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
2127
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
2128
+ "license": "ISC",
2129
+ "dependencies": {
2130
+ "reusify": "^1.0.4"
2131
+ }
2132
+ },
2133
+ "node_modules/fd-slicer": {
2134
+ "version": "1.1.0",
2135
+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
2136
+ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
2137
+ "license": "MIT",
2138
+ "dependencies": {
2139
+ "pend": "~1.2.0"
2140
+ }
2141
+ },
2142
+ "node_modules/fill-range": {
2143
+ "version": "7.1.1",
2144
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2145
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2146
+ "license": "MIT",
2147
+ "dependencies": {
2148
+ "to-regex-range": "^5.0.1"
2149
+ },
2150
+ "engines": {
2151
+ "node": ">=8"
2152
+ }
2153
+ },
2154
+ "node_modules/foreground-child": {
2155
+ "version": "3.3.1",
2156
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
2157
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
2158
+ "license": "ISC",
2159
+ "dependencies": {
2160
+ "cross-spawn": "^7.0.6",
2161
+ "signal-exit": "^4.0.1"
2162
+ },
2163
+ "engines": {
2164
+ "node": ">=14"
2165
+ },
2166
+ "funding": {
2167
+ "url": "https://github.com/sponsors/isaacs"
2168
+ }
2169
+ },
2170
+ "node_modules/foreground-child/node_modules/signal-exit": {
2171
+ "version": "4.1.0",
2172
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
2173
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2174
+ "license": "ISC",
2175
+ "engines": {
2176
+ "node": ">=14"
2177
+ },
2178
+ "funding": {
2179
+ "url": "https://github.com/sponsors/isaacs"
2180
+ }
2181
+ },
2182
+ "node_modules/fs-extra": {
2183
+ "version": "11.3.0",
2184
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
2185
+ "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==",
2186
+ "license": "MIT",
2187
+ "dependencies": {
2188
+ "graceful-fs": "^4.2.0",
2189
+ "jsonfile": "^6.0.1",
2190
+ "universalify": "^2.0.0"
2191
+ },
2192
+ "engines": {
2193
+ "node": ">=14.14"
2194
+ }
2195
+ },
2196
+ "node_modules/fs-minipass": {
2197
+ "version": "2.1.0",
2198
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
2199
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
2200
+ "license": "ISC",
2201
+ "dependencies": {
2202
+ "minipass": "^3.0.0"
2203
+ },
2204
+ "engines": {
2205
+ "node": ">= 8"
2206
+ }
2207
+ },
2208
+ "node_modules/fs-minipass/node_modules/minipass": {
2209
+ "version": "3.3.6",
2210
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
2211
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
2212
+ "license": "ISC",
2213
+ "dependencies": {
2214
+ "yallist": "^4.0.0"
2215
+ },
2216
+ "engines": {
2217
+ "node": ">=8"
2218
+ }
2219
+ },
2220
+ "node_modules/fs-minipass/node_modules/yallist": {
2221
+ "version": "4.0.0",
2222
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
2223
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
2224
+ "license": "ISC"
2225
+ },
2226
+ "node_modules/fsevents": {
2227
+ "version": "2.3.3",
2228
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2229
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2230
+ "hasInstallScript": true,
2231
+ "license": "MIT",
2232
+ "optional": true,
2233
+ "os": [
2234
+ "darwin"
2235
+ ],
2236
+ "engines": {
2237
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2238
+ }
2239
+ },
2240
+ "node_modules/gensync": {
2241
+ "version": "1.0.0-beta.2",
2242
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2243
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2244
+ "license": "MIT",
2245
+ "engines": {
2246
+ "node": ">=6.9.0"
2247
+ }
2248
+ },
2249
+ "node_modules/glob": {
2250
+ "version": "11.0.1",
2251
+ "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz",
2252
+ "integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==",
2253
+ "license": "ISC",
2254
+ "dependencies": {
2255
+ "foreground-child": "^3.1.0",
2256
+ "jackspeak": "^4.0.1",
2257
+ "minimatch": "^10.0.0",
2258
+ "minipass": "^7.1.2",
2259
+ "package-json-from-dist": "^1.0.0",
2260
+ "path-scurry": "^2.0.0"
2261
+ },
2262
+ "bin": {
2263
+ "glob": "dist/esm/bin.mjs"
2264
+ },
2265
+ "engines": {
2266
+ "node": "20 || >=22"
2267
+ },
2268
+ "funding": {
2269
+ "url": "https://github.com/sponsors/isaacs"
2270
+ }
2271
+ },
2272
+ "node_modules/glob-parent": {
2273
+ "version": "5.1.2",
2274
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2275
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2276
+ "license": "ISC",
2277
+ "dependencies": {
2278
+ "is-glob": "^4.0.1"
2279
+ },
2280
+ "engines": {
2281
+ "node": ">= 6"
2282
+ }
2283
+ },
2284
+ "node_modules/globals": {
2285
+ "version": "11.12.0",
2286
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
2287
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
2288
+ "license": "MIT",
2289
+ "engines": {
2290
+ "node": ">=4"
2291
+ }
2292
+ },
2293
+ "node_modules/graceful-fs": {
2294
+ "version": "4.2.11",
2295
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2296
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2297
+ "license": "ISC"
2298
+ },
2299
+ "node_modules/inherits": {
2300
+ "version": "2.0.4",
2301
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2302
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2303
+ "license": "ISC"
2304
+ },
2305
+ "node_modules/ini": {
2306
+ "version": "4.1.3",
2307
+ "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz",
2308
+ "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==",
2309
+ "license": "ISC",
2310
+ "engines": {
2311
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2312
+ }
2313
+ },
2314
+ "node_modules/ionicons": {
2315
+ "version": "7.4.0",
2316
+ "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.4.0.tgz",
2317
+ "integrity": "sha512-ZK94MMqgzMCPPMhmk8Ouu6goyVHFIlw/ACP6oe3FrikcI0N7CX0xcwVaEbUc0G/v3W0shI93vo+9ve/KpvcNhQ==",
2318
+ "license": "MIT",
2319
+ "dependencies": {
2320
+ "@stencil/core": "^4.0.3"
2321
+ }
2322
+ },
2323
+ "node_modules/is-binary-path": {
2324
+ "version": "2.1.0",
2325
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
2326
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
2327
+ "license": "MIT",
2328
+ "dependencies": {
2329
+ "binary-extensions": "^2.0.0"
2330
+ },
2331
+ "engines": {
2332
+ "node": ">=8"
2333
+ }
2334
+ },
2335
+ "node_modules/is-docker": {
2336
+ "version": "2.2.1",
2337
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
2338
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
2339
+ "license": "MIT",
2340
+ "bin": {
2341
+ "is-docker": "cli.js"
2342
+ },
2343
+ "engines": {
2344
+ "node": ">=8"
2345
+ },
2346
+ "funding": {
2347
+ "url": "https://github.com/sponsors/sindresorhus"
2348
+ }
2349
+ },
2350
+ "node_modules/is-extglob": {
2351
+ "version": "2.1.1",
2352
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2353
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2354
+ "license": "MIT",
2355
+ "engines": {
2356
+ "node": ">=0.10.0"
2357
+ }
2358
+ },
2359
+ "node_modules/is-fullwidth-code-point": {
2360
+ "version": "3.0.0",
2361
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2362
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2363
+ "license": "MIT",
2364
+ "engines": {
2365
+ "node": ">=8"
2366
+ }
2367
+ },
2368
+ "node_modules/is-glob": {
2369
+ "version": "4.0.3",
2370
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2371
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2372
+ "license": "MIT",
2373
+ "dependencies": {
2374
+ "is-extglob": "^2.1.1"
2375
+ },
2376
+ "engines": {
2377
+ "node": ">=0.10.0"
2378
+ }
2379
+ },
2380
+ "node_modules/is-number": {
2381
+ "version": "7.0.0",
2382
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2383
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2384
+ "license": "MIT",
2385
+ "engines": {
2386
+ "node": ">=0.12.0"
2387
+ }
2388
+ },
2389
+ "node_modules/is-wsl": {
2390
+ "version": "2.2.0",
2391
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
2392
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
2393
+ "license": "MIT",
2394
+ "dependencies": {
2395
+ "is-docker": "^2.0.0"
2396
+ },
2397
+ "engines": {
2398
+ "node": ">=8"
2399
+ }
2400
+ },
2401
+ "node_modules/isexe": {
2402
+ "version": "2.0.0",
2403
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2404
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2405
+ "license": "ISC"
2406
+ },
2407
+ "node_modules/jackspeak": {
2408
+ "version": "4.1.0",
2409
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz",
2410
+ "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==",
2411
+ "license": "BlueOak-1.0.0",
2412
+ "dependencies": {
2413
+ "@isaacs/cliui": "^8.0.2"
2414
+ },
2415
+ "engines": {
2416
+ "node": "20 || >=22"
2417
+ },
2418
+ "funding": {
2419
+ "url": "https://github.com/sponsors/isaacs"
2420
+ }
2421
+ },
2422
+ "node_modules/js-tokens": {
2423
+ "version": "4.0.0",
2424
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2425
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2426
+ "license": "MIT"
2427
+ },
2428
+ "node_modules/jsesc": {
2429
+ "version": "3.1.0",
2430
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2431
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2432
+ "license": "MIT",
2433
+ "bin": {
2434
+ "jsesc": "bin/jsesc"
2435
+ },
2436
+ "engines": {
2437
+ "node": ">=6"
2438
+ }
2439
+ },
2440
+ "node_modules/json5": {
2441
+ "version": "2.2.3",
2442
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2443
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2444
+ "license": "MIT",
2445
+ "bin": {
2446
+ "json5": "lib/cli.js"
2447
+ },
2448
+ "engines": {
2449
+ "node": ">=6"
2450
+ }
2451
+ },
2452
+ "node_modules/jsonfile": {
2453
+ "version": "6.1.0",
2454
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
2455
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
2456
+ "license": "MIT",
2457
+ "dependencies": {
2458
+ "universalify": "^2.0.0"
2459
+ },
2460
+ "optionalDependencies": {
2461
+ "graceful-fs": "^4.1.6"
2462
+ }
2463
+ },
2464
+ "node_modules/kleur": {
2465
+ "version": "4.1.5",
2466
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
2467
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
2468
+ "license": "MIT",
2469
+ "engines": {
2470
+ "node": ">=6"
2471
+ }
2472
+ },
2473
+ "node_modules/lru-cache": {
2474
+ "version": "5.1.1",
2475
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2476
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2477
+ "license": "ISC",
2478
+ "dependencies": {
2479
+ "yallist": "^3.0.2"
2480
+ }
2481
+ },
2482
+ "node_modules/merge2": {
2483
+ "version": "1.4.1",
2484
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2485
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2486
+ "license": "MIT",
2487
+ "engines": {
2488
+ "node": ">= 8"
2489
+ }
2490
+ },
2491
+ "node_modules/micromatch": {
2492
+ "version": "4.0.8",
2493
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
2494
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
2495
+ "license": "MIT",
2496
+ "dependencies": {
2497
+ "braces": "^3.0.3",
2498
+ "picomatch": "^2.3.1"
2499
+ },
2500
+ "engines": {
2501
+ "node": ">=8.6"
2502
+ }
2503
+ },
2504
+ "node_modules/minimatch": {
2505
+ "version": "10.0.1",
2506
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz",
2507
+ "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
2508
+ "license": "ISC",
2509
+ "dependencies": {
2510
+ "brace-expansion": "^2.0.1"
2511
+ },
2512
+ "engines": {
2513
+ "node": "20 || >=22"
2514
+ },
2515
+ "funding": {
2516
+ "url": "https://github.com/sponsors/isaacs"
2517
+ }
2518
+ },
2519
+ "node_modules/minipass": {
2520
+ "version": "7.1.2",
2521
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
2522
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
2523
+ "license": "ISC",
2524
+ "engines": {
2525
+ "node": ">=16 || 14 >=14.17"
2526
+ }
2527
+ },
2528
+ "node_modules/minizlib": {
2529
+ "version": "2.1.2",
2530
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
2531
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
2532
+ "license": "MIT",
2533
+ "dependencies": {
2534
+ "minipass": "^3.0.0",
2535
+ "yallist": "^4.0.0"
2536
+ },
2537
+ "engines": {
2538
+ "node": ">= 8"
2539
+ }
2540
+ },
2541
+ "node_modules/minizlib/node_modules/minipass": {
2542
+ "version": "3.3.6",
2543
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
2544
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
2545
+ "license": "ISC",
2546
+ "dependencies": {
2547
+ "yallist": "^4.0.0"
2548
+ },
2549
+ "engines": {
2550
+ "node": ">=8"
2551
+ }
2552
+ },
2553
+ "node_modules/minizlib/node_modules/yallist": {
2554
+ "version": "4.0.0",
2555
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
2556
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
2557
+ "license": "ISC"
2558
+ },
2559
+ "node_modules/mkdirp": {
2560
+ "version": "1.0.4",
2561
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
2562
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
2563
+ "license": "MIT",
2564
+ "bin": {
2565
+ "mkdirp": "bin/cmd.js"
2566
+ },
2567
+ "engines": {
2568
+ "node": ">=10"
2569
+ }
2570
+ },
2571
+ "node_modules/ms": {
2572
+ "version": "2.1.3",
2573
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2574
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2575
+ "license": "MIT"
2576
+ },
2577
+ "node_modules/nanoid": {
2578
+ "version": "3.3.8",
2579
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
2580
+ "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
2581
+ "funding": [
2582
+ {
2583
+ "type": "github",
2584
+ "url": "https://github.com/sponsors/ai"
2585
+ }
2586
+ ],
2587
+ "license": "MIT",
2588
+ "peer": true,
2589
+ "bin": {
2590
+ "nanoid": "bin/nanoid.cjs"
2591
+ },
2592
+ "engines": {
2593
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2594
+ }
2595
+ },
2596
+ "node_modules/native-run": {
2597
+ "version": "2.0.1",
2598
+ "resolved": "https://registry.npmjs.org/native-run/-/native-run-2.0.1.tgz",
2599
+ "integrity": "sha512-XfG1FBZLM50J10xH9361whJRC9SHZ0Bub4iNRhhI61C8Jv0e1ud19muex6sNKB51ibQNUJNuYn25MuYET/rE6w==",
2600
+ "license": "MIT",
2601
+ "dependencies": {
2602
+ "@ionic/utils-fs": "^3.1.7",
2603
+ "@ionic/utils-terminal": "^2.3.4",
2604
+ "bplist-parser": "^0.3.2",
2605
+ "debug": "^4.3.4",
2606
+ "elementtree": "^0.1.7",
2607
+ "ini": "^4.1.1",
2608
+ "plist": "^3.1.0",
2609
+ "split2": "^4.2.0",
2610
+ "through2": "^4.0.2",
2611
+ "tslib": "^2.6.2",
2612
+ "yauzl": "^2.10.0"
2613
+ },
2614
+ "bin": {
2615
+ "native-run": "bin/native-run"
2616
+ },
2617
+ "engines": {
2618
+ "node": ">=16.0.0"
2619
+ }
2620
+ },
2621
+ "node_modules/node-releases": {
2622
+ "version": "2.0.19",
2623
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
2624
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
2625
+ "license": "MIT"
2626
+ },
2627
+ "node_modules/normalize-path": {
2628
+ "version": "3.0.0",
2629
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
2630
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
2631
+ "license": "MIT",
2632
+ "engines": {
2633
+ "node": ">=0.10.0"
2634
+ }
2635
+ },
2636
+ "node_modules/open": {
2637
+ "version": "8.4.2",
2638
+ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
2639
+ "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
2640
+ "license": "MIT",
2641
+ "dependencies": {
2642
+ "define-lazy-prop": "^2.0.0",
2643
+ "is-docker": "^2.1.1",
2644
+ "is-wsl": "^2.2.0"
2645
+ },
2646
+ "engines": {
2647
+ "node": ">=12"
2648
+ },
2649
+ "funding": {
2650
+ "url": "https://github.com/sponsors/sindresorhus"
2651
+ }
2652
+ },
2653
+ "node_modules/p-map": {
2654
+ "version": "7.0.3",
2655
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz",
2656
+ "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==",
2657
+ "license": "MIT",
2658
+ "engines": {
2659
+ "node": ">=18"
2660
+ },
2661
+ "funding": {
2662
+ "url": "https://github.com/sponsors/sindresorhus"
2663
+ }
2664
+ },
2665
+ "node_modules/package-json-from-dist": {
2666
+ "version": "1.0.1",
2667
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
2668
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
2669
+ "license": "BlueOak-1.0.0"
2670
+ },
2671
+ "node_modules/path-key": {
2672
+ "version": "3.1.1",
2673
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2674
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2675
+ "license": "MIT",
2676
+ "engines": {
2677
+ "node": ">=8"
2678
+ }
2679
+ },
2680
+ "node_modules/path-scurry": {
2681
+ "version": "2.0.0",
2682
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz",
2683
+ "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==",
2684
+ "license": "BlueOak-1.0.0",
2685
+ "dependencies": {
2686
+ "lru-cache": "^11.0.0",
2687
+ "minipass": "^7.1.2"
2688
+ },
2689
+ "engines": {
2690
+ "node": "20 || >=22"
2691
+ },
2692
+ "funding": {
2693
+ "url": "https://github.com/sponsors/isaacs"
2694
+ }
2695
+ },
2696
+ "node_modules/path-scurry/node_modules/lru-cache": {
2697
+ "version": "11.0.2",
2698
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz",
2699
+ "integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==",
2700
+ "license": "ISC",
2701
+ "engines": {
2702
+ "node": "20 || >=22"
2703
+ }
2704
+ },
2705
+ "node_modules/pend": {
2706
+ "version": "1.2.0",
2707
+ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
2708
+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
2709
+ "license": "MIT"
2710
+ },
2711
+ "node_modules/picocolors": {
2712
+ "version": "1.1.1",
2713
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2714
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2715
+ "license": "ISC"
2716
+ },
2717
+ "node_modules/picomatch": {
2718
+ "version": "2.3.1",
2719
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2720
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2721
+ "license": "MIT",
2722
+ "engines": {
2723
+ "node": ">=8.6"
2724
+ },
2725
+ "funding": {
2726
+ "url": "https://github.com/sponsors/jonschlinkert"
2727
+ }
2728
+ },
2729
+ "node_modules/plist": {
2730
+ "version": "3.1.0",
2731
+ "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz",
2732
+ "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==",
2733
+ "license": "MIT",
2734
+ "dependencies": {
2735
+ "@xmldom/xmldom": "^0.8.8",
2736
+ "base64-js": "^1.5.1",
2737
+ "xmlbuilder": "^15.1.1"
2738
+ },
2739
+ "engines": {
2740
+ "node": ">=10.4.0"
2741
+ }
2742
+ },
2743
+ "node_modules/postcss": {
2744
+ "version": "8.5.3",
2745
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
2746
+ "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
2747
+ "funding": [
2748
+ {
2749
+ "type": "opencollective",
2750
+ "url": "https://opencollective.com/postcss/"
2751
+ },
2752
+ {
2753
+ "type": "tidelift",
2754
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2755
+ },
2756
+ {
2757
+ "type": "github",
2758
+ "url": "https://github.com/sponsors/ai"
2759
+ }
2760
+ ],
2761
+ "license": "MIT",
2762
+ "peer": true,
2763
+ "dependencies": {
2764
+ "nanoid": "^3.3.8",
2765
+ "picocolors": "^1.1.1",
2766
+ "source-map-js": "^1.2.1"
2767
+ },
2768
+ "engines": {
2769
+ "node": "^10 || ^12 || >=14"
2770
+ }
2771
+ },
2772
+ "node_modules/prompts": {
2773
+ "version": "2.4.2",
2774
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
2775
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
2776
+ "license": "MIT",
2777
+ "dependencies": {
2778
+ "kleur": "^3.0.3",
2779
+ "sisteransi": "^1.0.5"
2780
+ },
2781
+ "engines": {
2782
+ "node": ">= 6"
2783
+ }
2784
+ },
2785
+ "node_modules/prompts/node_modules/kleur": {
2786
+ "version": "3.0.3",
2787
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
2788
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
2789
+ "license": "MIT",
2790
+ "engines": {
2791
+ "node": ">=6"
2792
+ }
2793
+ },
2794
+ "node_modules/queue-microtask": {
2795
+ "version": "1.2.3",
2796
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2797
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2798
+ "funding": [
2799
+ {
2800
+ "type": "github",
2801
+ "url": "https://github.com/sponsors/feross"
2802
+ },
2803
+ {
2804
+ "type": "patreon",
2805
+ "url": "https://www.patreon.com/feross"
2806
+ },
2807
+ {
2808
+ "type": "consulting",
2809
+ "url": "https://feross.org/support"
2810
+ }
2811
+ ],
2812
+ "license": "MIT"
2813
+ },
2814
+ "node_modules/react": {
2815
+ "version": "19.0.0",
2816
+ "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz",
2817
+ "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==",
2818
+ "license": "MIT",
2819
+ "peer": true,
2820
+ "engines": {
2821
+ "node": ">=0.10.0"
2822
+ }
2823
+ },
2824
+ "node_modules/react-dom": {
2825
+ "version": "19.0.0",
2826
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz",
2827
+ "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==",
2828
+ "license": "MIT",
2829
+ "peer": true,
2830
+ "dependencies": {
2831
+ "scheduler": "^0.25.0"
2832
+ },
2833
+ "peerDependencies": {
2834
+ "react": "^19.0.0"
2835
+ }
2836
+ },
2837
+ "node_modules/react-refresh": {
2838
+ "version": "0.14.2",
2839
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz",
2840
+ "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==",
2841
+ "license": "MIT",
2842
+ "engines": {
2843
+ "node": ">=0.10.0"
2844
+ }
2845
+ },
2846
+ "node_modules/readable-stream": {
2847
+ "version": "3.6.2",
2848
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
2849
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
2850
+ "license": "MIT",
2851
+ "dependencies": {
2852
+ "inherits": "^2.0.3",
2853
+ "string_decoder": "^1.1.1",
2854
+ "util-deprecate": "^1.0.1"
2855
+ },
2856
+ "engines": {
2857
+ "node": ">= 6"
2858
+ }
2859
+ },
2860
+ "node_modules/readdirp": {
2861
+ "version": "3.6.0",
2862
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
2863
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
2864
+ "license": "MIT",
2865
+ "dependencies": {
2866
+ "picomatch": "^2.2.1"
2867
+ },
2868
+ "engines": {
2869
+ "node": ">=8.10.0"
2870
+ }
2871
+ },
2872
+ "node_modules/reusify": {
2873
+ "version": "1.1.0",
2874
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
2875
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
2876
+ "license": "MIT",
2877
+ "engines": {
2878
+ "iojs": ">=1.0.0",
2879
+ "node": ">=0.10.0"
2880
+ }
2881
+ },
2882
+ "node_modules/rimraf": {
2883
+ "version": "6.0.1",
2884
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz",
2885
+ "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==",
2886
+ "license": "ISC",
2887
+ "dependencies": {
2888
+ "glob": "^11.0.0",
2889
+ "package-json-from-dist": "^1.0.0"
2890
+ },
2891
+ "bin": {
2892
+ "rimraf": "dist/esm/bin.mjs"
2893
+ },
2894
+ "engines": {
2895
+ "node": "20 || >=22"
2896
+ },
2897
+ "funding": {
2898
+ "url": "https://github.com/sponsors/isaacs"
2899
+ }
2900
+ },
2901
+ "node_modules/rollup": {
2902
+ "version": "4.34.9",
2903
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.9.tgz",
2904
+ "integrity": "sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ==",
2905
+ "license": "MIT",
2906
+ "peer": true,
2907
+ "dependencies": {
2908
+ "@types/estree": "1.0.6"
2909
+ },
2910
+ "bin": {
2911
+ "rollup": "dist/bin/rollup"
2912
+ },
2913
+ "engines": {
2914
+ "node": ">=18.0.0",
2915
+ "npm": ">=8.0.0"
2916
+ },
2917
+ "optionalDependencies": {
2918
+ "@rollup/rollup-android-arm-eabi": "4.34.9",
2919
+ "@rollup/rollup-android-arm64": "4.34.9",
2920
+ "@rollup/rollup-darwin-arm64": "4.34.9",
2921
+ "@rollup/rollup-darwin-x64": "4.34.9",
2922
+ "@rollup/rollup-freebsd-arm64": "4.34.9",
2923
+ "@rollup/rollup-freebsd-x64": "4.34.9",
2924
+ "@rollup/rollup-linux-arm-gnueabihf": "4.34.9",
2925
+ "@rollup/rollup-linux-arm-musleabihf": "4.34.9",
2926
+ "@rollup/rollup-linux-arm64-gnu": "4.34.9",
2927
+ "@rollup/rollup-linux-arm64-musl": "4.34.9",
2928
+ "@rollup/rollup-linux-loongarch64-gnu": "4.34.9",
2929
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.34.9",
2930
+ "@rollup/rollup-linux-riscv64-gnu": "4.34.9",
2931
+ "@rollup/rollup-linux-s390x-gnu": "4.34.9",
2932
+ "@rollup/rollup-linux-x64-gnu": "4.34.9",
2933
+ "@rollup/rollup-linux-x64-musl": "4.34.9",
2934
+ "@rollup/rollup-win32-arm64-msvc": "4.34.9",
2935
+ "@rollup/rollup-win32-ia32-msvc": "4.34.9",
2936
+ "@rollup/rollup-win32-x64-msvc": "4.34.9",
2937
+ "fsevents": "~2.3.2"
2938
+ }
2939
+ },
2940
+ "node_modules/run-parallel": {
2941
+ "version": "1.2.0",
2942
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2943
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2944
+ "funding": [
2945
+ {
2946
+ "type": "github",
2947
+ "url": "https://github.com/sponsors/feross"
2948
+ },
2949
+ {
2950
+ "type": "patreon",
2951
+ "url": "https://www.patreon.com/feross"
2952
+ },
2953
+ {
2954
+ "type": "consulting",
2955
+ "url": "https://feross.org/support"
2956
+ }
2957
+ ],
2958
+ "license": "MIT",
2959
+ "dependencies": {
2960
+ "queue-microtask": "^1.2.2"
2961
+ }
2962
+ },
2963
+ "node_modules/rxjs": {
2964
+ "version": "7.8.2",
2965
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
2966
+ "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
2967
+ "license": "Apache-2.0",
2968
+ "peer": true,
2969
+ "dependencies": {
2970
+ "tslib": "^2.1.0"
2971
+ }
2972
+ },
2973
+ "node_modules/safe-buffer": {
2974
+ "version": "5.2.1",
2975
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
2976
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
2977
+ "funding": [
2978
+ {
2979
+ "type": "github",
2980
+ "url": "https://github.com/sponsors/feross"
2981
+ },
2982
+ {
2983
+ "type": "patreon",
2984
+ "url": "https://www.patreon.com/feross"
2985
+ },
2986
+ {
2987
+ "type": "consulting",
2988
+ "url": "https://feross.org/support"
2989
+ }
2990
+ ],
2991
+ "license": "MIT"
2992
+ },
2993
+ "node_modules/sax": {
2994
+ "version": "1.1.4",
2995
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz",
2996
+ "integrity": "sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg==",
2997
+ "license": "ISC"
2998
+ },
2999
+ "node_modules/scheduler": {
3000
+ "version": "0.25.0",
3001
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz",
3002
+ "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==",
3003
+ "license": "MIT",
3004
+ "peer": true
3005
+ },
3006
+ "node_modules/semver": {
3007
+ "version": "7.7.1",
3008
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
3009
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
3010
+ "license": "ISC",
3011
+ "bin": {
3012
+ "semver": "bin/semver.js"
3013
+ },
3014
+ "engines": {
3015
+ "node": ">=10"
3016
+ }
3017
+ },
3018
+ "node_modules/shebang-command": {
3019
+ "version": "2.0.0",
3020
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3021
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3022
+ "license": "MIT",
3023
+ "dependencies": {
3024
+ "shebang-regex": "^3.0.0"
3025
+ },
3026
+ "engines": {
3027
+ "node": ">=8"
3028
+ }
3029
+ },
3030
+ "node_modules/shebang-regex": {
3031
+ "version": "3.0.0",
3032
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3033
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3034
+ "license": "MIT",
3035
+ "engines": {
3036
+ "node": ">=8"
3037
+ }
3038
+ },
3039
+ "node_modules/signal-exit": {
3040
+ "version": "3.0.7",
3041
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
3042
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
3043
+ "license": "ISC"
3044
+ },
3045
+ "node_modules/sisteransi": {
3046
+ "version": "1.0.5",
3047
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
3048
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
3049
+ "license": "MIT"
3050
+ },
3051
+ "node_modules/slice-ansi": {
3052
+ "version": "4.0.0",
3053
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
3054
+ "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
3055
+ "license": "MIT",
3056
+ "dependencies": {
3057
+ "ansi-styles": "^4.0.0",
3058
+ "astral-regex": "^2.0.0",
3059
+ "is-fullwidth-code-point": "^3.0.0"
3060
+ },
3061
+ "engines": {
3062
+ "node": ">=10"
3063
+ },
3064
+ "funding": {
3065
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
3066
+ }
3067
+ },
3068
+ "node_modules/source-map-js": {
3069
+ "version": "1.2.1",
3070
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3071
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3072
+ "license": "BSD-3-Clause",
3073
+ "peer": true,
3074
+ "engines": {
3075
+ "node": ">=0.10.0"
3076
+ }
3077
+ },
3078
+ "node_modules/split2": {
3079
+ "version": "4.2.0",
3080
+ "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
3081
+ "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
3082
+ "license": "ISC",
3083
+ "engines": {
3084
+ "node": ">= 10.x"
3085
+ }
3086
+ },
3087
+ "node_modules/string_decoder": {
3088
+ "version": "1.3.0",
3089
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
3090
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
3091
+ "license": "MIT",
3092
+ "dependencies": {
3093
+ "safe-buffer": "~5.2.0"
3094
+ }
3095
+ },
3096
+ "node_modules/string-width": {
3097
+ "version": "4.2.3",
3098
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3099
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3100
+ "license": "MIT",
3101
+ "dependencies": {
3102
+ "emoji-regex": "^8.0.0",
3103
+ "is-fullwidth-code-point": "^3.0.0",
3104
+ "strip-ansi": "^6.0.1"
3105
+ },
3106
+ "engines": {
3107
+ "node": ">=8"
3108
+ }
3109
+ },
3110
+ "node_modules/string-width-cjs": {
3111
+ "name": "string-width",
3112
+ "version": "4.2.3",
3113
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3114
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3115
+ "license": "MIT",
3116
+ "dependencies": {
3117
+ "emoji-regex": "^8.0.0",
3118
+ "is-fullwidth-code-point": "^3.0.0",
3119
+ "strip-ansi": "^6.0.1"
3120
+ },
3121
+ "engines": {
3122
+ "node": ">=8"
3123
+ }
3124
+ },
3125
+ "node_modules/strip-ansi": {
3126
+ "version": "6.0.1",
3127
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3128
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3129
+ "license": "MIT",
3130
+ "dependencies": {
3131
+ "ansi-regex": "^5.0.1"
3132
+ },
3133
+ "engines": {
3134
+ "node": ">=8"
3135
+ }
3136
+ },
3137
+ "node_modules/strip-ansi-cjs": {
3138
+ "name": "strip-ansi",
3139
+ "version": "6.0.1",
3140
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3141
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3142
+ "license": "MIT",
3143
+ "dependencies": {
3144
+ "ansi-regex": "^5.0.1"
3145
+ },
3146
+ "engines": {
3147
+ "node": ">=8"
3148
+ }
3149
+ },
3150
+ "node_modules/tar": {
3151
+ "version": "6.2.1",
3152
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
3153
+ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
3154
+ "license": "ISC",
3155
+ "dependencies": {
3156
+ "chownr": "^2.0.0",
3157
+ "fs-minipass": "^2.0.0",
3158
+ "minipass": "^5.0.0",
3159
+ "minizlib": "^2.1.1",
3160
+ "mkdirp": "^1.0.3",
3161
+ "yallist": "^4.0.0"
3162
+ },
3163
+ "engines": {
3164
+ "node": ">=10"
3165
+ }
3166
+ },
3167
+ "node_modules/tar/node_modules/minipass": {
3168
+ "version": "5.0.0",
3169
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
3170
+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
3171
+ "license": "ISC",
3172
+ "engines": {
3173
+ "node": ">=8"
3174
+ }
3175
+ },
3176
+ "node_modules/tar/node_modules/yallist": {
3177
+ "version": "4.0.0",
3178
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
3179
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
3180
+ "license": "ISC"
3181
+ },
3182
+ "node_modules/through2": {
3183
+ "version": "4.0.2",
3184
+ "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
3185
+ "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
3186
+ "license": "MIT",
3187
+ "dependencies": {
3188
+ "readable-stream": "3"
3189
+ }
3190
+ },
3191
+ "node_modules/to-regex-range": {
3192
+ "version": "5.0.1",
3193
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3194
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3195
+ "license": "MIT",
3196
+ "dependencies": {
3197
+ "is-number": "^7.0.0"
3198
+ },
3199
+ "engines": {
3200
+ "node": ">=8.0"
3201
+ }
3202
+ },
3203
+ "node_modules/tree-kill": {
3204
+ "version": "1.2.2",
3205
+ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
3206
+ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
3207
+ "license": "MIT",
3208
+ "bin": {
3209
+ "tree-kill": "cli.js"
3210
+ }
3211
+ },
3212
+ "node_modules/tslib": {
3213
+ "version": "2.8.1",
3214
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3215
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3216
+ "license": "0BSD"
3217
+ },
3218
+ "node_modules/undici-types": {
3219
+ "version": "6.20.0",
3220
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
3221
+ "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
3222
+ "license": "MIT"
3223
+ },
3224
+ "node_modules/universalify": {
3225
+ "version": "2.0.1",
3226
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
3227
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
3228
+ "license": "MIT",
3229
+ "engines": {
3230
+ "node": ">= 10.0.0"
3231
+ }
3232
+ },
3233
+ "node_modules/untildify": {
3234
+ "version": "4.0.0",
3235
+ "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
3236
+ "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
3237
+ "license": "MIT",
3238
+ "engines": {
3239
+ "node": ">=8"
3240
+ }
3241
+ },
3242
+ "node_modules/update-browserslist-db": {
3243
+ "version": "1.1.3",
3244
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
3245
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
3246
+ "funding": [
3247
+ {
3248
+ "type": "opencollective",
3249
+ "url": "https://opencollective.com/browserslist"
3250
+ },
3251
+ {
3252
+ "type": "tidelift",
3253
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
3254
+ },
3255
+ {
3256
+ "type": "github",
3257
+ "url": "https://github.com/sponsors/ai"
3258
+ }
3259
+ ],
3260
+ "license": "MIT",
3261
+ "dependencies": {
3262
+ "escalade": "^3.2.0",
3263
+ "picocolors": "^1.1.1"
3264
+ },
3265
+ "bin": {
3266
+ "update-browserslist-db": "cli.js"
3267
+ },
3268
+ "peerDependencies": {
3269
+ "browserslist": ">= 4.21.0"
3270
+ }
3271
+ },
3272
+ "node_modules/util-deprecate": {
3273
+ "version": "1.0.2",
3274
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
3275
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
3276
+ "license": "MIT"
3277
+ },
3278
+ "node_modules/vite": {
3279
+ "version": "6.2.0",
3280
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz",
3281
+ "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==",
3282
+ "license": "MIT",
3283
+ "peer": true,
3284
+ "dependencies": {
3285
+ "esbuild": "^0.25.0",
3286
+ "postcss": "^8.5.3",
3287
+ "rollup": "^4.30.1"
3288
+ },
3289
+ "bin": {
3290
+ "vite": "bin/vite.js"
3291
+ },
3292
+ "engines": {
3293
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
3294
+ },
3295
+ "funding": {
3296
+ "url": "https://github.com/vitejs/vite?sponsor=1"
3297
+ },
3298
+ "optionalDependencies": {
3299
+ "fsevents": "~2.3.3"
3300
+ },
3301
+ "peerDependencies": {
3302
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
3303
+ "jiti": ">=1.21.0",
3304
+ "less": "*",
3305
+ "lightningcss": "^1.21.0",
3306
+ "sass": "*",
3307
+ "sass-embedded": "*",
3308
+ "stylus": "*",
3309
+ "sugarss": "*",
3310
+ "terser": "^5.16.0",
3311
+ "tsx": "^4.8.1",
3312
+ "yaml": "^2.4.2"
3313
+ },
3314
+ "peerDependenciesMeta": {
3315
+ "@types/node": {
3316
+ "optional": true
3317
+ },
3318
+ "jiti": {
3319
+ "optional": true
3320
+ },
3321
+ "less": {
3322
+ "optional": true
3323
+ },
3324
+ "lightningcss": {
3325
+ "optional": true
3326
+ },
3327
+ "sass": {
3328
+ "optional": true
3329
+ },
3330
+ "sass-embedded": {
3331
+ "optional": true
3332
+ },
3333
+ "stylus": {
3334
+ "optional": true
3335
+ },
3336
+ "sugarss": {
3337
+ "optional": true
3338
+ },
3339
+ "terser": {
3340
+ "optional": true
3341
+ },
3342
+ "tsx": {
3343
+ "optional": true
3344
+ },
3345
+ "yaml": {
3346
+ "optional": true
3347
+ }
3348
+ }
3349
+ },
3350
+ "node_modules/vite-plugin-static-copy": {
3351
+ "version": "2.3.1",
3352
+ "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-2.3.1.tgz",
3353
+ "integrity": "sha512-EfsPcBm3ewg3UMG8RJaC0ADq6/qnUZnokXx4By4+2cAcipjT9i0Y0owIJGqmZI7d6nxk4qB1q5aXOwNuSyPdyA==",
3354
+ "license": "MIT",
3355
+ "dependencies": {
3356
+ "chokidar": "^3.5.3",
3357
+ "fast-glob": "^3.2.11",
3358
+ "fs-extra": "^11.1.0",
3359
+ "p-map": "^7.0.3",
3360
+ "picocolors": "^1.0.0"
3361
+ },
3362
+ "engines": {
3363
+ "node": "^18.0.0 || >=20.0.0"
3364
+ },
3365
+ "peerDependencies": {
3366
+ "vite": "^5.0.0 || ^6.0.0"
3367
+ }
3368
+ },
3369
+ "node_modules/which": {
3370
+ "version": "2.0.2",
3371
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3372
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3373
+ "license": "ISC",
3374
+ "dependencies": {
3375
+ "isexe": "^2.0.0"
3376
+ },
3377
+ "bin": {
3378
+ "node-which": "bin/node-which"
3379
+ },
3380
+ "engines": {
3381
+ "node": ">= 8"
3382
+ }
3383
+ },
3384
+ "node_modules/wrap-ansi": {
3385
+ "version": "7.0.0",
3386
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
3387
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
3388
+ "license": "MIT",
3389
+ "dependencies": {
3390
+ "ansi-styles": "^4.0.0",
3391
+ "string-width": "^4.1.0",
3392
+ "strip-ansi": "^6.0.0"
3393
+ },
3394
+ "engines": {
3395
+ "node": ">=10"
3396
+ },
3397
+ "funding": {
3398
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3399
+ }
3400
+ },
3401
+ "node_modules/wrap-ansi-cjs": {
3402
+ "name": "wrap-ansi",
3403
+ "version": "7.0.0",
3404
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
3405
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
3406
+ "license": "MIT",
3407
+ "dependencies": {
3408
+ "ansi-styles": "^4.0.0",
3409
+ "string-width": "^4.1.0",
3410
+ "strip-ansi": "^6.0.0"
3411
+ },
3412
+ "engines": {
3413
+ "node": ">=10"
3414
+ },
3415
+ "funding": {
3416
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3417
+ }
3418
+ },
3419
+ "node_modules/xml2js": {
3420
+ "version": "0.6.2",
3421
+ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz",
3422
+ "integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==",
3423
+ "license": "MIT",
3424
+ "dependencies": {
3425
+ "sax": ">=0.6.0",
3426
+ "xmlbuilder": "~11.0.0"
3427
+ },
3428
+ "engines": {
3429
+ "node": ">=4.0.0"
3430
+ }
3431
+ },
3432
+ "node_modules/xml2js/node_modules/xmlbuilder": {
3433
+ "version": "11.0.1",
3434
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
3435
+ "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
3436
+ "license": "MIT",
3437
+ "engines": {
3438
+ "node": ">=4.0"
3439
+ }
3440
+ },
3441
+ "node_modules/xmlbuilder": {
3442
+ "version": "15.1.1",
3443
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",
3444
+ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==",
3445
+ "license": "MIT",
3446
+ "engines": {
3447
+ "node": ">=8.0"
3448
+ }
3449
+ },
3450
+ "node_modules/yallist": {
3451
+ "version": "3.1.1",
3452
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
3453
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
3454
+ "license": "ISC"
3455
+ },
3456
+ "node_modules/yauzl": {
3457
+ "version": "2.10.0",
3458
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
3459
+ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
3460
+ "license": "MIT",
3461
+ "dependencies": {
3462
+ "buffer-crc32": "~0.2.3",
3463
+ "fd-slicer": "~1.1.0"
3464
+ }
3465
+ }
3466
+ }
3467
+ }