@regulaforensics/face-sdk 8.2.921-nightly → 8.2.923-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.
- package/RNFaceSDK.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +4 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +2 -3
- package/examples/capacitor/package-lock.json +128 -128
- package/examples/capacitor/package.json +2 -2
- package/examples/ionic/package-lock.json +1123 -924
- package/examples/ionic/package.json +9 -2
- package/examples/react_native/package-lock.json +84 -84
- package/examples/react_native/package.json +2 -2
- package/ios/Config.swift +6 -3
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +16 -13
- package/test/package-lock.json +1 -1
- package/www/capacitor/customization/customization_images.js +47 -39
- package/www/capacitor/face_capture/face_capture_config.js +4 -0
- package/www/capacitor/liveness/liveness_config.js +4 -0
- package/www/cordova.js +55 -39
- package/www/react-native/customization/customization_images.js +47 -39
- package/www/react-native/face_capture/face_capture_config.js +4 -0
- package/www/react-native/liveness/liveness_config.js +4 -0
- package/www/types/customization/customization_images.d.ts +1 -0
- package/www/types/face_capture/face_capture_config.d.ts +6 -0
- package/www/types/liveness/liveness_config.d.ts +7 -0
package/RNFaceSDK.podspec
CHANGED
|
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = 'RNFaceSDK'
|
|
8
|
-
s.version = '8.2.
|
|
8
|
+
s.version = '8.2.923-beta'
|
|
9
9
|
s.summary = package['description']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
|
|
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.ios.deployment_target = '13.0'
|
|
17
17
|
s.source_files = [ 'ios/**/*.swift', 'ios/**/RN*.m' ]
|
|
18
18
|
s.exclude_files = [ 'ios/CDVFaceSDK.swift' ]
|
|
19
|
-
s.dependency '
|
|
19
|
+
s.dependency 'FaceSDKStage', '8.2.4008'
|
|
20
20
|
s.dependency 'React'
|
|
21
21
|
end
|
package/android/build.gradle
CHANGED
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
rootProject.allprojects {
|
|
21
21
|
repositories {
|
|
22
22
|
maven {
|
|
23
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
23
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -29,7 +29,7 @@ dependencies {
|
|
|
29
29
|
//noinspection GradleDynamicVersion
|
|
30
30
|
implementation 'com.facebook.react:react-native:+'
|
|
31
31
|
//noinspection GradleDependency
|
|
32
|
-
implementation('com.regula.face:api:8.
|
|
32
|
+
implementation('com.regula.face:api:8.1.4635'){
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -6,13 +6,13 @@ android {
|
|
|
6
6
|
|
|
7
7
|
repositories {
|
|
8
8
|
maven {
|
|
9
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
9
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
dependencies {
|
|
14
14
|
//noinspection GradleDependency
|
|
15
|
-
implementation('com.regula.face:api:8.
|
|
15
|
+
implementation('com.regula.face:api:8.1.4635'){
|
|
16
16
|
transitive = true
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -24,6 +24,7 @@ fun setFaceCaptureConfig(builder: FaceCaptureConfiguration.Builder, config: JSON
|
|
|
24
24
|
"vibrateOnSteps" -> builder.setVibrateOnStep(v as Boolean)
|
|
25
25
|
"detectOcclusion" -> builder.setDetectOcclusion(v as Boolean)
|
|
26
26
|
"showFaceAnimation" -> builder.setShowFaceAnimation(v as Boolean)
|
|
27
|
+
"preventScreenRecording" -> builder.setPreventScreenRecording(v as Boolean)
|
|
27
28
|
"cameraPositionAndroid" -> builder.setCameraId(v.toInt())
|
|
28
29
|
"screenOrientation" -> builder.setScreenOrientation(*screenOrientationArrayFromJSON(v as JSONArray))
|
|
29
30
|
"timeout" -> builder.setTimeout(v.toFloat())
|
|
@@ -39,6 +40,7 @@ fun getFaceCaptureConfig(input: FaceCaptureConfiguration) = mapOf(
|
|
|
39
40
|
"vibrateOnSteps" to input.isVibrateOnSteps,
|
|
40
41
|
"detectOcclusion" to input.isDetectOcclusion,
|
|
41
42
|
"showFaceAnimation" to input.isShowFaceAnimation,
|
|
43
|
+
"preventScreenRecording" to input.doPreventScreenRecording(),
|
|
42
44
|
"cameraPositionAndroid" to input.cameraId,
|
|
43
45
|
"screenOrientation" to generateScreenOrientationArray(input.screenOrientation),
|
|
44
46
|
"timeout" to input.timeout,
|
|
@@ -55,6 +57,7 @@ fun setLivenessConfig(builder: LivenessConfiguration.Builder, config: JSONObject
|
|
|
55
57
|
"cameraPositionAndroid" -> builder.setCameraId(v.toInt())
|
|
56
58
|
"screenOrientation" -> builder.setScreenOrientation(*screenOrientationArrayFromJSON(v as JSONArray))
|
|
57
59
|
"locationTrackingEnabled" -> builder.setLocationTrackingEnabled(v as Boolean)
|
|
60
|
+
"preventScreenRecording" -> builder.setPreventScreenRecording(v as Boolean)
|
|
58
61
|
"attemptsCount" -> builder.setAttemptsCount(v.toInt())
|
|
59
62
|
"recordingProcess" -> builder.setRecordingProcess(RecordingProcess.values()[v.toInt()])
|
|
60
63
|
"livenessType" -> builder.setType(LivenessType.values()[v.toInt()])
|
|
@@ -73,6 +76,7 @@ fun getLivenessConfig(input: LivenessConfiguration) = mapOf(
|
|
|
73
76
|
"cameraPositionAndroid" to input.cameraId,
|
|
74
77
|
"screenOrientation" to generateScreenOrientationArray(input.screenOrientation),
|
|
75
78
|
"locationTrackingEnabled" to input.isLocationTrackingEnabled,
|
|
79
|
+
"preventScreenRecording" to input.doPreventScreenRecording(),
|
|
76
80
|
"attemptsCount" to input.attemptsCount,
|
|
77
81
|
"recordingProcess" to input.recordingProcess.ordinal,
|
|
78
82
|
"livenessType" to input.type.ordinal,
|
|
@@ -158,10 +158,9 @@ fun Any.setImage(customization: Customization, value: Any) {
|
|
|
158
158
|
val uiConfig = customization.uiConfigurationLive.value!!
|
|
159
159
|
val private = uiConfig.javaClass.getDeclaredField("d")
|
|
160
160
|
private.isAccessible = true
|
|
161
|
-
val images = private.get(uiConfig) as HashMap<
|
|
161
|
+
val images = private.get(uiConfig) as HashMap<String, Drawable>
|
|
162
162
|
|
|
163
|
-
|
|
164
|
-
images[field] = (value as String?).toDrawable(context)!!
|
|
163
|
+
images[this as String] = (value as String?).toDrawable(context)!!
|
|
165
164
|
}
|
|
166
165
|
|
|
167
166
|
fun Int.toOutputImageCropAspectRatio(): OutputImageCropAspectRatio {
|
|
@@ -1117,9 +1117,9 @@
|
|
|
1117
1117
|
"license": "MIT"
|
|
1118
1118
|
},
|
|
1119
1119
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
1120
|
-
"version": "4.
|
|
1121
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
1122
|
-
"integrity": "sha512-
|
|
1120
|
+
"version": "4.60.1",
|
|
1121
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz",
|
|
1122
|
+
"integrity": "sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==",
|
|
1123
1123
|
"cpu": [
|
|
1124
1124
|
"arm"
|
|
1125
1125
|
],
|
|
@@ -1131,9 +1131,9 @@
|
|
|
1131
1131
|
"peer": true
|
|
1132
1132
|
},
|
|
1133
1133
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
1134
|
-
"version": "4.
|
|
1135
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
1136
|
-
"integrity": "sha512-
|
|
1134
|
+
"version": "4.60.1",
|
|
1135
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz",
|
|
1136
|
+
"integrity": "sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==",
|
|
1137
1137
|
"cpu": [
|
|
1138
1138
|
"arm64"
|
|
1139
1139
|
],
|
|
@@ -1171,9 +1171,9 @@
|
|
|
1171
1171
|
]
|
|
1172
1172
|
},
|
|
1173
1173
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1174
|
-
"version": "4.
|
|
1175
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
1176
|
-
"integrity": "sha512-
|
|
1174
|
+
"version": "4.60.1",
|
|
1175
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz",
|
|
1176
|
+
"integrity": "sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==",
|
|
1177
1177
|
"cpu": [
|
|
1178
1178
|
"arm64"
|
|
1179
1179
|
],
|
|
@@ -1185,9 +1185,9 @@
|
|
|
1185
1185
|
"peer": true
|
|
1186
1186
|
},
|
|
1187
1187
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1188
|
-
"version": "4.
|
|
1189
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
1190
|
-
"integrity": "sha512-
|
|
1188
|
+
"version": "4.60.1",
|
|
1189
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz",
|
|
1190
|
+
"integrity": "sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==",
|
|
1191
1191
|
"cpu": [
|
|
1192
1192
|
"x64"
|
|
1193
1193
|
],
|
|
@@ -1199,9 +1199,9 @@
|
|
|
1199
1199
|
"peer": true
|
|
1200
1200
|
},
|
|
1201
1201
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1202
|
-
"version": "4.
|
|
1203
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
1204
|
-
"integrity": "sha512-
|
|
1202
|
+
"version": "4.60.1",
|
|
1203
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz",
|
|
1204
|
+
"integrity": "sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==",
|
|
1205
1205
|
"cpu": [
|
|
1206
1206
|
"arm"
|
|
1207
1207
|
],
|
|
@@ -1213,9 +1213,9 @@
|
|
|
1213
1213
|
"peer": true
|
|
1214
1214
|
},
|
|
1215
1215
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1216
|
-
"version": "4.
|
|
1217
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
1218
|
-
"integrity": "sha512-
|
|
1216
|
+
"version": "4.60.1",
|
|
1217
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz",
|
|
1218
|
+
"integrity": "sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==",
|
|
1219
1219
|
"cpu": [
|
|
1220
1220
|
"arm"
|
|
1221
1221
|
],
|
|
@@ -1253,9 +1253,9 @@
|
|
|
1253
1253
|
]
|
|
1254
1254
|
},
|
|
1255
1255
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1256
|
-
"version": "4.
|
|
1257
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
1258
|
-
"integrity": "sha512-
|
|
1256
|
+
"version": "4.60.1",
|
|
1257
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz",
|
|
1258
|
+
"integrity": "sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==",
|
|
1259
1259
|
"cpu": [
|
|
1260
1260
|
"loong64"
|
|
1261
1261
|
],
|
|
@@ -1267,9 +1267,9 @@
|
|
|
1267
1267
|
"peer": true
|
|
1268
1268
|
},
|
|
1269
1269
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
1270
|
-
"version": "4.
|
|
1271
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.
|
|
1272
|
-
"integrity": "sha512-
|
|
1270
|
+
"version": "4.60.1",
|
|
1271
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz",
|
|
1272
|
+
"integrity": "sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==",
|
|
1273
1273
|
"cpu": [
|
|
1274
1274
|
"loong64"
|
|
1275
1275
|
],
|
|
@@ -1281,9 +1281,9 @@
|
|
|
1281
1281
|
"peer": true
|
|
1282
1282
|
},
|
|
1283
1283
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1284
|
-
"version": "4.
|
|
1285
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
1286
|
-
"integrity": "sha512-
|
|
1284
|
+
"version": "4.60.1",
|
|
1285
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz",
|
|
1286
|
+
"integrity": "sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==",
|
|
1287
1287
|
"cpu": [
|
|
1288
1288
|
"ppc64"
|
|
1289
1289
|
],
|
|
@@ -1295,9 +1295,9 @@
|
|
|
1295
1295
|
"peer": true
|
|
1296
1296
|
},
|
|
1297
1297
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
1298
|
-
"version": "4.
|
|
1299
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.
|
|
1300
|
-
"integrity": "sha512-
|
|
1298
|
+
"version": "4.60.1",
|
|
1299
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz",
|
|
1300
|
+
"integrity": "sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==",
|
|
1301
1301
|
"cpu": [
|
|
1302
1302
|
"ppc64"
|
|
1303
1303
|
],
|
|
@@ -1309,9 +1309,9 @@
|
|
|
1309
1309
|
"peer": true
|
|
1310
1310
|
},
|
|
1311
1311
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1312
|
-
"version": "4.
|
|
1313
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
1314
|
-
"integrity": "sha512-
|
|
1312
|
+
"version": "4.60.1",
|
|
1313
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz",
|
|
1314
|
+
"integrity": "sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==",
|
|
1315
1315
|
"cpu": [
|
|
1316
1316
|
"riscv64"
|
|
1317
1317
|
],
|
|
@@ -1323,9 +1323,9 @@
|
|
|
1323
1323
|
"peer": true
|
|
1324
1324
|
},
|
|
1325
1325
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1326
|
-
"version": "4.
|
|
1327
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
1328
|
-
"integrity": "sha512
|
|
1326
|
+
"version": "4.60.1",
|
|
1327
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz",
|
|
1328
|
+
"integrity": "sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==",
|
|
1329
1329
|
"cpu": [
|
|
1330
1330
|
"riscv64"
|
|
1331
1331
|
],
|
|
@@ -1337,9 +1337,9 @@
|
|
|
1337
1337
|
"peer": true
|
|
1338
1338
|
},
|
|
1339
1339
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1340
|
-
"version": "4.
|
|
1341
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
1342
|
-
"integrity": "sha512-
|
|
1340
|
+
"version": "4.60.1",
|
|
1341
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz",
|
|
1342
|
+
"integrity": "sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==",
|
|
1343
1343
|
"cpu": [
|
|
1344
1344
|
"s390x"
|
|
1345
1345
|
],
|
|
@@ -1377,9 +1377,9 @@
|
|
|
1377
1377
|
]
|
|
1378
1378
|
},
|
|
1379
1379
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1380
|
-
"version": "4.
|
|
1381
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.
|
|
1382
|
-
"integrity": "sha512-
|
|
1380
|
+
"version": "4.60.1",
|
|
1381
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz",
|
|
1382
|
+
"integrity": "sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==",
|
|
1383
1383
|
"cpu": [
|
|
1384
1384
|
"x64"
|
|
1385
1385
|
],
|
|
@@ -1391,9 +1391,9 @@
|
|
|
1391
1391
|
"peer": true
|
|
1392
1392
|
},
|
|
1393
1393
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1394
|
-
"version": "4.
|
|
1395
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
1396
|
-
"integrity": "sha512-
|
|
1394
|
+
"version": "4.60.1",
|
|
1395
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz",
|
|
1396
|
+
"integrity": "sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==",
|
|
1397
1397
|
"cpu": [
|
|
1398
1398
|
"arm64"
|
|
1399
1399
|
],
|
|
@@ -1418,9 +1418,9 @@
|
|
|
1418
1418
|
]
|
|
1419
1419
|
},
|
|
1420
1420
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1421
|
-
"version": "4.
|
|
1422
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
1423
|
-
"integrity": "sha512-
|
|
1421
|
+
"version": "4.60.1",
|
|
1422
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz",
|
|
1423
|
+
"integrity": "sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==",
|
|
1424
1424
|
"cpu": [
|
|
1425
1425
|
"ia32"
|
|
1426
1426
|
],
|
|
@@ -1432,9 +1432,9 @@
|
|
|
1432
1432
|
"peer": true
|
|
1433
1433
|
},
|
|
1434
1434
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1435
|
-
"version": "4.
|
|
1436
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
1437
|
-
"integrity": "sha512-
|
|
1435
|
+
"version": "4.60.1",
|
|
1436
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz",
|
|
1437
|
+
"integrity": "sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==",
|
|
1438
1438
|
"cpu": [
|
|
1439
1439
|
"x64"
|
|
1440
1440
|
],
|
|
@@ -1616,9 +1616,9 @@
|
|
|
1616
1616
|
}
|
|
1617
1617
|
},
|
|
1618
1618
|
"node_modules/@xmldom/xmldom": {
|
|
1619
|
-
"version": "0.8.
|
|
1620
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.
|
|
1621
|
-
"integrity": "sha512-
|
|
1619
|
+
"version": "0.8.12",
|
|
1620
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.12.tgz",
|
|
1621
|
+
"integrity": "sha512-9k/gHF6n/pAi/9tqr3m3aqkuiNosYTurLLUtc7xQ9sxB/wm7WPygCv8GYa6mS0fLJEHhqMC1ATYhz++U/lRHqg==",
|
|
1622
1622
|
"license": "MIT",
|
|
1623
1623
|
"engines": {
|
|
1624
1624
|
"node": ">=10.0.0"
|
|
@@ -1662,9 +1662,9 @@
|
|
|
1662
1662
|
}
|
|
1663
1663
|
},
|
|
1664
1664
|
"node_modules/anymatch/node_modules/picomatch": {
|
|
1665
|
-
"version": "2.3.
|
|
1666
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.
|
|
1667
|
-
"integrity": "sha512-
|
|
1665
|
+
"version": "2.3.2",
|
|
1666
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
1667
|
+
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
1668
1668
|
"license": "MIT",
|
|
1669
1669
|
"engines": {
|
|
1670
1670
|
"node": ">=8.6"
|
|
@@ -1763,9 +1763,9 @@
|
|
|
1763
1763
|
}
|
|
1764
1764
|
},
|
|
1765
1765
|
"node_modules/brace-expansion": {
|
|
1766
|
-
"version": "5.0.
|
|
1767
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1768
|
-
"integrity": "sha512-
|
|
1766
|
+
"version": "5.0.5",
|
|
1767
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
|
|
1768
|
+
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
|
|
1769
1769
|
"license": "MIT",
|
|
1770
1770
|
"dependencies": {
|
|
1771
1771
|
"balanced-match": "^4.0.2"
|
|
@@ -2390,12 +2390,12 @@
|
|
|
2390
2390
|
}
|
|
2391
2391
|
},
|
|
2392
2392
|
"node_modules/minimatch": {
|
|
2393
|
-
"version": "10.2.
|
|
2394
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.
|
|
2395
|
-
"integrity": "sha512
|
|
2393
|
+
"version": "10.2.5",
|
|
2394
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
2395
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
2396
2396
|
"license": "BlueOak-1.0.0",
|
|
2397
2397
|
"dependencies": {
|
|
2398
|
-
"brace-expansion": "^5.0.
|
|
2398
|
+
"brace-expansion": "^5.0.5"
|
|
2399
2399
|
},
|
|
2400
2400
|
"engines": {
|
|
2401
2401
|
"node": "18 || 20 || >=22"
|
|
@@ -2572,9 +2572,9 @@
|
|
|
2572
2572
|
"license": "ISC"
|
|
2573
2573
|
},
|
|
2574
2574
|
"node_modules/picomatch": {
|
|
2575
|
-
"version": "4.0.
|
|
2576
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.
|
|
2577
|
-
"integrity": "sha512-
|
|
2575
|
+
"version": "4.0.4",
|
|
2576
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
2577
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
2578
2578
|
"license": "MIT",
|
|
2579
2579
|
"engines": {
|
|
2580
2580
|
"node": ">=12"
|
|
@@ -2707,9 +2707,9 @@
|
|
|
2707
2707
|
}
|
|
2708
2708
|
},
|
|
2709
2709
|
"node_modules/readdirp/node_modules/picomatch": {
|
|
2710
|
-
"version": "2.3.
|
|
2711
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.
|
|
2712
|
-
"integrity": "sha512-
|
|
2710
|
+
"version": "2.3.2",
|
|
2711
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
2712
|
+
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
2713
2713
|
"license": "MIT",
|
|
2714
2714
|
"engines": {
|
|
2715
2715
|
"node": ">=8.6"
|
|
@@ -2738,9 +2738,9 @@
|
|
|
2738
2738
|
}
|
|
2739
2739
|
},
|
|
2740
2740
|
"node_modules/rollup": {
|
|
2741
|
-
"version": "4.
|
|
2742
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
2743
|
-
"integrity": "sha512-
|
|
2741
|
+
"version": "4.60.1",
|
|
2742
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz",
|
|
2743
|
+
"integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==",
|
|
2744
2744
|
"license": "MIT",
|
|
2745
2745
|
"peer": true,
|
|
2746
2746
|
"dependencies": {
|
|
@@ -2754,38 +2754,38 @@
|
|
|
2754
2754
|
"npm": ">=8.0.0"
|
|
2755
2755
|
},
|
|
2756
2756
|
"optionalDependencies": {
|
|
2757
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
2758
|
-
"@rollup/rollup-android-arm64": "4.
|
|
2759
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
2760
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
2761
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
2762
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
2763
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
2764
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
2765
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
2766
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
2767
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
2768
|
-
"@rollup/rollup-linux-loong64-musl": "4.
|
|
2769
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.
|
|
2770
|
-
"@rollup/rollup-linux-ppc64-musl": "4.
|
|
2771
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
2772
|
-
"@rollup/rollup-linux-riscv64-musl": "4.
|
|
2773
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
2774
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
2775
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
2776
|
-
"@rollup/rollup-openbsd-x64": "4.
|
|
2777
|
-
"@rollup/rollup-openharmony-arm64": "4.
|
|
2778
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
2779
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
2780
|
-
"@rollup/rollup-win32-x64-gnu": "4.
|
|
2781
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
2757
|
+
"@rollup/rollup-android-arm-eabi": "4.60.1",
|
|
2758
|
+
"@rollup/rollup-android-arm64": "4.60.1",
|
|
2759
|
+
"@rollup/rollup-darwin-arm64": "4.60.1",
|
|
2760
|
+
"@rollup/rollup-darwin-x64": "4.60.1",
|
|
2761
|
+
"@rollup/rollup-freebsd-arm64": "4.60.1",
|
|
2762
|
+
"@rollup/rollup-freebsd-x64": "4.60.1",
|
|
2763
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.60.1",
|
|
2764
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.60.1",
|
|
2765
|
+
"@rollup/rollup-linux-arm64-gnu": "4.60.1",
|
|
2766
|
+
"@rollup/rollup-linux-arm64-musl": "4.60.1",
|
|
2767
|
+
"@rollup/rollup-linux-loong64-gnu": "4.60.1",
|
|
2768
|
+
"@rollup/rollup-linux-loong64-musl": "4.60.1",
|
|
2769
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.60.1",
|
|
2770
|
+
"@rollup/rollup-linux-ppc64-musl": "4.60.1",
|
|
2771
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.60.1",
|
|
2772
|
+
"@rollup/rollup-linux-riscv64-musl": "4.60.1",
|
|
2773
|
+
"@rollup/rollup-linux-s390x-gnu": "4.60.1",
|
|
2774
|
+
"@rollup/rollup-linux-x64-gnu": "4.60.1",
|
|
2775
|
+
"@rollup/rollup-linux-x64-musl": "4.60.1",
|
|
2776
|
+
"@rollup/rollup-openbsd-x64": "4.60.1",
|
|
2777
|
+
"@rollup/rollup-openharmony-arm64": "4.60.1",
|
|
2778
|
+
"@rollup/rollup-win32-arm64-msvc": "4.60.1",
|
|
2779
|
+
"@rollup/rollup-win32-ia32-msvc": "4.60.1",
|
|
2780
|
+
"@rollup/rollup-win32-x64-gnu": "4.60.1",
|
|
2781
|
+
"@rollup/rollup-win32-x64-msvc": "4.60.1",
|
|
2782
2782
|
"fsevents": "~2.3.2"
|
|
2783
2783
|
}
|
|
2784
2784
|
},
|
|
2785
2785
|
"node_modules/rollup/node_modules/@rollup/rollup-darwin-arm64": {
|
|
2786
|
-
"version": "4.
|
|
2787
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
2788
|
-
"integrity": "sha512
|
|
2786
|
+
"version": "4.60.1",
|
|
2787
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz",
|
|
2788
|
+
"integrity": "sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==",
|
|
2789
2789
|
"cpu": [
|
|
2790
2790
|
"arm64"
|
|
2791
2791
|
],
|
|
@@ -2797,9 +2797,9 @@
|
|
|
2797
2797
|
"peer": true
|
|
2798
2798
|
},
|
|
2799
2799
|
"node_modules/rollup/node_modules/@rollup/rollup-darwin-x64": {
|
|
2800
|
-
"version": "4.
|
|
2801
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
2802
|
-
"integrity": "sha512-
|
|
2800
|
+
"version": "4.60.1",
|
|
2801
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz",
|
|
2802
|
+
"integrity": "sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==",
|
|
2803
2803
|
"cpu": [
|
|
2804
2804
|
"x64"
|
|
2805
2805
|
],
|
|
@@ -2811,9 +2811,9 @@
|
|
|
2811
2811
|
"peer": true
|
|
2812
2812
|
},
|
|
2813
2813
|
"node_modules/rollup/node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
2814
|
-
"version": "4.
|
|
2815
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
2816
|
-
"integrity": "sha512-
|
|
2814
|
+
"version": "4.60.1",
|
|
2815
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz",
|
|
2816
|
+
"integrity": "sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==",
|
|
2817
2817
|
"cpu": [
|
|
2818
2818
|
"arm64"
|
|
2819
2819
|
],
|
|
@@ -2825,9 +2825,9 @@
|
|
|
2825
2825
|
"peer": true
|
|
2826
2826
|
},
|
|
2827
2827
|
"node_modules/rollup/node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
2828
|
-
"version": "4.
|
|
2829
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
2830
|
-
"integrity": "sha512
|
|
2828
|
+
"version": "4.60.1",
|
|
2829
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz",
|
|
2830
|
+
"integrity": "sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==",
|
|
2831
2831
|
"cpu": [
|
|
2832
2832
|
"arm64"
|
|
2833
2833
|
],
|
|
@@ -2839,9 +2839,9 @@
|
|
|
2839
2839
|
"peer": true
|
|
2840
2840
|
},
|
|
2841
2841
|
"node_modules/rollup/node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
2842
|
-
"version": "4.
|
|
2843
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
2844
|
-
"integrity": "sha512-
|
|
2842
|
+
"version": "4.60.1",
|
|
2843
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz",
|
|
2844
|
+
"integrity": "sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==",
|
|
2845
2845
|
"cpu": [
|
|
2846
2846
|
"x64"
|
|
2847
2847
|
],
|
|
@@ -2853,9 +2853,9 @@
|
|
|
2853
2853
|
"peer": true
|
|
2854
2854
|
},
|
|
2855
2855
|
"node_modules/rollup/node_modules/@rollup/rollup-linux-x64-musl": {
|
|
2856
|
-
"version": "4.
|
|
2857
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
2858
|
-
"integrity": "sha512-
|
|
2856
|
+
"version": "4.60.1",
|
|
2857
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz",
|
|
2858
|
+
"integrity": "sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==",
|
|
2859
2859
|
"cpu": [
|
|
2860
2860
|
"x64"
|
|
2861
2861
|
],
|
|
@@ -2867,9 +2867,9 @@
|
|
|
2867
2867
|
"peer": true
|
|
2868
2868
|
},
|
|
2869
2869
|
"node_modules/rollup/node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
2870
|
-
"version": "4.
|
|
2871
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
2872
|
-
"integrity": "sha512-
|
|
2870
|
+
"version": "4.60.1",
|
|
2871
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz",
|
|
2872
|
+
"integrity": "sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==",
|
|
2873
2873
|
"cpu": [
|
|
2874
2874
|
"arm64"
|
|
2875
2875
|
],
|
|
@@ -2881,9 +2881,9 @@
|
|
|
2881
2881
|
"peer": true
|
|
2882
2882
|
},
|
|
2883
2883
|
"node_modules/rollup/node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
2884
|
-
"version": "4.
|
|
2885
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
2886
|
-
"integrity": "sha512-
|
|
2884
|
+
"version": "4.60.1",
|
|
2885
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz",
|
|
2886
|
+
"integrity": "sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==",
|
|
2887
2887
|
"cpu": [
|
|
2888
2888
|
"x64"
|
|
2889
2889
|
],
|
|
@@ -3054,9 +3054,9 @@
|
|
|
3054
3054
|
}
|
|
3055
3055
|
},
|
|
3056
3056
|
"node_modules/tar": {
|
|
3057
|
-
"version": "7.5.
|
|
3058
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
3059
|
-
"integrity": "sha512-
|
|
3057
|
+
"version": "7.5.13",
|
|
3058
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.13.tgz",
|
|
3059
|
+
"integrity": "sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==",
|
|
3060
3060
|
"license": "BlueOak-1.0.0",
|
|
3061
3061
|
"dependencies": {
|
|
3062
3062
|
"@isaacs/fs-minipass": "^4.0.0",
|
|
@@ -3191,9 +3191,9 @@
|
|
|
3191
3191
|
"license": "MIT"
|
|
3192
3192
|
},
|
|
3193
3193
|
"node_modules/vite": {
|
|
3194
|
-
"version": "7.3.
|
|
3195
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.
|
|
3196
|
-
"integrity": "sha512-
|
|
3194
|
+
"version": "7.3.2",
|
|
3195
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
|
|
3196
|
+
"integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
|
|
3197
3197
|
"license": "MIT",
|
|
3198
3198
|
"peer": true,
|
|
3199
3199
|
"dependencies": {
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/face-sdk": "8.2.
|
|
10
|
-
"@regulaforensics/face-core-basic": "8.
|
|
9
|
+
"@regulaforensics/face-sdk": "8.2.923-beta",
|
|
10
|
+
"@regulaforensics/face-core-basic": "8.1.422",
|
|
11
11
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
12
12
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
13
13
|
"cordova-plugin-file": "^8.1.3",
|