@regulaforensics/face-sdk 7.1.211-rc → 7.1.252-beta

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