@regulaforensics/document-reader 9.7.952-rc → 9.7.953-rc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RNDocumentReader.podspec +2 -2
- package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/Config.kt +30 -10
- package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/JSONConstructor.kt +12 -1
- package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/Utils.kt +1 -1
- package/examples/capacitor/README.md +1 -1
- package/examples/capacitor/package-lock.json +14 -14
- package/examples/capacitor/package.json +3 -3
- package/examples/capacitor/scripts/android.sh +3 -1
- package/examples/capacitor/scripts/ios.sh +3 -1
- package/examples/capacitor/scripts/setup.sh +2 -0
- package/examples/ionic/README.md +1 -1
- package/examples/ionic/config.xml +0 -2
- package/examples/ionic/images/icon.png +0 -0
- package/examples/ionic/index.tsx +1 -1
- package/examples/ionic/package-lock.json +2396 -2023
- package/examples/ionic/package.json +25 -26
- package/examples/ionic/patches/cordova-plugin-ionic-webview+5.0.1.patch +23 -0
- package/examples/ionic/scripts/android.sh +4 -1
- package/examples/ionic/scripts/ios.sh +5 -2
- package/examples/ionic/scripts/setup.sh +2 -0
- package/examples/ionic/tsconfig.json +1 -1
- package/examples/react_native/README.md +1 -1
- package/examples/react_native/package-lock.json +539 -638
- package/examples/react_native/package.json +3 -3
- package/examples/react_native/scripts/android.sh +5 -5
- package/examples/react_native/scripts/ios.sh +5 -5
- package/examples/react_native/scripts/setup.sh +2 -0
- package/ios/RGLWConfig.h +2 -0
- package/ios/RGLWConfig.m +25 -5
- package/ios/RGLWJSONConstructor.h +2 -0
- package/ios/RGLWJSONConstructor.m +12 -0
- package/package.json +1 -1
- package/plugin.xml +8 -8
- package/test/json.tsx +6 -0
- package/test/package-lock.json +1 -1
- package/test/test.tsx +206 -2
- package/www/capacitor/index.js +207 -17
- package/www/capacitor/params/process_params/AuthenticityParams.js +15 -0
- package/www/capacitor/params/process_params/AuthenticityPropertiesParams.js +31 -0
- package/www/capacitor/params/process_params/FaceApiParams.js +5 -1
- package/www/capacitor/results/authenticity/Authenticity.js +2 -1
- package/www/capacitor/results/authenticity/CheckDiagnose.js +4 -1
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +1 -0
- package/www/capacitor/results/visual_results/FieldType.js +3 -1
- package/www/cordova.js +199 -123
- package/www/react-native/index.js +207 -17
- package/www/react-native/params/process_params/AuthenticityParams.js +15 -0
- package/www/react-native/params/process_params/AuthenticityPropertiesParams.js +31 -0
- package/www/react-native/params/process_params/FaceApiParams.js +5 -1
- package/www/react-native/results/authenticity/Authenticity.js +2 -1
- package/www/react-native/results/authenticity/CheckDiagnose.js +4 -1
- package/www/react-native/results/authenticity/SecurityFeatureType.js +1 -0
- package/www/react-native/results/visual_results/FieldType.js +3 -1
- package/www/types/index.d.ts +206 -19
- package/www/types/params/process_params/AuthenticityParams.d.ts +5 -4
- package/www/types/params/process_params/AuthenticityPropertiesParams.d.ts +10 -0
- package/www/types/params/process_params/FaceApiParams.d.ts +4 -0
- package/www/types/params/process_params/ProcessParams.d.ts +3 -2
- package/www/types/results/authenticity/Authenticity.d.ts +1 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +3 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +1 -0
- package/www/types/results/visual_results/FieldType.d.ts +3 -1
- /package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/BluetoothUtil.kt +0 -0
- /package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/Main.kt +0 -0
- /package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +0 -0
|
@@ -107,12 +107,12 @@
|
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
"node_modules/@babel/helper-annotate-as-pure": {
|
|
110
|
-
"version": "7.
|
|
111
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
|
112
|
-
"integrity": "sha512-
|
|
110
|
+
"version": "7.29.7",
|
|
111
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz",
|
|
112
|
+
"integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==",
|
|
113
113
|
"license": "MIT",
|
|
114
114
|
"dependencies": {
|
|
115
|
-
"@babel/types": "^7.
|
|
115
|
+
"@babel/types": "^7.29.7"
|
|
116
116
|
},
|
|
117
117
|
"engines": {
|
|
118
118
|
"node": ">=6.9.0"
|
|
@@ -135,17 +135,17 @@
|
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
137
|
"node_modules/@babel/helper-create-class-features-plugin": {
|
|
138
|
-
"version": "7.
|
|
139
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.
|
|
140
|
-
"integrity": "sha512-
|
|
138
|
+
"version": "7.29.7",
|
|
139
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.7.tgz",
|
|
140
|
+
"integrity": "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==",
|
|
141
141
|
"license": "MIT",
|
|
142
142
|
"dependencies": {
|
|
143
|
-
"@babel/helper-annotate-as-pure": "^7.
|
|
144
|
-
"@babel/helper-member-expression-to-functions": "^7.
|
|
145
|
-
"@babel/helper-optimise-call-expression": "^7.
|
|
146
|
-
"@babel/helper-replace-supers": "^7.
|
|
147
|
-
"@babel/helper-skip-transparent-expression-wrappers": "^7.
|
|
148
|
-
"@babel/traverse": "^7.
|
|
143
|
+
"@babel/helper-annotate-as-pure": "^7.29.7",
|
|
144
|
+
"@babel/helper-member-expression-to-functions": "^7.29.7",
|
|
145
|
+
"@babel/helper-optimise-call-expression": "^7.29.7",
|
|
146
|
+
"@babel/helper-replace-supers": "^7.29.7",
|
|
147
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.29.7",
|
|
148
|
+
"@babel/traverse": "^7.29.7",
|
|
149
149
|
"semver": "^6.3.1"
|
|
150
150
|
},
|
|
151
151
|
"engines": {
|
|
@@ -198,13 +198,13 @@
|
|
|
198
198
|
}
|
|
199
199
|
},
|
|
200
200
|
"node_modules/@babel/helper-member-expression-to-functions": {
|
|
201
|
-
"version": "7.
|
|
202
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.
|
|
203
|
-
"integrity": "sha512-
|
|
201
|
+
"version": "7.29.7",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.29.7.tgz",
|
|
203
|
+
"integrity": "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==",
|
|
204
204
|
"license": "MIT",
|
|
205
205
|
"dependencies": {
|
|
206
|
-
"@babel/traverse": "^7.
|
|
207
|
-
"@babel/types": "^7.
|
|
206
|
+
"@babel/traverse": "^7.29.7",
|
|
207
|
+
"@babel/types": "^7.29.7"
|
|
208
208
|
},
|
|
209
209
|
"engines": {
|
|
210
210
|
"node": ">=6.9.0"
|
|
@@ -241,21 +241,21 @@
|
|
|
241
241
|
}
|
|
242
242
|
},
|
|
243
243
|
"node_modules/@babel/helper-optimise-call-expression": {
|
|
244
|
-
"version": "7.
|
|
245
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.
|
|
246
|
-
"integrity": "sha512
|
|
244
|
+
"version": "7.29.7",
|
|
245
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.29.7.tgz",
|
|
246
|
+
"integrity": "sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==",
|
|
247
247
|
"license": "MIT",
|
|
248
248
|
"dependencies": {
|
|
249
|
-
"@babel/types": "^7.
|
|
249
|
+
"@babel/types": "^7.29.7"
|
|
250
250
|
},
|
|
251
251
|
"engines": {
|
|
252
252
|
"node": ">=6.9.0"
|
|
253
253
|
}
|
|
254
254
|
},
|
|
255
255
|
"node_modules/@babel/helper-plugin-utils": {
|
|
256
|
-
"version": "7.
|
|
257
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.
|
|
258
|
-
"integrity": "sha512-
|
|
256
|
+
"version": "7.29.7",
|
|
257
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz",
|
|
258
|
+
"integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==",
|
|
259
259
|
"license": "MIT",
|
|
260
260
|
"engines": {
|
|
261
261
|
"node": ">=6.9.0"
|
|
@@ -279,14 +279,14 @@
|
|
|
279
279
|
}
|
|
280
280
|
},
|
|
281
281
|
"node_modules/@babel/helper-replace-supers": {
|
|
282
|
-
"version": "7.
|
|
283
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.
|
|
284
|
-
"integrity": "sha512-
|
|
282
|
+
"version": "7.29.7",
|
|
283
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.29.7.tgz",
|
|
284
|
+
"integrity": "sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==",
|
|
285
285
|
"license": "MIT",
|
|
286
286
|
"dependencies": {
|
|
287
|
-
"@babel/helper-member-expression-to-functions": "^7.
|
|
288
|
-
"@babel/helper-optimise-call-expression": "^7.
|
|
289
|
-
"@babel/traverse": "^7.
|
|
287
|
+
"@babel/helper-member-expression-to-functions": "^7.29.7",
|
|
288
|
+
"@babel/helper-optimise-call-expression": "^7.29.7",
|
|
289
|
+
"@babel/traverse": "^7.29.7"
|
|
290
290
|
},
|
|
291
291
|
"engines": {
|
|
292
292
|
"node": ">=6.9.0"
|
|
@@ -296,13 +296,13 @@
|
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
|
|
299
|
-
"version": "7.
|
|
300
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.
|
|
301
|
-
"integrity": "sha512-
|
|
299
|
+
"version": "7.29.7",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.29.7.tgz",
|
|
301
|
+
"integrity": "sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==",
|
|
302
302
|
"license": "MIT",
|
|
303
303
|
"dependencies": {
|
|
304
|
-
"@babel/traverse": "^7.
|
|
305
|
-
"@babel/types": "^7.
|
|
304
|
+
"@babel/traverse": "^7.29.7",
|
|
305
|
+
"@babel/types": "^7.29.7"
|
|
306
306
|
},
|
|
307
307
|
"engines": {
|
|
308
308
|
"node": ">=6.9.0"
|
|
@@ -464,14 +464,14 @@
|
|
|
464
464
|
}
|
|
465
465
|
},
|
|
466
466
|
"node_modules/@babel/plugin-proposal-decorators": {
|
|
467
|
-
"version": "7.29.
|
|
468
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.
|
|
469
|
-
"integrity": "sha512-
|
|
467
|
+
"version": "7.29.7",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.7.tgz",
|
|
469
|
+
"integrity": "sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==",
|
|
470
470
|
"license": "MIT",
|
|
471
471
|
"dependencies": {
|
|
472
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
473
|
-
"@babel/helper-plugin-utils": "^7.
|
|
474
|
-
"@babel/plugin-syntax-decorators": "^7.
|
|
472
|
+
"@babel/helper-create-class-features-plugin": "^7.29.7",
|
|
473
|
+
"@babel/helper-plugin-utils": "^7.29.7",
|
|
474
|
+
"@babel/plugin-syntax-decorators": "^7.29.7"
|
|
475
475
|
},
|
|
476
476
|
"engines": {
|
|
477
477
|
"node": ">=6.9.0"
|
|
@@ -547,12 +547,12 @@
|
|
|
547
547
|
}
|
|
548
548
|
},
|
|
549
549
|
"node_modules/@babel/plugin-syntax-decorators": {
|
|
550
|
-
"version": "7.
|
|
551
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.
|
|
552
|
-
"integrity": "sha512-
|
|
550
|
+
"version": "7.29.7",
|
|
551
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.29.7.tgz",
|
|
552
|
+
"integrity": "sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==",
|
|
553
553
|
"license": "MIT",
|
|
554
554
|
"dependencies": {
|
|
555
|
-
"@babel/helper-plugin-utils": "^7.
|
|
555
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
556
556
|
},
|
|
557
557
|
"engines": {
|
|
558
558
|
"node": ">=6.9.0"
|
|
@@ -643,12 +643,12 @@
|
|
|
643
643
|
}
|
|
644
644
|
},
|
|
645
645
|
"node_modules/@babel/plugin-syntax-jsx": {
|
|
646
|
-
"version": "7.
|
|
647
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.
|
|
648
|
-
"integrity": "sha512-
|
|
646
|
+
"version": "7.29.7",
|
|
647
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.29.7.tgz",
|
|
648
|
+
"integrity": "sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==",
|
|
649
649
|
"license": "MIT",
|
|
650
650
|
"dependencies": {
|
|
651
|
-
"@babel/helper-plugin-utils": "^7.
|
|
651
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
652
652
|
},
|
|
653
653
|
"engines": {
|
|
654
654
|
"node": ">=6.9.0"
|
|
@@ -760,12 +760,12 @@
|
|
|
760
760
|
}
|
|
761
761
|
},
|
|
762
762
|
"node_modules/@babel/plugin-syntax-typescript": {
|
|
763
|
-
"version": "7.
|
|
764
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.
|
|
765
|
-
"integrity": "sha512-
|
|
763
|
+
"version": "7.29.7",
|
|
764
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.29.7.tgz",
|
|
765
|
+
"integrity": "sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==",
|
|
766
766
|
"license": "MIT",
|
|
767
767
|
"dependencies": {
|
|
768
|
-
"@babel/helper-plugin-utils": "^7.
|
|
768
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
769
769
|
},
|
|
770
770
|
"engines": {
|
|
771
771
|
"node": ">=6.9.0"
|
|
@@ -855,13 +855,13 @@
|
|
|
855
855
|
}
|
|
856
856
|
},
|
|
857
857
|
"node_modules/@babel/plugin-transform-class-static-block": {
|
|
858
|
-
"version": "7.
|
|
859
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.
|
|
860
|
-
"integrity": "sha512-
|
|
858
|
+
"version": "7.29.7",
|
|
859
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.29.7.tgz",
|
|
860
|
+
"integrity": "sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==",
|
|
861
861
|
"license": "MIT",
|
|
862
862
|
"dependencies": {
|
|
863
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
864
|
-
"@babel/helper-plugin-utils": "^7.
|
|
863
|
+
"@babel/helper-create-class-features-plugin": "^7.29.7",
|
|
864
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
865
865
|
},
|
|
866
866
|
"engines": {
|
|
867
867
|
"node": ">=6.9.0"
|
|
@@ -923,12 +923,12 @@
|
|
|
923
923
|
}
|
|
924
924
|
},
|
|
925
925
|
"node_modules/@babel/plugin-transform-export-namespace-from": {
|
|
926
|
-
"version": "7.
|
|
927
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.
|
|
928
|
-
"integrity": "sha512-
|
|
926
|
+
"version": "7.29.7",
|
|
927
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.29.7.tgz",
|
|
928
|
+
"integrity": "sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==",
|
|
929
929
|
"license": "MIT",
|
|
930
930
|
"dependencies": {
|
|
931
|
-
"@babel/helper-plugin-utils": "^7.
|
|
931
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
932
932
|
},
|
|
933
933
|
"engines": {
|
|
934
934
|
"node": ">=6.9.0"
|
|
@@ -1017,13 +1017,13 @@
|
|
|
1017
1017
|
}
|
|
1018
1018
|
},
|
|
1019
1019
|
"node_modules/@babel/plugin-transform-modules-commonjs": {
|
|
1020
|
-
"version": "7.
|
|
1021
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
|
1022
|
-
"integrity": "sha512-
|
|
1020
|
+
"version": "7.29.7",
|
|
1021
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.29.7.tgz",
|
|
1022
|
+
"integrity": "sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==",
|
|
1023
1023
|
"license": "MIT",
|
|
1024
1024
|
"dependencies": {
|
|
1025
|
-
"@babel/helper-module-transforms": "^7.
|
|
1026
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1025
|
+
"@babel/helper-module-transforms": "^7.29.7",
|
|
1026
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
1027
1027
|
},
|
|
1028
1028
|
"engines": {
|
|
1029
1029
|
"node": ">=6.9.0"
|
|
@@ -1177,12 +1177,12 @@
|
|
|
1177
1177
|
}
|
|
1178
1178
|
},
|
|
1179
1179
|
"node_modules/@babel/plugin-transform-react-display-name": {
|
|
1180
|
-
"version": "7.
|
|
1181
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.
|
|
1182
|
-
"integrity": "sha512
|
|
1180
|
+
"version": "7.29.7",
|
|
1181
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.29.7.tgz",
|
|
1182
|
+
"integrity": "sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==",
|
|
1183
1183
|
"license": "MIT",
|
|
1184
1184
|
"dependencies": {
|
|
1185
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1185
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
1186
1186
|
},
|
|
1187
1187
|
"engines": {
|
|
1188
1188
|
"node": ">=6.9.0"
|
|
@@ -1192,16 +1192,16 @@
|
|
|
1192
1192
|
}
|
|
1193
1193
|
},
|
|
1194
1194
|
"node_modules/@babel/plugin-transform-react-jsx": {
|
|
1195
|
-
"version": "7.
|
|
1196
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.
|
|
1197
|
-
"integrity": "sha512-
|
|
1195
|
+
"version": "7.29.7",
|
|
1196
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.29.7.tgz",
|
|
1197
|
+
"integrity": "sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==",
|
|
1198
1198
|
"license": "MIT",
|
|
1199
1199
|
"dependencies": {
|
|
1200
|
-
"@babel/helper-annotate-as-pure": "^7.
|
|
1201
|
-
"@babel/helper-module-imports": "^7.
|
|
1202
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1203
|
-
"@babel/plugin-syntax-jsx": "^7.
|
|
1204
|
-
"@babel/types": "^7.
|
|
1200
|
+
"@babel/helper-annotate-as-pure": "^7.29.7",
|
|
1201
|
+
"@babel/helper-module-imports": "^7.29.7",
|
|
1202
|
+
"@babel/helper-plugin-utils": "^7.29.7",
|
|
1203
|
+
"@babel/plugin-syntax-jsx": "^7.29.7",
|
|
1204
|
+
"@babel/types": "^7.29.7"
|
|
1205
1205
|
},
|
|
1206
1206
|
"engines": {
|
|
1207
1207
|
"node": ">=6.9.0"
|
|
@@ -1211,12 +1211,12 @@
|
|
|
1211
1211
|
}
|
|
1212
1212
|
},
|
|
1213
1213
|
"node_modules/@babel/plugin-transform-react-jsx-development": {
|
|
1214
|
-
"version": "7.
|
|
1215
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.
|
|
1216
|
-
"integrity": "sha512-
|
|
1214
|
+
"version": "7.29.7",
|
|
1215
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.29.7.tgz",
|
|
1216
|
+
"integrity": "sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==",
|
|
1217
1217
|
"license": "MIT",
|
|
1218
1218
|
"dependencies": {
|
|
1219
|
-
"@babel/plugin-transform-react-jsx": "^7.
|
|
1219
|
+
"@babel/plugin-transform-react-jsx": "^7.29.7"
|
|
1220
1220
|
},
|
|
1221
1221
|
"engines": {
|
|
1222
1222
|
"node": ">=6.9.0"
|
|
@@ -1256,13 +1256,13 @@
|
|
|
1256
1256
|
}
|
|
1257
1257
|
},
|
|
1258
1258
|
"node_modules/@babel/plugin-transform-react-pure-annotations": {
|
|
1259
|
-
"version": "7.
|
|
1260
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.
|
|
1261
|
-
"integrity": "sha512-
|
|
1259
|
+
"version": "7.29.7",
|
|
1260
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.29.7.tgz",
|
|
1261
|
+
"integrity": "sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==",
|
|
1262
1262
|
"license": "MIT",
|
|
1263
1263
|
"dependencies": {
|
|
1264
|
-
"@babel/helper-annotate-as-pure": "^7.
|
|
1265
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1264
|
+
"@babel/helper-annotate-as-pure": "^7.29.7",
|
|
1265
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
1266
1266
|
},
|
|
1267
1267
|
"engines": {
|
|
1268
1268
|
"node": ">=6.9.0"
|
|
@@ -1353,16 +1353,16 @@
|
|
|
1353
1353
|
}
|
|
1354
1354
|
},
|
|
1355
1355
|
"node_modules/@babel/plugin-transform-typescript": {
|
|
1356
|
-
"version": "7.
|
|
1357
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.
|
|
1358
|
-
"integrity": "sha512-
|
|
1356
|
+
"version": "7.29.7",
|
|
1357
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.29.7.tgz",
|
|
1358
|
+
"integrity": "sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==",
|
|
1359
1359
|
"license": "MIT",
|
|
1360
1360
|
"dependencies": {
|
|
1361
|
-
"@babel/helper-annotate-as-pure": "^7.
|
|
1362
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
1363
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1364
|
-
"@babel/helper-skip-transparent-expression-wrappers": "^7.
|
|
1365
|
-
"@babel/plugin-syntax-typescript": "^7.
|
|
1361
|
+
"@babel/helper-annotate-as-pure": "^7.29.7",
|
|
1362
|
+
"@babel/helper-create-class-features-plugin": "^7.29.7",
|
|
1363
|
+
"@babel/helper-plugin-utils": "^7.29.7",
|
|
1364
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.29.7",
|
|
1365
|
+
"@babel/plugin-syntax-typescript": "^7.29.7"
|
|
1366
1366
|
},
|
|
1367
1367
|
"engines": {
|
|
1368
1368
|
"node": ">=6.9.0"
|
|
@@ -1388,17 +1388,17 @@
|
|
|
1388
1388
|
}
|
|
1389
1389
|
},
|
|
1390
1390
|
"node_modules/@babel/preset-react": {
|
|
1391
|
-
"version": "7.
|
|
1392
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.
|
|
1393
|
-
"integrity": "sha512-
|
|
1391
|
+
"version": "7.29.7",
|
|
1392
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.29.7.tgz",
|
|
1393
|
+
"integrity": "sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA==",
|
|
1394
1394
|
"license": "MIT",
|
|
1395
1395
|
"dependencies": {
|
|
1396
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1397
|
-
"@babel/helper-validator-option": "^7.
|
|
1398
|
-
"@babel/plugin-transform-react-display-name": "^7.
|
|
1399
|
-
"@babel/plugin-transform-react-jsx": "^7.
|
|
1400
|
-
"@babel/plugin-transform-react-jsx-development": "^7.
|
|
1401
|
-
"@babel/plugin-transform-react-pure-annotations": "^7.
|
|
1396
|
+
"@babel/helper-plugin-utils": "^7.29.7",
|
|
1397
|
+
"@babel/helper-validator-option": "^7.29.7",
|
|
1398
|
+
"@babel/plugin-transform-react-display-name": "^7.29.7",
|
|
1399
|
+
"@babel/plugin-transform-react-jsx": "^7.29.7",
|
|
1400
|
+
"@babel/plugin-transform-react-jsx-development": "^7.29.7",
|
|
1401
|
+
"@babel/plugin-transform-react-pure-annotations": "^7.29.7"
|
|
1402
1402
|
},
|
|
1403
1403
|
"engines": {
|
|
1404
1404
|
"node": ">=6.9.0"
|
|
@@ -1408,16 +1408,16 @@
|
|
|
1408
1408
|
}
|
|
1409
1409
|
},
|
|
1410
1410
|
"node_modules/@babel/preset-typescript": {
|
|
1411
|
-
"version": "7.
|
|
1412
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.
|
|
1413
|
-
"integrity": "sha512
|
|
1411
|
+
"version": "7.29.7",
|
|
1412
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.29.7.tgz",
|
|
1413
|
+
"integrity": "sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==",
|
|
1414
1414
|
"license": "MIT",
|
|
1415
1415
|
"dependencies": {
|
|
1416
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1417
|
-
"@babel/helper-validator-option": "^7.
|
|
1418
|
-
"@babel/plugin-syntax-jsx": "^7.
|
|
1419
|
-
"@babel/plugin-transform-modules-commonjs": "^7.
|
|
1420
|
-
"@babel/plugin-transform-typescript": "^7.
|
|
1416
|
+
"@babel/helper-plugin-utils": "^7.29.7",
|
|
1417
|
+
"@babel/helper-validator-option": "^7.29.7",
|
|
1418
|
+
"@babel/plugin-syntax-jsx": "^7.29.7",
|
|
1419
|
+
"@babel/plugin-transform-modules-commonjs": "^7.29.7",
|
|
1420
|
+
"@babel/plugin-transform-typescript": "^7.29.7"
|
|
1421
1421
|
},
|
|
1422
1422
|
"engines": {
|
|
1423
1423
|
"node": ">=6.9.0"
|
|
@@ -1499,158 +1499,6 @@
|
|
|
1499
1499
|
"node": ">=6.9.0"
|
|
1500
1500
|
}
|
|
1501
1501
|
},
|
|
1502
|
-
"node_modules/@expo/cli": {
|
|
1503
|
-
"version": "54.0.23",
|
|
1504
|
-
"resolved": "https://registry.npmjs.org/@expo/cli/-/cli-54.0.23.tgz",
|
|
1505
|
-
"integrity": "sha512-km0h72SFfQCmVycH/JtPFTVy69w6Lx1cHNDmfLfQqgKFYeeHTjx7LVDP4POHCtNxFP2UeRazrygJhlh4zz498g==",
|
|
1506
|
-
"license": "MIT",
|
|
1507
|
-
"dependencies": {
|
|
1508
|
-
"@0no-co/graphql.web": "^1.0.8",
|
|
1509
|
-
"@expo/code-signing-certificates": "^0.0.6",
|
|
1510
|
-
"@expo/config": "~12.0.13",
|
|
1511
|
-
"@expo/config-plugins": "~54.0.4",
|
|
1512
|
-
"@expo/devcert": "^1.2.1",
|
|
1513
|
-
"@expo/env": "~2.0.8",
|
|
1514
|
-
"@expo/image-utils": "^0.8.8",
|
|
1515
|
-
"@expo/json-file": "^10.0.8",
|
|
1516
|
-
"@expo/metro": "~54.2.0",
|
|
1517
|
-
"@expo/metro-config": "~54.0.14",
|
|
1518
|
-
"@expo/osascript": "^2.3.8",
|
|
1519
|
-
"@expo/package-manager": "^1.9.10",
|
|
1520
|
-
"@expo/plist": "^0.4.8",
|
|
1521
|
-
"@expo/prebuild-config": "^54.0.8",
|
|
1522
|
-
"@expo/schema-utils": "^0.1.8",
|
|
1523
|
-
"@expo/spawn-async": "^1.7.2",
|
|
1524
|
-
"@expo/ws-tunnel": "^1.0.1",
|
|
1525
|
-
"@expo/xcpretty": "^4.3.0",
|
|
1526
|
-
"@react-native/dev-middleware": "0.81.5",
|
|
1527
|
-
"@urql/core": "^5.0.6",
|
|
1528
|
-
"@urql/exchange-retry": "^1.3.0",
|
|
1529
|
-
"accepts": "^1.3.8",
|
|
1530
|
-
"arg": "^5.0.2",
|
|
1531
|
-
"better-opn": "~3.0.2",
|
|
1532
|
-
"bplist-creator": "0.1.0",
|
|
1533
|
-
"bplist-parser": "^0.3.1",
|
|
1534
|
-
"chalk": "^4.0.0",
|
|
1535
|
-
"ci-info": "^3.3.0",
|
|
1536
|
-
"compression": "^1.7.4",
|
|
1537
|
-
"connect": "^3.7.0",
|
|
1538
|
-
"debug": "^4.3.4",
|
|
1539
|
-
"env-editor": "^0.4.1",
|
|
1540
|
-
"expo-server": "^1.0.5",
|
|
1541
|
-
"freeport-async": "^2.0.0",
|
|
1542
|
-
"getenv": "^2.0.0",
|
|
1543
|
-
"glob": "^13.0.0",
|
|
1544
|
-
"lan-network": "^0.1.6",
|
|
1545
|
-
"minimatch": "^9.0.0",
|
|
1546
|
-
"node-forge": "^1.3.3",
|
|
1547
|
-
"npm-package-arg": "^11.0.0",
|
|
1548
|
-
"ora": "^3.4.0",
|
|
1549
|
-
"picomatch": "^3.0.1",
|
|
1550
|
-
"pretty-bytes": "^5.6.0",
|
|
1551
|
-
"pretty-format": "^29.7.0",
|
|
1552
|
-
"progress": "^2.0.3",
|
|
1553
|
-
"prompts": "^2.3.2",
|
|
1554
|
-
"qrcode-terminal": "0.11.0",
|
|
1555
|
-
"require-from-string": "^2.0.2",
|
|
1556
|
-
"requireg": "^0.2.2",
|
|
1557
|
-
"resolve": "^1.22.2",
|
|
1558
|
-
"resolve-from": "^5.0.0",
|
|
1559
|
-
"resolve.exports": "^2.0.3",
|
|
1560
|
-
"semver": "^7.6.0",
|
|
1561
|
-
"send": "^0.19.0",
|
|
1562
|
-
"slugify": "^1.3.4",
|
|
1563
|
-
"source-map-support": "~0.5.21",
|
|
1564
|
-
"stacktrace-parser": "^0.1.10",
|
|
1565
|
-
"structured-headers": "^0.4.1",
|
|
1566
|
-
"tar": "^7.5.2",
|
|
1567
|
-
"terminal-link": "^2.1.1",
|
|
1568
|
-
"undici": "^6.18.2",
|
|
1569
|
-
"wrap-ansi": "^7.0.0",
|
|
1570
|
-
"ws": "^8.12.1"
|
|
1571
|
-
},
|
|
1572
|
-
"bin": {
|
|
1573
|
-
"expo-internal": "build/bin/cli"
|
|
1574
|
-
},
|
|
1575
|
-
"peerDependencies": {
|
|
1576
|
-
"expo": "*",
|
|
1577
|
-
"expo-router": "*",
|
|
1578
|
-
"react-native": "*"
|
|
1579
|
-
},
|
|
1580
|
-
"peerDependenciesMeta": {
|
|
1581
|
-
"expo-router": {
|
|
1582
|
-
"optional": true
|
|
1583
|
-
},
|
|
1584
|
-
"react-native": {
|
|
1585
|
-
"optional": true
|
|
1586
|
-
}
|
|
1587
|
-
}
|
|
1588
|
-
},
|
|
1589
|
-
"node_modules/@expo/cli/node_modules/balanced-match": {
|
|
1590
|
-
"version": "4.0.4",
|
|
1591
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
1592
|
-
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
1593
|
-
"license": "MIT",
|
|
1594
|
-
"engines": {
|
|
1595
|
-
"node": "18 || 20 || >=22"
|
|
1596
|
-
}
|
|
1597
|
-
},
|
|
1598
|
-
"node_modules/@expo/cli/node_modules/brace-expansion": {
|
|
1599
|
-
"version": "5.0.6",
|
|
1600
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1601
|
-
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1602
|
-
"license": "MIT",
|
|
1603
|
-
"dependencies": {
|
|
1604
|
-
"balanced-match": "^4.0.2"
|
|
1605
|
-
},
|
|
1606
|
-
"engines": {
|
|
1607
|
-
"node": "18 || 20 || >=22"
|
|
1608
|
-
}
|
|
1609
|
-
},
|
|
1610
|
-
"node_modules/@expo/cli/node_modules/glob": {
|
|
1611
|
-
"version": "13.0.6",
|
|
1612
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
1613
|
-
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
1614
|
-
"license": "BlueOak-1.0.0",
|
|
1615
|
-
"dependencies": {
|
|
1616
|
-
"minimatch": "^10.2.2",
|
|
1617
|
-
"minipass": "^7.1.3",
|
|
1618
|
-
"path-scurry": "^2.0.2"
|
|
1619
|
-
},
|
|
1620
|
-
"engines": {
|
|
1621
|
-
"node": "18 || 20 || >=22"
|
|
1622
|
-
},
|
|
1623
|
-
"funding": {
|
|
1624
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1625
|
-
}
|
|
1626
|
-
},
|
|
1627
|
-
"node_modules/@expo/cli/node_modules/glob/node_modules/minimatch": {
|
|
1628
|
-
"version": "10.2.5",
|
|
1629
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
1630
|
-
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
1631
|
-
"license": "BlueOak-1.0.0",
|
|
1632
|
-
"dependencies": {
|
|
1633
|
-
"brace-expansion": "^5.0.5"
|
|
1634
|
-
},
|
|
1635
|
-
"engines": {
|
|
1636
|
-
"node": "18 || 20 || >=22"
|
|
1637
|
-
},
|
|
1638
|
-
"funding": {
|
|
1639
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1640
|
-
}
|
|
1641
|
-
},
|
|
1642
|
-
"node_modules/@expo/cli/node_modules/semver": {
|
|
1643
|
-
"version": "7.7.4",
|
|
1644
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
1645
|
-
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
1646
|
-
"license": "ISC",
|
|
1647
|
-
"bin": {
|
|
1648
|
-
"semver": "bin/semver.js"
|
|
1649
|
-
},
|
|
1650
|
-
"engines": {
|
|
1651
|
-
"node": ">=10"
|
|
1652
|
-
}
|
|
1653
|
-
},
|
|
1654
1502
|
"node_modules/@expo/code-signing-certificates": {
|
|
1655
1503
|
"version": "0.0.6",
|
|
1656
1504
|
"resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.6.tgz",
|
|
@@ -1661,15 +1509,15 @@
|
|
|
1661
1509
|
}
|
|
1662
1510
|
},
|
|
1663
1511
|
"node_modules/@expo/config": {
|
|
1664
|
-
"version": "12.0.
|
|
1665
|
-
"resolved": "https://registry.npmjs.org/@expo/config/-/config-12.0.
|
|
1666
|
-
"integrity": "sha512-
|
|
1512
|
+
"version": "12.0.14",
|
|
1513
|
+
"resolved": "https://registry.npmjs.org/@expo/config/-/config-12.0.14.tgz",
|
|
1514
|
+
"integrity": "sha512-3dfbBd9LnPDgyylhCgkOsaG8Adg52uOVOTQYH5lf23a/t8M5eQpXKCvzUarrf62B78057n2NnkiofK9TfPgvzw==",
|
|
1667
1515
|
"license": "MIT",
|
|
1668
1516
|
"dependencies": {
|
|
1669
1517
|
"@babel/code-frame": "~7.10.4",
|
|
1670
|
-
"@expo/config-plugins": "~54.0.
|
|
1518
|
+
"@expo/config-plugins": "~54.0.5",
|
|
1671
1519
|
"@expo/config-types": "^54.0.10",
|
|
1672
|
-
"@expo/json-file": "^10.0.
|
|
1520
|
+
"@expo/json-file": "^10.0.16",
|
|
1673
1521
|
"deepmerge": "^4.3.1",
|
|
1674
1522
|
"getenv": "^2.0.0",
|
|
1675
1523
|
"glob": "^13.0.0",
|
|
@@ -1682,14 +1530,14 @@
|
|
|
1682
1530
|
}
|
|
1683
1531
|
},
|
|
1684
1532
|
"node_modules/@expo/config-plugins": {
|
|
1685
|
-
"version": "54.0.
|
|
1686
|
-
"resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-54.0.
|
|
1687
|
-
"integrity": "sha512-
|
|
1533
|
+
"version": "54.0.5",
|
|
1534
|
+
"resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-54.0.5.tgz",
|
|
1535
|
+
"integrity": "sha512-aWQ3sViNRoQWw6So4A2qhWCt24CuGBK6MrRHI1AG+V6/NQAjIZCHaSvcXK2gXKpmisRhTSUWaKPIgLJQFB+AeQ==",
|
|
1688
1536
|
"license": "MIT",
|
|
1689
1537
|
"dependencies": {
|
|
1690
1538
|
"@expo/config-types": "^54.0.10",
|
|
1691
|
-
"@expo/json-file": "~10.0.
|
|
1692
|
-
"@expo/plist": "^0.4.
|
|
1539
|
+
"@expo/json-file": "~10.0.16",
|
|
1540
|
+
"@expo/plist": "^0.4.9",
|
|
1693
1541
|
"@expo/sdk-runtime-versions": "^1.0.0",
|
|
1694
1542
|
"chalk": "^4.1.2",
|
|
1695
1543
|
"debug": "^4.3.5",
|
|
@@ -1703,25 +1551,23 @@
|
|
|
1703
1551
|
"xml2js": "0.6.0"
|
|
1704
1552
|
}
|
|
1705
1553
|
},
|
|
1706
|
-
"node_modules/@expo/config-plugins/node_modules/
|
|
1707
|
-
"version": "
|
|
1708
|
-
"resolved": "https://registry.npmjs.org/
|
|
1709
|
-
"integrity": "sha512-
|
|
1554
|
+
"node_modules/@expo/config-plugins/node_modules/@babel/code-frame": {
|
|
1555
|
+
"version": "7.10.4",
|
|
1556
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
|
|
1557
|
+
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
|
|
1710
1558
|
"license": "MIT",
|
|
1711
|
-
"
|
|
1712
|
-
"
|
|
1559
|
+
"dependencies": {
|
|
1560
|
+
"@babel/highlight": "^7.10.4"
|
|
1713
1561
|
}
|
|
1714
1562
|
},
|
|
1715
|
-
"node_modules/@expo/config-plugins/node_modules/
|
|
1716
|
-
"version": "
|
|
1717
|
-
"resolved": "https://registry.npmjs.org/
|
|
1718
|
-
"integrity": "sha512-
|
|
1563
|
+
"node_modules/@expo/config-plugins/node_modules/@expo/json-file": {
|
|
1564
|
+
"version": "10.0.16",
|
|
1565
|
+
"resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-10.0.16.tgz",
|
|
1566
|
+
"integrity": "sha512-fcVkWEj+hLuP2yt5W0aw6LmDRqSPWDLUSxOMcmFeV+algmIF59sQVKCwB9btjQLd4V6x9N0pISkQEkBubUHrCw==",
|
|
1719
1567
|
"license": "MIT",
|
|
1720
1568
|
"dependencies": {
|
|
1721
|
-
"
|
|
1722
|
-
|
|
1723
|
-
"engines": {
|
|
1724
|
-
"node": "18 || 20 || >=22"
|
|
1569
|
+
"@babel/code-frame": "~7.10.4",
|
|
1570
|
+
"json5": "^2.2.3"
|
|
1725
1571
|
}
|
|
1726
1572
|
},
|
|
1727
1573
|
"node_modules/@expo/config-plugins/node_modules/glob": {
|
|
@@ -1741,25 +1587,10 @@
|
|
|
1741
1587
|
"url": "https://github.com/sponsors/isaacs"
|
|
1742
1588
|
}
|
|
1743
1589
|
},
|
|
1744
|
-
"node_modules/@expo/config-plugins/node_modules/minimatch": {
|
|
1745
|
-
"version": "10.2.5",
|
|
1746
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
1747
|
-
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
1748
|
-
"license": "BlueOak-1.0.0",
|
|
1749
|
-
"dependencies": {
|
|
1750
|
-
"brace-expansion": "^5.0.5"
|
|
1751
|
-
},
|
|
1752
|
-
"engines": {
|
|
1753
|
-
"node": "18 || 20 || >=22"
|
|
1754
|
-
},
|
|
1755
|
-
"funding": {
|
|
1756
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1757
|
-
}
|
|
1758
|
-
},
|
|
1759
1590
|
"node_modules/@expo/config-plugins/node_modules/semver": {
|
|
1760
|
-
"version": "7.
|
|
1761
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
1762
|
-
"integrity": "sha512-
|
|
1591
|
+
"version": "7.8.5",
|
|
1592
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
1593
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
1763
1594
|
"license": "ISC",
|
|
1764
1595
|
"bin": {
|
|
1765
1596
|
"semver": "bin/semver.js"
|
|
@@ -1783,27 +1614,6 @@
|
|
|
1783
1614
|
"@babel/highlight": "^7.10.4"
|
|
1784
1615
|
}
|
|
1785
1616
|
},
|
|
1786
|
-
"node_modules/@expo/config/node_modules/balanced-match": {
|
|
1787
|
-
"version": "4.0.4",
|
|
1788
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
1789
|
-
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
1790
|
-
"license": "MIT",
|
|
1791
|
-
"engines": {
|
|
1792
|
-
"node": "18 || 20 || >=22"
|
|
1793
|
-
}
|
|
1794
|
-
},
|
|
1795
|
-
"node_modules/@expo/config/node_modules/brace-expansion": {
|
|
1796
|
-
"version": "5.0.6",
|
|
1797
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1798
|
-
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1799
|
-
"license": "MIT",
|
|
1800
|
-
"dependencies": {
|
|
1801
|
-
"balanced-match": "^4.0.2"
|
|
1802
|
-
},
|
|
1803
|
-
"engines": {
|
|
1804
|
-
"node": "18 || 20 || >=22"
|
|
1805
|
-
}
|
|
1806
|
-
},
|
|
1807
1617
|
"node_modules/@expo/config/node_modules/glob": {
|
|
1808
1618
|
"version": "13.0.6",
|
|
1809
1619
|
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
@@ -1821,21 +1631,6 @@
|
|
|
1821
1631
|
"url": "https://github.com/sponsors/isaacs"
|
|
1822
1632
|
}
|
|
1823
1633
|
},
|
|
1824
|
-
"node_modules/@expo/config/node_modules/minimatch": {
|
|
1825
|
-
"version": "10.2.5",
|
|
1826
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
1827
|
-
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
1828
|
-
"license": "BlueOak-1.0.0",
|
|
1829
|
-
"dependencies": {
|
|
1830
|
-
"brace-expansion": "^5.0.5"
|
|
1831
|
-
},
|
|
1832
|
-
"engines": {
|
|
1833
|
-
"node": "18 || 20 || >=22"
|
|
1834
|
-
},
|
|
1835
|
-
"funding": {
|
|
1836
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1837
|
-
}
|
|
1838
|
-
},
|
|
1839
1634
|
"node_modules/@expo/config/node_modules/semver": {
|
|
1840
1635
|
"version": "7.7.4",
|
|
1841
1636
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
@@ -1889,9 +1684,9 @@
|
|
|
1889
1684
|
}
|
|
1890
1685
|
},
|
|
1891
1686
|
"node_modules/@expo/env": {
|
|
1892
|
-
"version": "2.0.
|
|
1893
|
-
"resolved": "https://registry.npmjs.org/@expo/env/-/env-2.0.
|
|
1894
|
-
"integrity": "sha512-
|
|
1687
|
+
"version": "2.0.12",
|
|
1688
|
+
"resolved": "https://registry.npmjs.org/@expo/env/-/env-2.0.12.tgz",
|
|
1689
|
+
"integrity": "sha512-wVfzeBGlUohZG5kS8QCqXurpuWZFJEkBB1wXCifai3EZ/Llcg/VMTiUCpAgHImD3lI7GIU3V1uI64c04XIo98Q==",
|
|
1895
1690
|
"license": "MIT",
|
|
1896
1691
|
"dependencies": {
|
|
1897
1692
|
"chalk": "^4.0.0",
|
|
@@ -1902,9 +1697,9 @@
|
|
|
1902
1697
|
}
|
|
1903
1698
|
},
|
|
1904
1699
|
"node_modules/@expo/fingerprint": {
|
|
1905
|
-
"version": "0.15.
|
|
1906
|
-
"resolved": "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.15.
|
|
1907
|
-
"integrity": "sha512-
|
|
1700
|
+
"version": "0.15.5",
|
|
1701
|
+
"resolved": "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.15.5.tgz",
|
|
1702
|
+
"integrity": "sha512-mdVoAMcux1WlM6kd1RoWiHRNqKqS+J6mKmWQ/BKgeh937S/fcW58EE68O6nc4KDXtWi3PBeNHskOFcgyIuD4hw==",
|
|
1908
1703
|
"license": "MIT",
|
|
1909
1704
|
"dependencies": {
|
|
1910
1705
|
"@expo/spawn-async": "^1.7.2",
|
|
@@ -1914,7 +1709,7 @@
|
|
|
1914
1709
|
"getenv": "^2.0.0",
|
|
1915
1710
|
"glob": "^13.0.0",
|
|
1916
1711
|
"ignore": "^5.3.1",
|
|
1917
|
-
"minimatch": "^
|
|
1712
|
+
"minimatch": "^10.2.2",
|
|
1918
1713
|
"p-limit": "^3.1.0",
|
|
1919
1714
|
"resolve-from": "^5.0.0",
|
|
1920
1715
|
"semver": "^7.6.0"
|
|
@@ -1923,27 +1718,6 @@
|
|
|
1923
1718
|
"fingerprint": "bin/cli.js"
|
|
1924
1719
|
}
|
|
1925
1720
|
},
|
|
1926
|
-
"node_modules/@expo/fingerprint/node_modules/balanced-match": {
|
|
1927
|
-
"version": "4.0.4",
|
|
1928
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
1929
|
-
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
1930
|
-
"license": "MIT",
|
|
1931
|
-
"engines": {
|
|
1932
|
-
"node": "18 || 20 || >=22"
|
|
1933
|
-
}
|
|
1934
|
-
},
|
|
1935
|
-
"node_modules/@expo/fingerprint/node_modules/brace-expansion": {
|
|
1936
|
-
"version": "5.0.6",
|
|
1937
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1938
|
-
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1939
|
-
"license": "MIT",
|
|
1940
|
-
"dependencies": {
|
|
1941
|
-
"balanced-match": "^4.0.2"
|
|
1942
|
-
},
|
|
1943
|
-
"engines": {
|
|
1944
|
-
"node": "18 || 20 || >=22"
|
|
1945
|
-
}
|
|
1946
|
-
},
|
|
1947
1721
|
"node_modules/@expo/fingerprint/node_modules/glob": {
|
|
1948
1722
|
"version": "13.0.6",
|
|
1949
1723
|
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
@@ -1961,25 +1735,10 @@
|
|
|
1961
1735
|
"url": "https://github.com/sponsors/isaacs"
|
|
1962
1736
|
}
|
|
1963
1737
|
},
|
|
1964
|
-
"node_modules/@expo/fingerprint/node_modules/glob/node_modules/minimatch": {
|
|
1965
|
-
"version": "10.2.5",
|
|
1966
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
1967
|
-
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
1968
|
-
"license": "BlueOak-1.0.0",
|
|
1969
|
-
"dependencies": {
|
|
1970
|
-
"brace-expansion": "^5.0.5"
|
|
1971
|
-
},
|
|
1972
|
-
"engines": {
|
|
1973
|
-
"node": "18 || 20 || >=22"
|
|
1974
|
-
},
|
|
1975
|
-
"funding": {
|
|
1976
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1977
|
-
}
|
|
1978
|
-
},
|
|
1979
1738
|
"node_modules/@expo/fingerprint/node_modules/semver": {
|
|
1980
|
-
"version": "7.
|
|
1981
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
1982
|
-
"integrity": "sha512-
|
|
1739
|
+
"version": "7.8.5",
|
|
1740
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
1741
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
1983
1742
|
"license": "ISC",
|
|
1984
1743
|
"bin": {
|
|
1985
1744
|
"semver": "bin/semver.js"
|
|
@@ -1989,12 +1748,12 @@
|
|
|
1989
1748
|
}
|
|
1990
1749
|
},
|
|
1991
1750
|
"node_modules/@expo/image-utils": {
|
|
1992
|
-
"version": "0.8.
|
|
1993
|
-
"resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.8.
|
|
1994
|
-
"integrity": "sha512-
|
|
1751
|
+
"version": "0.8.15",
|
|
1752
|
+
"resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.8.15.tgz",
|
|
1753
|
+
"integrity": "sha512-3f5CgKJnJ8m4mp8VTcAFQqLrxof99RDr77Aa+7hgzDPg3ZotjLnofl77hf+COQRYi/kuqRYdYFgPIqOIOIdWJA==",
|
|
1995
1754
|
"license": "MIT",
|
|
1996
1755
|
"dependencies": {
|
|
1997
|
-
"@expo/require-utils": "^55.0.
|
|
1756
|
+
"@expo/require-utils": "^55.0.6",
|
|
1998
1757
|
"@expo/spawn-async": "^1.7.2",
|
|
1999
1758
|
"chalk": "^4.0.0",
|
|
2000
1759
|
"getenv": "^2.0.0",
|
|
@@ -2004,9 +1763,9 @@
|
|
|
2004
1763
|
}
|
|
2005
1764
|
},
|
|
2006
1765
|
"node_modules/@expo/image-utils/node_modules/semver": {
|
|
2007
|
-
"version": "7.
|
|
2008
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2009
|
-
"integrity": "sha512-
|
|
1766
|
+
"version": "7.8.5",
|
|
1767
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
1768
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
2010
1769
|
"license": "ISC",
|
|
2011
1770
|
"bin": {
|
|
2012
1771
|
"semver": "bin/semver.js"
|
|
@@ -2016,9 +1775,9 @@
|
|
|
2016
1775
|
}
|
|
2017
1776
|
},
|
|
2018
1777
|
"node_modules/@expo/json-file": {
|
|
2019
|
-
"version": "10.0
|
|
2020
|
-
"resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-10.0.
|
|
2021
|
-
"integrity": "sha512-
|
|
1778
|
+
"version": "10.2.0",
|
|
1779
|
+
"resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-10.2.0.tgz",
|
|
1780
|
+
"integrity": "sha512-S6XzKe3R9GQeHiUPXc3xJjOv2VJhOEwFYf7xdC2z2cUqt3kZJ9mSO877sNQloVdnW/SUCtPY3bexlM7nwq+CAQ==",
|
|
2022
1781
|
"license": "MIT",
|
|
2023
1782
|
"dependencies": {
|
|
2024
1783
|
"@babel/code-frame": "^7.20.0",
|
|
@@ -2048,17 +1807,17 @@
|
|
|
2048
1807
|
}
|
|
2049
1808
|
},
|
|
2050
1809
|
"node_modules/@expo/metro-config": {
|
|
2051
|
-
"version": "54.0.
|
|
2052
|
-
"resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-54.0.
|
|
2053
|
-
"integrity": "sha512-
|
|
1810
|
+
"version": "54.0.17",
|
|
1811
|
+
"resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-54.0.17.tgz",
|
|
1812
|
+
"integrity": "sha512-PQFgQCZGY0DffZUvBzJttDPreZfHrQakaBlKjnvOUMNXbDna+TYmg1IFZuIDUYJezLcdp+TvVFTLjNi1+mqaVw==",
|
|
2054
1813
|
"license": "MIT",
|
|
2055
1814
|
"dependencies": {
|
|
2056
1815
|
"@babel/code-frame": "^7.20.0",
|
|
2057
1816
|
"@babel/core": "^7.20.0",
|
|
2058
1817
|
"@babel/generator": "^7.20.5",
|
|
2059
|
-
"@expo/config": "~12.0.
|
|
2060
|
-
"@expo/env": "~2.0.
|
|
2061
|
-
"@expo/json-file": "~10.0.
|
|
1818
|
+
"@expo/config": "~12.0.14",
|
|
1819
|
+
"@expo/env": "~2.0.12",
|
|
1820
|
+
"@expo/json-file": "~10.0.16",
|
|
2062
1821
|
"@expo/metro": "~54.2.0",
|
|
2063
1822
|
"@expo/spawn-async": "^1.7.2",
|
|
2064
1823
|
"browserslist": "^4.25.0",
|
|
@@ -2071,7 +1830,7 @@
|
|
|
2071
1830
|
"hermes-parser": "^0.29.1",
|
|
2072
1831
|
"jsc-safe-url": "^0.2.4",
|
|
2073
1832
|
"lightningcss": "^1.30.1",
|
|
2074
|
-
"
|
|
1833
|
+
"picomatch": "^4.0.3",
|
|
2075
1834
|
"postcss": "~8.4.32",
|
|
2076
1835
|
"resolve-from": "^5.0.0"
|
|
2077
1836
|
},
|
|
@@ -2084,25 +1843,23 @@
|
|
|
2084
1843
|
}
|
|
2085
1844
|
}
|
|
2086
1845
|
},
|
|
2087
|
-
"node_modules/@expo/metro-config/node_modules/
|
|
2088
|
-
"version": "
|
|
2089
|
-
"resolved": "https://registry.npmjs.org/
|
|
2090
|
-
"integrity": "sha512-
|
|
1846
|
+
"node_modules/@expo/metro-config/node_modules/@expo/json-file": {
|
|
1847
|
+
"version": "10.0.16",
|
|
1848
|
+
"resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-10.0.16.tgz",
|
|
1849
|
+
"integrity": "sha512-fcVkWEj+hLuP2yt5W0aw6LmDRqSPWDLUSxOMcmFeV+algmIF59sQVKCwB9btjQLd4V6x9N0pISkQEkBubUHrCw==",
|
|
2091
1850
|
"license": "MIT",
|
|
2092
|
-
"
|
|
2093
|
-
"
|
|
1851
|
+
"dependencies": {
|
|
1852
|
+
"@babel/code-frame": "~7.10.4",
|
|
1853
|
+
"json5": "^2.2.3"
|
|
2094
1854
|
}
|
|
2095
1855
|
},
|
|
2096
|
-
"node_modules/@expo/metro-config/node_modules/
|
|
2097
|
-
"version": "
|
|
2098
|
-
"resolved": "https://registry.npmjs.org/
|
|
2099
|
-
"integrity": "sha512-
|
|
1856
|
+
"node_modules/@expo/metro-config/node_modules/@expo/json-file/node_modules/@babel/code-frame": {
|
|
1857
|
+
"version": "7.10.4",
|
|
1858
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
|
|
1859
|
+
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
|
|
2100
1860
|
"license": "MIT",
|
|
2101
1861
|
"dependencies": {
|
|
2102
|
-
"
|
|
2103
|
-
},
|
|
2104
|
-
"engines": {
|
|
2105
|
-
"node": "18 || 20 || >=22"
|
|
1862
|
+
"@babel/highlight": "^7.10.4"
|
|
2106
1863
|
}
|
|
2107
1864
|
},
|
|
2108
1865
|
"node_modules/@expo/metro-config/node_modules/glob": {
|
|
@@ -2122,51 +1879,46 @@
|
|
|
2122
1879
|
"url": "https://github.com/sponsors/isaacs"
|
|
2123
1880
|
}
|
|
2124
1881
|
},
|
|
2125
|
-
"node_modules/@expo/metro-config/node_modules/glob/node_modules/minimatch": {
|
|
2126
|
-
"version": "10.2.5",
|
|
2127
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
2128
|
-
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
2129
|
-
"license": "BlueOak-1.0.0",
|
|
2130
|
-
"dependencies": {
|
|
2131
|
-
"brace-expansion": "^5.0.5"
|
|
2132
|
-
},
|
|
2133
|
-
"engines": {
|
|
2134
|
-
"node": "18 || 20 || >=22"
|
|
2135
|
-
},
|
|
2136
|
-
"funding": {
|
|
2137
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
2138
|
-
}
|
|
2139
|
-
},
|
|
2140
1882
|
"node_modules/@expo/osascript": {
|
|
2141
|
-
"version": "2.
|
|
2142
|
-
"resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.
|
|
2143
|
-
"integrity": "sha512
|
|
1883
|
+
"version": "2.7.1",
|
|
1884
|
+
"resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.7.1.tgz",
|
|
1885
|
+
"integrity": "sha512-Zn03EX6In7ts2lPUW2ESUSkEhEWQN1qqsiXjadtZMJOuZRkMiAg1ZQHuvz9DjByDWNJ2pBwAGyrts9lj9k389g==",
|
|
2144
1886
|
"license": "MIT",
|
|
2145
1887
|
"dependencies": {
|
|
2146
|
-
"@expo/spawn-async": "^1.
|
|
1888
|
+
"@expo/spawn-async": "^1.8.0"
|
|
2147
1889
|
},
|
|
2148
1890
|
"engines": {
|
|
2149
1891
|
"node": ">=12"
|
|
2150
1892
|
}
|
|
2151
1893
|
},
|
|
2152
1894
|
"node_modules/@expo/package-manager": {
|
|
2153
|
-
"version": "1.
|
|
2154
|
-
"resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.
|
|
2155
|
-
"integrity": "sha512-
|
|
1895
|
+
"version": "1.13.1",
|
|
1896
|
+
"resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.13.1.tgz",
|
|
1897
|
+
"integrity": "sha512-y/K+CaYYpZpNGZhSX4HyLT/vyIunFjNfyoxNysPBCefeLKI/VCx6f9LNPzrxayr3rCYO5bl9O8H+HRQK265Nkg==",
|
|
2156
1898
|
"license": "MIT",
|
|
2157
1899
|
"dependencies": {
|
|
2158
|
-
"@expo/json-file": "^
|
|
2159
|
-
"@expo/spawn-async": "^1.
|
|
1900
|
+
"@expo/json-file": "^11.0.1",
|
|
1901
|
+
"@expo/spawn-async": "^1.8.0",
|
|
2160
1902
|
"chalk": "^4.0.0",
|
|
2161
1903
|
"npm-package-arg": "^11.0.0",
|
|
2162
1904
|
"ora": "^3.4.0",
|
|
2163
1905
|
"resolve-workspace-root": "^2.0.0"
|
|
2164
1906
|
}
|
|
2165
1907
|
},
|
|
1908
|
+
"node_modules/@expo/package-manager/node_modules/@expo/json-file": {
|
|
1909
|
+
"version": "11.0.1",
|
|
1910
|
+
"resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-11.0.1.tgz",
|
|
1911
|
+
"integrity": "sha512-zxHWj4MKKMAL29ZQSY/Fssx4Thluk40JmuGNaeS078wy/NhlFhnVi+rHHunulE3xJAJ0CM73m8VK2+GkF9eRwQ==",
|
|
1912
|
+
"license": "MIT",
|
|
1913
|
+
"dependencies": {
|
|
1914
|
+
"@babel/code-frame": "^7.20.0",
|
|
1915
|
+
"json5": "^2.2.3"
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
2166
1918
|
"node_modules/@expo/plist": {
|
|
2167
|
-
"version": "0.4.
|
|
2168
|
-
"resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.4.
|
|
2169
|
-
"integrity": "sha512-
|
|
1919
|
+
"version": "0.4.9",
|
|
1920
|
+
"resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.4.9.tgz",
|
|
1921
|
+
"integrity": "sha512-MPVpmKGfnQEnrCzgxuXcmPP/y/t6AVm+DcSb2Myp21LKWv1N3l8uFxMggesfF4ixAxkRlGmMMx9GyDC9M+XklQ==",
|
|
2170
1922
|
"license": "MIT",
|
|
2171
1923
|
"dependencies": {
|
|
2172
1924
|
"@xmldom/xmldom": "^0.8.8",
|
|
@@ -2175,16 +1927,16 @@
|
|
|
2175
1927
|
}
|
|
2176
1928
|
},
|
|
2177
1929
|
"node_modules/@expo/prebuild-config": {
|
|
2178
|
-
"version": "54.0.
|
|
2179
|
-
"resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-54.0.
|
|
2180
|
-
"integrity": "sha512-
|
|
1930
|
+
"version": "54.0.9",
|
|
1931
|
+
"resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-54.0.9.tgz",
|
|
1932
|
+
"integrity": "sha512-3/Rmyzt8vduPjnSVHbnc0wYFrlhwLWn2g596rDyKcLGeqN2WTLJbzVeznsrUwyzhBNXgnTomZWO5HDzbZ/4E7g==",
|
|
2181
1933
|
"license": "MIT",
|
|
2182
1934
|
"dependencies": {
|
|
2183
|
-
"@expo/config": "~12.0.
|
|
2184
|
-
"@expo/config-plugins": "~54.0.
|
|
1935
|
+
"@expo/config": "~12.0.14",
|
|
1936
|
+
"@expo/config-plugins": "~54.0.5",
|
|
2185
1937
|
"@expo/config-types": "^54.0.10",
|
|
2186
1938
|
"@expo/image-utils": "^0.8.8",
|
|
2187
|
-
"@expo/json-file": "^10.0.
|
|
1939
|
+
"@expo/json-file": "^10.0.16",
|
|
2188
1940
|
"@react-native/normalize-colors": "0.81.5",
|
|
2189
1941
|
"debug": "^4.3.1",
|
|
2190
1942
|
"resolve-from": "^5.0.0",
|
|
@@ -2196,9 +1948,9 @@
|
|
|
2196
1948
|
}
|
|
2197
1949
|
},
|
|
2198
1950
|
"node_modules/@expo/prebuild-config/node_modules/semver": {
|
|
2199
|
-
"version": "7.
|
|
2200
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2201
|
-
"integrity": "sha512-
|
|
1951
|
+
"version": "7.8.5",
|
|
1952
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
1953
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
2202
1954
|
"license": "ISC",
|
|
2203
1955
|
"bin": {
|
|
2204
1956
|
"semver": "bin/semver.js"
|
|
@@ -2208,9 +1960,9 @@
|
|
|
2208
1960
|
}
|
|
2209
1961
|
},
|
|
2210
1962
|
"node_modules/@expo/require-utils": {
|
|
2211
|
-
"version": "55.0.
|
|
2212
|
-
"resolved": "https://registry.npmjs.org/@expo/require-utils/-/require-utils-55.0.
|
|
2213
|
-
"integrity": "sha512-
|
|
1963
|
+
"version": "55.0.6",
|
|
1964
|
+
"resolved": "https://registry.npmjs.org/@expo/require-utils/-/require-utils-55.0.6.tgz",
|
|
1965
|
+
"integrity": "sha512-IqsRGPdGbF0lAIrg3XQ+GzcITYcsskvIRmFAjw2kBnr8RgSrRhFAJY1bKksukEUsuZy0knhTCVIIUce7hocqeA==",
|
|
2214
1966
|
"license": "MIT",
|
|
2215
1967
|
"dependencies": {
|
|
2216
1968
|
"@babel/code-frame": "^7.20.0",
|
|
@@ -2227,9 +1979,9 @@
|
|
|
2227
1979
|
}
|
|
2228
1980
|
},
|
|
2229
1981
|
"node_modules/@expo/schema-utils": {
|
|
2230
|
-
"version": "0.1.
|
|
2231
|
-
"resolved": "https://registry.npmjs.org/@expo/schema-utils/-/schema-utils-0.1.
|
|
2232
|
-
"integrity": "sha512-
|
|
1982
|
+
"version": "0.1.9",
|
|
1983
|
+
"resolved": "https://registry.npmjs.org/@expo/schema-utils/-/schema-utils-0.1.9.tgz",
|
|
1984
|
+
"integrity": "sha512-t9bYwG4Z0yCVzHYJoDMci1OFq2FkBkhStlfUGSkspKYTwB/84+x6sY+CXCgdhkQNQtvWaugW5KUs9YZfAXq9Sg==",
|
|
2233
1985
|
"license": "MIT"
|
|
2234
1986
|
},
|
|
2235
1987
|
"node_modules/@expo/sdk-runtime-versions": {
|
|
@@ -2239,12 +1991,12 @@
|
|
|
2239
1991
|
"license": "MIT"
|
|
2240
1992
|
},
|
|
2241
1993
|
"node_modules/@expo/spawn-async": {
|
|
2242
|
-
"version": "1.
|
|
2243
|
-
"resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.
|
|
2244
|
-
"integrity": "sha512-
|
|
1994
|
+
"version": "1.8.0",
|
|
1995
|
+
"resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.8.0.tgz",
|
|
1996
|
+
"integrity": "sha512-eb9xxd/LbuEGSdua4NumCu/McVB9EM+F/JxB9pWgnERw4HQ9XyTNH1KapG6oqLWR8TuRK2LQfzJlmNi94CVobw==",
|
|
2245
1997
|
"license": "MIT",
|
|
2246
1998
|
"dependencies": {
|
|
2247
|
-
"cross-spawn": "^7.0.
|
|
1999
|
+
"cross-spawn": "^7.0.6"
|
|
2248
2000
|
},
|
|
2249
2001
|
"engines": {
|
|
2250
2002
|
"node": ">=12"
|
|
@@ -2274,9 +2026,9 @@
|
|
|
2274
2026
|
"license": "MIT"
|
|
2275
2027
|
},
|
|
2276
2028
|
"node_modules/@expo/xcpretty": {
|
|
2277
|
-
"version": "4.4.
|
|
2278
|
-
"resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.4.
|
|
2279
|
-
"integrity": "sha512-
|
|
2029
|
+
"version": "4.4.4",
|
|
2030
|
+
"resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.4.4.tgz",
|
|
2031
|
+
"integrity": "sha512-4aQzz9vgxcNXFfo/iyNgDDYfsU5XGKKxWxZopw0cVotHiW+U8IJbIxMaxsINs6bHhtkG3StKNPcOrn3eBuxKPw==",
|
|
2280
2032
|
"license": "BSD-3-Clause",
|
|
2281
2033
|
"dependencies": {
|
|
2282
2034
|
"@babel/code-frame": "^7.20.0",
|
|
@@ -2764,9 +2516,9 @@
|
|
|
2764
2516
|
}
|
|
2765
2517
|
},
|
|
2766
2518
|
"node_modules/@react-native/dev-middleware/node_modules/ws": {
|
|
2767
|
-
"version": "6.2.
|
|
2768
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.
|
|
2769
|
-
"integrity": "sha512-
|
|
2519
|
+
"version": "6.2.6",
|
|
2520
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.6.tgz",
|
|
2521
|
+
"integrity": "sha512-XTrf1gv7kXoVf1hbC3PAyAiPgR8Wz1blcrYIjEsUmr08BLksT41R8KbjmS9408C2ERx7v1JDLD/BkpLEttjfKA==",
|
|
2770
2522
|
"license": "MIT",
|
|
2771
2523
|
"dependencies": {
|
|
2772
2524
|
"async-limiter": "~1.0.0"
|
|
@@ -3370,9 +3122,9 @@
|
|
|
3370
3122
|
}
|
|
3371
3123
|
},
|
|
3372
3124
|
"node_modules/babel-preset-expo": {
|
|
3373
|
-
"version": "54.0.
|
|
3374
|
-
"resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-54.0.
|
|
3375
|
-
"integrity": "sha512-
|
|
3125
|
+
"version": "54.0.12",
|
|
3126
|
+
"resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-54.0.12.tgz",
|
|
3127
|
+
"integrity": "sha512-6xeSkdaixmQhWSYL7tfLu0pOS0BY+8ftwmdNSHtpEFSizrXYZkCjk/B6Dxr+6nwNRihixMcS0aBlWS1wlDl3pw==",
|
|
3376
3128
|
"license": "MIT",
|
|
3377
3129
|
"dependencies": {
|
|
3378
3130
|
"@babel/helper-module-imports": "^7.25.9",
|
|
@@ -3516,9 +3268,9 @@
|
|
|
3516
3268
|
}
|
|
3517
3269
|
},
|
|
3518
3270
|
"node_modules/bplist-parser": {
|
|
3519
|
-
"version": "0.3.
|
|
3520
|
-
"resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.
|
|
3521
|
-
"integrity": "sha512-
|
|
3271
|
+
"version": "0.3.1",
|
|
3272
|
+
"resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz",
|
|
3273
|
+
"integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==",
|
|
3522
3274
|
"license": "MIT",
|
|
3523
3275
|
"dependencies": {
|
|
3524
3276
|
"big-integer": "1.6.x"
|
|
@@ -3528,12 +3280,24 @@
|
|
|
3528
3280
|
}
|
|
3529
3281
|
},
|
|
3530
3282
|
"node_modules/brace-expansion": {
|
|
3531
|
-
"version": "
|
|
3532
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-
|
|
3533
|
-
"integrity": "sha512-
|
|
3283
|
+
"version": "5.0.8",
|
|
3284
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.8.tgz",
|
|
3285
|
+
"integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==",
|
|
3534
3286
|
"license": "MIT",
|
|
3535
3287
|
"dependencies": {
|
|
3536
|
-
"balanced-match": "^
|
|
3288
|
+
"balanced-match": "^4.0.2"
|
|
3289
|
+
},
|
|
3290
|
+
"engines": {
|
|
3291
|
+
"node": "20 || >=22"
|
|
3292
|
+
}
|
|
3293
|
+
},
|
|
3294
|
+
"node_modules/brace-expansion/node_modules/balanced-match": {
|
|
3295
|
+
"version": "4.0.4",
|
|
3296
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
3297
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
3298
|
+
"license": "MIT",
|
|
3299
|
+
"engines": {
|
|
3300
|
+
"node": "18 || 20 || >=22"
|
|
3537
3301
|
}
|
|
3538
3302
|
},
|
|
3539
3303
|
"node_modules/braces": {
|
|
@@ -4150,29 +3914,29 @@
|
|
|
4150
3914
|
}
|
|
4151
3915
|
},
|
|
4152
3916
|
"node_modules/expo": {
|
|
4153
|
-
"version": "54.0.
|
|
4154
|
-
"resolved": "https://registry.npmjs.org/expo/-/expo-54.0.
|
|
4155
|
-
"integrity": "sha512-
|
|
3917
|
+
"version": "54.0.36",
|
|
3918
|
+
"resolved": "https://registry.npmjs.org/expo/-/expo-54.0.36.tgz",
|
|
3919
|
+
"integrity": "sha512-HMHp1H+actmnX85NJE6lILKzSJV6pTDNkwghq9EMOP3zTynjvBYVqJGSLlm6sEVzJCC5Z2ZiKgLvtsHrqlY0dg==",
|
|
4156
3920
|
"license": "MIT",
|
|
4157
3921
|
"dependencies": {
|
|
4158
3922
|
"@babel/runtime": "^7.20.0",
|
|
4159
|
-
"@expo/cli": "54.0.
|
|
4160
|
-
"@expo/config": "~12.0.
|
|
4161
|
-
"@expo/config-plugins": "~54.0.
|
|
3923
|
+
"@expo/cli": "54.0.26",
|
|
3924
|
+
"@expo/config": "~12.0.14",
|
|
3925
|
+
"@expo/config-plugins": "~54.0.5",
|
|
4162
3926
|
"@expo/devtools": "0.1.8",
|
|
4163
|
-
"@expo/fingerprint": "0.15.
|
|
3927
|
+
"@expo/fingerprint": "0.15.5",
|
|
4164
3928
|
"@expo/metro": "~54.2.0",
|
|
4165
|
-
"@expo/metro-config": "54.0.
|
|
3929
|
+
"@expo/metro-config": "54.0.17",
|
|
4166
3930
|
"@expo/vector-icons": "^15.0.3",
|
|
4167
3931
|
"@ungap/structured-clone": "^1.3.0",
|
|
4168
|
-
"babel-preset-expo": "~54.0.
|
|
4169
|
-
"expo-asset": "~12.0.
|
|
3932
|
+
"babel-preset-expo": "~54.0.12",
|
|
3933
|
+
"expo-asset": "~12.0.13",
|
|
4170
3934
|
"expo-constants": "~18.0.13",
|
|
4171
|
-
"expo-file-system": "~19.0.
|
|
4172
|
-
"expo-font": "~14.0.
|
|
3935
|
+
"expo-file-system": "~19.0.23",
|
|
3936
|
+
"expo-font": "~14.0.12",
|
|
4173
3937
|
"expo-keep-awake": "~15.0.8",
|
|
4174
|
-
"expo-modules-autolinking": "3.0.
|
|
4175
|
-
"expo-modules-core": "3.0.
|
|
3938
|
+
"expo-modules-autolinking": "3.0.26",
|
|
3939
|
+
"expo-modules-core": "3.0.30",
|
|
4176
3940
|
"pretty-format": "^29.7.0",
|
|
4177
3941
|
"react-refresh": "^0.14.2",
|
|
4178
3942
|
"whatwg-url-without-unicode": "8.0.0-3"
|
|
@@ -4202,13 +3966,13 @@
|
|
|
4202
3966
|
}
|
|
4203
3967
|
},
|
|
4204
3968
|
"node_modules/expo-asset": {
|
|
4205
|
-
"version": "12.0.
|
|
4206
|
-
"resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-12.0.
|
|
4207
|
-
"integrity": "sha512-
|
|
3969
|
+
"version": "12.0.13",
|
|
3970
|
+
"resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-12.0.13.tgz",
|
|
3971
|
+
"integrity": "sha512-x/p7WvQUnkn6K43b9eL6SPeq5Vnf1E8BDe9bDrWrvMqzyUvJnUFvl+ctg3034s/+UHe7Ne2pAmc0+yzbl8CrDQ==",
|
|
4208
3972
|
"license": "MIT",
|
|
4209
3973
|
"dependencies": {
|
|
4210
3974
|
"@expo/image-utils": "^0.8.8",
|
|
4211
|
-
"expo-constants": "~18.0.
|
|
3975
|
+
"expo-constants": "~18.0.13"
|
|
4212
3976
|
},
|
|
4213
3977
|
"peerDependencies": {
|
|
4214
3978
|
"expo": "*",
|
|
@@ -4319,9 +4083,9 @@
|
|
|
4319
4083
|
}
|
|
4320
4084
|
},
|
|
4321
4085
|
"node_modules/expo-file-system": {
|
|
4322
|
-
"version": "19.0.
|
|
4323
|
-
"resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-19.0.
|
|
4324
|
-
"integrity": "sha512-
|
|
4086
|
+
"version": "19.0.23",
|
|
4087
|
+
"resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-19.0.23.tgz",
|
|
4088
|
+
"integrity": "sha512-MeGkid9OeNILfT/qonaXHp4f2c15xaB28U/bcN7pqZej0Kx0+6+V7e9ZIXpPHm07zVatxA+QkMTPQEGfmvVOxA==",
|
|
4325
4089
|
"license": "MIT",
|
|
4326
4090
|
"peerDependencies": {
|
|
4327
4091
|
"expo": "*",
|
|
@@ -4329,9 +4093,9 @@
|
|
|
4329
4093
|
}
|
|
4330
4094
|
},
|
|
4331
4095
|
"node_modules/expo-font": {
|
|
4332
|
-
"version": "14.0.
|
|
4333
|
-
"resolved": "https://registry.npmjs.org/expo-font/-/expo-font-14.0.
|
|
4334
|
-
"integrity": "sha512-
|
|
4096
|
+
"version": "14.0.12",
|
|
4097
|
+
"resolved": "https://registry.npmjs.org/expo-font/-/expo-font-14.0.12.tgz",
|
|
4098
|
+
"integrity": "sha512-QQzunE2Mxk45AsCWm3tK7OpVljbtVnKD58q4/qliev+cbye1IOduUnRIdD+P7DyButw17G9MTX795kgaQiz5hQ==",
|
|
4335
4099
|
"license": "MIT",
|
|
4336
4100
|
"dependencies": {
|
|
4337
4101
|
"fontfaceobserver": "^2.1.0"
|
|
@@ -4372,9 +4136,9 @@
|
|
|
4372
4136
|
}
|
|
4373
4137
|
},
|
|
4374
4138
|
"node_modules/expo-modules-autolinking": {
|
|
4375
|
-
"version": "3.0.
|
|
4376
|
-
"resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-3.0.
|
|
4377
|
-
"integrity": "sha512-
|
|
4139
|
+
"version": "3.0.26",
|
|
4140
|
+
"resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-3.0.26.tgz",
|
|
4141
|
+
"integrity": "sha512-WOaud6UKg16ciCOj8raKcMOoKFMHLXKI29U29yhgu1lf+Y7VxJyCktUcYo6AM+ccZ7zLD1uWZdMtgnpf+95OXA==",
|
|
4378
4142
|
"license": "MIT",
|
|
4379
4143
|
"dependencies": {
|
|
4380
4144
|
"@expo/spawn-async": "^1.7.2",
|
|
@@ -4388,9 +4152,9 @@
|
|
|
4388
4152
|
}
|
|
4389
4153
|
},
|
|
4390
4154
|
"node_modules/expo-modules-core": {
|
|
4391
|
-
"version": "3.0.
|
|
4392
|
-
"resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-3.0.
|
|
4393
|
-
"integrity": "sha512-
|
|
4155
|
+
"version": "3.0.30",
|
|
4156
|
+
"resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-3.0.30.tgz",
|
|
4157
|
+
"integrity": "sha512-a6IrpAn/Jbmwxi9L+hMmXKpNqnkUpoF7WHOpn02rVLyax2J0gB1vvCVE5rNydplEnt41Q6WxQwvcOjZaIkcSUg==",
|
|
4394
4158
|
"license": "MIT",
|
|
4395
4159
|
"dependencies": {
|
|
4396
4160
|
"invariant": "^2.2.4"
|
|
@@ -4401,9 +4165,9 @@
|
|
|
4401
4165
|
}
|
|
4402
4166
|
},
|
|
4403
4167
|
"node_modules/expo-server": {
|
|
4404
|
-
"version": "1.0.
|
|
4405
|
-
"resolved": "https://registry.npmjs.org/expo-server/-/expo-server-1.0.
|
|
4406
|
-
"integrity": "sha512-
|
|
4168
|
+
"version": "1.0.7",
|
|
4169
|
+
"resolved": "https://registry.npmjs.org/expo-server/-/expo-server-1.0.7.tgz",
|
|
4170
|
+
"integrity": "sha512-mcmyML3oXcqFUXUxtdtCL1O00ztNI2v76d+MdniXRUgHNxIcHZ05zo+DqBaOOT6LQnPk4vA4YHqQl7iGUfRb3g==",
|
|
4407
4171
|
"license": "MIT",
|
|
4408
4172
|
"engines": {
|
|
4409
4173
|
"node": ">=20.16.0"
|
|
@@ -4418,6 +4182,146 @@
|
|
|
4418
4182
|
"expo": "*"
|
|
4419
4183
|
}
|
|
4420
4184
|
},
|
|
4185
|
+
"node_modules/expo/node_modules/@expo/cli": {
|
|
4186
|
+
"version": "54.0.26",
|
|
4187
|
+
"resolved": "https://registry.npmjs.org/@expo/cli/-/cli-54.0.26.tgz",
|
|
4188
|
+
"integrity": "sha512-BjsAoKINLEo3LRE+sDC6FCgjxuOWsyfOFOKz0txrbEcxSatzIjJDVuX8XaTdmeicZdcoN524yl1sfwCWfxhYMw==",
|
|
4189
|
+
"license": "MIT",
|
|
4190
|
+
"dependencies": {
|
|
4191
|
+
"@0no-co/graphql.web": "^1.0.8",
|
|
4192
|
+
"@expo/code-signing-certificates": "^0.0.6",
|
|
4193
|
+
"@expo/config": "~12.0.14",
|
|
4194
|
+
"@expo/config-plugins": "~54.0.5",
|
|
4195
|
+
"@expo/devcert": "^1.2.1",
|
|
4196
|
+
"@expo/env": "~2.0.12",
|
|
4197
|
+
"@expo/image-utils": "^0.8.8",
|
|
4198
|
+
"@expo/json-file": "^10.0.16",
|
|
4199
|
+
"@expo/metro": "~54.2.0",
|
|
4200
|
+
"@expo/metro-config": "~54.0.17",
|
|
4201
|
+
"@expo/osascript": "^2.3.8",
|
|
4202
|
+
"@expo/package-manager": "^1.9.10",
|
|
4203
|
+
"@expo/plist": "^0.4.9",
|
|
4204
|
+
"@expo/prebuild-config": "^54.0.9",
|
|
4205
|
+
"@expo/schema-utils": "^0.1.9",
|
|
4206
|
+
"@expo/spawn-async": "^1.7.2",
|
|
4207
|
+
"@expo/ws-tunnel": "^1.0.1",
|
|
4208
|
+
"@expo/xcpretty": "^4.3.0",
|
|
4209
|
+
"@react-native/dev-middleware": "0.81.5",
|
|
4210
|
+
"@urql/core": "^5.0.6",
|
|
4211
|
+
"@urql/exchange-retry": "^1.3.0",
|
|
4212
|
+
"accepts": "^1.3.8",
|
|
4213
|
+
"arg": "^5.0.2",
|
|
4214
|
+
"better-opn": "~3.0.2",
|
|
4215
|
+
"bplist-creator": "0.1.0",
|
|
4216
|
+
"bplist-parser": "^0.3.1",
|
|
4217
|
+
"chalk": "^4.0.0",
|
|
4218
|
+
"ci-info": "^3.3.0",
|
|
4219
|
+
"compression": "^1.7.4",
|
|
4220
|
+
"connect": "^3.7.0",
|
|
4221
|
+
"debug": "^4.3.4",
|
|
4222
|
+
"env-editor": "^0.4.1",
|
|
4223
|
+
"expo-server": "^1.0.7",
|
|
4224
|
+
"freeport-async": "^2.0.0",
|
|
4225
|
+
"getenv": "^2.0.0",
|
|
4226
|
+
"glob": "^13.0.0",
|
|
4227
|
+
"lan-network": "^0.2.1",
|
|
4228
|
+
"minimatch": "^9.0.0",
|
|
4229
|
+
"node-forge": "^1.3.3",
|
|
4230
|
+
"npm-package-arg": "^11.0.0",
|
|
4231
|
+
"ora": "^3.4.0",
|
|
4232
|
+
"picomatch": "^4.0.3",
|
|
4233
|
+
"pretty-bytes": "^5.6.0",
|
|
4234
|
+
"pretty-format": "^29.7.0",
|
|
4235
|
+
"progress": "^2.0.3",
|
|
4236
|
+
"prompts": "^2.3.2",
|
|
4237
|
+
"qrcode-terminal": "0.11.0",
|
|
4238
|
+
"require-from-string": "^2.0.2",
|
|
4239
|
+
"requireg": "^0.2.2",
|
|
4240
|
+
"resolve": "^1.22.2",
|
|
4241
|
+
"resolve-from": "^5.0.0",
|
|
4242
|
+
"resolve.exports": "^2.0.3",
|
|
4243
|
+
"semver": "^7.6.0",
|
|
4244
|
+
"send": "^0.19.0",
|
|
4245
|
+
"slugify": "^1.3.4",
|
|
4246
|
+
"source-map-support": "~0.5.21",
|
|
4247
|
+
"stacktrace-parser": "^0.1.10",
|
|
4248
|
+
"structured-headers": "^0.4.1",
|
|
4249
|
+
"tar": "^7.5.2",
|
|
4250
|
+
"terminal-link": "^2.1.1",
|
|
4251
|
+
"undici": "^6.18.2",
|
|
4252
|
+
"wrap-ansi": "^7.0.0",
|
|
4253
|
+
"ws": "^8.12.1"
|
|
4254
|
+
},
|
|
4255
|
+
"bin": {
|
|
4256
|
+
"expo-internal": "build/bin/cli"
|
|
4257
|
+
},
|
|
4258
|
+
"peerDependencies": {
|
|
4259
|
+
"expo": "*",
|
|
4260
|
+
"expo-router": "*",
|
|
4261
|
+
"react-native": "*"
|
|
4262
|
+
},
|
|
4263
|
+
"peerDependenciesMeta": {
|
|
4264
|
+
"expo-router": {
|
|
4265
|
+
"optional": true
|
|
4266
|
+
},
|
|
4267
|
+
"react-native": {
|
|
4268
|
+
"optional": true
|
|
4269
|
+
}
|
|
4270
|
+
}
|
|
4271
|
+
},
|
|
4272
|
+
"node_modules/expo/node_modules/@expo/cli/node_modules/minimatch": {
|
|
4273
|
+
"version": "9.0.9",
|
|
4274
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
|
|
4275
|
+
"integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
|
|
4276
|
+
"license": "ISC",
|
|
4277
|
+
"dependencies": {
|
|
4278
|
+
"brace-expansion": "^2.0.2"
|
|
4279
|
+
},
|
|
4280
|
+
"engines": {
|
|
4281
|
+
"node": ">=16 || 14 >=14.17"
|
|
4282
|
+
},
|
|
4283
|
+
"funding": {
|
|
4284
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
4287
|
+
"node_modules/expo/node_modules/brace-expansion": {
|
|
4288
|
+
"version": "2.1.2",
|
|
4289
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.2.tgz",
|
|
4290
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
4291
|
+
"license": "MIT",
|
|
4292
|
+
"dependencies": {
|
|
4293
|
+
"balanced-match": "^1.0.0"
|
|
4294
|
+
}
|
|
4295
|
+
},
|
|
4296
|
+
"node_modules/expo/node_modules/glob": {
|
|
4297
|
+
"version": "13.0.6",
|
|
4298
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
4299
|
+
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
4300
|
+
"license": "BlueOak-1.0.0",
|
|
4301
|
+
"dependencies": {
|
|
4302
|
+
"minimatch": "^10.2.2",
|
|
4303
|
+
"minipass": "^7.1.3",
|
|
4304
|
+
"path-scurry": "^2.0.2"
|
|
4305
|
+
},
|
|
4306
|
+
"engines": {
|
|
4307
|
+
"node": "18 || 20 || >=22"
|
|
4308
|
+
},
|
|
4309
|
+
"funding": {
|
|
4310
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4311
|
+
}
|
|
4312
|
+
},
|
|
4313
|
+
"node_modules/expo/node_modules/semver": {
|
|
4314
|
+
"version": "7.8.5",
|
|
4315
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
4316
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
4317
|
+
"license": "ISC",
|
|
4318
|
+
"bin": {
|
|
4319
|
+
"semver": "bin/semver.js"
|
|
4320
|
+
},
|
|
4321
|
+
"engines": {
|
|
4322
|
+
"node": ">=10"
|
|
4323
|
+
}
|
|
4324
|
+
},
|
|
4421
4325
|
"node_modules/exponential-backoff": {
|
|
4422
4326
|
"version": "3.1.3",
|
|
4423
4327
|
"resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz",
|
|
@@ -4437,9 +4341,9 @@
|
|
|
4437
4341
|
"license": "MIT"
|
|
4438
4342
|
},
|
|
4439
4343
|
"node_modules/fast-uri": {
|
|
4440
|
-
"version": "3.1.
|
|
4441
|
-
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.
|
|
4442
|
-
"integrity": "sha512-
|
|
4344
|
+
"version": "3.1.4",
|
|
4345
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.4.tgz",
|
|
4346
|
+
"integrity": "sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==",
|
|
4443
4347
|
"funding": [
|
|
4444
4348
|
{
|
|
4445
4349
|
"type": "github",
|
|
@@ -4654,9 +4558,9 @@
|
|
|
4654
4558
|
}
|
|
4655
4559
|
},
|
|
4656
4560
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
4657
|
-
"version": "1.1.
|
|
4658
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
4659
|
-
"integrity": "sha512-
|
|
4561
|
+
"version": "1.1.16",
|
|
4562
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.16.tgz",
|
|
4563
|
+
"integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==",
|
|
4660
4564
|
"license": "MIT",
|
|
4661
4565
|
"dependencies": {
|
|
4662
4566
|
"balanced-match": "^1.0.0",
|
|
@@ -5132,9 +5036,9 @@
|
|
|
5132
5036
|
"license": "MIT"
|
|
5133
5037
|
},
|
|
5134
5038
|
"node_modules/js-yaml": {
|
|
5135
|
-
"version": "4.
|
|
5136
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.
|
|
5137
|
-
"integrity": "sha512-
|
|
5039
|
+
"version": "4.3.0",
|
|
5040
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz",
|
|
5041
|
+
"integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==",
|
|
5138
5042
|
"funding": [
|
|
5139
5043
|
{
|
|
5140
5044
|
"type": "github",
|
|
@@ -5211,9 +5115,9 @@
|
|
|
5211
5115
|
}
|
|
5212
5116
|
},
|
|
5213
5117
|
"node_modules/lan-network": {
|
|
5214
|
-
"version": "0.1
|
|
5215
|
-
"resolved": "https://registry.npmjs.org/lan-network/-/lan-network-0.1.
|
|
5216
|
-
"integrity": "sha512-
|
|
5118
|
+
"version": "0.2.1",
|
|
5119
|
+
"resolved": "https://registry.npmjs.org/lan-network/-/lan-network-0.2.1.tgz",
|
|
5120
|
+
"integrity": "sha512-ONPnazC96VKDntab9j9JKwIWhZ4ZUceB4A9Epu4Ssg0hYFmtHZSeQ+n15nIwTFmcBUKtExOer8WTJ4GF9MO64A==",
|
|
5217
5121
|
"license": "MIT",
|
|
5218
5122
|
"bin": {
|
|
5219
5123
|
"lan-network": "dist/lan-network-cli.js"
|
|
@@ -5254,9 +5158,9 @@
|
|
|
5254
5158
|
"license": "MIT"
|
|
5255
5159
|
},
|
|
5256
5160
|
"node_modules/lightningcss": {
|
|
5257
|
-
"version": "1.
|
|
5258
|
-
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.
|
|
5259
|
-
"integrity": "sha512-
|
|
5161
|
+
"version": "1.33.0",
|
|
5162
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.33.0.tgz",
|
|
5163
|
+
"integrity": "sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==",
|
|
5260
5164
|
"license": "MPL-2.0",
|
|
5261
5165
|
"dependencies": {
|
|
5262
5166
|
"detect-libc": "^2.0.3"
|
|
@@ -5269,23 +5173,23 @@
|
|
|
5269
5173
|
"url": "https://opencollective.com/parcel"
|
|
5270
5174
|
},
|
|
5271
5175
|
"optionalDependencies": {
|
|
5272
|
-
"lightningcss-android-arm64": "1.
|
|
5273
|
-
"lightningcss-darwin-arm64": "1.
|
|
5274
|
-
"lightningcss-darwin-x64": "1.
|
|
5275
|
-
"lightningcss-freebsd-x64": "1.
|
|
5276
|
-
"lightningcss-linux-arm-gnueabihf": "1.
|
|
5277
|
-
"lightningcss-linux-arm64-gnu": "1.
|
|
5278
|
-
"lightningcss-linux-arm64-musl": "1.
|
|
5279
|
-
"lightningcss-linux-x64-gnu": "1.
|
|
5280
|
-
"lightningcss-linux-x64-musl": "1.
|
|
5281
|
-
"lightningcss-win32-arm64-msvc": "1.
|
|
5282
|
-
"lightningcss-win32-x64-msvc": "1.
|
|
5176
|
+
"lightningcss-android-arm64": "1.33.0",
|
|
5177
|
+
"lightningcss-darwin-arm64": "1.33.0",
|
|
5178
|
+
"lightningcss-darwin-x64": "1.33.0",
|
|
5179
|
+
"lightningcss-freebsd-x64": "1.33.0",
|
|
5180
|
+
"lightningcss-linux-arm-gnueabihf": "1.33.0",
|
|
5181
|
+
"lightningcss-linux-arm64-gnu": "1.33.0",
|
|
5182
|
+
"lightningcss-linux-arm64-musl": "1.33.0",
|
|
5183
|
+
"lightningcss-linux-x64-gnu": "1.33.0",
|
|
5184
|
+
"lightningcss-linux-x64-musl": "1.33.0",
|
|
5185
|
+
"lightningcss-win32-arm64-msvc": "1.33.0",
|
|
5186
|
+
"lightningcss-win32-x64-msvc": "1.33.0"
|
|
5283
5187
|
}
|
|
5284
5188
|
},
|
|
5285
5189
|
"node_modules/lightningcss-android-arm64": {
|
|
5286
|
-
"version": "1.
|
|
5287
|
-
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.
|
|
5288
|
-
"integrity": "sha512-
|
|
5190
|
+
"version": "1.33.0",
|
|
5191
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz",
|
|
5192
|
+
"integrity": "sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==",
|
|
5289
5193
|
"cpu": [
|
|
5290
5194
|
"arm64"
|
|
5291
5195
|
],
|
|
@@ -5303,9 +5207,9 @@
|
|
|
5303
5207
|
}
|
|
5304
5208
|
},
|
|
5305
5209
|
"node_modules/lightningcss-darwin-arm64": {
|
|
5306
|
-
"version": "1.
|
|
5307
|
-
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.
|
|
5308
|
-
"integrity": "sha512-
|
|
5210
|
+
"version": "1.33.0",
|
|
5211
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz",
|
|
5212
|
+
"integrity": "sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==",
|
|
5309
5213
|
"cpu": [
|
|
5310
5214
|
"arm64"
|
|
5311
5215
|
],
|
|
@@ -5323,9 +5227,9 @@
|
|
|
5323
5227
|
}
|
|
5324
5228
|
},
|
|
5325
5229
|
"node_modules/lightningcss-darwin-x64": {
|
|
5326
|
-
"version": "1.
|
|
5327
|
-
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.
|
|
5328
|
-
"integrity": "sha512-
|
|
5230
|
+
"version": "1.33.0",
|
|
5231
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz",
|
|
5232
|
+
"integrity": "sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==",
|
|
5329
5233
|
"cpu": [
|
|
5330
5234
|
"x64"
|
|
5331
5235
|
],
|
|
@@ -5343,9 +5247,9 @@
|
|
|
5343
5247
|
}
|
|
5344
5248
|
},
|
|
5345
5249
|
"node_modules/lightningcss-freebsd-x64": {
|
|
5346
|
-
"version": "1.
|
|
5347
|
-
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.
|
|
5348
|
-
"integrity": "sha512-
|
|
5250
|
+
"version": "1.33.0",
|
|
5251
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz",
|
|
5252
|
+
"integrity": "sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==",
|
|
5349
5253
|
"cpu": [
|
|
5350
5254
|
"x64"
|
|
5351
5255
|
],
|
|
@@ -5363,9 +5267,9 @@
|
|
|
5363
5267
|
}
|
|
5364
5268
|
},
|
|
5365
5269
|
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
5366
|
-
"version": "1.
|
|
5367
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.
|
|
5368
|
-
"integrity": "sha512-
|
|
5270
|
+
"version": "1.33.0",
|
|
5271
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz",
|
|
5272
|
+
"integrity": "sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==",
|
|
5369
5273
|
"cpu": [
|
|
5370
5274
|
"arm"
|
|
5371
5275
|
],
|
|
@@ -5383,12 +5287,15 @@
|
|
|
5383
5287
|
}
|
|
5384
5288
|
},
|
|
5385
5289
|
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
5386
|
-
"version": "1.
|
|
5387
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.
|
|
5388
|
-
"integrity": "sha512-
|
|
5290
|
+
"version": "1.33.0",
|
|
5291
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz",
|
|
5292
|
+
"integrity": "sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==",
|
|
5389
5293
|
"cpu": [
|
|
5390
5294
|
"arm64"
|
|
5391
5295
|
],
|
|
5296
|
+
"libc": [
|
|
5297
|
+
"glibc"
|
|
5298
|
+
],
|
|
5392
5299
|
"license": "MPL-2.0",
|
|
5393
5300
|
"optional": true,
|
|
5394
5301
|
"os": [
|
|
@@ -5403,12 +5310,15 @@
|
|
|
5403
5310
|
}
|
|
5404
5311
|
},
|
|
5405
5312
|
"node_modules/lightningcss-linux-arm64-musl": {
|
|
5406
|
-
"version": "1.
|
|
5407
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.
|
|
5408
|
-
"integrity": "sha512-
|
|
5313
|
+
"version": "1.33.0",
|
|
5314
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz",
|
|
5315
|
+
"integrity": "sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==",
|
|
5409
5316
|
"cpu": [
|
|
5410
5317
|
"arm64"
|
|
5411
5318
|
],
|
|
5319
|
+
"libc": [
|
|
5320
|
+
"musl"
|
|
5321
|
+
],
|
|
5412
5322
|
"license": "MPL-2.0",
|
|
5413
5323
|
"optional": true,
|
|
5414
5324
|
"os": [
|
|
@@ -5423,12 +5333,15 @@
|
|
|
5423
5333
|
}
|
|
5424
5334
|
},
|
|
5425
5335
|
"node_modules/lightningcss-linux-x64-gnu": {
|
|
5426
|
-
"version": "1.
|
|
5427
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.
|
|
5428
|
-
"integrity": "sha512-
|
|
5336
|
+
"version": "1.33.0",
|
|
5337
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz",
|
|
5338
|
+
"integrity": "sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==",
|
|
5429
5339
|
"cpu": [
|
|
5430
5340
|
"x64"
|
|
5431
5341
|
],
|
|
5342
|
+
"libc": [
|
|
5343
|
+
"glibc"
|
|
5344
|
+
],
|
|
5432
5345
|
"license": "MPL-2.0",
|
|
5433
5346
|
"optional": true,
|
|
5434
5347
|
"os": [
|
|
@@ -5443,12 +5356,15 @@
|
|
|
5443
5356
|
}
|
|
5444
5357
|
},
|
|
5445
5358
|
"node_modules/lightningcss-linux-x64-musl": {
|
|
5446
|
-
"version": "1.
|
|
5447
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.
|
|
5448
|
-
"integrity": "sha512-
|
|
5359
|
+
"version": "1.33.0",
|
|
5360
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz",
|
|
5361
|
+
"integrity": "sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==",
|
|
5449
5362
|
"cpu": [
|
|
5450
5363
|
"x64"
|
|
5451
5364
|
],
|
|
5365
|
+
"libc": [
|
|
5366
|
+
"musl"
|
|
5367
|
+
],
|
|
5452
5368
|
"license": "MPL-2.0",
|
|
5453
5369
|
"optional": true,
|
|
5454
5370
|
"os": [
|
|
@@ -5463,9 +5379,9 @@
|
|
|
5463
5379
|
}
|
|
5464
5380
|
},
|
|
5465
5381
|
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
5466
|
-
"version": "1.
|
|
5467
|
-
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.
|
|
5468
|
-
"integrity": "sha512-
|
|
5382
|
+
"version": "1.33.0",
|
|
5383
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz",
|
|
5384
|
+
"integrity": "sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==",
|
|
5469
5385
|
"cpu": [
|
|
5470
5386
|
"arm64"
|
|
5471
5387
|
],
|
|
@@ -5483,9 +5399,9 @@
|
|
|
5483
5399
|
}
|
|
5484
5400
|
},
|
|
5485
5401
|
"node_modules/lightningcss-win32-x64-msvc": {
|
|
5486
|
-
"version": "1.
|
|
5487
|
-
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.
|
|
5488
|
-
"integrity": "sha512-
|
|
5402
|
+
"version": "1.33.0",
|
|
5403
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz",
|
|
5404
|
+
"integrity": "sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==",
|
|
5489
5405
|
"cpu": [
|
|
5490
5406
|
"x64"
|
|
5491
5407
|
],
|
|
@@ -6054,15 +5970,15 @@
|
|
|
6054
5970
|
}
|
|
6055
5971
|
},
|
|
6056
5972
|
"node_modules/minimatch": {
|
|
6057
|
-
"version": "
|
|
6058
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-
|
|
6059
|
-
"integrity": "sha512-
|
|
6060
|
-
"license": "
|
|
5973
|
+
"version": "10.2.5",
|
|
5974
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
5975
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
5976
|
+
"license": "BlueOak-1.0.0",
|
|
6061
5977
|
"dependencies": {
|
|
6062
|
-
"brace-expansion": "^
|
|
5978
|
+
"brace-expansion": "^5.0.5"
|
|
6063
5979
|
},
|
|
6064
5980
|
"engines": {
|
|
6065
|
-
"node": "
|
|
5981
|
+
"node": "18 || 20 || >=22"
|
|
6066
5982
|
},
|
|
6067
5983
|
"funding": {
|
|
6068
5984
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -6128,9 +6044,9 @@
|
|
|
6128
6044
|
}
|
|
6129
6045
|
},
|
|
6130
6046
|
"node_modules/nanoid": {
|
|
6131
|
-
"version": "3.3.
|
|
6132
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
6133
|
-
"integrity": "sha512-
|
|
6047
|
+
"version": "3.3.16",
|
|
6048
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
6049
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
6134
6050
|
"funding": [
|
|
6135
6051
|
{
|
|
6136
6052
|
"type": "github",
|
|
@@ -6206,9 +6122,9 @@
|
|
|
6206
6122
|
}
|
|
6207
6123
|
},
|
|
6208
6124
|
"node_modules/npm-package-arg/node_modules/semver": {
|
|
6209
|
-
"version": "7.
|
|
6210
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
6211
|
-
"integrity": "sha512-
|
|
6125
|
+
"version": "7.8.5",
|
|
6126
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
6127
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
6212
6128
|
"license": "ISC",
|
|
6213
6129
|
"bin": {
|
|
6214
6130
|
"semver": "bin/semver.js"
|
|
@@ -6500,12 +6416,12 @@
|
|
|
6500
6416
|
"license": "ISC"
|
|
6501
6417
|
},
|
|
6502
6418
|
"node_modules/picomatch": {
|
|
6503
|
-
"version": "
|
|
6504
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-
|
|
6505
|
-
"integrity": "sha512-
|
|
6419
|
+
"version": "4.0.5",
|
|
6420
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
|
|
6421
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
6506
6422
|
"license": "MIT",
|
|
6507
6423
|
"engines": {
|
|
6508
|
-
"node": ">=
|
|
6424
|
+
"node": ">=12"
|
|
6509
6425
|
},
|
|
6510
6426
|
"funding": {
|
|
6511
6427
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
@@ -6521,12 +6437,12 @@
|
|
|
6521
6437
|
}
|
|
6522
6438
|
},
|
|
6523
6439
|
"node_modules/plist": {
|
|
6524
|
-
"version": "3.1.
|
|
6525
|
-
"resolved": "https://registry.npmjs.org/plist/-/plist-3.1.
|
|
6526
|
-
"integrity": "sha512-
|
|
6440
|
+
"version": "3.1.1",
|
|
6441
|
+
"resolved": "https://registry.npmjs.org/plist/-/plist-3.1.1.tgz",
|
|
6442
|
+
"integrity": "sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==",
|
|
6527
6443
|
"license": "MIT",
|
|
6528
6444
|
"dependencies": {
|
|
6529
|
-
"@xmldom/xmldom": "^0.
|
|
6445
|
+
"@xmldom/xmldom": "^0.9.10",
|
|
6530
6446
|
"base64-js": "^1.5.1",
|
|
6531
6447
|
"xmlbuilder": "^15.1.1"
|
|
6532
6448
|
},
|
|
@@ -6534,6 +6450,15 @@
|
|
|
6534
6450
|
"node": ">=10.4.0"
|
|
6535
6451
|
}
|
|
6536
6452
|
},
|
|
6453
|
+
"node_modules/plist/node_modules/@xmldom/xmldom": {
|
|
6454
|
+
"version": "0.9.10",
|
|
6455
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.10.tgz",
|
|
6456
|
+
"integrity": "sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==",
|
|
6457
|
+
"license": "MIT",
|
|
6458
|
+
"engines": {
|
|
6459
|
+
"node": ">=14.6"
|
|
6460
|
+
}
|
|
6461
|
+
},
|
|
6537
6462
|
"node_modules/pngjs": {
|
|
6538
6463
|
"version": "3.4.0",
|
|
6539
6464
|
"resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz",
|
|
@@ -6544,9 +6469,9 @@
|
|
|
6544
6469
|
}
|
|
6545
6470
|
},
|
|
6546
6471
|
"node_modules/postcss": {
|
|
6547
|
-
"version": "8.5.
|
|
6548
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
6549
|
-
"integrity": "sha512-
|
|
6472
|
+
"version": "8.5.22",
|
|
6473
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.22.tgz",
|
|
6474
|
+
"integrity": "sha512-KBDEIpLrvpv16pp3K0Fw+UCoZfopFjjgeB+0tA/aaThfEE74kKDLrgg603YvOWJyg3+WYtyq3xYsQWsIyZlPqQ==",
|
|
6550
6475
|
"funding": [
|
|
6551
6476
|
{
|
|
6552
6477
|
"type": "opencollective",
|
|
@@ -6563,7 +6488,7 @@
|
|
|
6563
6488
|
],
|
|
6564
6489
|
"license": "MIT",
|
|
6565
6490
|
"dependencies": {
|
|
6566
|
-
"nanoid": "^3.3.
|
|
6491
|
+
"nanoid": "^3.3.16",
|
|
6567
6492
|
"picocolors": "^1.1.1",
|
|
6568
6493
|
"source-map-js": "^1.2.1"
|
|
6569
6494
|
},
|
|
@@ -7355,9 +7280,9 @@
|
|
|
7355
7280
|
}
|
|
7356
7281
|
},
|
|
7357
7282
|
"node_modules/shell-quote": {
|
|
7358
|
-
"version": "1.
|
|
7359
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.
|
|
7360
|
-
"integrity": "sha512-
|
|
7283
|
+
"version": "1.10.0",
|
|
7284
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz",
|
|
7285
|
+
"integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==",
|
|
7361
7286
|
"license": "MIT",
|
|
7362
7287
|
"engines": {
|
|
7363
7288
|
"node": ">= 0.4"
|
|
@@ -7383,18 +7308,6 @@
|
|
|
7383
7308
|
"plist": "^3.0.5"
|
|
7384
7309
|
}
|
|
7385
7310
|
},
|
|
7386
|
-
"node_modules/simple-plist/node_modules/bplist-parser": {
|
|
7387
|
-
"version": "0.3.1",
|
|
7388
|
-
"resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz",
|
|
7389
|
-
"integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==",
|
|
7390
|
-
"license": "MIT",
|
|
7391
|
-
"dependencies": {
|
|
7392
|
-
"big-integer": "1.6.x"
|
|
7393
|
-
},
|
|
7394
|
-
"engines": {
|
|
7395
|
-
"node": ">= 5.10.0"
|
|
7396
|
-
}
|
|
7397
|
-
},
|
|
7398
7311
|
"node_modules/sisteransi": {
|
|
7399
7312
|
"version": "1.0.5",
|
|
7400
7313
|
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
|
|
@@ -7644,9 +7557,9 @@
|
|
|
7644
7557
|
}
|
|
7645
7558
|
},
|
|
7646
7559
|
"node_modules/tar": {
|
|
7647
|
-
"version": "7.5.
|
|
7648
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
7649
|
-
"integrity": "sha512-
|
|
7560
|
+
"version": "7.5.21",
|
|
7561
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.21.tgz",
|
|
7562
|
+
"integrity": "sha512-XdhtCvlMywwxpCW8YEq3lOXBJpUPTR2OHHcwLPO3HwsJqOHa2Ok/oJ7ruGzp+JrKoRPVCzJwAdEjqLW/vNRPHA==",
|
|
7650
7563
|
"license": "BlueOak-1.0.0",
|
|
7651
7564
|
"dependencies": {
|
|
7652
7565
|
"@isaacs/fs-minipass": "^4.0.0",
|
|
@@ -7723,9 +7636,9 @@
|
|
|
7723
7636
|
}
|
|
7724
7637
|
},
|
|
7725
7638
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
7726
|
-
"version": "1.1.
|
|
7727
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
7728
|
-
"integrity": "sha512-
|
|
7639
|
+
"version": "1.1.16",
|
|
7640
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.16.tgz",
|
|
7641
|
+
"integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==",
|
|
7729
7642
|
"license": "MIT",
|
|
7730
7643
|
"dependencies": {
|
|
7731
7644
|
"balanced-match": "^1.0.0",
|
|
@@ -7787,18 +7700,6 @@
|
|
|
7787
7700
|
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
7788
7701
|
}
|
|
7789
7702
|
},
|
|
7790
|
-
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
7791
|
-
"version": "4.0.4",
|
|
7792
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
7793
|
-
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
7794
|
-
"license": "MIT",
|
|
7795
|
-
"engines": {
|
|
7796
|
-
"node": ">=12"
|
|
7797
|
-
},
|
|
7798
|
-
"funding": {
|
|
7799
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
7800
|
-
}
|
|
7801
|
-
},
|
|
7802
7703
|
"node_modules/tmpl": {
|
|
7803
7704
|
"version": "1.0.5",
|
|
7804
7705
|
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
|
|
@@ -7982,9 +7883,9 @@
|
|
|
7982
7883
|
}
|
|
7983
7884
|
},
|
|
7984
7885
|
"node_modules/uuid": {
|
|
7985
|
-
"version": "14.0.
|
|
7986
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.
|
|
7987
|
-
"integrity": "sha512-
|
|
7886
|
+
"version": "14.0.1",
|
|
7887
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.1.tgz",
|
|
7888
|
+
"integrity": "sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==",
|
|
7988
7889
|
"funding": [
|
|
7989
7890
|
"https://github.com/sponsors/broofa",
|
|
7990
7891
|
"https://github.com/sponsors/ctavan"
|
|
@@ -8135,9 +8036,9 @@
|
|
|
8135
8036
|
}
|
|
8136
8037
|
},
|
|
8137
8038
|
"node_modules/ws": {
|
|
8138
|
-
"version": "8.21.
|
|
8139
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.
|
|
8140
|
-
"integrity": "sha512
|
|
8039
|
+
"version": "8.21.1",
|
|
8040
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.1.tgz",
|
|
8041
|
+
"integrity": "sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw==",
|
|
8141
8042
|
"license": "MIT",
|
|
8142
8043
|
"engines": {
|
|
8143
8044
|
"node": ">=10.0.0"
|