@regulaforensics/document-reader 7.1.301-rc

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