agent-scenario-loop 0.1.0
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/LICENSE +21 -0
- package/README.md +119 -0
- package/app/profile-session.ts +812 -0
- package/core/config-template.json +41 -0
- package/dist/core/agent-summary.d.ts +15 -0
- package/dist/core/agent-summary.js +177 -0
- package/dist/core/artifact-contract.d.ts +151 -0
- package/dist/core/artifact-contract.js +897 -0
- package/dist/core/artifact-layout.d.ts +56 -0
- package/dist/core/artifact-layout.js +61 -0
- package/dist/core/artifact-writer.d.ts +44 -0
- package/dist/core/artifact-writer.js +55 -0
- package/dist/core/comparison.d.ts +133 -0
- package/dist/core/comparison.js +294 -0
- package/dist/core/evidence-interpreter.d.ts +28 -0
- package/dist/core/evidence-interpreter.js +69 -0
- package/dist/core/execution-plan.d.ts +44 -0
- package/dist/core/execution-plan.js +95 -0
- package/dist/core/planner.d.ts +132 -0
- package/dist/core/planner.js +812 -0
- package/dist/core/ports.d.ts +198 -0
- package/dist/core/ports.js +146 -0
- package/dist/core/run-index.d.ts +62 -0
- package/dist/core/run-index.js +143 -0
- package/dist/core/schema-validator.d.ts +86 -0
- package/dist/core/schema-validator.js +407 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +27 -0
- package/dist/runner/agent-device-driver.d.ts +126 -0
- package/dist/runner/agent-device-driver.js +168 -0
- package/dist/runner/agent-device.d.ts +295 -0
- package/dist/runner/agent-device.js +1271 -0
- package/dist/runner/android-adb-driver.d.ts +175 -0
- package/dist/runner/android-adb-driver.js +399 -0
- package/dist/runner/android-adb.d.ts +254 -0
- package/dist/runner/android-adb.js +1618 -0
- package/dist/runner/argent-driver.d.ts +183 -0
- package/dist/runner/argent-driver.js +297 -0
- package/dist/runner/argent.d.ts +349 -0
- package/dist/runner/argent.js +1211 -0
- package/dist/runner/check-plan.d.ts +45 -0
- package/dist/runner/check-plan.js +210 -0
- package/dist/runner/cli.d.ts +20 -0
- package/dist/runner/cli.js +23 -0
- package/dist/runner/compare-latest.d.ts +99 -0
- package/dist/runner/compare-latest.js +233 -0
- package/dist/runner/compare.d.ts +58 -0
- package/dist/runner/compare.js +157 -0
- package/dist/runner/demo-loop.d.ts +45 -0
- package/dist/runner/demo-loop.js +170 -0
- package/dist/runner/example-android-live.d.ts +137 -0
- package/dist/runner/example-android-live.js +454 -0
- package/dist/runner/example-ios-live.d.ts +137 -0
- package/dist/runner/example-ios-live.js +471 -0
- package/dist/runner/host-doctor.d.ts +131 -0
- package/dist/runner/host-doctor.js +628 -0
- package/dist/runner/init-project.d.ts +88 -0
- package/dist/runner/init-project.js +263 -0
- package/dist/runner/ios-simctl-driver.d.ts +69 -0
- package/dist/runner/ios-simctl-driver.js +97 -0
- package/dist/runner/ios-simctl.d.ts +254 -0
- package/dist/runner/ios-simctl.js +1415 -0
- package/dist/runner/live-android.d.ts +137 -0
- package/dist/runner/live-android.js +539 -0
- package/dist/runner/live-comparison.d.ts +67 -0
- package/dist/runner/live-comparison.js +147 -0
- package/dist/runner/live-ios.d.ts +137 -0
- package/dist/runner/live-ios.js +460 -0
- package/dist/runner/live-proof-summary.d.ts +263 -0
- package/dist/runner/live-proof-summary.js +465 -0
- package/dist/runner/live-proof.d.ts +467 -0
- package/dist/runner/live-proof.js +920 -0
- package/dist/runner/local-env.d.ts +64 -0
- package/dist/runner/local-env.js +155 -0
- package/dist/runner/profile-android.d.ts +82 -0
- package/dist/runner/profile-android.js +671 -0
- package/dist/runner/profile-ios.d.ts +108 -0
- package/dist/runner/profile-ios.js +532 -0
- package/dist/runner/profile-mobile.d.ts +254 -0
- package/dist/runner/profile-mobile.js +1307 -0
- package/dist/runner/validate-project.d.ts +273 -0
- package/dist/runner/validate-project.js +1501 -0
- package/docs/adapters.md +145 -0
- package/docs/api.md +94 -0
- package/docs/authoring.md +196 -0
- package/docs/concepts.md +136 -0
- package/docs/consumer-rehearsal.md +115 -0
- package/docs/contracts.md +267 -0
- package/docs/live-proofs.md +270 -0
- package/docs/principles.md +46 -0
- package/examples/event-logs/app-startup-baseline.log +4 -0
- package/examples/event-logs/app-startup-current.log +4 -0
- package/examples/minimal-app/README.md +70 -0
- package/examples/mobile-app/README.md +302 -0
- package/examples/mobile-app/app.json +22 -0
- package/examples/mobile-app/asl/package-scripts.json +32 -0
- package/examples/mobile-app/asl.config.json +37 -0
- package/examples/mobile-app/event-logs/android-app-startup.log +4 -0
- package/examples/mobile-app/event-logs/android-open-close-cycle.log +12 -0
- package/examples/mobile-app/event-logs/android-scroll-settle.log +12 -0
- package/examples/mobile-app/event-logs/app-startup.log +4 -0
- package/examples/mobile-app/event-logs/open-close-cycle.log +12 -0
- package/examples/mobile-app/event-logs/scroll-settle.log +12 -0
- package/examples/mobile-app/index.ts +20 -0
- package/examples/mobile-app/metro.config.js +20 -0
- package/examples/mobile-app/package.json +62 -0
- package/examples/mobile-app/patches/expo-modules-jsi@56.0.10.patch +19 -0
- package/examples/mobile-app/plugins/with-ios-build-compat.js +271 -0
- package/examples/mobile-app/pnpm-lock.yaml +4440 -0
- package/examples/mobile-app/runner-manifests/evidence-provider.json +79 -0
- package/examples/mobile-app/runner-manifests/primary-runner.json +19 -0
- package/examples/mobile-app/scenarios/android/app-startup-video.json +73 -0
- package/examples/mobile-app/scenarios/android/app-startup.json +44 -0
- package/examples/mobile-app/scenarios/android/open-close-cycle.json +54 -0
- package/examples/mobile-app/scenarios/android/scroll-settle.json +49 -0
- package/examples/mobile-app/scenarios/ios/app-startup.json +44 -0
- package/examples/mobile-app/scenarios/ios/open-close-cycle.json +54 -0
- package/examples/mobile-app/scenarios/ios/scroll-settle.json +49 -0
- package/examples/mobile-app/scenarios/mobile/app-startup.json +91 -0
- package/examples/mobile-app/scenarios/mobile/open-close-cycle.json +160 -0
- package/examples/mobile-app/scenarios/mobile/scroll-settle.json +148 -0
- package/examples/mobile-app/scripts/asl-capture-accessibility-provider.mjs +112 -0
- package/examples/mobile-app/scripts/asl-capture-profiler-provider.mjs +127 -0
- package/examples/mobile-app/src/devtools/profile-session.ts +7 -0
- package/examples/mobile-app/src/example-screen.tsx +322 -0
- package/examples/mobile-app/tsconfig.json +16 -0
- package/examples/mobile-app/tsconfig.typecheck.json +13 -0
- package/examples/runners/README.md +44 -0
- package/examples/runners/adb-android.json +25 -0
- package/examples/runners/agent-device-android.json +27 -0
- package/examples/runners/agent-device-ios.json +27 -0
- package/examples/runners/argent-android.json +32 -0
- package/examples/runners/argent-ios.json +32 -0
- package/examples/runners/argent-react-profiler-provider.json +15 -0
- package/examples/runners/axe-accessibility-provider.json +24 -0
- package/examples/runners/manual-log-ingest.json +9 -0
- package/examples/runners/rozenite-profiler-provider.json +9 -0
- package/examples/runners/script-accessibility-provider.json +24 -0
- package/examples/runners/script-memory-provider.json +24 -0
- package/examples/runners/script-network-provider.json +24 -0
- package/examples/runners/script-profiler-provider.json +30 -0
- package/examples/runners/xcodebuildmcp-ios.json +29 -0
- package/examples/scenarios/ios/app-startup.json +28 -0
- package/examples/scenarios/ios/open-close-cycle.json +35 -0
- package/examples/scenarios/mobile/app-startup.json +72 -0
- package/examples/scenarios/mobile/media-open-close.json +141 -0
- package/examples/scenarios/mobile/open-close-cycle.json +135 -0
- package/examples/scenarios/mobile/scroll-settle.json +106 -0
- package/package.json +240 -0
- package/schemas/budget-verdict.schema.json +115 -0
- package/schemas/causal-run.schema.json +279 -0
- package/schemas/comparison.schema.json +196 -0
- package/schemas/health.schema.json +108 -0
- package/schemas/live-proof-set.schema.json +195 -0
- package/schemas/live-proof.schema.json +413 -0
- package/schemas/manifest.schema.json +204 -0
- package/schemas/metrics.schema.json +137 -0
- package/schemas/project-validation.schema.json +343 -0
- package/schemas/runner-capabilities.schema.json +217 -0
- package/schemas/scenario.schema.json +400 -0
- package/schemas/verdict.schema.json +88 -0
- package/templates/evidence-provider.json +83 -0
- package/templates/gitignore-snippet +9 -0
- package/templates/integration-readme.md +125 -0
- package/templates/mobile-scenario.json +133 -0
- package/templates/package-scripts.json +32 -0
- package/templates/primary-runner.json +19 -0
- package/templates/project.config.json +37 -0
- package/templates/scripts/asl-capture-accessibility-provider.mjs +112 -0
- package/templates/scripts/asl-capture-profiler-provider.mjs +127 -0
|
@@ -0,0 +1,4440 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: false
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
patchedDependencies:
|
|
8
|
+
expo-modules-jsi@56.0.10:
|
|
9
|
+
hash: 64ff6688bca5b2a650d1a66ccb632958da0618afc616418efc828178203b9b96
|
|
10
|
+
path: patches/expo-modules-jsi@56.0.10.patch
|
|
11
|
+
|
|
12
|
+
importers:
|
|
13
|
+
|
|
14
|
+
.:
|
|
15
|
+
dependencies:
|
|
16
|
+
'@expo/metro-runtime':
|
|
17
|
+
specifier: 56.0.15
|
|
18
|
+
version: 56.0.15(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
19
|
+
'@react-native-async-storage/async-storage':
|
|
20
|
+
specifier: 2.2.0
|
|
21
|
+
version: 2.2.0(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
22
|
+
expo:
|
|
23
|
+
specifier: ^56.0.11
|
|
24
|
+
version: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
25
|
+
expo-linking:
|
|
26
|
+
specifier: ~56.0.14
|
|
27
|
+
version: 56.0.14(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
28
|
+
react:
|
|
29
|
+
specifier: 19.2.3
|
|
30
|
+
version: 19.2.3
|
|
31
|
+
react-native:
|
|
32
|
+
specifier: 0.85.3
|
|
33
|
+
version: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
34
|
+
react-native-gesture-handler:
|
|
35
|
+
specifier: ~2.31.2
|
|
36
|
+
version: 2.31.2(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
37
|
+
react-native-safe-area-context:
|
|
38
|
+
specifier: ~5.7.0
|
|
39
|
+
version: 5.7.0(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
40
|
+
devDependencies:
|
|
41
|
+
'@types/react':
|
|
42
|
+
specifier: ~19.2.14
|
|
43
|
+
version: 19.2.17
|
|
44
|
+
typescript:
|
|
45
|
+
specifier: ~6.0.3
|
|
46
|
+
version: 6.0.3
|
|
47
|
+
|
|
48
|
+
packages:
|
|
49
|
+
|
|
50
|
+
'@babel/code-frame@7.29.7':
|
|
51
|
+
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
|
|
52
|
+
engines: {node: '>=6.9.0'}
|
|
53
|
+
|
|
54
|
+
'@babel/compat-data@7.29.7':
|
|
55
|
+
resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
|
|
56
|
+
engines: {node: '>=6.9.0'}
|
|
57
|
+
|
|
58
|
+
'@babel/core@7.29.7':
|
|
59
|
+
resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
|
|
60
|
+
engines: {node: '>=6.9.0'}
|
|
61
|
+
|
|
62
|
+
'@babel/generator@7.29.7':
|
|
63
|
+
resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
|
|
64
|
+
engines: {node: '>=6.9.0'}
|
|
65
|
+
|
|
66
|
+
'@babel/helper-annotate-as-pure@7.29.7':
|
|
67
|
+
resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==}
|
|
68
|
+
engines: {node: '>=6.9.0'}
|
|
69
|
+
|
|
70
|
+
'@babel/helper-compilation-targets@7.29.7':
|
|
71
|
+
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
|
|
72
|
+
engines: {node: '>=6.9.0'}
|
|
73
|
+
|
|
74
|
+
'@babel/helper-create-class-features-plugin@7.29.7':
|
|
75
|
+
resolution: {integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==}
|
|
76
|
+
engines: {node: '>=6.9.0'}
|
|
77
|
+
peerDependencies:
|
|
78
|
+
'@babel/core': ^7.0.0
|
|
79
|
+
|
|
80
|
+
'@babel/helper-create-regexp-features-plugin@7.29.7':
|
|
81
|
+
resolution: {integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==}
|
|
82
|
+
engines: {node: '>=6.9.0'}
|
|
83
|
+
peerDependencies:
|
|
84
|
+
'@babel/core': ^7.0.0
|
|
85
|
+
|
|
86
|
+
'@babel/helper-define-polyfill-provider@0.6.8':
|
|
87
|
+
resolution: {integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==}
|
|
88
|
+
peerDependencies:
|
|
89
|
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
90
|
+
|
|
91
|
+
'@babel/helper-globals@7.29.7':
|
|
92
|
+
resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
|
|
93
|
+
engines: {node: '>=6.9.0'}
|
|
94
|
+
|
|
95
|
+
'@babel/helper-member-expression-to-functions@7.29.7':
|
|
96
|
+
resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==}
|
|
97
|
+
engines: {node: '>=6.9.0'}
|
|
98
|
+
|
|
99
|
+
'@babel/helper-module-imports@7.29.7':
|
|
100
|
+
resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
|
|
101
|
+
engines: {node: '>=6.9.0'}
|
|
102
|
+
|
|
103
|
+
'@babel/helper-module-transforms@7.29.7':
|
|
104
|
+
resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
|
|
105
|
+
engines: {node: '>=6.9.0'}
|
|
106
|
+
peerDependencies:
|
|
107
|
+
'@babel/core': ^7.0.0
|
|
108
|
+
|
|
109
|
+
'@babel/helper-optimise-call-expression@7.29.7':
|
|
110
|
+
resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==}
|
|
111
|
+
engines: {node: '>=6.9.0'}
|
|
112
|
+
|
|
113
|
+
'@babel/helper-plugin-utils@7.29.7':
|
|
114
|
+
resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
|
|
115
|
+
engines: {node: '>=6.9.0'}
|
|
116
|
+
|
|
117
|
+
'@babel/helper-remap-async-to-generator@7.29.7':
|
|
118
|
+
resolution: {integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==}
|
|
119
|
+
engines: {node: '>=6.9.0'}
|
|
120
|
+
peerDependencies:
|
|
121
|
+
'@babel/core': ^7.0.0
|
|
122
|
+
|
|
123
|
+
'@babel/helper-replace-supers@7.29.7':
|
|
124
|
+
resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==}
|
|
125
|
+
engines: {node: '>=6.9.0'}
|
|
126
|
+
peerDependencies:
|
|
127
|
+
'@babel/core': ^7.0.0
|
|
128
|
+
|
|
129
|
+
'@babel/helper-skip-transparent-expression-wrappers@7.29.7':
|
|
130
|
+
resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==}
|
|
131
|
+
engines: {node: '>=6.9.0'}
|
|
132
|
+
|
|
133
|
+
'@babel/helper-string-parser@7.29.7':
|
|
134
|
+
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
135
|
+
engines: {node: '>=6.9.0'}
|
|
136
|
+
|
|
137
|
+
'@babel/helper-validator-identifier@7.29.7':
|
|
138
|
+
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
|
|
139
|
+
engines: {node: '>=6.9.0'}
|
|
140
|
+
|
|
141
|
+
'@babel/helper-validator-option@7.29.7':
|
|
142
|
+
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
|
|
143
|
+
engines: {node: '>=6.9.0'}
|
|
144
|
+
|
|
145
|
+
'@babel/helper-wrap-function@7.29.7':
|
|
146
|
+
resolution: {integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==}
|
|
147
|
+
engines: {node: '>=6.9.0'}
|
|
148
|
+
|
|
149
|
+
'@babel/helpers@7.29.7':
|
|
150
|
+
resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
|
|
151
|
+
engines: {node: '>=6.9.0'}
|
|
152
|
+
|
|
153
|
+
'@babel/parser@7.29.7':
|
|
154
|
+
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
|
|
155
|
+
engines: {node: '>=6.0.0'}
|
|
156
|
+
hasBin: true
|
|
157
|
+
|
|
158
|
+
'@babel/plugin-proposal-decorators@7.29.7':
|
|
159
|
+
resolution: {integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==}
|
|
160
|
+
engines: {node: '>=6.9.0'}
|
|
161
|
+
peerDependencies:
|
|
162
|
+
'@babel/core': ^7.0.0-0
|
|
163
|
+
|
|
164
|
+
'@babel/plugin-proposal-export-default-from@7.29.7':
|
|
165
|
+
resolution: {integrity: sha512-p+G5BNXDcy3bOXplhY4HybQ1GxH3i2Tppmdm/3epyRu2VgJJZuUlZ61MqRTg582Q7ZLBdP7fePYvsumSEkMxcQ==}
|
|
166
|
+
engines: {node: '>=6.9.0'}
|
|
167
|
+
peerDependencies:
|
|
168
|
+
'@babel/core': ^7.0.0-0
|
|
169
|
+
|
|
170
|
+
'@babel/plugin-syntax-decorators@7.29.7':
|
|
171
|
+
resolution: {integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==}
|
|
172
|
+
engines: {node: '>=6.9.0'}
|
|
173
|
+
peerDependencies:
|
|
174
|
+
'@babel/core': ^7.0.0-0
|
|
175
|
+
|
|
176
|
+
'@babel/plugin-syntax-dynamic-import@7.8.3':
|
|
177
|
+
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
|
|
178
|
+
peerDependencies:
|
|
179
|
+
'@babel/core': ^7.0.0-0
|
|
180
|
+
|
|
181
|
+
'@babel/plugin-syntax-export-default-from@7.29.7':
|
|
182
|
+
resolution: {integrity: sha512-foag0BB37ROhdeIX9O8G0jX7hw0UekJc04cHMrYLOnrErsnBKqJGHJ8eDRpoCFZBvEPPygmmtw4qyU97qa4oOw==}
|
|
183
|
+
engines: {node: '>=6.9.0'}
|
|
184
|
+
peerDependencies:
|
|
185
|
+
'@babel/core': ^7.0.0-0
|
|
186
|
+
|
|
187
|
+
'@babel/plugin-syntax-flow@7.29.7':
|
|
188
|
+
resolution: {integrity: sha512-ajMX6QPcyomotqwpzhkYGxcK2i/us0rs1Qo9QvUpa+Fca0FTmqrzKrctoIYLMxcOhGZldGT/BAVkRGTWBiR8gQ==}
|
|
189
|
+
engines: {node: '>=6.9.0'}
|
|
190
|
+
peerDependencies:
|
|
191
|
+
'@babel/core': ^7.0.0-0
|
|
192
|
+
|
|
193
|
+
'@babel/plugin-syntax-jsx@7.29.7':
|
|
194
|
+
resolution: {integrity: sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==}
|
|
195
|
+
engines: {node: '>=6.9.0'}
|
|
196
|
+
peerDependencies:
|
|
197
|
+
'@babel/core': ^7.0.0-0
|
|
198
|
+
|
|
199
|
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
|
|
200
|
+
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
|
|
201
|
+
peerDependencies:
|
|
202
|
+
'@babel/core': ^7.0.0-0
|
|
203
|
+
|
|
204
|
+
'@babel/plugin-syntax-optional-chaining@7.8.3':
|
|
205
|
+
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
|
|
206
|
+
peerDependencies:
|
|
207
|
+
'@babel/core': ^7.0.0-0
|
|
208
|
+
|
|
209
|
+
'@babel/plugin-syntax-typescript@7.29.7':
|
|
210
|
+
resolution: {integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==}
|
|
211
|
+
engines: {node: '>=6.9.0'}
|
|
212
|
+
peerDependencies:
|
|
213
|
+
'@babel/core': ^7.0.0-0
|
|
214
|
+
|
|
215
|
+
'@babel/plugin-transform-async-generator-functions@7.29.7':
|
|
216
|
+
resolution: {integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==}
|
|
217
|
+
engines: {node: '>=6.9.0'}
|
|
218
|
+
peerDependencies:
|
|
219
|
+
'@babel/core': ^7.0.0-0
|
|
220
|
+
|
|
221
|
+
'@babel/plugin-transform-async-to-generator@7.29.7':
|
|
222
|
+
resolution: {integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==}
|
|
223
|
+
engines: {node: '>=6.9.0'}
|
|
224
|
+
peerDependencies:
|
|
225
|
+
'@babel/core': ^7.0.0-0
|
|
226
|
+
|
|
227
|
+
'@babel/plugin-transform-block-scoping@7.29.7':
|
|
228
|
+
resolution: {integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==}
|
|
229
|
+
engines: {node: '>=6.9.0'}
|
|
230
|
+
peerDependencies:
|
|
231
|
+
'@babel/core': ^7.0.0-0
|
|
232
|
+
|
|
233
|
+
'@babel/plugin-transform-class-properties@7.29.7':
|
|
234
|
+
resolution: {integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==}
|
|
235
|
+
engines: {node: '>=6.9.0'}
|
|
236
|
+
peerDependencies:
|
|
237
|
+
'@babel/core': ^7.0.0-0
|
|
238
|
+
|
|
239
|
+
'@babel/plugin-transform-class-static-block@7.29.7':
|
|
240
|
+
resolution: {integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==}
|
|
241
|
+
engines: {node: '>=6.9.0'}
|
|
242
|
+
peerDependencies:
|
|
243
|
+
'@babel/core': ^7.12.0
|
|
244
|
+
|
|
245
|
+
'@babel/plugin-transform-classes@7.29.7':
|
|
246
|
+
resolution: {integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==}
|
|
247
|
+
engines: {node: '>=6.9.0'}
|
|
248
|
+
peerDependencies:
|
|
249
|
+
'@babel/core': ^7.0.0-0
|
|
250
|
+
|
|
251
|
+
'@babel/plugin-transform-destructuring@7.29.7':
|
|
252
|
+
resolution: {integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==}
|
|
253
|
+
engines: {node: '>=6.9.0'}
|
|
254
|
+
peerDependencies:
|
|
255
|
+
'@babel/core': ^7.0.0-0
|
|
256
|
+
|
|
257
|
+
'@babel/plugin-transform-export-namespace-from@7.29.7':
|
|
258
|
+
resolution: {integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==}
|
|
259
|
+
engines: {node: '>=6.9.0'}
|
|
260
|
+
peerDependencies:
|
|
261
|
+
'@babel/core': ^7.0.0-0
|
|
262
|
+
|
|
263
|
+
'@babel/plugin-transform-flow-strip-types@7.29.7':
|
|
264
|
+
resolution: {integrity: sha512-wRHeUjUjCZnMHmiO5bRgjFLcoEh7JyTdByOW11ahhwNa4V0bmeGEaIvt51yq0zQp2yWIpqfxXXPyUP6GFJZHOQ==}
|
|
265
|
+
engines: {node: '>=6.9.0'}
|
|
266
|
+
peerDependencies:
|
|
267
|
+
'@babel/core': ^7.0.0-0
|
|
268
|
+
|
|
269
|
+
'@babel/plugin-transform-for-of@7.29.7':
|
|
270
|
+
resolution: {integrity: sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==}
|
|
271
|
+
engines: {node: '>=6.9.0'}
|
|
272
|
+
peerDependencies:
|
|
273
|
+
'@babel/core': ^7.0.0-0
|
|
274
|
+
|
|
275
|
+
'@babel/plugin-transform-logical-assignment-operators@7.29.7':
|
|
276
|
+
resolution: {integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==}
|
|
277
|
+
engines: {node: '>=6.9.0'}
|
|
278
|
+
peerDependencies:
|
|
279
|
+
'@babel/core': ^7.0.0-0
|
|
280
|
+
|
|
281
|
+
'@babel/plugin-transform-modules-commonjs@7.29.7':
|
|
282
|
+
resolution: {integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==}
|
|
283
|
+
engines: {node: '>=6.9.0'}
|
|
284
|
+
peerDependencies:
|
|
285
|
+
'@babel/core': ^7.0.0-0
|
|
286
|
+
|
|
287
|
+
'@babel/plugin-transform-named-capturing-groups-regex@7.29.7':
|
|
288
|
+
resolution: {integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==}
|
|
289
|
+
engines: {node: '>=6.9.0'}
|
|
290
|
+
peerDependencies:
|
|
291
|
+
'@babel/core': ^7.0.0
|
|
292
|
+
|
|
293
|
+
'@babel/plugin-transform-nullish-coalescing-operator@7.29.7':
|
|
294
|
+
resolution: {integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==}
|
|
295
|
+
engines: {node: '>=6.9.0'}
|
|
296
|
+
peerDependencies:
|
|
297
|
+
'@babel/core': ^7.0.0-0
|
|
298
|
+
|
|
299
|
+
'@babel/plugin-transform-object-rest-spread@7.29.7':
|
|
300
|
+
resolution: {integrity: sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==}
|
|
301
|
+
engines: {node: '>=6.9.0'}
|
|
302
|
+
peerDependencies:
|
|
303
|
+
'@babel/core': ^7.0.0-0
|
|
304
|
+
|
|
305
|
+
'@babel/plugin-transform-optional-catch-binding@7.29.7':
|
|
306
|
+
resolution: {integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==}
|
|
307
|
+
engines: {node: '>=6.9.0'}
|
|
308
|
+
peerDependencies:
|
|
309
|
+
'@babel/core': ^7.0.0-0
|
|
310
|
+
|
|
311
|
+
'@babel/plugin-transform-optional-chaining@7.29.7':
|
|
312
|
+
resolution: {integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==}
|
|
313
|
+
engines: {node: '>=6.9.0'}
|
|
314
|
+
peerDependencies:
|
|
315
|
+
'@babel/core': ^7.0.0-0
|
|
316
|
+
|
|
317
|
+
'@babel/plugin-transform-parameters@7.29.7':
|
|
318
|
+
resolution: {integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==}
|
|
319
|
+
engines: {node: '>=6.9.0'}
|
|
320
|
+
peerDependencies:
|
|
321
|
+
'@babel/core': ^7.0.0-0
|
|
322
|
+
|
|
323
|
+
'@babel/plugin-transform-private-methods@7.29.7':
|
|
324
|
+
resolution: {integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==}
|
|
325
|
+
engines: {node: '>=6.9.0'}
|
|
326
|
+
peerDependencies:
|
|
327
|
+
'@babel/core': ^7.0.0-0
|
|
328
|
+
|
|
329
|
+
'@babel/plugin-transform-private-property-in-object@7.29.7':
|
|
330
|
+
resolution: {integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==}
|
|
331
|
+
engines: {node: '>=6.9.0'}
|
|
332
|
+
peerDependencies:
|
|
333
|
+
'@babel/core': ^7.0.0-0
|
|
334
|
+
|
|
335
|
+
'@babel/plugin-transform-react-display-name@7.29.7':
|
|
336
|
+
resolution: {integrity: sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==}
|
|
337
|
+
engines: {node: '>=6.9.0'}
|
|
338
|
+
peerDependencies:
|
|
339
|
+
'@babel/core': ^7.0.0-0
|
|
340
|
+
|
|
341
|
+
'@babel/plugin-transform-react-jsx-development@7.29.7':
|
|
342
|
+
resolution: {integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==}
|
|
343
|
+
engines: {node: '>=6.9.0'}
|
|
344
|
+
peerDependencies:
|
|
345
|
+
'@babel/core': ^7.0.0-0
|
|
346
|
+
|
|
347
|
+
'@babel/plugin-transform-react-jsx@7.29.7':
|
|
348
|
+
resolution: {integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==}
|
|
349
|
+
engines: {node: '>=6.9.0'}
|
|
350
|
+
peerDependencies:
|
|
351
|
+
'@babel/core': ^7.0.0-0
|
|
352
|
+
|
|
353
|
+
'@babel/plugin-transform-react-pure-annotations@7.29.7':
|
|
354
|
+
resolution: {integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==}
|
|
355
|
+
engines: {node: '>=6.9.0'}
|
|
356
|
+
peerDependencies:
|
|
357
|
+
'@babel/core': ^7.0.0-0
|
|
358
|
+
|
|
359
|
+
'@babel/plugin-transform-runtime@7.29.7':
|
|
360
|
+
resolution: {integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==}
|
|
361
|
+
engines: {node: '>=6.9.0'}
|
|
362
|
+
peerDependencies:
|
|
363
|
+
'@babel/core': ^7.0.0-0
|
|
364
|
+
|
|
365
|
+
'@babel/plugin-transform-typescript@7.29.7':
|
|
366
|
+
resolution: {integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==}
|
|
367
|
+
engines: {node: '>=6.9.0'}
|
|
368
|
+
peerDependencies:
|
|
369
|
+
'@babel/core': ^7.0.0-0
|
|
370
|
+
|
|
371
|
+
'@babel/plugin-transform-unicode-regex@7.29.7':
|
|
372
|
+
resolution: {integrity: sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==}
|
|
373
|
+
engines: {node: '>=6.9.0'}
|
|
374
|
+
peerDependencies:
|
|
375
|
+
'@babel/core': ^7.0.0-0
|
|
376
|
+
|
|
377
|
+
'@babel/preset-typescript@7.29.7':
|
|
378
|
+
resolution: {integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==}
|
|
379
|
+
engines: {node: '>=6.9.0'}
|
|
380
|
+
peerDependencies:
|
|
381
|
+
'@babel/core': ^7.0.0-0
|
|
382
|
+
|
|
383
|
+
'@babel/runtime@7.29.7':
|
|
384
|
+
resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
|
|
385
|
+
engines: {node: '>=6.9.0'}
|
|
386
|
+
|
|
387
|
+
'@babel/template@7.29.7':
|
|
388
|
+
resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
|
|
389
|
+
engines: {node: '>=6.9.0'}
|
|
390
|
+
|
|
391
|
+
'@babel/traverse@7.29.7':
|
|
392
|
+
resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
|
|
393
|
+
engines: {node: '>=6.9.0'}
|
|
394
|
+
|
|
395
|
+
'@babel/types@7.29.7':
|
|
396
|
+
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
397
|
+
engines: {node: '>=6.9.0'}
|
|
398
|
+
|
|
399
|
+
'@egjs/hammerjs@2.0.17':
|
|
400
|
+
resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==}
|
|
401
|
+
engines: {node: '>=0.8.0'}
|
|
402
|
+
|
|
403
|
+
'@expo/cli@56.1.16':
|
|
404
|
+
resolution: {integrity: sha512-VBQn0mqAwc67b9Cn0RVXyeodghomAx5xGRhA/bXaQzuxDjMQk0zIOb6pXMZX7yiIwJW66UZt/zQiJNSv6aWJYw==}
|
|
405
|
+
hasBin: true
|
|
406
|
+
peerDependencies:
|
|
407
|
+
expo: '*'
|
|
408
|
+
expo-router: '*'
|
|
409
|
+
react-native: '*'
|
|
410
|
+
peerDependenciesMeta:
|
|
411
|
+
expo-router:
|
|
412
|
+
optional: true
|
|
413
|
+
react-native:
|
|
414
|
+
optional: true
|
|
415
|
+
|
|
416
|
+
'@expo/code-signing-certificates@0.0.6':
|
|
417
|
+
resolution: {integrity: sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==}
|
|
418
|
+
|
|
419
|
+
'@expo/config-plugins@56.0.9':
|
|
420
|
+
resolution: {integrity: sha512-/6a/S9USwx8OC9tGjHxbviLFiBHyueN3aoNWMLvWDEJoZ1CIVW800ZBzwXq/FYNK2qzcN1LxFmQtzD1zeFQKNA==}
|
|
421
|
+
|
|
422
|
+
'@expo/config-types@56.0.6':
|
|
423
|
+
resolution: {integrity: sha512-4Y6Aum5J4Re5NnxGVofRNe1aDwUBOmWhQYkynZsqzRtX/zEA1ADUeyHXuEckv9YD9djiyT7bKtLt5gKL3mA6VQ==}
|
|
424
|
+
|
|
425
|
+
'@expo/config@56.0.9':
|
|
426
|
+
resolution: {integrity: sha512-/lqFeWGSrhpKJVP8tTN8LjuoIe8u8q2w7FzBL0C+wHgl+WM8l1qUIEYWy/sMvsG/NbpUIUsDHJRhQvOkU58eIw==}
|
|
427
|
+
|
|
428
|
+
'@expo/devcert@1.2.1':
|
|
429
|
+
resolution: {integrity: sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==}
|
|
430
|
+
|
|
431
|
+
'@expo/devtools@56.0.2':
|
|
432
|
+
resolution: {integrity: sha512-ANl4kPdbe0/HQYWkDEN79S6bQhI+i/ZCnPxuC853pPsB4svhINC7Ku9lmGOKPsUUWWnrHg1spkDGQBZ4sD6JxQ==}
|
|
433
|
+
peerDependencies:
|
|
434
|
+
react: '*'
|
|
435
|
+
react-native: '*'
|
|
436
|
+
peerDependenciesMeta:
|
|
437
|
+
react:
|
|
438
|
+
optional: true
|
|
439
|
+
react-native:
|
|
440
|
+
optional: true
|
|
441
|
+
|
|
442
|
+
'@expo/dom-webview@56.0.5':
|
|
443
|
+
resolution: {integrity: sha512-UIEJxkLg6cHqofKrpWpkn9E6ApxVRtCgZhZkARPr9VV7rBVloJgeroTHs31YgU/JpbI5lLQOnfOlGo54W6C2Ew==}
|
|
444
|
+
peerDependencies:
|
|
445
|
+
expo: '*'
|
|
446
|
+
react: '*'
|
|
447
|
+
react-native: '*'
|
|
448
|
+
|
|
449
|
+
'@expo/env@2.3.0':
|
|
450
|
+
resolution: {integrity: sha512-9HnnIbzwTTdbwSjNLXTk0fPm9ZwMJ7c1/31tsni8HZ8Q62KzYCyspahH+V365vg5J6lr001DzNwBxVWSaYCQLg==}
|
|
451
|
+
engines: {node: '>=20.12.0'}
|
|
452
|
+
|
|
453
|
+
'@expo/expo-modules-macros-plugin@0.2.2':
|
|
454
|
+
resolution: {integrity: sha512-4IMzPDIo/VOXREQjsJtliSfqYVZvfzU2SLFS/9sKMWF848S8CHx+e/E+Vf0TcMvpWCCKX5umyqxb13KJJ+YUzg==}
|
|
455
|
+
|
|
456
|
+
'@expo/fingerprint@0.19.4':
|
|
457
|
+
resolution: {integrity: sha512-PsowRlO8+S7JlO8go7yhNEXp7sqlsWDE2AlCwoss7zH0dcajXFo74Fy0KdXEc4UXK7kKoHD37oDgsZ8aHSLr7A==}
|
|
458
|
+
hasBin: true
|
|
459
|
+
|
|
460
|
+
'@expo/image-utils@0.10.1':
|
|
461
|
+
resolution: {integrity: sha512-YDeefvmYdihS7Wp3ESDUVnOgOSWmj2Cczm9lVNDdm4MqQLdAKm/LPYg83HtFQPfefRlAxyHrQR/O9kIXN9C1Wg==}
|
|
462
|
+
|
|
463
|
+
'@expo/inline-modules@0.0.12':
|
|
464
|
+
resolution: {integrity: sha512-SNIZr/HWfIQPTZBwmukItxpc7ws1SgMUywYq1dnQvDknQDjJcuWAasIRFUjsK15yQ1xb4G5CP7VHtbN3V4lENg==}
|
|
465
|
+
|
|
466
|
+
'@expo/json-file@10.2.0':
|
|
467
|
+
resolution: {integrity: sha512-S6XzKe3R9GQeHiUPXc3xJjOv2VJhOEwFYf7xdC2z2cUqt3kZJ9mSO877sNQloVdnW/SUCtPY3bexlM7nwq+CAQ==}
|
|
468
|
+
|
|
469
|
+
'@expo/local-build-cache-provider@56.0.8':
|
|
470
|
+
resolution: {integrity: sha512-UsuXwpNi57MNhzZ3be4XThc8xW6nzk3Wu37s1+2qcfZGeJcMLKDFfwO6n8YXeIiGlCsOi0Ee1rsTdgjrKt/YJQ==}
|
|
471
|
+
|
|
472
|
+
'@expo/log-box@56.0.13':
|
|
473
|
+
resolution: {integrity: sha512-QWRZSpWPyjkDLVQio4R7oAzg/Av2MOt/DciFkfjr8qQ3qxGVn1Rt1oHP/80hvcWDcHFV7N6PqpyxRXw6nbxzKQ==}
|
|
474
|
+
peerDependencies:
|
|
475
|
+
expo: '*'
|
|
476
|
+
react: '*'
|
|
477
|
+
react-native: '*'
|
|
478
|
+
|
|
479
|
+
'@expo/metro-config@56.0.14':
|
|
480
|
+
resolution: {integrity: sha512-O3CIHruaTJhswPAf/nf3i8QQ3f2jl+mEwSea1eb3khuplabdy/wTQz+JvHN8VGUFyg7JKwUGU1QfO6T3JiSQqA==}
|
|
481
|
+
peerDependencies:
|
|
482
|
+
expo: '*'
|
|
483
|
+
peerDependenciesMeta:
|
|
484
|
+
expo:
|
|
485
|
+
optional: true
|
|
486
|
+
|
|
487
|
+
'@expo/metro-file-map@56.0.3':
|
|
488
|
+
resolution: {integrity: sha512-5OGW3z8LgEYgMJOR7F3pC8llFLkb1fVqwAewbCl6S4Vkha8AFQMwOjT+9Wbka+V4rmpljpGqOnMhF4xZbD961w==}
|
|
489
|
+
|
|
490
|
+
'@expo/metro-runtime@56.0.15':
|
|
491
|
+
resolution: {integrity: sha512-WIWeVsL6kCSB57oYZdUA4MTkH7c67UFMIjdNoQzKXwxZYwBFE/xL2cGPDC3z8RWt0femzJTVxAVZUOW/hiqRzA==}
|
|
492
|
+
peerDependencies:
|
|
493
|
+
expo: '*'
|
|
494
|
+
react: '*'
|
|
495
|
+
react-dom: '*'
|
|
496
|
+
react-native: '*'
|
|
497
|
+
peerDependenciesMeta:
|
|
498
|
+
react-dom:
|
|
499
|
+
optional: true
|
|
500
|
+
|
|
501
|
+
'@expo/metro@56.0.0':
|
|
502
|
+
resolution: {integrity: sha512-5gIgQHtEpjjvsjKfVtIv23a98LLRV0/y07PDShEwYSytAMlE3FSF8RHXqtHc1sUJL6dn7hnuIBpIbrLXXuVi0A==}
|
|
503
|
+
|
|
504
|
+
'@expo/osascript@2.6.0':
|
|
505
|
+
resolution: {integrity: sha512-QvqDBlJXa8CS2vRORJ4wEflY1m0vVI07uSJdIRgBrLxRPBcsrXxrtU7+wXRXMqfq9zLwNP9XbvRsXF2omoDylg==}
|
|
506
|
+
engines: {node: '>=12'}
|
|
507
|
+
|
|
508
|
+
'@expo/package-manager@1.12.1':
|
|
509
|
+
resolution: {integrity: sha512-fQLiFAcFRWF53mtuLK32SUJQ1ahhrTcBZPZPedYTiUT5ha5FF+UO6bPtCc0Y/hgj0/m3HCGBAuSHjbg2kI9oPQ==}
|
|
510
|
+
|
|
511
|
+
'@expo/plist@0.7.0':
|
|
512
|
+
resolution: {integrity: sha512-vrpryU1GoqSIRNqRB2D3IjXDmzNYfiQpEF6AH/xknlD7eiYmEDt3mb26V7cLcedcPG8PY/1xWHdBXVQJfEAh6Q==}
|
|
513
|
+
|
|
514
|
+
'@expo/prebuild-config@56.0.16':
|
|
515
|
+
resolution: {integrity: sha512-ce9ENfPWO4WUWUVQz0OaqL3KYZ7YofP8O35ncnn7CHCaKwQ7BqxcCGJbh+qvP1UjlWeNB3CjHPrXXJ3bnZwlJw==}
|
|
516
|
+
|
|
517
|
+
'@expo/require-utils@56.1.3':
|
|
518
|
+
resolution: {integrity: sha512-KyLeOn/zzQSvuPpV5YhB/FPKnpQytno4luN918bGdPDssLBoS3N/0UbC3W0rJAn9kSFu+XpfR81eABRVsSdfgQ==}
|
|
519
|
+
peerDependencies:
|
|
520
|
+
typescript: ^5.0.0 || ^5.0.0-0 || ^6.0.0
|
|
521
|
+
peerDependenciesMeta:
|
|
522
|
+
typescript:
|
|
523
|
+
optional: true
|
|
524
|
+
|
|
525
|
+
'@expo/router-server@56.0.14':
|
|
526
|
+
resolution: {integrity: sha512-2UCTtZfcq1ZPgp3wk8/+sq9DvFI9UxrPr1jcEKMAF2DGAJLosnpc8GWNNg2hkjt6SHUOdFHIPxujWPYyho2y3A==}
|
|
527
|
+
peerDependencies:
|
|
528
|
+
'@expo/metro-runtime': ^56.0.15
|
|
529
|
+
expo: '*'
|
|
530
|
+
expo-constants: ^56.0.18
|
|
531
|
+
expo-font: ^56.0.6
|
|
532
|
+
expo-router: '*'
|
|
533
|
+
expo-server: ^56.0.5
|
|
534
|
+
react: '*'
|
|
535
|
+
react-dom: '*'
|
|
536
|
+
react-server-dom-webpack: ~19.0.1 || ~19.1.2 || ~19.2.1
|
|
537
|
+
peerDependenciesMeta:
|
|
538
|
+
'@expo/metro-runtime':
|
|
539
|
+
optional: true
|
|
540
|
+
expo-router:
|
|
541
|
+
optional: true
|
|
542
|
+
react-dom:
|
|
543
|
+
optional: true
|
|
544
|
+
react-server-dom-webpack:
|
|
545
|
+
optional: true
|
|
546
|
+
|
|
547
|
+
'@expo/schema-utils@56.0.1':
|
|
548
|
+
resolution: {integrity: sha512-CZ/+mYbQmWeOnkCGlWy9K+lFxbJSMFY7+TqBZcKzBSTU5Q7IGRvn/sOG3TdNjIdLPmbA8xe7R/c3UUQ28R9i9w==}
|
|
549
|
+
|
|
550
|
+
'@expo/sdk-runtime-versions@1.0.0':
|
|
551
|
+
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
|
|
552
|
+
|
|
553
|
+
'@expo/spawn-async@1.8.0':
|
|
554
|
+
resolution: {integrity: sha512-eb9xxd/LbuEGSdua4NumCu/McVB9EM+F/JxB9pWgnERw4HQ9XyTNH1KapG6oqLWR8TuRK2LQfzJlmNi94CVobw==}
|
|
555
|
+
engines: {node: '>=12'}
|
|
556
|
+
|
|
557
|
+
'@expo/sudo-prompt@9.3.2':
|
|
558
|
+
resolution: {integrity: sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==}
|
|
559
|
+
|
|
560
|
+
'@expo/ws-tunnel@2.0.0':
|
|
561
|
+
resolution: {integrity: sha512-j+JfTRdCk820J9dU0sA2SqshQIKFOMo7ED84w9MJFcebfbNQgsLztEY/SABDkGnjatrW4xGqnUhVRxSBVyCkXw==}
|
|
562
|
+
peerDependencies:
|
|
563
|
+
ws: ^8.0.0
|
|
564
|
+
|
|
565
|
+
'@expo/xcpretty@4.4.4':
|
|
566
|
+
resolution: {integrity: sha512-4aQzz9vgxcNXFfo/iyNgDDYfsU5XGKKxWxZopw0cVotHiW+U8IJbIxMaxsINs6bHhtkG3StKNPcOrn3eBuxKPw==}
|
|
567
|
+
hasBin: true
|
|
568
|
+
|
|
569
|
+
'@isaacs/ttlcache@1.4.1':
|
|
570
|
+
resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
|
|
571
|
+
engines: {node: '>=12'}
|
|
572
|
+
|
|
573
|
+
'@jest/schemas@29.6.3':
|
|
574
|
+
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
|
|
575
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
576
|
+
|
|
577
|
+
'@jest/types@29.6.3':
|
|
578
|
+
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
|
|
579
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
580
|
+
|
|
581
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
582
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
583
|
+
|
|
584
|
+
'@jridgewell/remapping@2.3.5':
|
|
585
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
586
|
+
|
|
587
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
588
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
589
|
+
engines: {node: '>=6.0.0'}
|
|
590
|
+
|
|
591
|
+
'@jridgewell/source-map@0.3.11':
|
|
592
|
+
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
|
|
593
|
+
|
|
594
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
595
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
596
|
+
|
|
597
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
598
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
599
|
+
|
|
600
|
+
'@react-native-async-storage/async-storage@2.2.0':
|
|
601
|
+
resolution: {integrity: sha512-gvRvjR5JAaUZF8tv2Kcq/Gbt3JHwbKFYfmb445rhOj6NUMx3qPLixmDx5pZAyb9at1bYvJ4/eTUipU5aki45xw==}
|
|
602
|
+
peerDependencies:
|
|
603
|
+
react-native: ^0.0.0-0 || >=0.65 <1.0
|
|
604
|
+
|
|
605
|
+
'@react-native/assets-registry@0.85.3':
|
|
606
|
+
resolution: {integrity: sha512-u9ZiYP23vA2IFtdFQFmetzSmk6SM0xgKIoiOsr1hXNHjHaLhOm+/Ph1ud57wX6+Dbwdzx8coJgnzSKL3W21PCg==}
|
|
607
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
608
|
+
|
|
609
|
+
'@react-native/babel-plugin-codegen@0.85.3':
|
|
610
|
+
resolution: {integrity: sha512-Wc94zGfeFG8Njf9SHMPfYZP04kjigkOps6F1TYTvd7ZVXuGxqseCDgxc50LWcOhOCLypI9n3oVVqz81C3p44ZA==}
|
|
611
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
612
|
+
|
|
613
|
+
'@react-native/codegen@0.85.3':
|
|
614
|
+
resolution: {integrity: sha512-/JkS1lGLyzBWP1FbgDwaqEf7qShIC6pUC1M0a/YMAd/v4iqR24MRkQWe7jkYvcBQ2LpEhs5NGE9InhxSv21zCA==}
|
|
615
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
616
|
+
|
|
617
|
+
'@react-native/community-cli-plugin@0.85.3':
|
|
618
|
+
resolution: {integrity: sha512-fs85dmbIqNmtzEixDb0g+q6R3Vt4H9eAt8/inIZdDKfjN76+sUJA2r1nxODQ76bU23MrIbz8sI7KFBPaWk/zQw==}
|
|
619
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
620
|
+
peerDependencies:
|
|
621
|
+
'@react-native-community/cli': '*'
|
|
622
|
+
'@react-native/metro-config': 0.85.3
|
|
623
|
+
peerDependenciesMeta:
|
|
624
|
+
'@react-native-community/cli':
|
|
625
|
+
optional: true
|
|
626
|
+
'@react-native/metro-config':
|
|
627
|
+
optional: true
|
|
628
|
+
|
|
629
|
+
'@react-native/debugger-frontend@0.85.3':
|
|
630
|
+
resolution: {integrity: sha512-uAu7rM5o/Np1zgp6fi5zM1sP1aB8DcS7DdOLcj/TkSutOAjkMqqd2lWt1/+3S7qXexRHVK5XcP+o3VXo4L/V0A==}
|
|
631
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
632
|
+
|
|
633
|
+
'@react-native/debugger-shell@0.85.3':
|
|
634
|
+
resolution: {integrity: sha512-/jRAaT9boiCttIcEwS02WPwYkUihqsjSaK/TMtHz05vT6uMgac9PaQt5kzBQLIABv5aEIa5gtrMmKVz49MjkjQ==}
|
|
635
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
636
|
+
|
|
637
|
+
'@react-native/dev-middleware@0.85.3':
|
|
638
|
+
resolution: {integrity: sha512-JYzBiT4A8w+KQt+dOD5v+ti+tDrGoPnsSTuApq3Ls4RB5sfWbDlYMyz3dbc8qBIHz9tv0sQ5+eOu6Xwqzr5AQA==}
|
|
639
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
640
|
+
|
|
641
|
+
'@react-native/gradle-plugin@0.85.3':
|
|
642
|
+
resolution: {integrity: sha512-39dY2j50Q1pntejzwt3XL7vwXtrj8jcIfHq6E+gyu3jzYxZJVvMkMutQ39vSg6zinIQOX36oQDhidXUbCXzgoA==}
|
|
643
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
644
|
+
|
|
645
|
+
'@react-native/js-polyfills@0.85.3':
|
|
646
|
+
resolution: {integrity: sha512-U2+aMshIXf1uFn77tpBb/xhHWB9vkVrMpt7kkucAugF8hJKYTDGB587X7WwelHduK2KBfhl4giSv0rzZGoef9A==}
|
|
647
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
648
|
+
|
|
649
|
+
'@react-native/normalize-colors@0.85.3':
|
|
650
|
+
resolution: {integrity: sha512-hj0PScZEhIbcOvQV5yMKX3ha4XEIOy/SVE1Rrpp0beW0dpNLOgSC7KDxGewmDnIHK9YdQUXGY9eMEfShUMIaZw==}
|
|
651
|
+
|
|
652
|
+
'@react-native/virtualized-lists@0.85.3':
|
|
653
|
+
resolution: {integrity: sha512-dsCjI//OIPEUJMyNHp4l7zNLVjCx7bcaRUceOCkU+IB17hkbtbGWvi7HjGFSzy7FJGmS/MOlcfpb72xXiy1Oig==}
|
|
654
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
655
|
+
peerDependencies:
|
|
656
|
+
'@types/react': ^19.2.0
|
|
657
|
+
react: '*'
|
|
658
|
+
react-native: 0.85.3
|
|
659
|
+
peerDependenciesMeta:
|
|
660
|
+
'@types/react':
|
|
661
|
+
optional: true
|
|
662
|
+
|
|
663
|
+
'@sinclair/typebox@0.27.10':
|
|
664
|
+
resolution: {integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==}
|
|
665
|
+
|
|
666
|
+
'@types/hammerjs@2.0.46':
|
|
667
|
+
resolution: {integrity: sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==}
|
|
668
|
+
|
|
669
|
+
'@types/istanbul-lib-coverage@2.0.6':
|
|
670
|
+
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
|
|
671
|
+
|
|
672
|
+
'@types/istanbul-lib-report@3.0.3':
|
|
673
|
+
resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
|
|
674
|
+
|
|
675
|
+
'@types/istanbul-reports@3.0.4':
|
|
676
|
+
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
|
|
677
|
+
|
|
678
|
+
'@types/node@25.9.3':
|
|
679
|
+
resolution: {integrity: sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==}
|
|
680
|
+
|
|
681
|
+
'@types/react-test-renderer@19.1.0':
|
|
682
|
+
resolution: {integrity: sha512-XD0WZrHqjNrxA/MaR9O22w/RNidWR9YZmBdRGI7wcnWGrv/3dA8wKCJ8m63Sn+tLJhcjmuhOi629N66W6kgWzQ==}
|
|
683
|
+
|
|
684
|
+
'@types/react@19.2.17':
|
|
685
|
+
resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==}
|
|
686
|
+
|
|
687
|
+
'@types/yargs-parser@21.0.3':
|
|
688
|
+
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
|
|
689
|
+
|
|
690
|
+
'@types/yargs@17.0.35':
|
|
691
|
+
resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
|
|
692
|
+
|
|
693
|
+
'@ungap/structured-clone@1.3.1':
|
|
694
|
+
resolution: {integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==}
|
|
695
|
+
|
|
696
|
+
'@xmldom/xmldom@0.8.13':
|
|
697
|
+
resolution: {integrity: sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==}
|
|
698
|
+
engines: {node: '>=10.0.0'}
|
|
699
|
+
|
|
700
|
+
'@xmldom/xmldom@0.9.10':
|
|
701
|
+
resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==}
|
|
702
|
+
engines: {node: '>=14.6'}
|
|
703
|
+
|
|
704
|
+
abort-controller@3.0.0:
|
|
705
|
+
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
|
|
706
|
+
engines: {node: '>=6.5'}
|
|
707
|
+
|
|
708
|
+
accepts@1.3.8:
|
|
709
|
+
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
|
|
710
|
+
engines: {node: '>= 0.6'}
|
|
711
|
+
|
|
712
|
+
accepts@2.0.0:
|
|
713
|
+
resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
|
|
714
|
+
engines: {node: '>= 0.6'}
|
|
715
|
+
|
|
716
|
+
acorn@8.17.0:
|
|
717
|
+
resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
|
|
718
|
+
engines: {node: '>=0.4.0'}
|
|
719
|
+
hasBin: true
|
|
720
|
+
|
|
721
|
+
agent-base@7.1.4:
|
|
722
|
+
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
|
|
723
|
+
engines: {node: '>= 14'}
|
|
724
|
+
|
|
725
|
+
anser@1.4.10:
|
|
726
|
+
resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
|
|
727
|
+
|
|
728
|
+
ansi-escapes@4.3.2:
|
|
729
|
+
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
|
|
730
|
+
engines: {node: '>=8'}
|
|
731
|
+
|
|
732
|
+
ansi-regex@4.1.1:
|
|
733
|
+
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
|
|
734
|
+
engines: {node: '>=6'}
|
|
735
|
+
|
|
736
|
+
ansi-regex@5.0.1:
|
|
737
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
738
|
+
engines: {node: '>=8'}
|
|
739
|
+
|
|
740
|
+
ansi-styles@3.2.1:
|
|
741
|
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
|
742
|
+
engines: {node: '>=4'}
|
|
743
|
+
|
|
744
|
+
ansi-styles@4.3.0:
|
|
745
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
746
|
+
engines: {node: '>=8'}
|
|
747
|
+
|
|
748
|
+
ansi-styles@5.2.0:
|
|
749
|
+
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
|
750
|
+
engines: {node: '>=10'}
|
|
751
|
+
|
|
752
|
+
arg@5.0.2:
|
|
753
|
+
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
754
|
+
|
|
755
|
+
argparse@2.0.1:
|
|
756
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
757
|
+
|
|
758
|
+
asap@2.0.6:
|
|
759
|
+
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
|
|
760
|
+
|
|
761
|
+
babel-plugin-polyfill-corejs2@0.4.17:
|
|
762
|
+
resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==}
|
|
763
|
+
peerDependencies:
|
|
764
|
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
765
|
+
|
|
766
|
+
babel-plugin-polyfill-corejs3@0.13.0:
|
|
767
|
+
resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
|
|
768
|
+
peerDependencies:
|
|
769
|
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
770
|
+
|
|
771
|
+
babel-plugin-polyfill-regenerator@0.6.8:
|
|
772
|
+
resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==}
|
|
773
|
+
peerDependencies:
|
|
774
|
+
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
775
|
+
|
|
776
|
+
babel-plugin-react-compiler@1.0.0:
|
|
777
|
+
resolution: {integrity: sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==}
|
|
778
|
+
|
|
779
|
+
babel-plugin-react-native-web@0.21.2:
|
|
780
|
+
resolution: {integrity: sha512-SPD0J6qjJn8231i0HZhlAGH6NORe+QvRSQM2mwQEzJ2Fb3E4ruWTiiicPlHjmeWShDXLcvoorOCXjeR7k/lyWA==}
|
|
781
|
+
|
|
782
|
+
babel-plugin-syntax-hermes-parser@0.33.3:
|
|
783
|
+
resolution: {integrity: sha512-/Z9xYdaJ1lC0pT9do6TqCqhOSLfZ5Ot8D5za1p+feEfWYupCOfGbhhEXN9r2ZgJtDNUNRw/Z+T2CvAGKBqtqWA==}
|
|
784
|
+
|
|
785
|
+
babel-plugin-transform-flow-enums@0.0.2:
|
|
786
|
+
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
|
|
787
|
+
|
|
788
|
+
babel-preset-expo@56.0.15:
|
|
789
|
+
resolution: {integrity: sha512-0MqbQoM6nBUbKvgu2xJ4VixZnUTGTq3HB2WwvOikdO4CiPxbQ+wGA25fOoHHSni5iEFW39wy6y1ookTWlq3wVw==}
|
|
790
|
+
peerDependencies:
|
|
791
|
+
'@babel/runtime': ^7.20.0
|
|
792
|
+
expo: '*'
|
|
793
|
+
expo-widgets: ^56.0.18
|
|
794
|
+
react-refresh: '>=0.14.0 <1.0.0'
|
|
795
|
+
peerDependenciesMeta:
|
|
796
|
+
'@babel/runtime':
|
|
797
|
+
optional: true
|
|
798
|
+
expo:
|
|
799
|
+
optional: true
|
|
800
|
+
expo-widgets:
|
|
801
|
+
optional: true
|
|
802
|
+
|
|
803
|
+
balanced-match@4.0.4:
|
|
804
|
+
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
|
|
805
|
+
engines: {node: 18 || 20 || >=22}
|
|
806
|
+
|
|
807
|
+
base64-js@1.5.1:
|
|
808
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
809
|
+
|
|
810
|
+
baseline-browser-mapping@2.10.37:
|
|
811
|
+
resolution: {integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==}
|
|
812
|
+
engines: {node: '>=6.0.0'}
|
|
813
|
+
hasBin: true
|
|
814
|
+
|
|
815
|
+
big-integer@1.6.52:
|
|
816
|
+
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
|
|
817
|
+
engines: {node: '>=0.6'}
|
|
818
|
+
|
|
819
|
+
bplist-creator@0.1.0:
|
|
820
|
+
resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
|
|
821
|
+
|
|
822
|
+
bplist-parser@0.3.1:
|
|
823
|
+
resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==}
|
|
824
|
+
engines: {node: '>= 5.10.0'}
|
|
825
|
+
|
|
826
|
+
bplist-parser@0.3.2:
|
|
827
|
+
resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==}
|
|
828
|
+
engines: {node: '>= 5.10.0'}
|
|
829
|
+
|
|
830
|
+
brace-expansion@5.0.6:
|
|
831
|
+
resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==}
|
|
832
|
+
engines: {node: 18 || 20 || >=22}
|
|
833
|
+
|
|
834
|
+
braces@3.0.3:
|
|
835
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
836
|
+
engines: {node: '>=8'}
|
|
837
|
+
|
|
838
|
+
browserslist@4.28.2:
|
|
839
|
+
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
|
|
840
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
841
|
+
hasBin: true
|
|
842
|
+
|
|
843
|
+
bser@2.1.1:
|
|
844
|
+
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
|
|
845
|
+
|
|
846
|
+
buffer-from@1.1.2:
|
|
847
|
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
848
|
+
|
|
849
|
+
bytes@3.1.2:
|
|
850
|
+
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
851
|
+
engines: {node: '>= 0.8'}
|
|
852
|
+
|
|
853
|
+
camelcase@6.3.0:
|
|
854
|
+
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
855
|
+
engines: {node: '>=10'}
|
|
856
|
+
|
|
857
|
+
caniuse-lite@1.0.30001799:
|
|
858
|
+
resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==}
|
|
859
|
+
|
|
860
|
+
chalk@2.4.2:
|
|
861
|
+
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
|
862
|
+
engines: {node: '>=4'}
|
|
863
|
+
|
|
864
|
+
chalk@4.1.2:
|
|
865
|
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
866
|
+
engines: {node: '>=10'}
|
|
867
|
+
|
|
868
|
+
chrome-launcher@0.15.2:
|
|
869
|
+
resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
|
|
870
|
+
engines: {node: '>=12.13.0'}
|
|
871
|
+
hasBin: true
|
|
872
|
+
|
|
873
|
+
chromium-edge-launcher@0.3.0:
|
|
874
|
+
resolution: {integrity: sha512-p03azHlGjtyRvFEee3cyvtsRYdniSkwjkzmM/KmVnqT5d7QkkwpJBhis/zCLMYdQMVJ5tt140TBNqqrZPaWeFA==}
|
|
875
|
+
|
|
876
|
+
ci-info@2.0.0:
|
|
877
|
+
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
|
|
878
|
+
|
|
879
|
+
ci-info@3.9.0:
|
|
880
|
+
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
|
|
881
|
+
engines: {node: '>=8'}
|
|
882
|
+
|
|
883
|
+
cli-cursor@2.1.0:
|
|
884
|
+
resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
|
|
885
|
+
engines: {node: '>=4'}
|
|
886
|
+
|
|
887
|
+
cli-spinners@2.9.2:
|
|
888
|
+
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
|
|
889
|
+
engines: {node: '>=6'}
|
|
890
|
+
|
|
891
|
+
cliui@8.0.1:
|
|
892
|
+
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
|
893
|
+
engines: {node: '>=12'}
|
|
894
|
+
|
|
895
|
+
clone@1.0.4:
|
|
896
|
+
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
|
|
897
|
+
engines: {node: '>=0.8'}
|
|
898
|
+
|
|
899
|
+
color-convert@1.9.3:
|
|
900
|
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
|
901
|
+
|
|
902
|
+
color-convert@2.0.1:
|
|
903
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
904
|
+
engines: {node: '>=7.0.0'}
|
|
905
|
+
|
|
906
|
+
color-name@1.1.3:
|
|
907
|
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
|
|
908
|
+
|
|
909
|
+
color-name@1.1.4:
|
|
910
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
911
|
+
|
|
912
|
+
commander@12.1.0:
|
|
913
|
+
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
|
|
914
|
+
engines: {node: '>=18'}
|
|
915
|
+
|
|
916
|
+
commander@2.20.3:
|
|
917
|
+
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
918
|
+
|
|
919
|
+
commander@7.2.0:
|
|
920
|
+
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
|
|
921
|
+
engines: {node: '>= 10'}
|
|
922
|
+
|
|
923
|
+
compressible@2.0.18:
|
|
924
|
+
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
|
|
925
|
+
engines: {node: '>= 0.6'}
|
|
926
|
+
|
|
927
|
+
compression@1.8.1:
|
|
928
|
+
resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==}
|
|
929
|
+
engines: {node: '>= 0.8.0'}
|
|
930
|
+
|
|
931
|
+
connect@3.7.0:
|
|
932
|
+
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
|
|
933
|
+
engines: {node: '>= 0.10.0'}
|
|
934
|
+
|
|
935
|
+
convert-source-map@2.0.0:
|
|
936
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
937
|
+
|
|
938
|
+
core-js-compat@3.49.0:
|
|
939
|
+
resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==}
|
|
940
|
+
|
|
941
|
+
cross-spawn@7.0.6:
|
|
942
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
943
|
+
engines: {node: '>= 8'}
|
|
944
|
+
|
|
945
|
+
csstype@3.2.3:
|
|
946
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
947
|
+
|
|
948
|
+
debug@2.6.9:
|
|
949
|
+
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
|
950
|
+
peerDependencies:
|
|
951
|
+
supports-color: '*'
|
|
952
|
+
peerDependenciesMeta:
|
|
953
|
+
supports-color:
|
|
954
|
+
optional: true
|
|
955
|
+
|
|
956
|
+
debug@3.2.7:
|
|
957
|
+
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
|
958
|
+
peerDependencies:
|
|
959
|
+
supports-color: '*'
|
|
960
|
+
peerDependenciesMeta:
|
|
961
|
+
supports-color:
|
|
962
|
+
optional: true
|
|
963
|
+
|
|
964
|
+
debug@4.4.3:
|
|
965
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
966
|
+
engines: {node: '>=6.0'}
|
|
967
|
+
peerDependencies:
|
|
968
|
+
supports-color: '*'
|
|
969
|
+
peerDependenciesMeta:
|
|
970
|
+
supports-color:
|
|
971
|
+
optional: true
|
|
972
|
+
|
|
973
|
+
deepmerge@4.3.1:
|
|
974
|
+
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
|
975
|
+
engines: {node: '>=0.10.0'}
|
|
976
|
+
|
|
977
|
+
defaults@1.0.4:
|
|
978
|
+
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
|
|
979
|
+
|
|
980
|
+
depd@2.0.0:
|
|
981
|
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
982
|
+
engines: {node: '>= 0.8'}
|
|
983
|
+
|
|
984
|
+
destroy@1.2.0:
|
|
985
|
+
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
|
986
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
987
|
+
|
|
988
|
+
detect-libc@2.1.2:
|
|
989
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
990
|
+
engines: {node: '>=8'}
|
|
991
|
+
|
|
992
|
+
dnssd-advertise@1.1.6:
|
|
993
|
+
resolution: {integrity: sha512-Ndrrf6BMPalkQPd/zubL+4YghH2J9NspapQ09uDXwYbvOPkP0oaqf5CkcwJ0b50kS2O3ul6yVu+jz+RY62Cejg==}
|
|
994
|
+
|
|
995
|
+
ee-first@1.1.1:
|
|
996
|
+
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
997
|
+
|
|
998
|
+
electron-to-chromium@1.5.373:
|
|
999
|
+
resolution: {integrity: sha512-G2Hym8JIf/QreuseqkDibgH8Ci8KfJzqGDKdakbhSx9UltwRBH2cBLAWU/lBX0sCdv0TlhyxQyDCnSfxgMWsjA==}
|
|
1000
|
+
|
|
1001
|
+
emoji-regex@8.0.0:
|
|
1002
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
1003
|
+
|
|
1004
|
+
encodeurl@1.0.2:
|
|
1005
|
+
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
|
|
1006
|
+
engines: {node: '>= 0.8'}
|
|
1007
|
+
|
|
1008
|
+
encodeurl@2.0.0:
|
|
1009
|
+
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
|
|
1010
|
+
engines: {node: '>= 0.8'}
|
|
1011
|
+
|
|
1012
|
+
error-stack-parser@2.1.4:
|
|
1013
|
+
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
|
|
1014
|
+
|
|
1015
|
+
es-errors@1.3.0:
|
|
1016
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
1017
|
+
engines: {node: '>= 0.4'}
|
|
1018
|
+
|
|
1019
|
+
escalade@3.2.0:
|
|
1020
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1021
|
+
engines: {node: '>=6'}
|
|
1022
|
+
|
|
1023
|
+
escape-html@1.0.3:
|
|
1024
|
+
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
|
|
1025
|
+
|
|
1026
|
+
escape-string-regexp@1.0.5:
|
|
1027
|
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
|
1028
|
+
engines: {node: '>=0.8.0'}
|
|
1029
|
+
|
|
1030
|
+
escape-string-regexp@4.0.0:
|
|
1031
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1032
|
+
engines: {node: '>=10'}
|
|
1033
|
+
|
|
1034
|
+
etag@1.8.1:
|
|
1035
|
+
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
|
|
1036
|
+
engines: {node: '>= 0.6'}
|
|
1037
|
+
|
|
1038
|
+
event-target-shim@5.0.1:
|
|
1039
|
+
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
|
|
1040
|
+
engines: {node: '>=6'}
|
|
1041
|
+
|
|
1042
|
+
expo-asset@56.0.17:
|
|
1043
|
+
resolution: {integrity: sha512-GFN5j+8SPkyv0nfsiFHewmdB/D0tL237TsBE/gSfFOFy/J3a52py7IulcSqkA3sQE/u/UlD5BmvP5ssS4//nUg==}
|
|
1044
|
+
peerDependencies:
|
|
1045
|
+
expo: '*'
|
|
1046
|
+
react: '*'
|
|
1047
|
+
react-native: '*'
|
|
1048
|
+
|
|
1049
|
+
expo-constants@56.0.18:
|
|
1050
|
+
resolution: {integrity: sha512-8AMtbDGl/WVPnWlmbpGmvcdnNCy9E4PFnwdVwj600vljkMDPSxcAcjw8GVXEPk3PpZ+ngTqsrkltWyj0UKYAxw==}
|
|
1051
|
+
peerDependencies:
|
|
1052
|
+
expo: '*'
|
|
1053
|
+
react-native: '*'
|
|
1054
|
+
|
|
1055
|
+
expo-file-system@56.0.8:
|
|
1056
|
+
resolution: {integrity: sha512-NrH41/8snGIBSbYicwVLB4txPdgCATd7ZYhMAGS3YJZ9GbnduhlAoV4/YCbGayjrbpE9bJb/6wegPL/zmvRMnQ==}
|
|
1057
|
+
peerDependencies:
|
|
1058
|
+
expo: '*'
|
|
1059
|
+
react-native: '*'
|
|
1060
|
+
|
|
1061
|
+
expo-font@56.0.7:
|
|
1062
|
+
resolution: {integrity: sha512-hpU/vRwPzsby9lPGkA4blDqLIIXYzoWnCZHr6PxvcWbY/uPObAiyhh6q+e0WYsB65SthK+PLH95jEnVag7fwEg==}
|
|
1063
|
+
peerDependencies:
|
|
1064
|
+
expo: '*'
|
|
1065
|
+
react: '*'
|
|
1066
|
+
react-native: '*'
|
|
1067
|
+
|
|
1068
|
+
expo-keep-awake@56.0.3:
|
|
1069
|
+
resolution: {integrity: sha512-CLMJXtEiMKknD3Rpm8CRwE6ZJUzu2yCEmRk1sgfHAJ1zIbuEWY3dpPDubtsnuzWm+2k6Sru+yaFbYsvPWmTiBA==}
|
|
1070
|
+
peerDependencies:
|
|
1071
|
+
expo: '*'
|
|
1072
|
+
react: '*'
|
|
1073
|
+
|
|
1074
|
+
expo-linking@56.0.14:
|
|
1075
|
+
resolution: {integrity: sha512-IvVQHWC+Cj4fK5qD3iEVYqpU2a4rLW0IpAAlGJ4MH+H1fyZiHh3eN6qg2WmoclOEPfYATSuEa+dQT6wfgVpXlQ==}
|
|
1076
|
+
peerDependencies:
|
|
1077
|
+
react: '*'
|
|
1078
|
+
react-native: '*'
|
|
1079
|
+
|
|
1080
|
+
expo-modules-autolinking@56.0.16:
|
|
1081
|
+
resolution: {integrity: sha512-9JnL4N46P8ubDpDIfWolDn7nxU2j1rY67xY/dNVuyH0m+HG+r/JI16VYtjIf4COpZtEuFo4D3h3MBeFzGucMnw==}
|
|
1082
|
+
hasBin: true
|
|
1083
|
+
|
|
1084
|
+
expo-modules-core@56.0.17:
|
|
1085
|
+
resolution: {integrity: sha512-5J8whnT7Ccp+BrFClLmpF76omBqn95VZExroTm01Dgjm4vpty1Rb7U3we+ZUceNHtRd07Lw30u7FNfDgIhEbRQ==}
|
|
1086
|
+
peerDependencies:
|
|
1087
|
+
react: '*'
|
|
1088
|
+
react-native: '*'
|
|
1089
|
+
react-native-worklets: ^0.7.4 || ^0.8.0
|
|
1090
|
+
peerDependenciesMeta:
|
|
1091
|
+
react-native-worklets:
|
|
1092
|
+
optional: true
|
|
1093
|
+
|
|
1094
|
+
expo-modules-jsi@56.0.10:
|
|
1095
|
+
resolution: {integrity: sha512-fHZcFpYO/o62GYa6fJyAQJZcAShzhoN0iMMDzbr7vD3ewET6e1vAlTonbEakN9F0VHEgBFJ4NREy87uwVcpCuA==}
|
|
1096
|
+
peerDependencies:
|
|
1097
|
+
react-native: '*'
|
|
1098
|
+
|
|
1099
|
+
expo-server@56.0.5:
|
|
1100
|
+
resolution: {integrity: sha512-SmM2p2g3Jrktpiazcst+OxhjSzOHXKAY4BPURHYHXvApzzoybMmrNF4IEZ8DKZ145BhSe4ydAmlEFCRTsdtgUQ==}
|
|
1101
|
+
engines: {node: '>=20.16.0'}
|
|
1102
|
+
|
|
1103
|
+
expo@56.0.12:
|
|
1104
|
+
resolution: {integrity: sha512-FxgdI/Yqva6iJOThZIHfvxlKPxs4EC4uScUnEswwSArR/Fj9k430O13R590LcOQTsdNsjIs+GBHwjfoAY6vmAQ==}
|
|
1105
|
+
hasBin: true
|
|
1106
|
+
peerDependencies:
|
|
1107
|
+
'@expo/metro-runtime': '*'
|
|
1108
|
+
react: '*'
|
|
1109
|
+
react-dom: '*'
|
|
1110
|
+
react-native: '*'
|
|
1111
|
+
react-native-web: '*'
|
|
1112
|
+
react-native-webview: '*'
|
|
1113
|
+
peerDependenciesMeta:
|
|
1114
|
+
'@expo/metro-runtime':
|
|
1115
|
+
optional: true
|
|
1116
|
+
react-dom:
|
|
1117
|
+
optional: true
|
|
1118
|
+
react-native-web:
|
|
1119
|
+
optional: true
|
|
1120
|
+
react-native-webview:
|
|
1121
|
+
optional: true
|
|
1122
|
+
|
|
1123
|
+
exponential-backoff@3.1.3:
|
|
1124
|
+
resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
|
|
1125
|
+
|
|
1126
|
+
fb-dotslash@0.5.8:
|
|
1127
|
+
resolution: {integrity: sha512-XHYLKk9J4BupDxi9bSEhkfss0m+Vr9ChTrjhf9l2iw3jB5C7BnY4GVPoMcqbrTutsKJso6yj2nAB6BI/F2oZaA==}
|
|
1128
|
+
engines: {node: '>=20'}
|
|
1129
|
+
hasBin: true
|
|
1130
|
+
|
|
1131
|
+
fb-watchman@2.0.2:
|
|
1132
|
+
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
|
|
1133
|
+
|
|
1134
|
+
fdir@6.5.0:
|
|
1135
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
1136
|
+
engines: {node: '>=12.0.0'}
|
|
1137
|
+
peerDependencies:
|
|
1138
|
+
picomatch: ^3 || ^4
|
|
1139
|
+
peerDependenciesMeta:
|
|
1140
|
+
picomatch:
|
|
1141
|
+
optional: true
|
|
1142
|
+
|
|
1143
|
+
fetch-nodeshim@0.4.10:
|
|
1144
|
+
resolution: {integrity: sha512-m6I8ALe4L4XpdETy7MJZWs6L1IVMbjs99bwbpIKphxX+0CTns4IKDWJY0LWfr4YsFjfg+z1TjzTMU8lKl8rG0w==}
|
|
1145
|
+
|
|
1146
|
+
fill-range@7.1.1:
|
|
1147
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
1148
|
+
engines: {node: '>=8'}
|
|
1149
|
+
|
|
1150
|
+
finalhandler@1.1.2:
|
|
1151
|
+
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
|
|
1152
|
+
engines: {node: '>= 0.8'}
|
|
1153
|
+
|
|
1154
|
+
flow-enums-runtime@0.0.6:
|
|
1155
|
+
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
|
|
1156
|
+
|
|
1157
|
+
fontfaceobserver@2.3.0:
|
|
1158
|
+
resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==}
|
|
1159
|
+
|
|
1160
|
+
fresh@0.5.2:
|
|
1161
|
+
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
|
1162
|
+
engines: {node: '>= 0.6'}
|
|
1163
|
+
|
|
1164
|
+
function-bind@1.1.2:
|
|
1165
|
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
1166
|
+
|
|
1167
|
+
gensync@1.0.0-beta.2:
|
|
1168
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
1169
|
+
engines: {node: '>=6.9.0'}
|
|
1170
|
+
|
|
1171
|
+
get-caller-file@2.0.5:
|
|
1172
|
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
1173
|
+
engines: {node: 6.* || 8.* || >= 10.*}
|
|
1174
|
+
|
|
1175
|
+
getenv@2.0.0:
|
|
1176
|
+
resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==}
|
|
1177
|
+
engines: {node: '>=6'}
|
|
1178
|
+
|
|
1179
|
+
glob@13.0.6:
|
|
1180
|
+
resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
|
|
1181
|
+
engines: {node: 18 || 20 || >=22}
|
|
1182
|
+
|
|
1183
|
+
graceful-fs@4.2.11:
|
|
1184
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
1185
|
+
|
|
1186
|
+
has-flag@3.0.0:
|
|
1187
|
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
|
|
1188
|
+
engines: {node: '>=4'}
|
|
1189
|
+
|
|
1190
|
+
has-flag@4.0.0:
|
|
1191
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
1192
|
+
engines: {node: '>=8'}
|
|
1193
|
+
|
|
1194
|
+
hasown@2.0.4:
|
|
1195
|
+
resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
|
|
1196
|
+
engines: {node: '>= 0.4'}
|
|
1197
|
+
|
|
1198
|
+
hermes-compiler@250829098.0.10:
|
|
1199
|
+
resolution: {integrity: sha512-TcRlZ0/TlyfJqquRFAWoyElVNnkdYRi/sEp4/Qy8/GYxjg8j2cS9D4MjuaQ+qimkmLN7AmO+44IznRf06mAr0w==}
|
|
1200
|
+
|
|
1201
|
+
hermes-estree@0.33.3:
|
|
1202
|
+
resolution: {integrity: sha512-6kzYZHCk8Fy1Uc+t3HGYyJn3OL4aeqKLTyina4UFtWl8I0kSL7OmKThaiX+Uh2f8nGw3mo4Ifxg0M5Zk3/Oeqg==}
|
|
1203
|
+
|
|
1204
|
+
hermes-estree@0.35.0:
|
|
1205
|
+
resolution: {integrity: sha512-xVx5Opwy8Oo1I5yGpVRhCvWL/iV3M+ylksSKVNlxxD90cpDpR/AR1jLYqK8HWihm065a6UI3HeyAmYzwS8NOOg==}
|
|
1206
|
+
|
|
1207
|
+
hermes-parser@0.33.3:
|
|
1208
|
+
resolution: {integrity: sha512-Yg3HgaG4CqgyowtYjX/FsnPAuZdHOqSMtnbpylbptsQ9nwwSKsy6uRWcGO5RK0EqiX12q8HvDWKgeAVajRO5DA==}
|
|
1209
|
+
|
|
1210
|
+
hermes-parser@0.35.0:
|
|
1211
|
+
resolution: {integrity: sha512-9JLjeHxBx8T4CAsydZR49PNZUaix+WpQJwu9p2010lu+7Kwl6D/7wYFFJxoz+aXkaaClp9Zfg6W6/zVlSJORaA==}
|
|
1212
|
+
|
|
1213
|
+
hoist-non-react-statics@3.3.2:
|
|
1214
|
+
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
|
|
1215
|
+
|
|
1216
|
+
hosted-git-info@7.0.2:
|
|
1217
|
+
resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
|
|
1218
|
+
engines: {node: ^16.14.0 || >=18.0.0}
|
|
1219
|
+
|
|
1220
|
+
http-errors@2.0.1:
|
|
1221
|
+
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
|
|
1222
|
+
engines: {node: '>= 0.8'}
|
|
1223
|
+
|
|
1224
|
+
https-proxy-agent@7.0.6:
|
|
1225
|
+
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
|
|
1226
|
+
engines: {node: '>= 14'}
|
|
1227
|
+
|
|
1228
|
+
ignore@5.3.2:
|
|
1229
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1230
|
+
engines: {node: '>= 4'}
|
|
1231
|
+
|
|
1232
|
+
image-size@1.2.1:
|
|
1233
|
+
resolution: {integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==}
|
|
1234
|
+
engines: {node: '>=16.x'}
|
|
1235
|
+
hasBin: true
|
|
1236
|
+
|
|
1237
|
+
inherits@2.0.4:
|
|
1238
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1239
|
+
|
|
1240
|
+
invariant@2.2.4:
|
|
1241
|
+
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
|
|
1242
|
+
|
|
1243
|
+
is-core-module@2.16.2:
|
|
1244
|
+
resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
|
|
1245
|
+
engines: {node: '>= 0.4'}
|
|
1246
|
+
|
|
1247
|
+
is-docker@2.2.1:
|
|
1248
|
+
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
|
|
1249
|
+
engines: {node: '>=8'}
|
|
1250
|
+
hasBin: true
|
|
1251
|
+
|
|
1252
|
+
is-fullwidth-code-point@3.0.0:
|
|
1253
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
1254
|
+
engines: {node: '>=8'}
|
|
1255
|
+
|
|
1256
|
+
is-number@7.0.0:
|
|
1257
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1258
|
+
engines: {node: '>=0.12.0'}
|
|
1259
|
+
|
|
1260
|
+
is-plain-obj@2.1.0:
|
|
1261
|
+
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
|
|
1262
|
+
engines: {node: '>=8'}
|
|
1263
|
+
|
|
1264
|
+
is-wsl@2.2.0:
|
|
1265
|
+
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
|
|
1266
|
+
engines: {node: '>=8'}
|
|
1267
|
+
|
|
1268
|
+
isexe@2.0.0:
|
|
1269
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1270
|
+
|
|
1271
|
+
jest-get-type@29.6.3:
|
|
1272
|
+
resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
|
|
1273
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
1274
|
+
|
|
1275
|
+
jest-util@29.7.0:
|
|
1276
|
+
resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
|
|
1277
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
1278
|
+
|
|
1279
|
+
jest-validate@29.7.0:
|
|
1280
|
+
resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
|
|
1281
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
1282
|
+
|
|
1283
|
+
jest-worker@29.7.0:
|
|
1284
|
+
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
|
|
1285
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
1286
|
+
|
|
1287
|
+
jimp-compact@0.16.1:
|
|
1288
|
+
resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
|
|
1289
|
+
|
|
1290
|
+
js-tokens@4.0.0:
|
|
1291
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1292
|
+
|
|
1293
|
+
js-yaml@4.2.0:
|
|
1294
|
+
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
1295
|
+
hasBin: true
|
|
1296
|
+
|
|
1297
|
+
jsc-safe-url@0.2.4:
|
|
1298
|
+
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
|
|
1299
|
+
|
|
1300
|
+
jsesc@3.1.0:
|
|
1301
|
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
1302
|
+
engines: {node: '>=6'}
|
|
1303
|
+
hasBin: true
|
|
1304
|
+
|
|
1305
|
+
json5@2.2.3:
|
|
1306
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
1307
|
+
engines: {node: '>=6'}
|
|
1308
|
+
hasBin: true
|
|
1309
|
+
|
|
1310
|
+
kleur@3.0.3:
|
|
1311
|
+
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
|
|
1312
|
+
engines: {node: '>=6'}
|
|
1313
|
+
|
|
1314
|
+
lan-network@0.2.1:
|
|
1315
|
+
resolution: {integrity: sha512-ONPnazC96VKDntab9j9JKwIWhZ4ZUceB4A9Epu4Ssg0hYFmtHZSeQ+n15nIwTFmcBUKtExOer8WTJ4GF9MO64A==}
|
|
1316
|
+
hasBin: true
|
|
1317
|
+
|
|
1318
|
+
leven@3.1.0:
|
|
1319
|
+
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
|
|
1320
|
+
engines: {node: '>=6'}
|
|
1321
|
+
|
|
1322
|
+
lighthouse-logger@1.4.2:
|
|
1323
|
+
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
|
|
1324
|
+
|
|
1325
|
+
lightningcss-android-arm64@1.32.0:
|
|
1326
|
+
resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
|
|
1327
|
+
engines: {node: '>= 12.0.0'}
|
|
1328
|
+
cpu: [arm64]
|
|
1329
|
+
os: [android]
|
|
1330
|
+
|
|
1331
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
1332
|
+
resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
|
|
1333
|
+
engines: {node: '>= 12.0.0'}
|
|
1334
|
+
cpu: [arm64]
|
|
1335
|
+
os: [darwin]
|
|
1336
|
+
|
|
1337
|
+
lightningcss-darwin-x64@1.32.0:
|
|
1338
|
+
resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
|
|
1339
|
+
engines: {node: '>= 12.0.0'}
|
|
1340
|
+
cpu: [x64]
|
|
1341
|
+
os: [darwin]
|
|
1342
|
+
|
|
1343
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
1344
|
+
resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
|
|
1345
|
+
engines: {node: '>= 12.0.0'}
|
|
1346
|
+
cpu: [x64]
|
|
1347
|
+
os: [freebsd]
|
|
1348
|
+
|
|
1349
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
1350
|
+
resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
|
|
1351
|
+
engines: {node: '>= 12.0.0'}
|
|
1352
|
+
cpu: [arm]
|
|
1353
|
+
os: [linux]
|
|
1354
|
+
|
|
1355
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
1356
|
+
resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
|
|
1357
|
+
engines: {node: '>= 12.0.0'}
|
|
1358
|
+
cpu: [arm64]
|
|
1359
|
+
os: [linux]
|
|
1360
|
+
|
|
1361
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
1362
|
+
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
1363
|
+
engines: {node: '>= 12.0.0'}
|
|
1364
|
+
cpu: [arm64]
|
|
1365
|
+
os: [linux]
|
|
1366
|
+
|
|
1367
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
1368
|
+
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
1369
|
+
engines: {node: '>= 12.0.0'}
|
|
1370
|
+
cpu: [x64]
|
|
1371
|
+
os: [linux]
|
|
1372
|
+
|
|
1373
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
1374
|
+
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
1375
|
+
engines: {node: '>= 12.0.0'}
|
|
1376
|
+
cpu: [x64]
|
|
1377
|
+
os: [linux]
|
|
1378
|
+
|
|
1379
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
1380
|
+
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
1381
|
+
engines: {node: '>= 12.0.0'}
|
|
1382
|
+
cpu: [arm64]
|
|
1383
|
+
os: [win32]
|
|
1384
|
+
|
|
1385
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
1386
|
+
resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
|
|
1387
|
+
engines: {node: '>= 12.0.0'}
|
|
1388
|
+
cpu: [x64]
|
|
1389
|
+
os: [win32]
|
|
1390
|
+
|
|
1391
|
+
lightningcss@1.32.0:
|
|
1392
|
+
resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
|
|
1393
|
+
engines: {node: '>= 12.0.0'}
|
|
1394
|
+
|
|
1395
|
+
lodash.debounce@4.0.8:
|
|
1396
|
+
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
|
|
1397
|
+
|
|
1398
|
+
lodash.throttle@4.1.1:
|
|
1399
|
+
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
|
|
1400
|
+
|
|
1401
|
+
log-symbols@2.2.0:
|
|
1402
|
+
resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
|
|
1403
|
+
engines: {node: '>=4'}
|
|
1404
|
+
|
|
1405
|
+
loose-envify@1.4.0:
|
|
1406
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
1407
|
+
hasBin: true
|
|
1408
|
+
|
|
1409
|
+
lru-cache@10.4.3:
|
|
1410
|
+
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
|
|
1411
|
+
|
|
1412
|
+
lru-cache@11.5.1:
|
|
1413
|
+
resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==}
|
|
1414
|
+
engines: {node: 20 || >=22}
|
|
1415
|
+
|
|
1416
|
+
lru-cache@5.1.1:
|
|
1417
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1418
|
+
|
|
1419
|
+
makeerror@1.0.12:
|
|
1420
|
+
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
|
|
1421
|
+
|
|
1422
|
+
marky@1.3.0:
|
|
1423
|
+
resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==}
|
|
1424
|
+
|
|
1425
|
+
memoize-one@5.2.1:
|
|
1426
|
+
resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
|
|
1427
|
+
|
|
1428
|
+
merge-options@3.0.4:
|
|
1429
|
+
resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==}
|
|
1430
|
+
engines: {node: '>=10'}
|
|
1431
|
+
|
|
1432
|
+
merge-stream@2.0.0:
|
|
1433
|
+
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
|
|
1434
|
+
|
|
1435
|
+
metro-babel-transformer@0.84.4:
|
|
1436
|
+
resolution: {integrity: sha512-rvCfz8snl9h20VcvpOHxZuHP1SlAkv4HXbzw7nyyVwu6Eqo5PRerbakQ9XmUCOsRy70spJ37O+G1TK8oMzo48g==}
|
|
1437
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1438
|
+
|
|
1439
|
+
metro-cache-key@0.84.4:
|
|
1440
|
+
resolution: {integrity: sha512-wVO79aGrkYImpnaVS4+d5RrRBRPX31QtvKB3wKGBuiNSznduZTQHzsrJZRroFJSwnygrzdsGUtDQPuqqFjFdvw==}
|
|
1441
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1442
|
+
|
|
1443
|
+
metro-cache@0.84.4:
|
|
1444
|
+
resolution: {integrity: sha512-gpcFQdSLUwUCk71saKoE64jLFbx2nwTfVCcPSULMNT8QYq0p1eZZE29Jvd0HtT/UlhC3ZOutLxJME5xqD2JUZg==}
|
|
1445
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1446
|
+
|
|
1447
|
+
metro-config@0.84.4:
|
|
1448
|
+
resolution: {integrity: sha512-PMotGDjXcXLWo2TMRH+VR99phFNgYTwqh4OoieIKK3yTJa1Jmkl+fZJxDO0jfBvNF+WESHciHvpNuBtXaF3B0Q==}
|
|
1449
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1450
|
+
|
|
1451
|
+
metro-core@0.84.4:
|
|
1452
|
+
resolution: {integrity: sha512-HONpWC5LGXZn3ffkd4Hu6AIrfE7j4Z0g0wMo/goV24WOB3lhuFZ40KgvaDiSw8iyQHloMYay5N/wPX+z8oN/PQ==}
|
|
1453
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1454
|
+
|
|
1455
|
+
metro-file-map@0.84.4:
|
|
1456
|
+
resolution: {integrity: sha512-KSVDi/u60hKPx++NLu3MTIvyjzNoJnFAF8PQFxaj1jiSka/wjw+Ua6sNuJ0TDHQv+7AAoFQxeMgaRAe8Yic5wQ==}
|
|
1457
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1458
|
+
|
|
1459
|
+
metro-minify-terser@0.84.4:
|
|
1460
|
+
resolution: {integrity: sha512-5qpbaVOMC7CPitIpuewzVeGw7E+C3ykbv2mqTjQLl85Z3annSVGlSCTcsZjqXZzjupfK4Ztj3dDc4kc44NZwtQ==}
|
|
1461
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1462
|
+
|
|
1463
|
+
metro-resolver@0.84.4:
|
|
1464
|
+
resolution: {integrity: sha512-1qLgbxQ5ZGhhutuPot1Yp348ofDsATL2WkrHF65TobqTT9K3P9qJXw38bomk7ncp5B7OYMfWwtyBZo1lCV792A==}
|
|
1465
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1466
|
+
|
|
1467
|
+
metro-runtime@0.84.4:
|
|
1468
|
+
resolution: {integrity: sha512-Jibypds4g7AhzdRKY+kDoj51s5EXMwgyp5ddtlreDAsWefMdOx+agWqgm0H2XSZ/ueanHHVM89fnf5OJnlxa8Q==}
|
|
1469
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1470
|
+
|
|
1471
|
+
metro-source-map@0.84.4:
|
|
1472
|
+
resolution: {integrity: sha512-jbWkPxIesVuo1IWkvezmMJld6iu8nD62GsrZiV6jP37AOdbo4OBq1FJ+qkOg8sV05wAHB//jAbziuW0SlJfW4g==}
|
|
1473
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1474
|
+
|
|
1475
|
+
metro-symbolicate@0.84.4:
|
|
1476
|
+
resolution: {integrity: sha512-OnfpacxUqGPZQ27t8qK9mFa7uqHIlVWeqRqkCbvMvreEBiamEeOn8krKtcwgP5M4cYDPwuSmCTopHMVthqG4zA==}
|
|
1477
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1478
|
+
hasBin: true
|
|
1479
|
+
|
|
1480
|
+
metro-transform-plugins@0.84.4:
|
|
1481
|
+
resolution: {integrity: sha512-kehr6HbAecqD0/a3xLXobELdPaAmRAl8bel0qagPF4vhZtux93nS8S4eq2kgKt6J2GnQpVjSoW1PXdst04mwow==}
|
|
1482
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1483
|
+
|
|
1484
|
+
metro-transform-worker@0.84.4:
|
|
1485
|
+
resolution: {integrity: sha512-W1IYMvvXTu4MxYr7d9h7CeG2vpIr3bmLLIavkPY4O1ilzDrvS8z/NEe6y+pC44Ff7raMXQgYSfdqDUwN/i39gg==}
|
|
1486
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1487
|
+
|
|
1488
|
+
metro@0.84.4:
|
|
1489
|
+
resolution: {integrity: sha512-8ETTubqfD6ornDy2zYDvRcKnVDOXdFJsjetYDBsY4oAsb6NJkiwFR+FaMESyGppFmQUyBQA4H4sFGxzcQSGtFA==}
|
|
1490
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1491
|
+
hasBin: true
|
|
1492
|
+
|
|
1493
|
+
micromatch@4.0.8:
|
|
1494
|
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
1495
|
+
engines: {node: '>=8.6'}
|
|
1496
|
+
|
|
1497
|
+
mime-db@1.52.0:
|
|
1498
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
1499
|
+
engines: {node: '>= 0.6'}
|
|
1500
|
+
|
|
1501
|
+
mime-db@1.54.0:
|
|
1502
|
+
resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
|
|
1503
|
+
engines: {node: '>= 0.6'}
|
|
1504
|
+
|
|
1505
|
+
mime-types@2.1.35:
|
|
1506
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
1507
|
+
engines: {node: '>= 0.6'}
|
|
1508
|
+
|
|
1509
|
+
mime-types@3.0.2:
|
|
1510
|
+
resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
|
|
1511
|
+
engines: {node: '>=18'}
|
|
1512
|
+
|
|
1513
|
+
mime@1.6.0:
|
|
1514
|
+
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
|
|
1515
|
+
engines: {node: '>=4'}
|
|
1516
|
+
hasBin: true
|
|
1517
|
+
|
|
1518
|
+
mimic-fn@1.2.0:
|
|
1519
|
+
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
|
|
1520
|
+
engines: {node: '>=4'}
|
|
1521
|
+
|
|
1522
|
+
minimatch@10.2.5:
|
|
1523
|
+
resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
|
|
1524
|
+
engines: {node: 18 || 20 || >=22}
|
|
1525
|
+
|
|
1526
|
+
minipass@7.1.3:
|
|
1527
|
+
resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
|
|
1528
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1529
|
+
|
|
1530
|
+
mkdirp@1.0.4:
|
|
1531
|
+
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
|
|
1532
|
+
engines: {node: '>=10'}
|
|
1533
|
+
hasBin: true
|
|
1534
|
+
|
|
1535
|
+
ms@2.0.0:
|
|
1536
|
+
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
|
|
1537
|
+
|
|
1538
|
+
ms@2.1.3:
|
|
1539
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1540
|
+
|
|
1541
|
+
multitars@1.0.0:
|
|
1542
|
+
resolution: {integrity: sha512-H/J4fMLedtudftaYMOg7ajzLYgT3/rwbWVJbqr/iUgB8DQztn38ys5HOqI1CzSxx8QhXXwOOnnBvd4v3jG5+Mg==}
|
|
1543
|
+
|
|
1544
|
+
nanoid@3.3.12:
|
|
1545
|
+
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
|
|
1546
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1547
|
+
hasBin: true
|
|
1548
|
+
|
|
1549
|
+
negotiator@0.6.3:
|
|
1550
|
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
1551
|
+
engines: {node: '>= 0.6'}
|
|
1552
|
+
|
|
1553
|
+
negotiator@0.6.4:
|
|
1554
|
+
resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
|
|
1555
|
+
engines: {node: '>= 0.6'}
|
|
1556
|
+
|
|
1557
|
+
negotiator@1.0.0:
|
|
1558
|
+
resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
|
|
1559
|
+
engines: {node: '>= 0.6'}
|
|
1560
|
+
|
|
1561
|
+
node-forge@1.4.0:
|
|
1562
|
+
resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==}
|
|
1563
|
+
engines: {node: '>= 6.13.0'}
|
|
1564
|
+
|
|
1565
|
+
node-int64@0.4.0:
|
|
1566
|
+
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
|
|
1567
|
+
|
|
1568
|
+
node-releases@2.0.47:
|
|
1569
|
+
resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==}
|
|
1570
|
+
engines: {node: '>=18'}
|
|
1571
|
+
|
|
1572
|
+
npm-package-arg@11.0.3:
|
|
1573
|
+
resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==}
|
|
1574
|
+
engines: {node: ^16.14.0 || >=18.0.0}
|
|
1575
|
+
|
|
1576
|
+
nullthrows@1.1.1:
|
|
1577
|
+
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
|
|
1578
|
+
|
|
1579
|
+
ob1@0.84.4:
|
|
1580
|
+
resolution: {integrity: sha512-eJXMpz4aQHXF/YBB9ddqZDIS+ooO91hObo9FoW/xBkr54/zCwYYCDqT/O54vNo8kOkWs5Ou/y28NgdrV0edQNA==}
|
|
1581
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1582
|
+
|
|
1583
|
+
on-finished@2.3.0:
|
|
1584
|
+
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
|
|
1585
|
+
engines: {node: '>= 0.8'}
|
|
1586
|
+
|
|
1587
|
+
on-finished@2.4.1:
|
|
1588
|
+
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
|
1589
|
+
engines: {node: '>= 0.8'}
|
|
1590
|
+
|
|
1591
|
+
on-headers@1.1.0:
|
|
1592
|
+
resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==}
|
|
1593
|
+
engines: {node: '>= 0.8'}
|
|
1594
|
+
|
|
1595
|
+
onetime@2.0.1:
|
|
1596
|
+
resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
|
|
1597
|
+
engines: {node: '>=4'}
|
|
1598
|
+
|
|
1599
|
+
open@7.4.2:
|
|
1600
|
+
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
|
|
1601
|
+
engines: {node: '>=8'}
|
|
1602
|
+
|
|
1603
|
+
ora@3.4.0:
|
|
1604
|
+
resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
|
|
1605
|
+
engines: {node: '>=6'}
|
|
1606
|
+
|
|
1607
|
+
parse-png@2.1.0:
|
|
1608
|
+
resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==}
|
|
1609
|
+
engines: {node: '>=10'}
|
|
1610
|
+
|
|
1611
|
+
parseurl@1.3.3:
|
|
1612
|
+
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
|
1613
|
+
engines: {node: '>= 0.8'}
|
|
1614
|
+
|
|
1615
|
+
path-key@3.1.1:
|
|
1616
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1617
|
+
engines: {node: '>=8'}
|
|
1618
|
+
|
|
1619
|
+
path-parse@1.0.7:
|
|
1620
|
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1621
|
+
|
|
1622
|
+
path-scurry@2.0.2:
|
|
1623
|
+
resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
|
|
1624
|
+
engines: {node: 18 || 20 || >=22}
|
|
1625
|
+
|
|
1626
|
+
picocolors@1.1.1:
|
|
1627
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1628
|
+
|
|
1629
|
+
picomatch@2.3.2:
|
|
1630
|
+
resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
|
|
1631
|
+
engines: {node: '>=8.6'}
|
|
1632
|
+
|
|
1633
|
+
picomatch@4.0.4:
|
|
1634
|
+
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
|
|
1635
|
+
engines: {node: '>=12'}
|
|
1636
|
+
|
|
1637
|
+
plist@3.1.1:
|
|
1638
|
+
resolution: {integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==}
|
|
1639
|
+
engines: {node: '>=10.4.0'}
|
|
1640
|
+
|
|
1641
|
+
pngjs@3.4.0:
|
|
1642
|
+
resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
|
|
1643
|
+
engines: {node: '>=4.0.0'}
|
|
1644
|
+
|
|
1645
|
+
postcss@8.5.15:
|
|
1646
|
+
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
|
|
1647
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1648
|
+
|
|
1649
|
+
pretty-format@29.7.0:
|
|
1650
|
+
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
|
|
1651
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
1652
|
+
|
|
1653
|
+
proc-log@4.2.0:
|
|
1654
|
+
resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
|
|
1655
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1656
|
+
|
|
1657
|
+
progress@2.0.3:
|
|
1658
|
+
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
|
|
1659
|
+
engines: {node: '>=0.4.0'}
|
|
1660
|
+
|
|
1661
|
+
promise@8.3.0:
|
|
1662
|
+
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
|
|
1663
|
+
|
|
1664
|
+
prompts@2.4.2:
|
|
1665
|
+
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
|
|
1666
|
+
engines: {node: '>= 6'}
|
|
1667
|
+
|
|
1668
|
+
queue@6.0.2:
|
|
1669
|
+
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
|
|
1670
|
+
|
|
1671
|
+
range-parser@1.2.1:
|
|
1672
|
+
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
|
|
1673
|
+
engines: {node: '>= 0.6'}
|
|
1674
|
+
|
|
1675
|
+
react-devtools-core@6.1.5:
|
|
1676
|
+
resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==}
|
|
1677
|
+
|
|
1678
|
+
react-is@16.13.1:
|
|
1679
|
+
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
|
1680
|
+
|
|
1681
|
+
react-is@18.3.1:
|
|
1682
|
+
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
|
|
1683
|
+
|
|
1684
|
+
react-native-gesture-handler@2.31.2:
|
|
1685
|
+
resolution: {integrity: sha512-rw5q74i2AfS7YGYdbxQDhOU7xqgY6WRM1132/CCm3erqjblhECZDZFHIm0tteHoC9ih24wogVBVVzcTBQtZ+5A==}
|
|
1686
|
+
peerDependencies:
|
|
1687
|
+
react: '*'
|
|
1688
|
+
react-native: '*'
|
|
1689
|
+
|
|
1690
|
+
react-native-safe-area-context@5.7.0:
|
|
1691
|
+
resolution: {integrity: sha512-/9/MtQz8ODphjsLdZ+GZAIcC/RtoqW9EeShf7Uvnfgm/pzYrJ75y3PV/J1wuAV1T5Dye5ygq4EAW20RoBq0ABQ==}
|
|
1692
|
+
peerDependencies:
|
|
1693
|
+
react: '*'
|
|
1694
|
+
react-native: '*'
|
|
1695
|
+
|
|
1696
|
+
react-native@0.85.3:
|
|
1697
|
+
resolution: {integrity: sha512-HN/fGC+3nZVcDNcw7gfbM/DuqZAvI9Mz+/SxuhODaua4JY0BPzhfTzWXRyTR4mRgMHmShTPpH2PYMTxvZrsdZA==}
|
|
1698
|
+
engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0}
|
|
1699
|
+
hasBin: true
|
|
1700
|
+
peerDependencies:
|
|
1701
|
+
'@react-native/jest-preset': 0.85.3
|
|
1702
|
+
'@types/react': ^19.1.1
|
|
1703
|
+
react: ^19.2.3
|
|
1704
|
+
peerDependenciesMeta:
|
|
1705
|
+
'@react-native/jest-preset':
|
|
1706
|
+
optional: true
|
|
1707
|
+
'@types/react':
|
|
1708
|
+
optional: true
|
|
1709
|
+
|
|
1710
|
+
react-refresh@0.14.2:
|
|
1711
|
+
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
|
|
1712
|
+
engines: {node: '>=0.10.0'}
|
|
1713
|
+
|
|
1714
|
+
react@19.2.3:
|
|
1715
|
+
resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
|
|
1716
|
+
engines: {node: '>=0.10.0'}
|
|
1717
|
+
|
|
1718
|
+
regenerate-unicode-properties@10.2.2:
|
|
1719
|
+
resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
|
|
1720
|
+
engines: {node: '>=4'}
|
|
1721
|
+
|
|
1722
|
+
regenerate@1.4.2:
|
|
1723
|
+
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
|
|
1724
|
+
|
|
1725
|
+
regenerator-runtime@0.13.11:
|
|
1726
|
+
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
|
|
1727
|
+
|
|
1728
|
+
regexpu-core@6.4.0:
|
|
1729
|
+
resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
|
|
1730
|
+
engines: {node: '>=4'}
|
|
1731
|
+
|
|
1732
|
+
regjsgen@0.8.0:
|
|
1733
|
+
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
|
|
1734
|
+
|
|
1735
|
+
regjsparser@0.13.2:
|
|
1736
|
+
resolution: {integrity: sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==}
|
|
1737
|
+
hasBin: true
|
|
1738
|
+
|
|
1739
|
+
require-directory@2.1.1:
|
|
1740
|
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
1741
|
+
engines: {node: '>=0.10.0'}
|
|
1742
|
+
|
|
1743
|
+
resolve-from@5.0.0:
|
|
1744
|
+
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
|
1745
|
+
engines: {node: '>=8'}
|
|
1746
|
+
|
|
1747
|
+
resolve-workspace-root@2.0.1:
|
|
1748
|
+
resolution: {integrity: sha512-nR23LHAvaI6aHtMg6RWoaHpdR4D881Nydkzi2CixINyg9T00KgaJdJI6Vwty+Ps8WLxZHuxsS0BseWjxSA4C+w==}
|
|
1749
|
+
|
|
1750
|
+
resolve@1.22.12:
|
|
1751
|
+
resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
|
|
1752
|
+
engines: {node: '>= 0.4'}
|
|
1753
|
+
hasBin: true
|
|
1754
|
+
|
|
1755
|
+
restore-cursor@2.0.0:
|
|
1756
|
+
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
|
|
1757
|
+
engines: {node: '>=4'}
|
|
1758
|
+
|
|
1759
|
+
safe-buffer@5.2.1:
|
|
1760
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1761
|
+
|
|
1762
|
+
sax@1.6.0:
|
|
1763
|
+
resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==}
|
|
1764
|
+
engines: {node: '>=11.0.0'}
|
|
1765
|
+
|
|
1766
|
+
scheduler@0.27.0:
|
|
1767
|
+
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
|
|
1768
|
+
|
|
1769
|
+
semver@6.3.1:
|
|
1770
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1771
|
+
hasBin: true
|
|
1772
|
+
|
|
1773
|
+
semver@7.8.4:
|
|
1774
|
+
resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==}
|
|
1775
|
+
engines: {node: '>=10'}
|
|
1776
|
+
hasBin: true
|
|
1777
|
+
|
|
1778
|
+
send@0.19.2:
|
|
1779
|
+
resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
|
|
1780
|
+
engines: {node: '>= 0.8.0'}
|
|
1781
|
+
|
|
1782
|
+
serialize-error@2.1.0:
|
|
1783
|
+
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
|
|
1784
|
+
engines: {node: '>=0.10.0'}
|
|
1785
|
+
|
|
1786
|
+
serve-static@1.16.3:
|
|
1787
|
+
resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
|
|
1788
|
+
engines: {node: '>= 0.8.0'}
|
|
1789
|
+
|
|
1790
|
+
setprototypeof@1.2.0:
|
|
1791
|
+
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
1792
|
+
|
|
1793
|
+
shebang-command@2.0.0:
|
|
1794
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1795
|
+
engines: {node: '>=8'}
|
|
1796
|
+
|
|
1797
|
+
shebang-regex@3.0.0:
|
|
1798
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1799
|
+
engines: {node: '>=8'}
|
|
1800
|
+
|
|
1801
|
+
shell-quote@1.8.4:
|
|
1802
|
+
resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==}
|
|
1803
|
+
engines: {node: '>= 0.4'}
|
|
1804
|
+
|
|
1805
|
+
signal-exit@3.0.7:
|
|
1806
|
+
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
|
1807
|
+
|
|
1808
|
+
simple-plist@1.3.1:
|
|
1809
|
+
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
|
|
1810
|
+
|
|
1811
|
+
sisteransi@1.0.5:
|
|
1812
|
+
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
|
1813
|
+
|
|
1814
|
+
slugify@1.6.9:
|
|
1815
|
+
resolution: {integrity: sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==}
|
|
1816
|
+
engines: {node: '>=8.0.0'}
|
|
1817
|
+
|
|
1818
|
+
source-map-js@1.2.1:
|
|
1819
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1820
|
+
engines: {node: '>=0.10.0'}
|
|
1821
|
+
|
|
1822
|
+
source-map-support@0.5.21:
|
|
1823
|
+
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
1824
|
+
|
|
1825
|
+
source-map@0.5.7:
|
|
1826
|
+
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
|
|
1827
|
+
engines: {node: '>=0.10.0'}
|
|
1828
|
+
|
|
1829
|
+
source-map@0.6.1:
|
|
1830
|
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
1831
|
+
engines: {node: '>=0.10.0'}
|
|
1832
|
+
|
|
1833
|
+
stackframe@1.3.4:
|
|
1834
|
+
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
|
|
1835
|
+
|
|
1836
|
+
stacktrace-parser@0.1.11:
|
|
1837
|
+
resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==}
|
|
1838
|
+
engines: {node: '>=6'}
|
|
1839
|
+
|
|
1840
|
+
statuses@1.5.0:
|
|
1841
|
+
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
|
|
1842
|
+
engines: {node: '>= 0.6'}
|
|
1843
|
+
|
|
1844
|
+
statuses@2.0.2:
|
|
1845
|
+
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
1846
|
+
engines: {node: '>= 0.8'}
|
|
1847
|
+
|
|
1848
|
+
stream-buffers@2.2.0:
|
|
1849
|
+
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
|
|
1850
|
+
engines: {node: '>= 0.10.0'}
|
|
1851
|
+
|
|
1852
|
+
string-width@4.2.3:
|
|
1853
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
1854
|
+
engines: {node: '>=8'}
|
|
1855
|
+
|
|
1856
|
+
strip-ansi@5.2.0:
|
|
1857
|
+
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
|
|
1858
|
+
engines: {node: '>=6'}
|
|
1859
|
+
|
|
1860
|
+
strip-ansi@6.0.1:
|
|
1861
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
1862
|
+
engines: {node: '>=8'}
|
|
1863
|
+
|
|
1864
|
+
structured-headers@0.4.1:
|
|
1865
|
+
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
|
|
1866
|
+
|
|
1867
|
+
supports-color@5.5.0:
|
|
1868
|
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
|
1869
|
+
engines: {node: '>=4'}
|
|
1870
|
+
|
|
1871
|
+
supports-color@7.2.0:
|
|
1872
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
1873
|
+
engines: {node: '>=8'}
|
|
1874
|
+
|
|
1875
|
+
supports-color@8.1.1:
|
|
1876
|
+
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
|
|
1877
|
+
engines: {node: '>=10'}
|
|
1878
|
+
|
|
1879
|
+
supports-hyperlinks@2.3.0:
|
|
1880
|
+
resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
|
|
1881
|
+
engines: {node: '>=8'}
|
|
1882
|
+
|
|
1883
|
+
supports-preserve-symlinks-flag@1.0.0:
|
|
1884
|
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
1885
|
+
engines: {node: '>= 0.4'}
|
|
1886
|
+
|
|
1887
|
+
terminal-link@2.1.1:
|
|
1888
|
+
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
|
|
1889
|
+
engines: {node: '>=8'}
|
|
1890
|
+
|
|
1891
|
+
terser@5.48.0:
|
|
1892
|
+
resolution: {integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==}
|
|
1893
|
+
engines: {node: '>=10'}
|
|
1894
|
+
hasBin: true
|
|
1895
|
+
|
|
1896
|
+
throat@5.0.0:
|
|
1897
|
+
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
|
|
1898
|
+
|
|
1899
|
+
tinyglobby@0.2.17:
|
|
1900
|
+
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
|
1901
|
+
engines: {node: '>=12.0.0'}
|
|
1902
|
+
|
|
1903
|
+
tmpl@1.0.5:
|
|
1904
|
+
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
|
|
1905
|
+
|
|
1906
|
+
to-regex-range@5.0.1:
|
|
1907
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1908
|
+
engines: {node: '>=8.0'}
|
|
1909
|
+
|
|
1910
|
+
toidentifier@1.0.1:
|
|
1911
|
+
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
|
|
1912
|
+
engines: {node: '>=0.6'}
|
|
1913
|
+
|
|
1914
|
+
toqr@0.1.1:
|
|
1915
|
+
resolution: {integrity: sha512-FWAPzCIHZHnrE/5/w9MPk0kK25hSQSH2IKhYh9PyjS3SG/+IEMvlwIHbhz+oF7xl54I+ueZlVnMjyzdSwLmAwA==}
|
|
1916
|
+
|
|
1917
|
+
type-fest@0.21.3:
|
|
1918
|
+
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
|
|
1919
|
+
engines: {node: '>=10'}
|
|
1920
|
+
|
|
1921
|
+
type-fest@0.7.1:
|
|
1922
|
+
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
|
|
1923
|
+
engines: {node: '>=8'}
|
|
1924
|
+
|
|
1925
|
+
typescript@6.0.3:
|
|
1926
|
+
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
|
|
1927
|
+
engines: {node: '>=14.17'}
|
|
1928
|
+
hasBin: true
|
|
1929
|
+
|
|
1930
|
+
undici-types@7.24.6:
|
|
1931
|
+
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
|
1932
|
+
|
|
1933
|
+
unicode-canonical-property-names-ecmascript@2.0.1:
|
|
1934
|
+
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
|
|
1935
|
+
engines: {node: '>=4'}
|
|
1936
|
+
|
|
1937
|
+
unicode-match-property-ecmascript@2.0.0:
|
|
1938
|
+
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
|
|
1939
|
+
engines: {node: '>=4'}
|
|
1940
|
+
|
|
1941
|
+
unicode-match-property-value-ecmascript@2.2.1:
|
|
1942
|
+
resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
|
|
1943
|
+
engines: {node: '>=4'}
|
|
1944
|
+
|
|
1945
|
+
unicode-property-aliases-ecmascript@2.2.0:
|
|
1946
|
+
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
|
|
1947
|
+
engines: {node: '>=4'}
|
|
1948
|
+
|
|
1949
|
+
unpipe@1.0.0:
|
|
1950
|
+
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
|
|
1951
|
+
engines: {node: '>= 0.8'}
|
|
1952
|
+
|
|
1953
|
+
update-browserslist-db@1.2.3:
|
|
1954
|
+
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
1955
|
+
hasBin: true
|
|
1956
|
+
peerDependencies:
|
|
1957
|
+
browserslist: '>= 4.21.0'
|
|
1958
|
+
|
|
1959
|
+
utils-merge@1.0.1:
|
|
1960
|
+
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
|
|
1961
|
+
engines: {node: '>= 0.4.0'}
|
|
1962
|
+
|
|
1963
|
+
uuid@7.0.3:
|
|
1964
|
+
resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
|
|
1965
|
+
deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
|
|
1966
|
+
hasBin: true
|
|
1967
|
+
|
|
1968
|
+
validate-npm-package-name@5.0.1:
|
|
1969
|
+
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
|
|
1970
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1971
|
+
|
|
1972
|
+
vary@1.1.2:
|
|
1973
|
+
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
|
1974
|
+
engines: {node: '>= 0.8'}
|
|
1975
|
+
|
|
1976
|
+
vlq@1.0.1:
|
|
1977
|
+
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
|
|
1978
|
+
|
|
1979
|
+
walker@1.0.8:
|
|
1980
|
+
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
|
|
1981
|
+
|
|
1982
|
+
wcwidth@1.0.1:
|
|
1983
|
+
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
|
|
1984
|
+
|
|
1985
|
+
whatwg-fetch@3.6.20:
|
|
1986
|
+
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
|
|
1987
|
+
|
|
1988
|
+
whatwg-url-minimum@0.1.2:
|
|
1989
|
+
resolution: {integrity: sha512-XPEm0XFQWNVG292lII1PrRRJl3sItrs7CettZ4ncYxuDVpLyy+NwlGyut2hXI0JswcJUxeCH+CyOJK0ZzAXD6A==}
|
|
1990
|
+
|
|
1991
|
+
which@2.0.2:
|
|
1992
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1993
|
+
engines: {node: '>= 8'}
|
|
1994
|
+
hasBin: true
|
|
1995
|
+
|
|
1996
|
+
wrap-ansi@7.0.0:
|
|
1997
|
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
1998
|
+
engines: {node: '>=10'}
|
|
1999
|
+
|
|
2000
|
+
ws@7.5.11:
|
|
2001
|
+
resolution: {integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==}
|
|
2002
|
+
engines: {node: '>=8.3.0'}
|
|
2003
|
+
peerDependencies:
|
|
2004
|
+
bufferutil: ^4.0.1
|
|
2005
|
+
utf-8-validate: ^5.0.2
|
|
2006
|
+
peerDependenciesMeta:
|
|
2007
|
+
bufferutil:
|
|
2008
|
+
optional: true
|
|
2009
|
+
utf-8-validate:
|
|
2010
|
+
optional: true
|
|
2011
|
+
|
|
2012
|
+
ws@8.21.0:
|
|
2013
|
+
resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
|
|
2014
|
+
engines: {node: '>=10.0.0'}
|
|
2015
|
+
peerDependencies:
|
|
2016
|
+
bufferutil: ^4.0.1
|
|
2017
|
+
utf-8-validate: '>=5.0.2'
|
|
2018
|
+
peerDependenciesMeta:
|
|
2019
|
+
bufferutil:
|
|
2020
|
+
optional: true
|
|
2021
|
+
utf-8-validate:
|
|
2022
|
+
optional: true
|
|
2023
|
+
|
|
2024
|
+
xcode@3.0.1:
|
|
2025
|
+
resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
|
|
2026
|
+
engines: {node: '>=10.0.0'}
|
|
2027
|
+
|
|
2028
|
+
xml2js@0.6.0:
|
|
2029
|
+
resolution: {integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==}
|
|
2030
|
+
engines: {node: '>=4.0.0'}
|
|
2031
|
+
|
|
2032
|
+
xmlbuilder@11.0.1:
|
|
2033
|
+
resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
|
|
2034
|
+
engines: {node: '>=4.0'}
|
|
2035
|
+
|
|
2036
|
+
xmlbuilder@15.1.1:
|
|
2037
|
+
resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
|
|
2038
|
+
engines: {node: '>=8.0'}
|
|
2039
|
+
|
|
2040
|
+
y18n@5.0.8:
|
|
2041
|
+
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
|
|
2042
|
+
engines: {node: '>=10'}
|
|
2043
|
+
|
|
2044
|
+
yallist@3.1.1:
|
|
2045
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
2046
|
+
|
|
2047
|
+
yaml@2.9.0:
|
|
2048
|
+
resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
|
|
2049
|
+
engines: {node: '>= 14.6'}
|
|
2050
|
+
hasBin: true
|
|
2051
|
+
|
|
2052
|
+
yargs-parser@21.1.1:
|
|
2053
|
+
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
|
|
2054
|
+
engines: {node: '>=12'}
|
|
2055
|
+
|
|
2056
|
+
yargs@17.7.2:
|
|
2057
|
+
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
2058
|
+
engines: {node: '>=12'}
|
|
2059
|
+
|
|
2060
|
+
zod@3.25.76:
|
|
2061
|
+
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
|
|
2062
|
+
|
|
2063
|
+
snapshots:
|
|
2064
|
+
|
|
2065
|
+
'@babel/code-frame@7.29.7':
|
|
2066
|
+
dependencies:
|
|
2067
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
2068
|
+
js-tokens: 4.0.0
|
|
2069
|
+
picocolors: 1.1.1
|
|
2070
|
+
|
|
2071
|
+
'@babel/compat-data@7.29.7': {}
|
|
2072
|
+
|
|
2073
|
+
'@babel/core@7.29.7':
|
|
2074
|
+
dependencies:
|
|
2075
|
+
'@babel/code-frame': 7.29.7
|
|
2076
|
+
'@babel/generator': 7.29.7
|
|
2077
|
+
'@babel/helper-compilation-targets': 7.29.7
|
|
2078
|
+
'@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
|
|
2079
|
+
'@babel/helpers': 7.29.7
|
|
2080
|
+
'@babel/parser': 7.29.7
|
|
2081
|
+
'@babel/template': 7.29.7
|
|
2082
|
+
'@babel/traverse': 7.29.7
|
|
2083
|
+
'@babel/types': 7.29.7
|
|
2084
|
+
'@jridgewell/remapping': 2.3.5
|
|
2085
|
+
convert-source-map: 2.0.0
|
|
2086
|
+
debug: 4.4.3
|
|
2087
|
+
gensync: 1.0.0-beta.2
|
|
2088
|
+
json5: 2.2.3
|
|
2089
|
+
semver: 6.3.1
|
|
2090
|
+
transitivePeerDependencies:
|
|
2091
|
+
- supports-color
|
|
2092
|
+
|
|
2093
|
+
'@babel/generator@7.29.7':
|
|
2094
|
+
dependencies:
|
|
2095
|
+
'@babel/parser': 7.29.7
|
|
2096
|
+
'@babel/types': 7.29.7
|
|
2097
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2098
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2099
|
+
jsesc: 3.1.0
|
|
2100
|
+
|
|
2101
|
+
'@babel/helper-annotate-as-pure@7.29.7':
|
|
2102
|
+
dependencies:
|
|
2103
|
+
'@babel/types': 7.29.7
|
|
2104
|
+
|
|
2105
|
+
'@babel/helper-compilation-targets@7.29.7':
|
|
2106
|
+
dependencies:
|
|
2107
|
+
'@babel/compat-data': 7.29.7
|
|
2108
|
+
'@babel/helper-validator-option': 7.29.7
|
|
2109
|
+
browserslist: 4.28.2
|
|
2110
|
+
lru-cache: 5.1.1
|
|
2111
|
+
semver: 6.3.1
|
|
2112
|
+
|
|
2113
|
+
'@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.7)':
|
|
2114
|
+
dependencies:
|
|
2115
|
+
'@babel/core': 7.29.7
|
|
2116
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2117
|
+
'@babel/helper-member-expression-to-functions': 7.29.7
|
|
2118
|
+
'@babel/helper-optimise-call-expression': 7.29.7
|
|
2119
|
+
'@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7)
|
|
2120
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.29.7
|
|
2121
|
+
'@babel/traverse': 7.29.7
|
|
2122
|
+
semver: 6.3.1
|
|
2123
|
+
transitivePeerDependencies:
|
|
2124
|
+
- supports-color
|
|
2125
|
+
|
|
2126
|
+
'@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.7)':
|
|
2127
|
+
dependencies:
|
|
2128
|
+
'@babel/core': 7.29.7
|
|
2129
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2130
|
+
regexpu-core: 6.4.0
|
|
2131
|
+
semver: 6.3.1
|
|
2132
|
+
|
|
2133
|
+
'@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7)':
|
|
2134
|
+
dependencies:
|
|
2135
|
+
'@babel/core': 7.29.7
|
|
2136
|
+
'@babel/helper-compilation-targets': 7.29.7
|
|
2137
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2138
|
+
debug: 4.4.3
|
|
2139
|
+
lodash.debounce: 4.0.8
|
|
2140
|
+
resolve: 1.22.12
|
|
2141
|
+
transitivePeerDependencies:
|
|
2142
|
+
- supports-color
|
|
2143
|
+
|
|
2144
|
+
'@babel/helper-globals@7.29.7': {}
|
|
2145
|
+
|
|
2146
|
+
'@babel/helper-member-expression-to-functions@7.29.7':
|
|
2147
|
+
dependencies:
|
|
2148
|
+
'@babel/traverse': 7.29.7
|
|
2149
|
+
'@babel/types': 7.29.7
|
|
2150
|
+
transitivePeerDependencies:
|
|
2151
|
+
- supports-color
|
|
2152
|
+
|
|
2153
|
+
'@babel/helper-module-imports@7.29.7':
|
|
2154
|
+
dependencies:
|
|
2155
|
+
'@babel/traverse': 7.29.7
|
|
2156
|
+
'@babel/types': 7.29.7
|
|
2157
|
+
transitivePeerDependencies:
|
|
2158
|
+
- supports-color
|
|
2159
|
+
|
|
2160
|
+
'@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
|
|
2161
|
+
dependencies:
|
|
2162
|
+
'@babel/core': 7.29.7
|
|
2163
|
+
'@babel/helper-module-imports': 7.29.7
|
|
2164
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
2165
|
+
'@babel/traverse': 7.29.7
|
|
2166
|
+
transitivePeerDependencies:
|
|
2167
|
+
- supports-color
|
|
2168
|
+
|
|
2169
|
+
'@babel/helper-optimise-call-expression@7.29.7':
|
|
2170
|
+
dependencies:
|
|
2171
|
+
'@babel/types': 7.29.7
|
|
2172
|
+
|
|
2173
|
+
'@babel/helper-plugin-utils@7.29.7': {}
|
|
2174
|
+
|
|
2175
|
+
'@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.7)':
|
|
2176
|
+
dependencies:
|
|
2177
|
+
'@babel/core': 7.29.7
|
|
2178
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2179
|
+
'@babel/helper-wrap-function': 7.29.7
|
|
2180
|
+
'@babel/traverse': 7.29.7
|
|
2181
|
+
transitivePeerDependencies:
|
|
2182
|
+
- supports-color
|
|
2183
|
+
|
|
2184
|
+
'@babel/helper-replace-supers@7.29.7(@babel/core@7.29.7)':
|
|
2185
|
+
dependencies:
|
|
2186
|
+
'@babel/core': 7.29.7
|
|
2187
|
+
'@babel/helper-member-expression-to-functions': 7.29.7
|
|
2188
|
+
'@babel/helper-optimise-call-expression': 7.29.7
|
|
2189
|
+
'@babel/traverse': 7.29.7
|
|
2190
|
+
transitivePeerDependencies:
|
|
2191
|
+
- supports-color
|
|
2192
|
+
|
|
2193
|
+
'@babel/helper-skip-transparent-expression-wrappers@7.29.7':
|
|
2194
|
+
dependencies:
|
|
2195
|
+
'@babel/traverse': 7.29.7
|
|
2196
|
+
'@babel/types': 7.29.7
|
|
2197
|
+
transitivePeerDependencies:
|
|
2198
|
+
- supports-color
|
|
2199
|
+
|
|
2200
|
+
'@babel/helper-string-parser@7.29.7': {}
|
|
2201
|
+
|
|
2202
|
+
'@babel/helper-validator-identifier@7.29.7': {}
|
|
2203
|
+
|
|
2204
|
+
'@babel/helper-validator-option@7.29.7': {}
|
|
2205
|
+
|
|
2206
|
+
'@babel/helper-wrap-function@7.29.7':
|
|
2207
|
+
dependencies:
|
|
2208
|
+
'@babel/template': 7.29.7
|
|
2209
|
+
'@babel/traverse': 7.29.7
|
|
2210
|
+
'@babel/types': 7.29.7
|
|
2211
|
+
transitivePeerDependencies:
|
|
2212
|
+
- supports-color
|
|
2213
|
+
|
|
2214
|
+
'@babel/helpers@7.29.7':
|
|
2215
|
+
dependencies:
|
|
2216
|
+
'@babel/template': 7.29.7
|
|
2217
|
+
'@babel/types': 7.29.7
|
|
2218
|
+
|
|
2219
|
+
'@babel/parser@7.29.7':
|
|
2220
|
+
dependencies:
|
|
2221
|
+
'@babel/types': 7.29.7
|
|
2222
|
+
|
|
2223
|
+
'@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.7)':
|
|
2224
|
+
dependencies:
|
|
2225
|
+
'@babel/core': 7.29.7
|
|
2226
|
+
'@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2227
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2228
|
+
'@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7)
|
|
2229
|
+
transitivePeerDependencies:
|
|
2230
|
+
- supports-color
|
|
2231
|
+
|
|
2232
|
+
'@babel/plugin-proposal-export-default-from@7.29.7(@babel/core@7.29.7)':
|
|
2233
|
+
dependencies:
|
|
2234
|
+
'@babel/core': 7.29.7
|
|
2235
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2236
|
+
|
|
2237
|
+
'@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.7)':
|
|
2238
|
+
dependencies:
|
|
2239
|
+
'@babel/core': 7.29.7
|
|
2240
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2241
|
+
|
|
2242
|
+
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.7)':
|
|
2243
|
+
dependencies:
|
|
2244
|
+
'@babel/core': 7.29.7
|
|
2245
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2246
|
+
|
|
2247
|
+
'@babel/plugin-syntax-export-default-from@7.29.7(@babel/core@7.29.7)':
|
|
2248
|
+
dependencies:
|
|
2249
|
+
'@babel/core': 7.29.7
|
|
2250
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2251
|
+
|
|
2252
|
+
'@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7)':
|
|
2253
|
+
dependencies:
|
|
2254
|
+
'@babel/core': 7.29.7
|
|
2255
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2256
|
+
|
|
2257
|
+
'@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7)':
|
|
2258
|
+
dependencies:
|
|
2259
|
+
'@babel/core': 7.29.7
|
|
2260
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2261
|
+
|
|
2262
|
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.7)':
|
|
2263
|
+
dependencies:
|
|
2264
|
+
'@babel/core': 7.29.7
|
|
2265
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2266
|
+
|
|
2267
|
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.7)':
|
|
2268
|
+
dependencies:
|
|
2269
|
+
'@babel/core': 7.29.7
|
|
2270
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2271
|
+
|
|
2272
|
+
'@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.7)':
|
|
2273
|
+
dependencies:
|
|
2274
|
+
'@babel/core': 7.29.7
|
|
2275
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2276
|
+
|
|
2277
|
+
'@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.7)':
|
|
2278
|
+
dependencies:
|
|
2279
|
+
'@babel/core': 7.29.7
|
|
2280
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2281
|
+
'@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7)
|
|
2282
|
+
'@babel/traverse': 7.29.7
|
|
2283
|
+
transitivePeerDependencies:
|
|
2284
|
+
- supports-color
|
|
2285
|
+
|
|
2286
|
+
'@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.7)':
|
|
2287
|
+
dependencies:
|
|
2288
|
+
'@babel/core': 7.29.7
|
|
2289
|
+
'@babel/helper-module-imports': 7.29.7
|
|
2290
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2291
|
+
'@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7)
|
|
2292
|
+
transitivePeerDependencies:
|
|
2293
|
+
- supports-color
|
|
2294
|
+
|
|
2295
|
+
'@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.7)':
|
|
2296
|
+
dependencies:
|
|
2297
|
+
'@babel/core': 7.29.7
|
|
2298
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2299
|
+
|
|
2300
|
+
'@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.7)':
|
|
2301
|
+
dependencies:
|
|
2302
|
+
'@babel/core': 7.29.7
|
|
2303
|
+
'@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2304
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2305
|
+
transitivePeerDependencies:
|
|
2306
|
+
- supports-color
|
|
2307
|
+
|
|
2308
|
+
'@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.7)':
|
|
2309
|
+
dependencies:
|
|
2310
|
+
'@babel/core': 7.29.7
|
|
2311
|
+
'@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2312
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2313
|
+
transitivePeerDependencies:
|
|
2314
|
+
- supports-color
|
|
2315
|
+
|
|
2316
|
+
'@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.7)':
|
|
2317
|
+
dependencies:
|
|
2318
|
+
'@babel/core': 7.29.7
|
|
2319
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2320
|
+
'@babel/helper-compilation-targets': 7.29.7
|
|
2321
|
+
'@babel/helper-globals': 7.29.7
|
|
2322
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2323
|
+
'@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7)
|
|
2324
|
+
'@babel/traverse': 7.29.7
|
|
2325
|
+
transitivePeerDependencies:
|
|
2326
|
+
- supports-color
|
|
2327
|
+
|
|
2328
|
+
'@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7)':
|
|
2329
|
+
dependencies:
|
|
2330
|
+
'@babel/core': 7.29.7
|
|
2331
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2332
|
+
'@babel/traverse': 7.29.7
|
|
2333
|
+
transitivePeerDependencies:
|
|
2334
|
+
- supports-color
|
|
2335
|
+
|
|
2336
|
+
'@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.7)':
|
|
2337
|
+
dependencies:
|
|
2338
|
+
'@babel/core': 7.29.7
|
|
2339
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2340
|
+
|
|
2341
|
+
'@babel/plugin-transform-flow-strip-types@7.29.7(@babel/core@7.29.7)':
|
|
2342
|
+
dependencies:
|
|
2343
|
+
'@babel/core': 7.29.7
|
|
2344
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2345
|
+
'@babel/plugin-syntax-flow': 7.29.7(@babel/core@7.29.7)
|
|
2346
|
+
|
|
2347
|
+
'@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.7)':
|
|
2348
|
+
dependencies:
|
|
2349
|
+
'@babel/core': 7.29.7
|
|
2350
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2351
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.29.7
|
|
2352
|
+
transitivePeerDependencies:
|
|
2353
|
+
- supports-color
|
|
2354
|
+
|
|
2355
|
+
'@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.7)':
|
|
2356
|
+
dependencies:
|
|
2357
|
+
'@babel/core': 7.29.7
|
|
2358
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2359
|
+
|
|
2360
|
+
'@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.7)':
|
|
2361
|
+
dependencies:
|
|
2362
|
+
'@babel/core': 7.29.7
|
|
2363
|
+
'@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
|
|
2364
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2365
|
+
transitivePeerDependencies:
|
|
2366
|
+
- supports-color
|
|
2367
|
+
|
|
2368
|
+
'@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)':
|
|
2369
|
+
dependencies:
|
|
2370
|
+
'@babel/core': 7.29.7
|
|
2371
|
+
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2372
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2373
|
+
|
|
2374
|
+
'@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.7)':
|
|
2375
|
+
dependencies:
|
|
2376
|
+
'@babel/core': 7.29.7
|
|
2377
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2378
|
+
|
|
2379
|
+
'@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.7)':
|
|
2380
|
+
dependencies:
|
|
2381
|
+
'@babel/core': 7.29.7
|
|
2382
|
+
'@babel/helper-compilation-targets': 7.29.7
|
|
2383
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2384
|
+
'@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
|
|
2385
|
+
'@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7)
|
|
2386
|
+
'@babel/traverse': 7.29.7
|
|
2387
|
+
transitivePeerDependencies:
|
|
2388
|
+
- supports-color
|
|
2389
|
+
|
|
2390
|
+
'@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.7)':
|
|
2391
|
+
dependencies:
|
|
2392
|
+
'@babel/core': 7.29.7
|
|
2393
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2394
|
+
|
|
2395
|
+
'@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.7)':
|
|
2396
|
+
dependencies:
|
|
2397
|
+
'@babel/core': 7.29.7
|
|
2398
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2399
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.29.7
|
|
2400
|
+
transitivePeerDependencies:
|
|
2401
|
+
- supports-color
|
|
2402
|
+
|
|
2403
|
+
'@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.7)':
|
|
2404
|
+
dependencies:
|
|
2405
|
+
'@babel/core': 7.29.7
|
|
2406
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2407
|
+
|
|
2408
|
+
'@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.7)':
|
|
2409
|
+
dependencies:
|
|
2410
|
+
'@babel/core': 7.29.7
|
|
2411
|
+
'@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2412
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2413
|
+
transitivePeerDependencies:
|
|
2414
|
+
- supports-color
|
|
2415
|
+
|
|
2416
|
+
'@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.7)':
|
|
2417
|
+
dependencies:
|
|
2418
|
+
'@babel/core': 7.29.7
|
|
2419
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2420
|
+
'@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2421
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2422
|
+
transitivePeerDependencies:
|
|
2423
|
+
- supports-color
|
|
2424
|
+
|
|
2425
|
+
'@babel/plugin-transform-react-display-name@7.29.7(@babel/core@7.29.7)':
|
|
2426
|
+
dependencies:
|
|
2427
|
+
'@babel/core': 7.29.7
|
|
2428
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2429
|
+
|
|
2430
|
+
'@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.7)':
|
|
2431
|
+
dependencies:
|
|
2432
|
+
'@babel/core': 7.29.7
|
|
2433
|
+
'@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7)
|
|
2434
|
+
transitivePeerDependencies:
|
|
2435
|
+
- supports-color
|
|
2436
|
+
|
|
2437
|
+
'@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7)':
|
|
2438
|
+
dependencies:
|
|
2439
|
+
'@babel/core': 7.29.7
|
|
2440
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2441
|
+
'@babel/helper-module-imports': 7.29.7
|
|
2442
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2443
|
+
'@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7)
|
|
2444
|
+
'@babel/types': 7.29.7
|
|
2445
|
+
transitivePeerDependencies:
|
|
2446
|
+
- supports-color
|
|
2447
|
+
|
|
2448
|
+
'@babel/plugin-transform-react-pure-annotations@7.29.7(@babel/core@7.29.7)':
|
|
2449
|
+
dependencies:
|
|
2450
|
+
'@babel/core': 7.29.7
|
|
2451
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2452
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2453
|
+
|
|
2454
|
+
'@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.7)':
|
|
2455
|
+
dependencies:
|
|
2456
|
+
'@babel/core': 7.29.7
|
|
2457
|
+
'@babel/helper-module-imports': 7.29.7
|
|
2458
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2459
|
+
babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7)
|
|
2460
|
+
babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7)
|
|
2461
|
+
babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7)
|
|
2462
|
+
semver: 6.3.1
|
|
2463
|
+
transitivePeerDependencies:
|
|
2464
|
+
- supports-color
|
|
2465
|
+
|
|
2466
|
+
'@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.7)':
|
|
2467
|
+
dependencies:
|
|
2468
|
+
'@babel/core': 7.29.7
|
|
2469
|
+
'@babel/helper-annotate-as-pure': 7.29.7
|
|
2470
|
+
'@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2471
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2472
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.29.7
|
|
2473
|
+
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
2474
|
+
transitivePeerDependencies:
|
|
2475
|
+
- supports-color
|
|
2476
|
+
|
|
2477
|
+
'@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.7)':
|
|
2478
|
+
dependencies:
|
|
2479
|
+
'@babel/core': 7.29.7
|
|
2480
|
+
'@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
|
|
2481
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2482
|
+
|
|
2483
|
+
'@babel/preset-typescript@7.29.7(@babel/core@7.29.7)':
|
|
2484
|
+
dependencies:
|
|
2485
|
+
'@babel/core': 7.29.7
|
|
2486
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
2487
|
+
'@babel/helper-validator-option': 7.29.7
|
|
2488
|
+
'@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7)
|
|
2489
|
+
'@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
|
|
2490
|
+
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
2491
|
+
transitivePeerDependencies:
|
|
2492
|
+
- supports-color
|
|
2493
|
+
|
|
2494
|
+
'@babel/runtime@7.29.7': {}
|
|
2495
|
+
|
|
2496
|
+
'@babel/template@7.29.7':
|
|
2497
|
+
dependencies:
|
|
2498
|
+
'@babel/code-frame': 7.29.7
|
|
2499
|
+
'@babel/parser': 7.29.7
|
|
2500
|
+
'@babel/types': 7.29.7
|
|
2501
|
+
|
|
2502
|
+
'@babel/traverse@7.29.7':
|
|
2503
|
+
dependencies:
|
|
2504
|
+
'@babel/code-frame': 7.29.7
|
|
2505
|
+
'@babel/generator': 7.29.7
|
|
2506
|
+
'@babel/helper-globals': 7.29.7
|
|
2507
|
+
'@babel/parser': 7.29.7
|
|
2508
|
+
'@babel/template': 7.29.7
|
|
2509
|
+
'@babel/types': 7.29.7
|
|
2510
|
+
debug: 4.4.3
|
|
2511
|
+
transitivePeerDependencies:
|
|
2512
|
+
- supports-color
|
|
2513
|
+
|
|
2514
|
+
'@babel/types@7.29.7':
|
|
2515
|
+
dependencies:
|
|
2516
|
+
'@babel/helper-string-parser': 7.29.7
|
|
2517
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
2518
|
+
|
|
2519
|
+
'@egjs/hammerjs@2.0.17':
|
|
2520
|
+
dependencies:
|
|
2521
|
+
'@types/hammerjs': 2.0.46
|
|
2522
|
+
|
|
2523
|
+
'@expo/cli@56.1.16(@expo/metro-runtime@56.0.15)(expo-constants@56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)))(expo-font@56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3))(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)':
|
|
2524
|
+
dependencies:
|
|
2525
|
+
'@expo/code-signing-certificates': 0.0.6
|
|
2526
|
+
'@expo/config': 56.0.9(typescript@6.0.3)
|
|
2527
|
+
'@expo/config-plugins': 56.0.9(typescript@6.0.3)
|
|
2528
|
+
'@expo/devcert': 1.2.1
|
|
2529
|
+
'@expo/env': 2.3.0
|
|
2530
|
+
'@expo/image-utils': 0.10.1(typescript@6.0.3)
|
|
2531
|
+
'@expo/inline-modules': 0.0.12(typescript@6.0.3)
|
|
2532
|
+
'@expo/json-file': 10.2.0
|
|
2533
|
+
'@expo/log-box': 56.0.13(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
2534
|
+
'@expo/metro': 56.0.0
|
|
2535
|
+
'@expo/metro-config': 56.0.14(expo@56.0.12)(typescript@6.0.3)
|
|
2536
|
+
'@expo/metro-file-map': 56.0.3
|
|
2537
|
+
'@expo/osascript': 2.6.0
|
|
2538
|
+
'@expo/package-manager': 1.12.1
|
|
2539
|
+
'@expo/plist': 0.7.0
|
|
2540
|
+
'@expo/prebuild-config': 56.0.16(typescript@6.0.3)
|
|
2541
|
+
'@expo/require-utils': 56.1.3(typescript@6.0.3)
|
|
2542
|
+
'@expo/router-server': 56.0.14(@expo/metro-runtime@56.0.15)(expo-constants@56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)))(expo-font@56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3))(expo-server@56.0.5)(expo@56.0.12)(react@19.2.3)
|
|
2543
|
+
'@expo/schema-utils': 56.0.1
|
|
2544
|
+
'@expo/spawn-async': 1.8.0
|
|
2545
|
+
'@expo/ws-tunnel': 2.0.0(ws@8.21.0)
|
|
2546
|
+
'@expo/xcpretty': 4.4.4
|
|
2547
|
+
'@react-native/dev-middleware': 0.85.3
|
|
2548
|
+
accepts: 1.3.8
|
|
2549
|
+
arg: 5.0.2
|
|
2550
|
+
bplist-creator: 0.1.0
|
|
2551
|
+
bplist-parser: 0.3.2
|
|
2552
|
+
chalk: 4.1.2
|
|
2553
|
+
ci-info: 3.9.0
|
|
2554
|
+
compression: 1.8.1
|
|
2555
|
+
connect: 3.7.0
|
|
2556
|
+
debug: 4.4.3
|
|
2557
|
+
dnssd-advertise: 1.1.6
|
|
2558
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
2559
|
+
expo-server: 56.0.5
|
|
2560
|
+
fetch-nodeshim: 0.4.10
|
|
2561
|
+
getenv: 2.0.0
|
|
2562
|
+
glob: 13.0.6
|
|
2563
|
+
lan-network: 0.2.1
|
|
2564
|
+
multitars: 1.0.0
|
|
2565
|
+
node-forge: 1.4.0
|
|
2566
|
+
npm-package-arg: 11.0.3
|
|
2567
|
+
ora: 3.4.0
|
|
2568
|
+
picomatch: 4.0.4
|
|
2569
|
+
pretty-format: 29.7.0
|
|
2570
|
+
progress: 2.0.3
|
|
2571
|
+
prompts: 2.4.2
|
|
2572
|
+
resolve-from: 5.0.0
|
|
2573
|
+
semver: 7.8.4
|
|
2574
|
+
send: 0.19.2
|
|
2575
|
+
slugify: 1.6.9
|
|
2576
|
+
stacktrace-parser: 0.1.11
|
|
2577
|
+
structured-headers: 0.4.1
|
|
2578
|
+
terminal-link: 2.1.1
|
|
2579
|
+
toqr: 0.1.1
|
|
2580
|
+
wrap-ansi: 7.0.0
|
|
2581
|
+
ws: 8.21.0
|
|
2582
|
+
zod: 3.25.76
|
|
2583
|
+
optionalDependencies:
|
|
2584
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
2585
|
+
transitivePeerDependencies:
|
|
2586
|
+
- '@expo/metro-runtime'
|
|
2587
|
+
- bufferutil
|
|
2588
|
+
- expo-constants
|
|
2589
|
+
- expo-font
|
|
2590
|
+
- react
|
|
2591
|
+
- react-dom
|
|
2592
|
+
- react-server-dom-webpack
|
|
2593
|
+
- supports-color
|
|
2594
|
+
- typescript
|
|
2595
|
+
- utf-8-validate
|
|
2596
|
+
|
|
2597
|
+
'@expo/code-signing-certificates@0.0.6':
|
|
2598
|
+
dependencies:
|
|
2599
|
+
node-forge: 1.4.0
|
|
2600
|
+
|
|
2601
|
+
'@expo/config-plugins@56.0.9(typescript@6.0.3)':
|
|
2602
|
+
dependencies:
|
|
2603
|
+
'@expo/config-types': 56.0.6
|
|
2604
|
+
'@expo/json-file': 10.2.0
|
|
2605
|
+
'@expo/plist': 0.7.0
|
|
2606
|
+
'@expo/require-utils': 56.1.3(typescript@6.0.3)
|
|
2607
|
+
'@expo/sdk-runtime-versions': 1.0.0
|
|
2608
|
+
chalk: 4.1.2
|
|
2609
|
+
debug: 4.4.3
|
|
2610
|
+
getenv: 2.0.0
|
|
2611
|
+
glob: 13.0.6
|
|
2612
|
+
semver: 7.8.4
|
|
2613
|
+
slugify: 1.6.9
|
|
2614
|
+
xcode: 3.0.1
|
|
2615
|
+
xml2js: 0.6.0
|
|
2616
|
+
transitivePeerDependencies:
|
|
2617
|
+
- supports-color
|
|
2618
|
+
- typescript
|
|
2619
|
+
|
|
2620
|
+
'@expo/config-types@56.0.6': {}
|
|
2621
|
+
|
|
2622
|
+
'@expo/config@56.0.9(typescript@6.0.3)':
|
|
2623
|
+
dependencies:
|
|
2624
|
+
'@expo/config-plugins': 56.0.9(typescript@6.0.3)
|
|
2625
|
+
'@expo/config-types': 56.0.6
|
|
2626
|
+
'@expo/json-file': 10.2.0
|
|
2627
|
+
'@expo/require-utils': 56.1.3(typescript@6.0.3)
|
|
2628
|
+
deepmerge: 4.3.1
|
|
2629
|
+
getenv: 2.0.0
|
|
2630
|
+
glob: 13.0.6
|
|
2631
|
+
resolve-workspace-root: 2.0.1
|
|
2632
|
+
semver: 7.8.4
|
|
2633
|
+
slugify: 1.6.9
|
|
2634
|
+
transitivePeerDependencies:
|
|
2635
|
+
- supports-color
|
|
2636
|
+
- typescript
|
|
2637
|
+
|
|
2638
|
+
'@expo/devcert@1.2.1':
|
|
2639
|
+
dependencies:
|
|
2640
|
+
'@expo/sudo-prompt': 9.3.2
|
|
2641
|
+
debug: 3.2.7
|
|
2642
|
+
transitivePeerDependencies:
|
|
2643
|
+
- supports-color
|
|
2644
|
+
|
|
2645
|
+
'@expo/devtools@56.0.2(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)':
|
|
2646
|
+
dependencies:
|
|
2647
|
+
chalk: 4.1.2
|
|
2648
|
+
optionalDependencies:
|
|
2649
|
+
react: 19.2.3
|
|
2650
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
2651
|
+
|
|
2652
|
+
'@expo/dom-webview@56.0.5(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)':
|
|
2653
|
+
dependencies:
|
|
2654
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
2655
|
+
react: 19.2.3
|
|
2656
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
2657
|
+
|
|
2658
|
+
'@expo/env@2.3.0':
|
|
2659
|
+
dependencies:
|
|
2660
|
+
chalk: 4.1.2
|
|
2661
|
+
debug: 4.4.3
|
|
2662
|
+
getenv: 2.0.0
|
|
2663
|
+
transitivePeerDependencies:
|
|
2664
|
+
- supports-color
|
|
2665
|
+
|
|
2666
|
+
'@expo/expo-modules-macros-plugin@0.2.2': {}
|
|
2667
|
+
|
|
2668
|
+
'@expo/fingerprint@0.19.4':
|
|
2669
|
+
dependencies:
|
|
2670
|
+
'@expo/env': 2.3.0
|
|
2671
|
+
'@expo/spawn-async': 1.8.0
|
|
2672
|
+
arg: 5.0.2
|
|
2673
|
+
chalk: 4.1.2
|
|
2674
|
+
debug: 4.4.3
|
|
2675
|
+
getenv: 2.0.0
|
|
2676
|
+
glob: 13.0.6
|
|
2677
|
+
ignore: 5.3.2
|
|
2678
|
+
minimatch: 10.2.5
|
|
2679
|
+
resolve-from: 5.0.0
|
|
2680
|
+
semver: 7.8.4
|
|
2681
|
+
transitivePeerDependencies:
|
|
2682
|
+
- supports-color
|
|
2683
|
+
|
|
2684
|
+
'@expo/image-utils@0.10.1(typescript@6.0.3)':
|
|
2685
|
+
dependencies:
|
|
2686
|
+
'@expo/require-utils': 56.1.3(typescript@6.0.3)
|
|
2687
|
+
'@expo/spawn-async': 1.8.0
|
|
2688
|
+
chalk: 4.1.2
|
|
2689
|
+
getenv: 2.0.0
|
|
2690
|
+
jimp-compact: 0.16.1
|
|
2691
|
+
parse-png: 2.1.0
|
|
2692
|
+
semver: 7.8.4
|
|
2693
|
+
transitivePeerDependencies:
|
|
2694
|
+
- supports-color
|
|
2695
|
+
- typescript
|
|
2696
|
+
|
|
2697
|
+
'@expo/inline-modules@0.0.12(typescript@6.0.3)':
|
|
2698
|
+
dependencies:
|
|
2699
|
+
'@expo/config-plugins': 56.0.9(typescript@6.0.3)
|
|
2700
|
+
transitivePeerDependencies:
|
|
2701
|
+
- supports-color
|
|
2702
|
+
- typescript
|
|
2703
|
+
|
|
2704
|
+
'@expo/json-file@10.2.0':
|
|
2705
|
+
dependencies:
|
|
2706
|
+
'@babel/code-frame': 7.29.7
|
|
2707
|
+
json5: 2.2.3
|
|
2708
|
+
|
|
2709
|
+
'@expo/local-build-cache-provider@56.0.8(typescript@6.0.3)':
|
|
2710
|
+
dependencies:
|
|
2711
|
+
'@expo/config': 56.0.9(typescript@6.0.3)
|
|
2712
|
+
chalk: 4.1.2
|
|
2713
|
+
transitivePeerDependencies:
|
|
2714
|
+
- supports-color
|
|
2715
|
+
- typescript
|
|
2716
|
+
|
|
2717
|
+
'@expo/log-box@56.0.13(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)':
|
|
2718
|
+
dependencies:
|
|
2719
|
+
'@expo/dom-webview': 56.0.5(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
2720
|
+
anser: 1.4.10
|
|
2721
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
2722
|
+
react: 19.2.3
|
|
2723
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
2724
|
+
stacktrace-parser: 0.1.11
|
|
2725
|
+
|
|
2726
|
+
'@expo/metro-config@56.0.14(expo@56.0.12)(typescript@6.0.3)':
|
|
2727
|
+
dependencies:
|
|
2728
|
+
'@babel/code-frame': 7.29.7
|
|
2729
|
+
'@babel/core': 7.29.7
|
|
2730
|
+
'@babel/generator': 7.29.7
|
|
2731
|
+
'@expo/config': 56.0.9(typescript@6.0.3)
|
|
2732
|
+
'@expo/env': 2.3.0
|
|
2733
|
+
'@expo/json-file': 10.2.0
|
|
2734
|
+
'@expo/metro': 56.0.0
|
|
2735
|
+
'@expo/require-utils': 56.1.3(typescript@6.0.3)
|
|
2736
|
+
'@expo/spawn-async': 1.8.0
|
|
2737
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2738
|
+
'@jridgewell/remapping': 2.3.5
|
|
2739
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2740
|
+
browserslist: 4.28.2
|
|
2741
|
+
chalk: 4.1.2
|
|
2742
|
+
debug: 4.4.3
|
|
2743
|
+
getenv: 2.0.0
|
|
2744
|
+
glob: 13.0.6
|
|
2745
|
+
hermes-parser: 0.33.3
|
|
2746
|
+
jsc-safe-url: 0.2.4
|
|
2747
|
+
lightningcss: 1.32.0
|
|
2748
|
+
picomatch: 4.0.4
|
|
2749
|
+
postcss: 8.5.15
|
|
2750
|
+
resolve-from: 5.0.0
|
|
2751
|
+
optionalDependencies:
|
|
2752
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
2753
|
+
transitivePeerDependencies:
|
|
2754
|
+
- bufferutil
|
|
2755
|
+
- supports-color
|
|
2756
|
+
- typescript
|
|
2757
|
+
- utf-8-validate
|
|
2758
|
+
|
|
2759
|
+
'@expo/metro-file-map@56.0.3':
|
|
2760
|
+
dependencies:
|
|
2761
|
+
debug: 4.4.3
|
|
2762
|
+
fb-watchman: 2.0.2
|
|
2763
|
+
invariant: 2.2.4
|
|
2764
|
+
jest-worker: 29.7.0
|
|
2765
|
+
micromatch: 4.0.8
|
|
2766
|
+
walker: 1.0.8
|
|
2767
|
+
transitivePeerDependencies:
|
|
2768
|
+
- supports-color
|
|
2769
|
+
|
|
2770
|
+
'@expo/metro-runtime@56.0.15(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)':
|
|
2771
|
+
dependencies:
|
|
2772
|
+
'@expo/log-box': 56.0.13(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
2773
|
+
anser: 1.4.10
|
|
2774
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
2775
|
+
pretty-format: 29.7.0
|
|
2776
|
+
react: 19.2.3
|
|
2777
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
2778
|
+
stacktrace-parser: 0.1.11
|
|
2779
|
+
whatwg-fetch: 3.6.20
|
|
2780
|
+
|
|
2781
|
+
'@expo/metro@56.0.0':
|
|
2782
|
+
dependencies:
|
|
2783
|
+
metro: 0.84.4
|
|
2784
|
+
metro-babel-transformer: 0.84.4
|
|
2785
|
+
metro-cache: 0.84.4
|
|
2786
|
+
metro-cache-key: 0.84.4
|
|
2787
|
+
metro-config: 0.84.4
|
|
2788
|
+
metro-core: 0.84.4
|
|
2789
|
+
metro-file-map: 0.84.4
|
|
2790
|
+
metro-minify-terser: 0.84.4
|
|
2791
|
+
metro-resolver: 0.84.4
|
|
2792
|
+
metro-runtime: 0.84.4
|
|
2793
|
+
metro-source-map: 0.84.4
|
|
2794
|
+
metro-symbolicate: 0.84.4
|
|
2795
|
+
metro-transform-plugins: 0.84.4
|
|
2796
|
+
metro-transform-worker: 0.84.4
|
|
2797
|
+
transitivePeerDependencies:
|
|
2798
|
+
- bufferutil
|
|
2799
|
+
- supports-color
|
|
2800
|
+
- utf-8-validate
|
|
2801
|
+
|
|
2802
|
+
'@expo/osascript@2.6.0':
|
|
2803
|
+
dependencies:
|
|
2804
|
+
'@expo/spawn-async': 1.8.0
|
|
2805
|
+
|
|
2806
|
+
'@expo/package-manager@1.12.1':
|
|
2807
|
+
dependencies:
|
|
2808
|
+
'@expo/json-file': 10.2.0
|
|
2809
|
+
'@expo/spawn-async': 1.8.0
|
|
2810
|
+
chalk: 4.1.2
|
|
2811
|
+
npm-package-arg: 11.0.3
|
|
2812
|
+
ora: 3.4.0
|
|
2813
|
+
resolve-workspace-root: 2.0.1
|
|
2814
|
+
|
|
2815
|
+
'@expo/plist@0.7.0':
|
|
2816
|
+
dependencies:
|
|
2817
|
+
'@xmldom/xmldom': 0.8.13
|
|
2818
|
+
base64-js: 1.5.1
|
|
2819
|
+
xmlbuilder: 15.1.1
|
|
2820
|
+
|
|
2821
|
+
'@expo/prebuild-config@56.0.16(typescript@6.0.3)':
|
|
2822
|
+
dependencies:
|
|
2823
|
+
'@expo/config': 56.0.9(typescript@6.0.3)
|
|
2824
|
+
'@expo/config-plugins': 56.0.9(typescript@6.0.3)
|
|
2825
|
+
'@expo/config-types': 56.0.6
|
|
2826
|
+
'@expo/image-utils': 0.10.1(typescript@6.0.3)
|
|
2827
|
+
'@expo/json-file': 10.2.0
|
|
2828
|
+
'@react-native/normalize-colors': 0.85.3
|
|
2829
|
+
debug: 4.4.3
|
|
2830
|
+
expo-modules-autolinking: 56.0.16(typescript@6.0.3)
|
|
2831
|
+
resolve-from: 5.0.0
|
|
2832
|
+
semver: 7.8.4
|
|
2833
|
+
transitivePeerDependencies:
|
|
2834
|
+
- supports-color
|
|
2835
|
+
- typescript
|
|
2836
|
+
|
|
2837
|
+
'@expo/require-utils@56.1.3(typescript@6.0.3)':
|
|
2838
|
+
dependencies:
|
|
2839
|
+
'@babel/code-frame': 7.29.7
|
|
2840
|
+
'@babel/core': 7.29.7
|
|
2841
|
+
'@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
|
|
2842
|
+
optionalDependencies:
|
|
2843
|
+
typescript: 6.0.3
|
|
2844
|
+
transitivePeerDependencies:
|
|
2845
|
+
- supports-color
|
|
2846
|
+
|
|
2847
|
+
'@expo/router-server@56.0.14(@expo/metro-runtime@56.0.15)(expo-constants@56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)))(expo-font@56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3))(expo-server@56.0.5)(expo@56.0.12)(react@19.2.3)':
|
|
2848
|
+
dependencies:
|
|
2849
|
+
debug: 4.4.3
|
|
2850
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
2851
|
+
expo-constants: 56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
2852
|
+
expo-font: 56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
2853
|
+
expo-server: 56.0.5
|
|
2854
|
+
react: 19.2.3
|
|
2855
|
+
optionalDependencies:
|
|
2856
|
+
'@expo/metro-runtime': 56.0.15(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
2857
|
+
transitivePeerDependencies:
|
|
2858
|
+
- supports-color
|
|
2859
|
+
|
|
2860
|
+
'@expo/schema-utils@56.0.1': {}
|
|
2861
|
+
|
|
2862
|
+
'@expo/sdk-runtime-versions@1.0.0': {}
|
|
2863
|
+
|
|
2864
|
+
'@expo/spawn-async@1.8.0':
|
|
2865
|
+
dependencies:
|
|
2866
|
+
cross-spawn: 7.0.6
|
|
2867
|
+
|
|
2868
|
+
'@expo/sudo-prompt@9.3.2': {}
|
|
2869
|
+
|
|
2870
|
+
'@expo/ws-tunnel@2.0.0(ws@8.21.0)':
|
|
2871
|
+
dependencies:
|
|
2872
|
+
ws: 8.21.0
|
|
2873
|
+
|
|
2874
|
+
'@expo/xcpretty@4.4.4':
|
|
2875
|
+
dependencies:
|
|
2876
|
+
'@babel/code-frame': 7.29.7
|
|
2877
|
+
chalk: 4.1.2
|
|
2878
|
+
js-yaml: 4.2.0
|
|
2879
|
+
|
|
2880
|
+
'@isaacs/ttlcache@1.4.1': {}
|
|
2881
|
+
|
|
2882
|
+
'@jest/schemas@29.6.3':
|
|
2883
|
+
dependencies:
|
|
2884
|
+
'@sinclair/typebox': 0.27.10
|
|
2885
|
+
|
|
2886
|
+
'@jest/types@29.6.3':
|
|
2887
|
+
dependencies:
|
|
2888
|
+
'@jest/schemas': 29.6.3
|
|
2889
|
+
'@types/istanbul-lib-coverage': 2.0.6
|
|
2890
|
+
'@types/istanbul-reports': 3.0.4
|
|
2891
|
+
'@types/node': 25.9.3
|
|
2892
|
+
'@types/yargs': 17.0.35
|
|
2893
|
+
chalk: 4.1.2
|
|
2894
|
+
|
|
2895
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2896
|
+
dependencies:
|
|
2897
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2898
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2899
|
+
|
|
2900
|
+
'@jridgewell/remapping@2.3.5':
|
|
2901
|
+
dependencies:
|
|
2902
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2903
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2904
|
+
|
|
2905
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2906
|
+
|
|
2907
|
+
'@jridgewell/source-map@0.3.11':
|
|
2908
|
+
dependencies:
|
|
2909
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2910
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2911
|
+
|
|
2912
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2913
|
+
|
|
2914
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
2915
|
+
dependencies:
|
|
2916
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
2917
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2918
|
+
|
|
2919
|
+
'@react-native-async-storage/async-storage@2.2.0(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))':
|
|
2920
|
+
dependencies:
|
|
2921
|
+
merge-options: 3.0.4
|
|
2922
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
2923
|
+
|
|
2924
|
+
'@react-native/assets-registry@0.85.3': {}
|
|
2925
|
+
|
|
2926
|
+
'@react-native/babel-plugin-codegen@0.85.3':
|
|
2927
|
+
dependencies:
|
|
2928
|
+
'@babel/traverse': 7.29.7
|
|
2929
|
+
'@react-native/codegen': 0.85.3
|
|
2930
|
+
transitivePeerDependencies:
|
|
2931
|
+
- supports-color
|
|
2932
|
+
|
|
2933
|
+
'@react-native/codegen@0.85.3':
|
|
2934
|
+
dependencies:
|
|
2935
|
+
'@babel/core': 7.29.7
|
|
2936
|
+
'@babel/parser': 7.29.7
|
|
2937
|
+
hermes-parser: 0.33.3
|
|
2938
|
+
invariant: 2.2.4
|
|
2939
|
+
nullthrows: 1.1.1
|
|
2940
|
+
tinyglobby: 0.2.17
|
|
2941
|
+
yargs: 17.7.2
|
|
2942
|
+
transitivePeerDependencies:
|
|
2943
|
+
- supports-color
|
|
2944
|
+
|
|
2945
|
+
'@react-native/community-cli-plugin@0.85.3':
|
|
2946
|
+
dependencies:
|
|
2947
|
+
'@react-native/dev-middleware': 0.85.3
|
|
2948
|
+
debug: 4.4.3
|
|
2949
|
+
invariant: 2.2.4
|
|
2950
|
+
metro: 0.84.4
|
|
2951
|
+
metro-config: 0.84.4
|
|
2952
|
+
metro-core: 0.84.4
|
|
2953
|
+
semver: 7.8.4
|
|
2954
|
+
transitivePeerDependencies:
|
|
2955
|
+
- bufferutil
|
|
2956
|
+
- supports-color
|
|
2957
|
+
- utf-8-validate
|
|
2958
|
+
|
|
2959
|
+
'@react-native/debugger-frontend@0.85.3': {}
|
|
2960
|
+
|
|
2961
|
+
'@react-native/debugger-shell@0.85.3':
|
|
2962
|
+
dependencies:
|
|
2963
|
+
cross-spawn: 7.0.6
|
|
2964
|
+
debug: 4.4.3
|
|
2965
|
+
fb-dotslash: 0.5.8
|
|
2966
|
+
transitivePeerDependencies:
|
|
2967
|
+
- supports-color
|
|
2968
|
+
|
|
2969
|
+
'@react-native/dev-middleware@0.85.3':
|
|
2970
|
+
dependencies:
|
|
2971
|
+
'@isaacs/ttlcache': 1.4.1
|
|
2972
|
+
'@react-native/debugger-frontend': 0.85.3
|
|
2973
|
+
'@react-native/debugger-shell': 0.85.3
|
|
2974
|
+
chrome-launcher: 0.15.2
|
|
2975
|
+
chromium-edge-launcher: 0.3.0
|
|
2976
|
+
connect: 3.7.0
|
|
2977
|
+
debug: 4.4.3
|
|
2978
|
+
invariant: 2.2.4
|
|
2979
|
+
nullthrows: 1.1.1
|
|
2980
|
+
open: 7.4.2
|
|
2981
|
+
serve-static: 1.16.3
|
|
2982
|
+
ws: 7.5.11
|
|
2983
|
+
transitivePeerDependencies:
|
|
2984
|
+
- bufferutil
|
|
2985
|
+
- supports-color
|
|
2986
|
+
- utf-8-validate
|
|
2987
|
+
|
|
2988
|
+
'@react-native/gradle-plugin@0.85.3': {}
|
|
2989
|
+
|
|
2990
|
+
'@react-native/js-polyfills@0.85.3': {}
|
|
2991
|
+
|
|
2992
|
+
'@react-native/normalize-colors@0.85.3': {}
|
|
2993
|
+
|
|
2994
|
+
'@react-native/virtualized-lists@0.85.3(@types/react@19.2.17)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)':
|
|
2995
|
+
dependencies:
|
|
2996
|
+
invariant: 2.2.4
|
|
2997
|
+
nullthrows: 1.1.1
|
|
2998
|
+
react: 19.2.3
|
|
2999
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3000
|
+
optionalDependencies:
|
|
3001
|
+
'@types/react': 19.2.17
|
|
3002
|
+
|
|
3003
|
+
'@sinclair/typebox@0.27.10': {}
|
|
3004
|
+
|
|
3005
|
+
'@types/hammerjs@2.0.46': {}
|
|
3006
|
+
|
|
3007
|
+
'@types/istanbul-lib-coverage@2.0.6': {}
|
|
3008
|
+
|
|
3009
|
+
'@types/istanbul-lib-report@3.0.3':
|
|
3010
|
+
dependencies:
|
|
3011
|
+
'@types/istanbul-lib-coverage': 2.0.6
|
|
3012
|
+
|
|
3013
|
+
'@types/istanbul-reports@3.0.4':
|
|
3014
|
+
dependencies:
|
|
3015
|
+
'@types/istanbul-lib-report': 3.0.3
|
|
3016
|
+
|
|
3017
|
+
'@types/node@25.9.3':
|
|
3018
|
+
dependencies:
|
|
3019
|
+
undici-types: 7.24.6
|
|
3020
|
+
|
|
3021
|
+
'@types/react-test-renderer@19.1.0':
|
|
3022
|
+
dependencies:
|
|
3023
|
+
'@types/react': 19.2.17
|
|
3024
|
+
|
|
3025
|
+
'@types/react@19.2.17':
|
|
3026
|
+
dependencies:
|
|
3027
|
+
csstype: 3.2.3
|
|
3028
|
+
|
|
3029
|
+
'@types/yargs-parser@21.0.3': {}
|
|
3030
|
+
|
|
3031
|
+
'@types/yargs@17.0.35':
|
|
3032
|
+
dependencies:
|
|
3033
|
+
'@types/yargs-parser': 21.0.3
|
|
3034
|
+
|
|
3035
|
+
'@ungap/structured-clone@1.3.1': {}
|
|
3036
|
+
|
|
3037
|
+
'@xmldom/xmldom@0.8.13': {}
|
|
3038
|
+
|
|
3039
|
+
'@xmldom/xmldom@0.9.10': {}
|
|
3040
|
+
|
|
3041
|
+
abort-controller@3.0.0:
|
|
3042
|
+
dependencies:
|
|
3043
|
+
event-target-shim: 5.0.1
|
|
3044
|
+
|
|
3045
|
+
accepts@1.3.8:
|
|
3046
|
+
dependencies:
|
|
3047
|
+
mime-types: 2.1.35
|
|
3048
|
+
negotiator: 0.6.3
|
|
3049
|
+
|
|
3050
|
+
accepts@2.0.0:
|
|
3051
|
+
dependencies:
|
|
3052
|
+
mime-types: 3.0.2
|
|
3053
|
+
negotiator: 1.0.0
|
|
3054
|
+
|
|
3055
|
+
acorn@8.17.0: {}
|
|
3056
|
+
|
|
3057
|
+
agent-base@7.1.4: {}
|
|
3058
|
+
|
|
3059
|
+
anser@1.4.10: {}
|
|
3060
|
+
|
|
3061
|
+
ansi-escapes@4.3.2:
|
|
3062
|
+
dependencies:
|
|
3063
|
+
type-fest: 0.21.3
|
|
3064
|
+
|
|
3065
|
+
ansi-regex@4.1.1: {}
|
|
3066
|
+
|
|
3067
|
+
ansi-regex@5.0.1: {}
|
|
3068
|
+
|
|
3069
|
+
ansi-styles@3.2.1:
|
|
3070
|
+
dependencies:
|
|
3071
|
+
color-convert: 1.9.3
|
|
3072
|
+
|
|
3073
|
+
ansi-styles@4.3.0:
|
|
3074
|
+
dependencies:
|
|
3075
|
+
color-convert: 2.0.1
|
|
3076
|
+
|
|
3077
|
+
ansi-styles@5.2.0: {}
|
|
3078
|
+
|
|
3079
|
+
arg@5.0.2: {}
|
|
3080
|
+
|
|
3081
|
+
argparse@2.0.1: {}
|
|
3082
|
+
|
|
3083
|
+
asap@2.0.6: {}
|
|
3084
|
+
|
|
3085
|
+
babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.7):
|
|
3086
|
+
dependencies:
|
|
3087
|
+
'@babel/compat-data': 7.29.7
|
|
3088
|
+
'@babel/core': 7.29.7
|
|
3089
|
+
'@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7)
|
|
3090
|
+
semver: 6.3.1
|
|
3091
|
+
transitivePeerDependencies:
|
|
3092
|
+
- supports-color
|
|
3093
|
+
|
|
3094
|
+
babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.7):
|
|
3095
|
+
dependencies:
|
|
3096
|
+
'@babel/core': 7.29.7
|
|
3097
|
+
'@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7)
|
|
3098
|
+
core-js-compat: 3.49.0
|
|
3099
|
+
transitivePeerDependencies:
|
|
3100
|
+
- supports-color
|
|
3101
|
+
|
|
3102
|
+
babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.7):
|
|
3103
|
+
dependencies:
|
|
3104
|
+
'@babel/core': 7.29.7
|
|
3105
|
+
'@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7)
|
|
3106
|
+
transitivePeerDependencies:
|
|
3107
|
+
- supports-color
|
|
3108
|
+
|
|
3109
|
+
babel-plugin-react-compiler@1.0.0:
|
|
3110
|
+
dependencies:
|
|
3111
|
+
'@babel/types': 7.29.7
|
|
3112
|
+
|
|
3113
|
+
babel-plugin-react-native-web@0.21.2: {}
|
|
3114
|
+
|
|
3115
|
+
babel-plugin-syntax-hermes-parser@0.33.3:
|
|
3116
|
+
dependencies:
|
|
3117
|
+
hermes-parser: 0.33.3
|
|
3118
|
+
|
|
3119
|
+
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.29.7):
|
|
3120
|
+
dependencies:
|
|
3121
|
+
'@babel/plugin-syntax-flow': 7.29.7(@babel/core@7.29.7)
|
|
3122
|
+
transitivePeerDependencies:
|
|
3123
|
+
- '@babel/core'
|
|
3124
|
+
|
|
3125
|
+
babel-preset-expo@56.0.15(@babel/core@7.29.7)(@babel/runtime@7.29.7)(expo@56.0.12)(react-refresh@0.14.2):
|
|
3126
|
+
dependencies:
|
|
3127
|
+
'@babel/generator': 7.29.7
|
|
3128
|
+
'@babel/helper-module-imports': 7.29.7
|
|
3129
|
+
'@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7)
|
|
3130
|
+
'@babel/plugin-proposal-export-default-from': 7.29.7(@babel/core@7.29.7)
|
|
3131
|
+
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.7)
|
|
3132
|
+
'@babel/plugin-syntax-export-default-from': 7.29.7(@babel/core@7.29.7)
|
|
3133
|
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.7)
|
|
3134
|
+
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.7)
|
|
3135
|
+
'@babel/plugin-transform-async-generator-functions': 7.29.7(@babel/core@7.29.7)
|
|
3136
|
+
'@babel/plugin-transform-async-to-generator': 7.29.7(@babel/core@7.29.7)
|
|
3137
|
+
'@babel/plugin-transform-block-scoping': 7.29.7(@babel/core@7.29.7)
|
|
3138
|
+
'@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.7)
|
|
3139
|
+
'@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.7)
|
|
3140
|
+
'@babel/plugin-transform-classes': 7.29.7(@babel/core@7.29.7)
|
|
3141
|
+
'@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
|
|
3142
|
+
'@babel/plugin-transform-export-namespace-from': 7.29.7(@babel/core@7.29.7)
|
|
3143
|
+
'@babel/plugin-transform-flow-strip-types': 7.29.7(@babel/core@7.29.7)
|
|
3144
|
+
'@babel/plugin-transform-for-of': 7.29.7(@babel/core@7.29.7)
|
|
3145
|
+
'@babel/plugin-transform-logical-assignment-operators': 7.29.7(@babel/core@7.29.7)
|
|
3146
|
+
'@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
|
|
3147
|
+
'@babel/plugin-transform-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.7)
|
|
3148
|
+
'@babel/plugin-transform-nullish-coalescing-operator': 7.29.7(@babel/core@7.29.7)
|
|
3149
|
+
'@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.7)
|
|
3150
|
+
'@babel/plugin-transform-optional-catch-binding': 7.29.7(@babel/core@7.29.7)
|
|
3151
|
+
'@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.7)
|
|
3152
|
+
'@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7)
|
|
3153
|
+
'@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.7)
|
|
3154
|
+
'@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.7)
|
|
3155
|
+
'@babel/plugin-transform-react-display-name': 7.29.7(@babel/core@7.29.7)
|
|
3156
|
+
'@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7)
|
|
3157
|
+
'@babel/plugin-transform-react-jsx-development': 7.29.7(@babel/core@7.29.7)
|
|
3158
|
+
'@babel/plugin-transform-react-pure-annotations': 7.29.7(@babel/core@7.29.7)
|
|
3159
|
+
'@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.7)
|
|
3160
|
+
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
3161
|
+
'@babel/plugin-transform-unicode-regex': 7.29.7(@babel/core@7.29.7)
|
|
3162
|
+
'@babel/preset-typescript': 7.29.7(@babel/core@7.29.7)
|
|
3163
|
+
'@react-native/babel-plugin-codegen': 0.85.3
|
|
3164
|
+
babel-plugin-react-compiler: 1.0.0
|
|
3165
|
+
babel-plugin-react-native-web: 0.21.2
|
|
3166
|
+
babel-plugin-syntax-hermes-parser: 0.33.3
|
|
3167
|
+
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.7)
|
|
3168
|
+
debug: 4.4.3
|
|
3169
|
+
react-refresh: 0.14.2
|
|
3170
|
+
optionalDependencies:
|
|
3171
|
+
'@babel/runtime': 7.29.7
|
|
3172
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3173
|
+
transitivePeerDependencies:
|
|
3174
|
+
- '@babel/core'
|
|
3175
|
+
- supports-color
|
|
3176
|
+
|
|
3177
|
+
balanced-match@4.0.4: {}
|
|
3178
|
+
|
|
3179
|
+
base64-js@1.5.1: {}
|
|
3180
|
+
|
|
3181
|
+
baseline-browser-mapping@2.10.37: {}
|
|
3182
|
+
|
|
3183
|
+
big-integer@1.6.52: {}
|
|
3184
|
+
|
|
3185
|
+
bplist-creator@0.1.0:
|
|
3186
|
+
dependencies:
|
|
3187
|
+
stream-buffers: 2.2.0
|
|
3188
|
+
|
|
3189
|
+
bplist-parser@0.3.1:
|
|
3190
|
+
dependencies:
|
|
3191
|
+
big-integer: 1.6.52
|
|
3192
|
+
|
|
3193
|
+
bplist-parser@0.3.2:
|
|
3194
|
+
dependencies:
|
|
3195
|
+
big-integer: 1.6.52
|
|
3196
|
+
|
|
3197
|
+
brace-expansion@5.0.6:
|
|
3198
|
+
dependencies:
|
|
3199
|
+
balanced-match: 4.0.4
|
|
3200
|
+
|
|
3201
|
+
braces@3.0.3:
|
|
3202
|
+
dependencies:
|
|
3203
|
+
fill-range: 7.1.1
|
|
3204
|
+
|
|
3205
|
+
browserslist@4.28.2:
|
|
3206
|
+
dependencies:
|
|
3207
|
+
baseline-browser-mapping: 2.10.37
|
|
3208
|
+
caniuse-lite: 1.0.30001799
|
|
3209
|
+
electron-to-chromium: 1.5.373
|
|
3210
|
+
node-releases: 2.0.47
|
|
3211
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
|
3212
|
+
|
|
3213
|
+
bser@2.1.1:
|
|
3214
|
+
dependencies:
|
|
3215
|
+
node-int64: 0.4.0
|
|
3216
|
+
|
|
3217
|
+
buffer-from@1.1.2: {}
|
|
3218
|
+
|
|
3219
|
+
bytes@3.1.2: {}
|
|
3220
|
+
|
|
3221
|
+
camelcase@6.3.0: {}
|
|
3222
|
+
|
|
3223
|
+
caniuse-lite@1.0.30001799: {}
|
|
3224
|
+
|
|
3225
|
+
chalk@2.4.2:
|
|
3226
|
+
dependencies:
|
|
3227
|
+
ansi-styles: 3.2.1
|
|
3228
|
+
escape-string-regexp: 1.0.5
|
|
3229
|
+
supports-color: 5.5.0
|
|
3230
|
+
|
|
3231
|
+
chalk@4.1.2:
|
|
3232
|
+
dependencies:
|
|
3233
|
+
ansi-styles: 4.3.0
|
|
3234
|
+
supports-color: 7.2.0
|
|
3235
|
+
|
|
3236
|
+
chrome-launcher@0.15.2:
|
|
3237
|
+
dependencies:
|
|
3238
|
+
'@types/node': 25.9.3
|
|
3239
|
+
escape-string-regexp: 4.0.0
|
|
3240
|
+
is-wsl: 2.2.0
|
|
3241
|
+
lighthouse-logger: 1.4.2
|
|
3242
|
+
transitivePeerDependencies:
|
|
3243
|
+
- supports-color
|
|
3244
|
+
|
|
3245
|
+
chromium-edge-launcher@0.3.0:
|
|
3246
|
+
dependencies:
|
|
3247
|
+
'@types/node': 25.9.3
|
|
3248
|
+
escape-string-regexp: 4.0.0
|
|
3249
|
+
is-wsl: 2.2.0
|
|
3250
|
+
lighthouse-logger: 1.4.2
|
|
3251
|
+
mkdirp: 1.0.4
|
|
3252
|
+
transitivePeerDependencies:
|
|
3253
|
+
- supports-color
|
|
3254
|
+
|
|
3255
|
+
ci-info@2.0.0: {}
|
|
3256
|
+
|
|
3257
|
+
ci-info@3.9.0: {}
|
|
3258
|
+
|
|
3259
|
+
cli-cursor@2.1.0:
|
|
3260
|
+
dependencies:
|
|
3261
|
+
restore-cursor: 2.0.0
|
|
3262
|
+
|
|
3263
|
+
cli-spinners@2.9.2: {}
|
|
3264
|
+
|
|
3265
|
+
cliui@8.0.1:
|
|
3266
|
+
dependencies:
|
|
3267
|
+
string-width: 4.2.3
|
|
3268
|
+
strip-ansi: 6.0.1
|
|
3269
|
+
wrap-ansi: 7.0.0
|
|
3270
|
+
|
|
3271
|
+
clone@1.0.4: {}
|
|
3272
|
+
|
|
3273
|
+
color-convert@1.9.3:
|
|
3274
|
+
dependencies:
|
|
3275
|
+
color-name: 1.1.3
|
|
3276
|
+
|
|
3277
|
+
color-convert@2.0.1:
|
|
3278
|
+
dependencies:
|
|
3279
|
+
color-name: 1.1.4
|
|
3280
|
+
|
|
3281
|
+
color-name@1.1.3: {}
|
|
3282
|
+
|
|
3283
|
+
color-name@1.1.4: {}
|
|
3284
|
+
|
|
3285
|
+
commander@12.1.0: {}
|
|
3286
|
+
|
|
3287
|
+
commander@2.20.3: {}
|
|
3288
|
+
|
|
3289
|
+
commander@7.2.0: {}
|
|
3290
|
+
|
|
3291
|
+
compressible@2.0.18:
|
|
3292
|
+
dependencies:
|
|
3293
|
+
mime-db: 1.54.0
|
|
3294
|
+
|
|
3295
|
+
compression@1.8.1:
|
|
3296
|
+
dependencies:
|
|
3297
|
+
bytes: 3.1.2
|
|
3298
|
+
compressible: 2.0.18
|
|
3299
|
+
debug: 2.6.9
|
|
3300
|
+
negotiator: 0.6.4
|
|
3301
|
+
on-headers: 1.1.0
|
|
3302
|
+
safe-buffer: 5.2.1
|
|
3303
|
+
vary: 1.1.2
|
|
3304
|
+
transitivePeerDependencies:
|
|
3305
|
+
- supports-color
|
|
3306
|
+
|
|
3307
|
+
connect@3.7.0:
|
|
3308
|
+
dependencies:
|
|
3309
|
+
debug: 2.6.9
|
|
3310
|
+
finalhandler: 1.1.2
|
|
3311
|
+
parseurl: 1.3.3
|
|
3312
|
+
utils-merge: 1.0.1
|
|
3313
|
+
transitivePeerDependencies:
|
|
3314
|
+
- supports-color
|
|
3315
|
+
|
|
3316
|
+
convert-source-map@2.0.0: {}
|
|
3317
|
+
|
|
3318
|
+
core-js-compat@3.49.0:
|
|
3319
|
+
dependencies:
|
|
3320
|
+
browserslist: 4.28.2
|
|
3321
|
+
|
|
3322
|
+
cross-spawn@7.0.6:
|
|
3323
|
+
dependencies:
|
|
3324
|
+
path-key: 3.1.1
|
|
3325
|
+
shebang-command: 2.0.0
|
|
3326
|
+
which: 2.0.2
|
|
3327
|
+
|
|
3328
|
+
csstype@3.2.3: {}
|
|
3329
|
+
|
|
3330
|
+
debug@2.6.9:
|
|
3331
|
+
dependencies:
|
|
3332
|
+
ms: 2.0.0
|
|
3333
|
+
|
|
3334
|
+
debug@3.2.7:
|
|
3335
|
+
dependencies:
|
|
3336
|
+
ms: 2.1.3
|
|
3337
|
+
|
|
3338
|
+
debug@4.4.3:
|
|
3339
|
+
dependencies:
|
|
3340
|
+
ms: 2.1.3
|
|
3341
|
+
|
|
3342
|
+
deepmerge@4.3.1: {}
|
|
3343
|
+
|
|
3344
|
+
defaults@1.0.4:
|
|
3345
|
+
dependencies:
|
|
3346
|
+
clone: 1.0.4
|
|
3347
|
+
|
|
3348
|
+
depd@2.0.0: {}
|
|
3349
|
+
|
|
3350
|
+
destroy@1.2.0: {}
|
|
3351
|
+
|
|
3352
|
+
detect-libc@2.1.2: {}
|
|
3353
|
+
|
|
3354
|
+
dnssd-advertise@1.1.6: {}
|
|
3355
|
+
|
|
3356
|
+
ee-first@1.1.1: {}
|
|
3357
|
+
|
|
3358
|
+
electron-to-chromium@1.5.373: {}
|
|
3359
|
+
|
|
3360
|
+
emoji-regex@8.0.0: {}
|
|
3361
|
+
|
|
3362
|
+
encodeurl@1.0.2: {}
|
|
3363
|
+
|
|
3364
|
+
encodeurl@2.0.0: {}
|
|
3365
|
+
|
|
3366
|
+
error-stack-parser@2.1.4:
|
|
3367
|
+
dependencies:
|
|
3368
|
+
stackframe: 1.3.4
|
|
3369
|
+
|
|
3370
|
+
es-errors@1.3.0: {}
|
|
3371
|
+
|
|
3372
|
+
escalade@3.2.0: {}
|
|
3373
|
+
|
|
3374
|
+
escape-html@1.0.3: {}
|
|
3375
|
+
|
|
3376
|
+
escape-string-regexp@1.0.5: {}
|
|
3377
|
+
|
|
3378
|
+
escape-string-regexp@4.0.0: {}
|
|
3379
|
+
|
|
3380
|
+
etag@1.8.1: {}
|
|
3381
|
+
|
|
3382
|
+
event-target-shim@5.0.1: {}
|
|
3383
|
+
|
|
3384
|
+
expo-asset@56.0.17(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3):
|
|
3385
|
+
dependencies:
|
|
3386
|
+
'@expo/image-utils': 0.10.1(typescript@6.0.3)
|
|
3387
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3388
|
+
expo-constants: 56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
3389
|
+
react: 19.2.3
|
|
3390
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3391
|
+
transitivePeerDependencies:
|
|
3392
|
+
- supports-color
|
|
3393
|
+
- typescript
|
|
3394
|
+
|
|
3395
|
+
expo-constants@56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)):
|
|
3396
|
+
dependencies:
|
|
3397
|
+
'@expo/env': 2.3.0
|
|
3398
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3399
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3400
|
+
transitivePeerDependencies:
|
|
3401
|
+
- supports-color
|
|
3402
|
+
|
|
3403
|
+
expo-file-system@56.0.8(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)):
|
|
3404
|
+
dependencies:
|
|
3405
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3406
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3407
|
+
|
|
3408
|
+
expo-font@56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3):
|
|
3409
|
+
dependencies:
|
|
3410
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3411
|
+
fontfaceobserver: 2.3.0
|
|
3412
|
+
react: 19.2.3
|
|
3413
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3414
|
+
|
|
3415
|
+
expo-keep-awake@56.0.3(expo@56.0.12)(react@19.2.3):
|
|
3416
|
+
dependencies:
|
|
3417
|
+
expo: 56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3418
|
+
react: 19.2.3
|
|
3419
|
+
|
|
3420
|
+
expo-linking@56.0.14(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3):
|
|
3421
|
+
dependencies:
|
|
3422
|
+
expo-constants: 56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
3423
|
+
invariant: 2.2.4
|
|
3424
|
+
react: 19.2.3
|
|
3425
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3426
|
+
transitivePeerDependencies:
|
|
3427
|
+
- expo
|
|
3428
|
+
- supports-color
|
|
3429
|
+
|
|
3430
|
+
expo-modules-autolinking@56.0.16(typescript@6.0.3):
|
|
3431
|
+
dependencies:
|
|
3432
|
+
'@expo/require-utils': 56.1.3(typescript@6.0.3)
|
|
3433
|
+
'@expo/spawn-async': 1.8.0
|
|
3434
|
+
chalk: 4.1.2
|
|
3435
|
+
commander: 7.2.0
|
|
3436
|
+
transitivePeerDependencies:
|
|
3437
|
+
- supports-color
|
|
3438
|
+
- typescript
|
|
3439
|
+
|
|
3440
|
+
expo-modules-core@56.0.17(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3):
|
|
3441
|
+
dependencies:
|
|
3442
|
+
'@expo/expo-modules-macros-plugin': 0.2.2
|
|
3443
|
+
expo-modules-jsi: 56.0.10(patch_hash=64ff6688bca5b2a650d1a66ccb632958da0618afc616418efc828178203b9b96)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
3444
|
+
invariant: 2.2.4
|
|
3445
|
+
react: 19.2.3
|
|
3446
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3447
|
+
|
|
3448
|
+
expo-modules-jsi@56.0.10(patch_hash=64ff6688bca5b2a650d1a66ccb632958da0618afc616418efc828178203b9b96)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)):
|
|
3449
|
+
dependencies:
|
|
3450
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3451
|
+
|
|
3452
|
+
expo-server@56.0.5: {}
|
|
3453
|
+
|
|
3454
|
+
expo@56.0.12(@babel/core@7.29.7)(@expo/metro-runtime@56.0.15)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3):
|
|
3455
|
+
dependencies:
|
|
3456
|
+
'@babel/runtime': 7.29.7
|
|
3457
|
+
'@expo/cli': 56.1.16(@expo/metro-runtime@56.0.15)(expo-constants@56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3)))(expo-font@56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3))(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3458
|
+
'@expo/config': 56.0.9(typescript@6.0.3)
|
|
3459
|
+
'@expo/config-plugins': 56.0.9(typescript@6.0.3)
|
|
3460
|
+
'@expo/devtools': 56.0.2(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
3461
|
+
'@expo/dom-webview': 56.0.5(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
3462
|
+
'@expo/fingerprint': 0.19.4
|
|
3463
|
+
'@expo/local-build-cache-provider': 56.0.8(typescript@6.0.3)
|
|
3464
|
+
'@expo/log-box': 56.0.13(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
3465
|
+
'@expo/metro': 56.0.0
|
|
3466
|
+
'@expo/metro-config': 56.0.14(expo@56.0.12)(typescript@6.0.3)
|
|
3467
|
+
'@ungap/structured-clone': 1.3.1
|
|
3468
|
+
babel-preset-expo: 56.0.15(@babel/core@7.29.7)(@babel/runtime@7.29.7)(expo@56.0.12)(react-refresh@0.14.2)
|
|
3469
|
+
expo-asset: 56.0.17(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)(typescript@6.0.3)
|
|
3470
|
+
expo-constants: 56.0.18(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
3471
|
+
expo-file-system: 56.0.8(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))
|
|
3472
|
+
expo-font: 56.0.7(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
3473
|
+
expo-keep-awake: 56.0.3(expo@56.0.12)(react@19.2.3)
|
|
3474
|
+
expo-modules-autolinking: 56.0.16(typescript@6.0.3)
|
|
3475
|
+
expo-modules-core: 56.0.17(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
3476
|
+
pretty-format: 29.7.0
|
|
3477
|
+
react: 19.2.3
|
|
3478
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
3479
|
+
react-refresh: 0.14.2
|
|
3480
|
+
whatwg-url-minimum: 0.1.2
|
|
3481
|
+
optionalDependencies:
|
|
3482
|
+
'@expo/metro-runtime': 56.0.15(expo@56.0.12)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
3483
|
+
transitivePeerDependencies:
|
|
3484
|
+
- '@babel/core'
|
|
3485
|
+
- bufferutil
|
|
3486
|
+
- expo-router
|
|
3487
|
+
- expo-widgets
|
|
3488
|
+
- react-native-worklets
|
|
3489
|
+
- react-server-dom-webpack
|
|
3490
|
+
- supports-color
|
|
3491
|
+
- typescript
|
|
3492
|
+
- utf-8-validate
|
|
3493
|
+
|
|
3494
|
+
exponential-backoff@3.1.3: {}
|
|
3495
|
+
|
|
3496
|
+
fb-dotslash@0.5.8: {}
|
|
3497
|
+
|
|
3498
|
+
fb-watchman@2.0.2:
|
|
3499
|
+
dependencies:
|
|
3500
|
+
bser: 2.1.1
|
|
3501
|
+
|
|
3502
|
+
fdir@6.5.0(picomatch@4.0.4):
|
|
3503
|
+
optionalDependencies:
|
|
3504
|
+
picomatch: 4.0.4
|
|
3505
|
+
|
|
3506
|
+
fetch-nodeshim@0.4.10: {}
|
|
3507
|
+
|
|
3508
|
+
fill-range@7.1.1:
|
|
3509
|
+
dependencies:
|
|
3510
|
+
to-regex-range: 5.0.1
|
|
3511
|
+
|
|
3512
|
+
finalhandler@1.1.2:
|
|
3513
|
+
dependencies:
|
|
3514
|
+
debug: 2.6.9
|
|
3515
|
+
encodeurl: 1.0.2
|
|
3516
|
+
escape-html: 1.0.3
|
|
3517
|
+
on-finished: 2.3.0
|
|
3518
|
+
parseurl: 1.3.3
|
|
3519
|
+
statuses: 1.5.0
|
|
3520
|
+
unpipe: 1.0.0
|
|
3521
|
+
transitivePeerDependencies:
|
|
3522
|
+
- supports-color
|
|
3523
|
+
|
|
3524
|
+
flow-enums-runtime@0.0.6: {}
|
|
3525
|
+
|
|
3526
|
+
fontfaceobserver@2.3.0: {}
|
|
3527
|
+
|
|
3528
|
+
fresh@0.5.2: {}
|
|
3529
|
+
|
|
3530
|
+
function-bind@1.1.2: {}
|
|
3531
|
+
|
|
3532
|
+
gensync@1.0.0-beta.2: {}
|
|
3533
|
+
|
|
3534
|
+
get-caller-file@2.0.5: {}
|
|
3535
|
+
|
|
3536
|
+
getenv@2.0.0: {}
|
|
3537
|
+
|
|
3538
|
+
glob@13.0.6:
|
|
3539
|
+
dependencies:
|
|
3540
|
+
minimatch: 10.2.5
|
|
3541
|
+
minipass: 7.1.3
|
|
3542
|
+
path-scurry: 2.0.2
|
|
3543
|
+
|
|
3544
|
+
graceful-fs@4.2.11: {}
|
|
3545
|
+
|
|
3546
|
+
has-flag@3.0.0: {}
|
|
3547
|
+
|
|
3548
|
+
has-flag@4.0.0: {}
|
|
3549
|
+
|
|
3550
|
+
hasown@2.0.4:
|
|
3551
|
+
dependencies:
|
|
3552
|
+
function-bind: 1.1.2
|
|
3553
|
+
|
|
3554
|
+
hermes-compiler@250829098.0.10: {}
|
|
3555
|
+
|
|
3556
|
+
hermes-estree@0.33.3: {}
|
|
3557
|
+
|
|
3558
|
+
hermes-estree@0.35.0: {}
|
|
3559
|
+
|
|
3560
|
+
hermes-parser@0.33.3:
|
|
3561
|
+
dependencies:
|
|
3562
|
+
hermes-estree: 0.33.3
|
|
3563
|
+
|
|
3564
|
+
hermes-parser@0.35.0:
|
|
3565
|
+
dependencies:
|
|
3566
|
+
hermes-estree: 0.35.0
|
|
3567
|
+
|
|
3568
|
+
hoist-non-react-statics@3.3.2:
|
|
3569
|
+
dependencies:
|
|
3570
|
+
react-is: 16.13.1
|
|
3571
|
+
|
|
3572
|
+
hosted-git-info@7.0.2:
|
|
3573
|
+
dependencies:
|
|
3574
|
+
lru-cache: 10.4.3
|
|
3575
|
+
|
|
3576
|
+
http-errors@2.0.1:
|
|
3577
|
+
dependencies:
|
|
3578
|
+
depd: 2.0.0
|
|
3579
|
+
inherits: 2.0.4
|
|
3580
|
+
setprototypeof: 1.2.0
|
|
3581
|
+
statuses: 2.0.2
|
|
3582
|
+
toidentifier: 1.0.1
|
|
3583
|
+
|
|
3584
|
+
https-proxy-agent@7.0.6:
|
|
3585
|
+
dependencies:
|
|
3586
|
+
agent-base: 7.1.4
|
|
3587
|
+
debug: 4.4.3
|
|
3588
|
+
transitivePeerDependencies:
|
|
3589
|
+
- supports-color
|
|
3590
|
+
|
|
3591
|
+
ignore@5.3.2: {}
|
|
3592
|
+
|
|
3593
|
+
image-size@1.2.1:
|
|
3594
|
+
dependencies:
|
|
3595
|
+
queue: 6.0.2
|
|
3596
|
+
|
|
3597
|
+
inherits@2.0.4: {}
|
|
3598
|
+
|
|
3599
|
+
invariant@2.2.4:
|
|
3600
|
+
dependencies:
|
|
3601
|
+
loose-envify: 1.4.0
|
|
3602
|
+
|
|
3603
|
+
is-core-module@2.16.2:
|
|
3604
|
+
dependencies:
|
|
3605
|
+
hasown: 2.0.4
|
|
3606
|
+
|
|
3607
|
+
is-docker@2.2.1: {}
|
|
3608
|
+
|
|
3609
|
+
is-fullwidth-code-point@3.0.0: {}
|
|
3610
|
+
|
|
3611
|
+
is-number@7.0.0: {}
|
|
3612
|
+
|
|
3613
|
+
is-plain-obj@2.1.0: {}
|
|
3614
|
+
|
|
3615
|
+
is-wsl@2.2.0:
|
|
3616
|
+
dependencies:
|
|
3617
|
+
is-docker: 2.2.1
|
|
3618
|
+
|
|
3619
|
+
isexe@2.0.0: {}
|
|
3620
|
+
|
|
3621
|
+
jest-get-type@29.6.3: {}
|
|
3622
|
+
|
|
3623
|
+
jest-util@29.7.0:
|
|
3624
|
+
dependencies:
|
|
3625
|
+
'@jest/types': 29.6.3
|
|
3626
|
+
'@types/node': 25.9.3
|
|
3627
|
+
chalk: 4.1.2
|
|
3628
|
+
ci-info: 3.9.0
|
|
3629
|
+
graceful-fs: 4.2.11
|
|
3630
|
+
picomatch: 2.3.2
|
|
3631
|
+
|
|
3632
|
+
jest-validate@29.7.0:
|
|
3633
|
+
dependencies:
|
|
3634
|
+
'@jest/types': 29.6.3
|
|
3635
|
+
camelcase: 6.3.0
|
|
3636
|
+
chalk: 4.1.2
|
|
3637
|
+
jest-get-type: 29.6.3
|
|
3638
|
+
leven: 3.1.0
|
|
3639
|
+
pretty-format: 29.7.0
|
|
3640
|
+
|
|
3641
|
+
jest-worker@29.7.0:
|
|
3642
|
+
dependencies:
|
|
3643
|
+
'@types/node': 25.9.3
|
|
3644
|
+
jest-util: 29.7.0
|
|
3645
|
+
merge-stream: 2.0.0
|
|
3646
|
+
supports-color: 8.1.1
|
|
3647
|
+
|
|
3648
|
+
jimp-compact@0.16.1: {}
|
|
3649
|
+
|
|
3650
|
+
js-tokens@4.0.0: {}
|
|
3651
|
+
|
|
3652
|
+
js-yaml@4.2.0:
|
|
3653
|
+
dependencies:
|
|
3654
|
+
argparse: 2.0.1
|
|
3655
|
+
|
|
3656
|
+
jsc-safe-url@0.2.4: {}
|
|
3657
|
+
|
|
3658
|
+
jsesc@3.1.0: {}
|
|
3659
|
+
|
|
3660
|
+
json5@2.2.3: {}
|
|
3661
|
+
|
|
3662
|
+
kleur@3.0.3: {}
|
|
3663
|
+
|
|
3664
|
+
lan-network@0.2.1: {}
|
|
3665
|
+
|
|
3666
|
+
leven@3.1.0: {}
|
|
3667
|
+
|
|
3668
|
+
lighthouse-logger@1.4.2:
|
|
3669
|
+
dependencies:
|
|
3670
|
+
debug: 2.6.9
|
|
3671
|
+
marky: 1.3.0
|
|
3672
|
+
transitivePeerDependencies:
|
|
3673
|
+
- supports-color
|
|
3674
|
+
|
|
3675
|
+
lightningcss-android-arm64@1.32.0:
|
|
3676
|
+
optional: true
|
|
3677
|
+
|
|
3678
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
3679
|
+
optional: true
|
|
3680
|
+
|
|
3681
|
+
lightningcss-darwin-x64@1.32.0:
|
|
3682
|
+
optional: true
|
|
3683
|
+
|
|
3684
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
3685
|
+
optional: true
|
|
3686
|
+
|
|
3687
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
3688
|
+
optional: true
|
|
3689
|
+
|
|
3690
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
3691
|
+
optional: true
|
|
3692
|
+
|
|
3693
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
3694
|
+
optional: true
|
|
3695
|
+
|
|
3696
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
3697
|
+
optional: true
|
|
3698
|
+
|
|
3699
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
3700
|
+
optional: true
|
|
3701
|
+
|
|
3702
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
3703
|
+
optional: true
|
|
3704
|
+
|
|
3705
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
3706
|
+
optional: true
|
|
3707
|
+
|
|
3708
|
+
lightningcss@1.32.0:
|
|
3709
|
+
dependencies:
|
|
3710
|
+
detect-libc: 2.1.2
|
|
3711
|
+
optionalDependencies:
|
|
3712
|
+
lightningcss-android-arm64: 1.32.0
|
|
3713
|
+
lightningcss-darwin-arm64: 1.32.0
|
|
3714
|
+
lightningcss-darwin-x64: 1.32.0
|
|
3715
|
+
lightningcss-freebsd-x64: 1.32.0
|
|
3716
|
+
lightningcss-linux-arm-gnueabihf: 1.32.0
|
|
3717
|
+
lightningcss-linux-arm64-gnu: 1.32.0
|
|
3718
|
+
lightningcss-linux-arm64-musl: 1.32.0
|
|
3719
|
+
lightningcss-linux-x64-gnu: 1.32.0
|
|
3720
|
+
lightningcss-linux-x64-musl: 1.32.0
|
|
3721
|
+
lightningcss-win32-arm64-msvc: 1.32.0
|
|
3722
|
+
lightningcss-win32-x64-msvc: 1.32.0
|
|
3723
|
+
|
|
3724
|
+
lodash.debounce@4.0.8: {}
|
|
3725
|
+
|
|
3726
|
+
lodash.throttle@4.1.1: {}
|
|
3727
|
+
|
|
3728
|
+
log-symbols@2.2.0:
|
|
3729
|
+
dependencies:
|
|
3730
|
+
chalk: 2.4.2
|
|
3731
|
+
|
|
3732
|
+
loose-envify@1.4.0:
|
|
3733
|
+
dependencies:
|
|
3734
|
+
js-tokens: 4.0.0
|
|
3735
|
+
|
|
3736
|
+
lru-cache@10.4.3: {}
|
|
3737
|
+
|
|
3738
|
+
lru-cache@11.5.1: {}
|
|
3739
|
+
|
|
3740
|
+
lru-cache@5.1.1:
|
|
3741
|
+
dependencies:
|
|
3742
|
+
yallist: 3.1.1
|
|
3743
|
+
|
|
3744
|
+
makeerror@1.0.12:
|
|
3745
|
+
dependencies:
|
|
3746
|
+
tmpl: 1.0.5
|
|
3747
|
+
|
|
3748
|
+
marky@1.3.0: {}
|
|
3749
|
+
|
|
3750
|
+
memoize-one@5.2.1: {}
|
|
3751
|
+
|
|
3752
|
+
merge-options@3.0.4:
|
|
3753
|
+
dependencies:
|
|
3754
|
+
is-plain-obj: 2.1.0
|
|
3755
|
+
|
|
3756
|
+
merge-stream@2.0.0: {}
|
|
3757
|
+
|
|
3758
|
+
metro-babel-transformer@0.84.4:
|
|
3759
|
+
dependencies:
|
|
3760
|
+
'@babel/core': 7.29.7
|
|
3761
|
+
flow-enums-runtime: 0.0.6
|
|
3762
|
+
hermes-parser: 0.35.0
|
|
3763
|
+
metro-cache-key: 0.84.4
|
|
3764
|
+
nullthrows: 1.1.1
|
|
3765
|
+
transitivePeerDependencies:
|
|
3766
|
+
- supports-color
|
|
3767
|
+
|
|
3768
|
+
metro-cache-key@0.84.4:
|
|
3769
|
+
dependencies:
|
|
3770
|
+
flow-enums-runtime: 0.0.6
|
|
3771
|
+
|
|
3772
|
+
metro-cache@0.84.4:
|
|
3773
|
+
dependencies:
|
|
3774
|
+
exponential-backoff: 3.1.3
|
|
3775
|
+
flow-enums-runtime: 0.0.6
|
|
3776
|
+
https-proxy-agent: 7.0.6
|
|
3777
|
+
metro-core: 0.84.4
|
|
3778
|
+
transitivePeerDependencies:
|
|
3779
|
+
- supports-color
|
|
3780
|
+
|
|
3781
|
+
metro-config@0.84.4:
|
|
3782
|
+
dependencies:
|
|
3783
|
+
connect: 3.7.0
|
|
3784
|
+
flow-enums-runtime: 0.0.6
|
|
3785
|
+
jest-validate: 29.7.0
|
|
3786
|
+
metro: 0.84.4
|
|
3787
|
+
metro-cache: 0.84.4
|
|
3788
|
+
metro-core: 0.84.4
|
|
3789
|
+
metro-runtime: 0.84.4
|
|
3790
|
+
yaml: 2.9.0
|
|
3791
|
+
transitivePeerDependencies:
|
|
3792
|
+
- bufferutil
|
|
3793
|
+
- supports-color
|
|
3794
|
+
- utf-8-validate
|
|
3795
|
+
|
|
3796
|
+
metro-core@0.84.4:
|
|
3797
|
+
dependencies:
|
|
3798
|
+
flow-enums-runtime: 0.0.6
|
|
3799
|
+
lodash.throttle: 4.1.1
|
|
3800
|
+
metro-resolver: 0.84.4
|
|
3801
|
+
|
|
3802
|
+
metro-file-map@0.84.4:
|
|
3803
|
+
dependencies:
|
|
3804
|
+
debug: 4.4.3
|
|
3805
|
+
fb-watchman: 2.0.2
|
|
3806
|
+
flow-enums-runtime: 0.0.6
|
|
3807
|
+
graceful-fs: 4.2.11
|
|
3808
|
+
invariant: 2.2.4
|
|
3809
|
+
jest-worker: 29.7.0
|
|
3810
|
+
micromatch: 4.0.8
|
|
3811
|
+
nullthrows: 1.1.1
|
|
3812
|
+
walker: 1.0.8
|
|
3813
|
+
transitivePeerDependencies:
|
|
3814
|
+
- supports-color
|
|
3815
|
+
|
|
3816
|
+
metro-minify-terser@0.84.4:
|
|
3817
|
+
dependencies:
|
|
3818
|
+
flow-enums-runtime: 0.0.6
|
|
3819
|
+
terser: 5.48.0
|
|
3820
|
+
|
|
3821
|
+
metro-resolver@0.84.4:
|
|
3822
|
+
dependencies:
|
|
3823
|
+
flow-enums-runtime: 0.0.6
|
|
3824
|
+
|
|
3825
|
+
metro-runtime@0.84.4:
|
|
3826
|
+
dependencies:
|
|
3827
|
+
'@babel/runtime': 7.29.7
|
|
3828
|
+
flow-enums-runtime: 0.0.6
|
|
3829
|
+
|
|
3830
|
+
metro-source-map@0.84.4:
|
|
3831
|
+
dependencies:
|
|
3832
|
+
'@babel/traverse': 7.29.7
|
|
3833
|
+
'@babel/types': 7.29.7
|
|
3834
|
+
flow-enums-runtime: 0.0.6
|
|
3835
|
+
invariant: 2.2.4
|
|
3836
|
+
metro-symbolicate: 0.84.4
|
|
3837
|
+
nullthrows: 1.1.1
|
|
3838
|
+
ob1: 0.84.4
|
|
3839
|
+
source-map: 0.5.7
|
|
3840
|
+
vlq: 1.0.1
|
|
3841
|
+
transitivePeerDependencies:
|
|
3842
|
+
- supports-color
|
|
3843
|
+
|
|
3844
|
+
metro-symbolicate@0.84.4:
|
|
3845
|
+
dependencies:
|
|
3846
|
+
flow-enums-runtime: 0.0.6
|
|
3847
|
+
invariant: 2.2.4
|
|
3848
|
+
metro-source-map: 0.84.4
|
|
3849
|
+
nullthrows: 1.1.1
|
|
3850
|
+
source-map: 0.5.7
|
|
3851
|
+
vlq: 1.0.1
|
|
3852
|
+
transitivePeerDependencies:
|
|
3853
|
+
- supports-color
|
|
3854
|
+
|
|
3855
|
+
metro-transform-plugins@0.84.4:
|
|
3856
|
+
dependencies:
|
|
3857
|
+
'@babel/core': 7.29.7
|
|
3858
|
+
'@babel/generator': 7.29.7
|
|
3859
|
+
'@babel/template': 7.29.7
|
|
3860
|
+
'@babel/traverse': 7.29.7
|
|
3861
|
+
flow-enums-runtime: 0.0.6
|
|
3862
|
+
nullthrows: 1.1.1
|
|
3863
|
+
transitivePeerDependencies:
|
|
3864
|
+
- supports-color
|
|
3865
|
+
|
|
3866
|
+
metro-transform-worker@0.84.4:
|
|
3867
|
+
dependencies:
|
|
3868
|
+
'@babel/core': 7.29.7
|
|
3869
|
+
'@babel/generator': 7.29.7
|
|
3870
|
+
'@babel/parser': 7.29.7
|
|
3871
|
+
'@babel/types': 7.29.7
|
|
3872
|
+
flow-enums-runtime: 0.0.6
|
|
3873
|
+
metro: 0.84.4
|
|
3874
|
+
metro-babel-transformer: 0.84.4
|
|
3875
|
+
metro-cache: 0.84.4
|
|
3876
|
+
metro-cache-key: 0.84.4
|
|
3877
|
+
metro-minify-terser: 0.84.4
|
|
3878
|
+
metro-source-map: 0.84.4
|
|
3879
|
+
metro-transform-plugins: 0.84.4
|
|
3880
|
+
nullthrows: 1.1.1
|
|
3881
|
+
transitivePeerDependencies:
|
|
3882
|
+
- bufferutil
|
|
3883
|
+
- supports-color
|
|
3884
|
+
- utf-8-validate
|
|
3885
|
+
|
|
3886
|
+
metro@0.84.4:
|
|
3887
|
+
dependencies:
|
|
3888
|
+
'@babel/code-frame': 7.29.7
|
|
3889
|
+
'@babel/core': 7.29.7
|
|
3890
|
+
'@babel/generator': 7.29.7
|
|
3891
|
+
'@babel/parser': 7.29.7
|
|
3892
|
+
'@babel/template': 7.29.7
|
|
3893
|
+
'@babel/traverse': 7.29.7
|
|
3894
|
+
'@babel/types': 7.29.7
|
|
3895
|
+
accepts: 2.0.0
|
|
3896
|
+
ci-info: 2.0.0
|
|
3897
|
+
connect: 3.7.0
|
|
3898
|
+
debug: 4.4.3
|
|
3899
|
+
error-stack-parser: 2.1.4
|
|
3900
|
+
flow-enums-runtime: 0.0.6
|
|
3901
|
+
graceful-fs: 4.2.11
|
|
3902
|
+
hermes-parser: 0.35.0
|
|
3903
|
+
image-size: 1.2.1
|
|
3904
|
+
invariant: 2.2.4
|
|
3905
|
+
jest-worker: 29.7.0
|
|
3906
|
+
jsc-safe-url: 0.2.4
|
|
3907
|
+
lodash.throttle: 4.1.1
|
|
3908
|
+
metro-babel-transformer: 0.84.4
|
|
3909
|
+
metro-cache: 0.84.4
|
|
3910
|
+
metro-cache-key: 0.84.4
|
|
3911
|
+
metro-config: 0.84.4
|
|
3912
|
+
metro-core: 0.84.4
|
|
3913
|
+
metro-file-map: 0.84.4
|
|
3914
|
+
metro-resolver: 0.84.4
|
|
3915
|
+
metro-runtime: 0.84.4
|
|
3916
|
+
metro-source-map: 0.84.4
|
|
3917
|
+
metro-symbolicate: 0.84.4
|
|
3918
|
+
metro-transform-plugins: 0.84.4
|
|
3919
|
+
metro-transform-worker: 0.84.4
|
|
3920
|
+
mime-types: 3.0.2
|
|
3921
|
+
nullthrows: 1.1.1
|
|
3922
|
+
serialize-error: 2.1.0
|
|
3923
|
+
source-map: 0.5.7
|
|
3924
|
+
throat: 5.0.0
|
|
3925
|
+
ws: 7.5.11
|
|
3926
|
+
yargs: 17.7.2
|
|
3927
|
+
transitivePeerDependencies:
|
|
3928
|
+
- bufferutil
|
|
3929
|
+
- supports-color
|
|
3930
|
+
- utf-8-validate
|
|
3931
|
+
|
|
3932
|
+
micromatch@4.0.8:
|
|
3933
|
+
dependencies:
|
|
3934
|
+
braces: 3.0.3
|
|
3935
|
+
picomatch: 2.3.2
|
|
3936
|
+
|
|
3937
|
+
mime-db@1.52.0: {}
|
|
3938
|
+
|
|
3939
|
+
mime-db@1.54.0: {}
|
|
3940
|
+
|
|
3941
|
+
mime-types@2.1.35:
|
|
3942
|
+
dependencies:
|
|
3943
|
+
mime-db: 1.52.0
|
|
3944
|
+
|
|
3945
|
+
mime-types@3.0.2:
|
|
3946
|
+
dependencies:
|
|
3947
|
+
mime-db: 1.54.0
|
|
3948
|
+
|
|
3949
|
+
mime@1.6.0: {}
|
|
3950
|
+
|
|
3951
|
+
mimic-fn@1.2.0: {}
|
|
3952
|
+
|
|
3953
|
+
minimatch@10.2.5:
|
|
3954
|
+
dependencies:
|
|
3955
|
+
brace-expansion: 5.0.6
|
|
3956
|
+
|
|
3957
|
+
minipass@7.1.3: {}
|
|
3958
|
+
|
|
3959
|
+
mkdirp@1.0.4: {}
|
|
3960
|
+
|
|
3961
|
+
ms@2.0.0: {}
|
|
3962
|
+
|
|
3963
|
+
ms@2.1.3: {}
|
|
3964
|
+
|
|
3965
|
+
multitars@1.0.0: {}
|
|
3966
|
+
|
|
3967
|
+
nanoid@3.3.12: {}
|
|
3968
|
+
|
|
3969
|
+
negotiator@0.6.3: {}
|
|
3970
|
+
|
|
3971
|
+
negotiator@0.6.4: {}
|
|
3972
|
+
|
|
3973
|
+
negotiator@1.0.0: {}
|
|
3974
|
+
|
|
3975
|
+
node-forge@1.4.0: {}
|
|
3976
|
+
|
|
3977
|
+
node-int64@0.4.0: {}
|
|
3978
|
+
|
|
3979
|
+
node-releases@2.0.47: {}
|
|
3980
|
+
|
|
3981
|
+
npm-package-arg@11.0.3:
|
|
3982
|
+
dependencies:
|
|
3983
|
+
hosted-git-info: 7.0.2
|
|
3984
|
+
proc-log: 4.2.0
|
|
3985
|
+
semver: 7.8.4
|
|
3986
|
+
validate-npm-package-name: 5.0.1
|
|
3987
|
+
|
|
3988
|
+
nullthrows@1.1.1: {}
|
|
3989
|
+
|
|
3990
|
+
ob1@0.84.4:
|
|
3991
|
+
dependencies:
|
|
3992
|
+
flow-enums-runtime: 0.0.6
|
|
3993
|
+
|
|
3994
|
+
on-finished@2.3.0:
|
|
3995
|
+
dependencies:
|
|
3996
|
+
ee-first: 1.1.1
|
|
3997
|
+
|
|
3998
|
+
on-finished@2.4.1:
|
|
3999
|
+
dependencies:
|
|
4000
|
+
ee-first: 1.1.1
|
|
4001
|
+
|
|
4002
|
+
on-headers@1.1.0: {}
|
|
4003
|
+
|
|
4004
|
+
onetime@2.0.1:
|
|
4005
|
+
dependencies:
|
|
4006
|
+
mimic-fn: 1.2.0
|
|
4007
|
+
|
|
4008
|
+
open@7.4.2:
|
|
4009
|
+
dependencies:
|
|
4010
|
+
is-docker: 2.2.1
|
|
4011
|
+
is-wsl: 2.2.0
|
|
4012
|
+
|
|
4013
|
+
ora@3.4.0:
|
|
4014
|
+
dependencies:
|
|
4015
|
+
chalk: 2.4.2
|
|
4016
|
+
cli-cursor: 2.1.0
|
|
4017
|
+
cli-spinners: 2.9.2
|
|
4018
|
+
log-symbols: 2.2.0
|
|
4019
|
+
strip-ansi: 5.2.0
|
|
4020
|
+
wcwidth: 1.0.1
|
|
4021
|
+
|
|
4022
|
+
parse-png@2.1.0:
|
|
4023
|
+
dependencies:
|
|
4024
|
+
pngjs: 3.4.0
|
|
4025
|
+
|
|
4026
|
+
parseurl@1.3.3: {}
|
|
4027
|
+
|
|
4028
|
+
path-key@3.1.1: {}
|
|
4029
|
+
|
|
4030
|
+
path-parse@1.0.7: {}
|
|
4031
|
+
|
|
4032
|
+
path-scurry@2.0.2:
|
|
4033
|
+
dependencies:
|
|
4034
|
+
lru-cache: 11.5.1
|
|
4035
|
+
minipass: 7.1.3
|
|
4036
|
+
|
|
4037
|
+
picocolors@1.1.1: {}
|
|
4038
|
+
|
|
4039
|
+
picomatch@2.3.2: {}
|
|
4040
|
+
|
|
4041
|
+
picomatch@4.0.4: {}
|
|
4042
|
+
|
|
4043
|
+
plist@3.1.1:
|
|
4044
|
+
dependencies:
|
|
4045
|
+
'@xmldom/xmldom': 0.9.10
|
|
4046
|
+
base64-js: 1.5.1
|
|
4047
|
+
xmlbuilder: 15.1.1
|
|
4048
|
+
|
|
4049
|
+
pngjs@3.4.0: {}
|
|
4050
|
+
|
|
4051
|
+
postcss@8.5.15:
|
|
4052
|
+
dependencies:
|
|
4053
|
+
nanoid: 3.3.12
|
|
4054
|
+
picocolors: 1.1.1
|
|
4055
|
+
source-map-js: 1.2.1
|
|
4056
|
+
|
|
4057
|
+
pretty-format@29.7.0:
|
|
4058
|
+
dependencies:
|
|
4059
|
+
'@jest/schemas': 29.6.3
|
|
4060
|
+
ansi-styles: 5.2.0
|
|
4061
|
+
react-is: 18.3.1
|
|
4062
|
+
|
|
4063
|
+
proc-log@4.2.0: {}
|
|
4064
|
+
|
|
4065
|
+
progress@2.0.3: {}
|
|
4066
|
+
|
|
4067
|
+
promise@8.3.0:
|
|
4068
|
+
dependencies:
|
|
4069
|
+
asap: 2.0.6
|
|
4070
|
+
|
|
4071
|
+
prompts@2.4.2:
|
|
4072
|
+
dependencies:
|
|
4073
|
+
kleur: 3.0.3
|
|
4074
|
+
sisteransi: 1.0.5
|
|
4075
|
+
|
|
4076
|
+
queue@6.0.2:
|
|
4077
|
+
dependencies:
|
|
4078
|
+
inherits: 2.0.4
|
|
4079
|
+
|
|
4080
|
+
range-parser@1.2.1: {}
|
|
4081
|
+
|
|
4082
|
+
react-devtools-core@6.1.5:
|
|
4083
|
+
dependencies:
|
|
4084
|
+
shell-quote: 1.8.4
|
|
4085
|
+
ws: 7.5.11
|
|
4086
|
+
transitivePeerDependencies:
|
|
4087
|
+
- bufferutil
|
|
4088
|
+
- utf-8-validate
|
|
4089
|
+
|
|
4090
|
+
react-is@16.13.1: {}
|
|
4091
|
+
|
|
4092
|
+
react-is@18.3.1: {}
|
|
4093
|
+
|
|
4094
|
+
react-native-gesture-handler@2.31.2(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3):
|
|
4095
|
+
dependencies:
|
|
4096
|
+
'@egjs/hammerjs': 2.0.17
|
|
4097
|
+
'@types/react-test-renderer': 19.1.0
|
|
4098
|
+
hoist-non-react-statics: 3.3.2
|
|
4099
|
+
invariant: 2.2.4
|
|
4100
|
+
react: 19.2.3
|
|
4101
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
4102
|
+
|
|
4103
|
+
react-native-safe-area-context@5.7.0(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3):
|
|
4104
|
+
dependencies:
|
|
4105
|
+
react: 19.2.3
|
|
4106
|
+
react-native: 0.85.3(@types/react@19.2.17)(react@19.2.3)
|
|
4107
|
+
|
|
4108
|
+
react-native@0.85.3(@types/react@19.2.17)(react@19.2.3):
|
|
4109
|
+
dependencies:
|
|
4110
|
+
'@react-native/assets-registry': 0.85.3
|
|
4111
|
+
'@react-native/codegen': 0.85.3
|
|
4112
|
+
'@react-native/community-cli-plugin': 0.85.3
|
|
4113
|
+
'@react-native/gradle-plugin': 0.85.3
|
|
4114
|
+
'@react-native/js-polyfills': 0.85.3
|
|
4115
|
+
'@react-native/normalize-colors': 0.85.3
|
|
4116
|
+
'@react-native/virtualized-lists': 0.85.3(@types/react@19.2.17)(react-native@0.85.3(@types/react@19.2.17)(react@19.2.3))(react@19.2.3)
|
|
4117
|
+
abort-controller: 3.0.0
|
|
4118
|
+
anser: 1.4.10
|
|
4119
|
+
ansi-regex: 5.0.1
|
|
4120
|
+
babel-plugin-syntax-hermes-parser: 0.33.3
|
|
4121
|
+
base64-js: 1.5.1
|
|
4122
|
+
commander: 12.1.0
|
|
4123
|
+
flow-enums-runtime: 0.0.6
|
|
4124
|
+
hermes-compiler: 250829098.0.10
|
|
4125
|
+
invariant: 2.2.4
|
|
4126
|
+
memoize-one: 5.2.1
|
|
4127
|
+
metro-runtime: 0.84.4
|
|
4128
|
+
metro-source-map: 0.84.4
|
|
4129
|
+
nullthrows: 1.1.1
|
|
4130
|
+
pretty-format: 29.7.0
|
|
4131
|
+
promise: 8.3.0
|
|
4132
|
+
react: 19.2.3
|
|
4133
|
+
react-devtools-core: 6.1.5
|
|
4134
|
+
react-refresh: 0.14.2
|
|
4135
|
+
regenerator-runtime: 0.13.11
|
|
4136
|
+
scheduler: 0.27.0
|
|
4137
|
+
semver: 7.8.4
|
|
4138
|
+
stacktrace-parser: 0.1.11
|
|
4139
|
+
tinyglobby: 0.2.17
|
|
4140
|
+
whatwg-fetch: 3.6.20
|
|
4141
|
+
ws: 7.5.11
|
|
4142
|
+
yargs: 17.7.2
|
|
4143
|
+
optionalDependencies:
|
|
4144
|
+
'@types/react': 19.2.17
|
|
4145
|
+
transitivePeerDependencies:
|
|
4146
|
+
- '@react-native-community/cli'
|
|
4147
|
+
- '@react-native/metro-config'
|
|
4148
|
+
- bufferutil
|
|
4149
|
+
- supports-color
|
|
4150
|
+
- utf-8-validate
|
|
4151
|
+
|
|
4152
|
+
react-refresh@0.14.2: {}
|
|
4153
|
+
|
|
4154
|
+
react@19.2.3: {}
|
|
4155
|
+
|
|
4156
|
+
regenerate-unicode-properties@10.2.2:
|
|
4157
|
+
dependencies:
|
|
4158
|
+
regenerate: 1.4.2
|
|
4159
|
+
|
|
4160
|
+
regenerate@1.4.2: {}
|
|
4161
|
+
|
|
4162
|
+
regenerator-runtime@0.13.11: {}
|
|
4163
|
+
|
|
4164
|
+
regexpu-core@6.4.0:
|
|
4165
|
+
dependencies:
|
|
4166
|
+
regenerate: 1.4.2
|
|
4167
|
+
regenerate-unicode-properties: 10.2.2
|
|
4168
|
+
regjsgen: 0.8.0
|
|
4169
|
+
regjsparser: 0.13.2
|
|
4170
|
+
unicode-match-property-ecmascript: 2.0.0
|
|
4171
|
+
unicode-match-property-value-ecmascript: 2.2.1
|
|
4172
|
+
|
|
4173
|
+
regjsgen@0.8.0: {}
|
|
4174
|
+
|
|
4175
|
+
regjsparser@0.13.2:
|
|
4176
|
+
dependencies:
|
|
4177
|
+
jsesc: 3.1.0
|
|
4178
|
+
|
|
4179
|
+
require-directory@2.1.1: {}
|
|
4180
|
+
|
|
4181
|
+
resolve-from@5.0.0: {}
|
|
4182
|
+
|
|
4183
|
+
resolve-workspace-root@2.0.1: {}
|
|
4184
|
+
|
|
4185
|
+
resolve@1.22.12:
|
|
4186
|
+
dependencies:
|
|
4187
|
+
es-errors: 1.3.0
|
|
4188
|
+
is-core-module: 2.16.2
|
|
4189
|
+
path-parse: 1.0.7
|
|
4190
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
4191
|
+
|
|
4192
|
+
restore-cursor@2.0.0:
|
|
4193
|
+
dependencies:
|
|
4194
|
+
onetime: 2.0.1
|
|
4195
|
+
signal-exit: 3.0.7
|
|
4196
|
+
|
|
4197
|
+
safe-buffer@5.2.1: {}
|
|
4198
|
+
|
|
4199
|
+
sax@1.6.0: {}
|
|
4200
|
+
|
|
4201
|
+
scheduler@0.27.0: {}
|
|
4202
|
+
|
|
4203
|
+
semver@6.3.1: {}
|
|
4204
|
+
|
|
4205
|
+
semver@7.8.4: {}
|
|
4206
|
+
|
|
4207
|
+
send@0.19.2:
|
|
4208
|
+
dependencies:
|
|
4209
|
+
debug: 2.6.9
|
|
4210
|
+
depd: 2.0.0
|
|
4211
|
+
destroy: 1.2.0
|
|
4212
|
+
encodeurl: 2.0.0
|
|
4213
|
+
escape-html: 1.0.3
|
|
4214
|
+
etag: 1.8.1
|
|
4215
|
+
fresh: 0.5.2
|
|
4216
|
+
http-errors: 2.0.1
|
|
4217
|
+
mime: 1.6.0
|
|
4218
|
+
ms: 2.1.3
|
|
4219
|
+
on-finished: 2.4.1
|
|
4220
|
+
range-parser: 1.2.1
|
|
4221
|
+
statuses: 2.0.2
|
|
4222
|
+
transitivePeerDependencies:
|
|
4223
|
+
- supports-color
|
|
4224
|
+
|
|
4225
|
+
serialize-error@2.1.0: {}
|
|
4226
|
+
|
|
4227
|
+
serve-static@1.16.3:
|
|
4228
|
+
dependencies:
|
|
4229
|
+
encodeurl: 2.0.0
|
|
4230
|
+
escape-html: 1.0.3
|
|
4231
|
+
parseurl: 1.3.3
|
|
4232
|
+
send: 0.19.2
|
|
4233
|
+
transitivePeerDependencies:
|
|
4234
|
+
- supports-color
|
|
4235
|
+
|
|
4236
|
+
setprototypeof@1.2.0: {}
|
|
4237
|
+
|
|
4238
|
+
shebang-command@2.0.0:
|
|
4239
|
+
dependencies:
|
|
4240
|
+
shebang-regex: 3.0.0
|
|
4241
|
+
|
|
4242
|
+
shebang-regex@3.0.0: {}
|
|
4243
|
+
|
|
4244
|
+
shell-quote@1.8.4: {}
|
|
4245
|
+
|
|
4246
|
+
signal-exit@3.0.7: {}
|
|
4247
|
+
|
|
4248
|
+
simple-plist@1.3.1:
|
|
4249
|
+
dependencies:
|
|
4250
|
+
bplist-creator: 0.1.0
|
|
4251
|
+
bplist-parser: 0.3.1
|
|
4252
|
+
plist: 3.1.1
|
|
4253
|
+
|
|
4254
|
+
sisteransi@1.0.5: {}
|
|
4255
|
+
|
|
4256
|
+
slugify@1.6.9: {}
|
|
4257
|
+
|
|
4258
|
+
source-map-js@1.2.1: {}
|
|
4259
|
+
|
|
4260
|
+
source-map-support@0.5.21:
|
|
4261
|
+
dependencies:
|
|
4262
|
+
buffer-from: 1.1.2
|
|
4263
|
+
source-map: 0.6.1
|
|
4264
|
+
|
|
4265
|
+
source-map@0.5.7: {}
|
|
4266
|
+
|
|
4267
|
+
source-map@0.6.1: {}
|
|
4268
|
+
|
|
4269
|
+
stackframe@1.3.4: {}
|
|
4270
|
+
|
|
4271
|
+
stacktrace-parser@0.1.11:
|
|
4272
|
+
dependencies:
|
|
4273
|
+
type-fest: 0.7.1
|
|
4274
|
+
|
|
4275
|
+
statuses@1.5.0: {}
|
|
4276
|
+
|
|
4277
|
+
statuses@2.0.2: {}
|
|
4278
|
+
|
|
4279
|
+
stream-buffers@2.2.0: {}
|
|
4280
|
+
|
|
4281
|
+
string-width@4.2.3:
|
|
4282
|
+
dependencies:
|
|
4283
|
+
emoji-regex: 8.0.0
|
|
4284
|
+
is-fullwidth-code-point: 3.0.0
|
|
4285
|
+
strip-ansi: 6.0.1
|
|
4286
|
+
|
|
4287
|
+
strip-ansi@5.2.0:
|
|
4288
|
+
dependencies:
|
|
4289
|
+
ansi-regex: 4.1.1
|
|
4290
|
+
|
|
4291
|
+
strip-ansi@6.0.1:
|
|
4292
|
+
dependencies:
|
|
4293
|
+
ansi-regex: 5.0.1
|
|
4294
|
+
|
|
4295
|
+
structured-headers@0.4.1: {}
|
|
4296
|
+
|
|
4297
|
+
supports-color@5.5.0:
|
|
4298
|
+
dependencies:
|
|
4299
|
+
has-flag: 3.0.0
|
|
4300
|
+
|
|
4301
|
+
supports-color@7.2.0:
|
|
4302
|
+
dependencies:
|
|
4303
|
+
has-flag: 4.0.0
|
|
4304
|
+
|
|
4305
|
+
supports-color@8.1.1:
|
|
4306
|
+
dependencies:
|
|
4307
|
+
has-flag: 4.0.0
|
|
4308
|
+
|
|
4309
|
+
supports-hyperlinks@2.3.0:
|
|
4310
|
+
dependencies:
|
|
4311
|
+
has-flag: 4.0.0
|
|
4312
|
+
supports-color: 7.2.0
|
|
4313
|
+
|
|
4314
|
+
supports-preserve-symlinks-flag@1.0.0: {}
|
|
4315
|
+
|
|
4316
|
+
terminal-link@2.1.1:
|
|
4317
|
+
dependencies:
|
|
4318
|
+
ansi-escapes: 4.3.2
|
|
4319
|
+
supports-hyperlinks: 2.3.0
|
|
4320
|
+
|
|
4321
|
+
terser@5.48.0:
|
|
4322
|
+
dependencies:
|
|
4323
|
+
'@jridgewell/source-map': 0.3.11
|
|
4324
|
+
acorn: 8.17.0
|
|
4325
|
+
commander: 2.20.3
|
|
4326
|
+
source-map-support: 0.5.21
|
|
4327
|
+
|
|
4328
|
+
throat@5.0.0: {}
|
|
4329
|
+
|
|
4330
|
+
tinyglobby@0.2.17:
|
|
4331
|
+
dependencies:
|
|
4332
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
4333
|
+
picomatch: 4.0.4
|
|
4334
|
+
|
|
4335
|
+
tmpl@1.0.5: {}
|
|
4336
|
+
|
|
4337
|
+
to-regex-range@5.0.1:
|
|
4338
|
+
dependencies:
|
|
4339
|
+
is-number: 7.0.0
|
|
4340
|
+
|
|
4341
|
+
toidentifier@1.0.1: {}
|
|
4342
|
+
|
|
4343
|
+
toqr@0.1.1: {}
|
|
4344
|
+
|
|
4345
|
+
type-fest@0.21.3: {}
|
|
4346
|
+
|
|
4347
|
+
type-fest@0.7.1: {}
|
|
4348
|
+
|
|
4349
|
+
typescript@6.0.3: {}
|
|
4350
|
+
|
|
4351
|
+
undici-types@7.24.6: {}
|
|
4352
|
+
|
|
4353
|
+
unicode-canonical-property-names-ecmascript@2.0.1: {}
|
|
4354
|
+
|
|
4355
|
+
unicode-match-property-ecmascript@2.0.0:
|
|
4356
|
+
dependencies:
|
|
4357
|
+
unicode-canonical-property-names-ecmascript: 2.0.1
|
|
4358
|
+
unicode-property-aliases-ecmascript: 2.2.0
|
|
4359
|
+
|
|
4360
|
+
unicode-match-property-value-ecmascript@2.2.1: {}
|
|
4361
|
+
|
|
4362
|
+
unicode-property-aliases-ecmascript@2.2.0: {}
|
|
4363
|
+
|
|
4364
|
+
unpipe@1.0.0: {}
|
|
4365
|
+
|
|
4366
|
+
update-browserslist-db@1.2.3(browserslist@4.28.2):
|
|
4367
|
+
dependencies:
|
|
4368
|
+
browserslist: 4.28.2
|
|
4369
|
+
escalade: 3.2.0
|
|
4370
|
+
picocolors: 1.1.1
|
|
4371
|
+
|
|
4372
|
+
utils-merge@1.0.1: {}
|
|
4373
|
+
|
|
4374
|
+
uuid@7.0.3: {}
|
|
4375
|
+
|
|
4376
|
+
validate-npm-package-name@5.0.1: {}
|
|
4377
|
+
|
|
4378
|
+
vary@1.1.2: {}
|
|
4379
|
+
|
|
4380
|
+
vlq@1.0.1: {}
|
|
4381
|
+
|
|
4382
|
+
walker@1.0.8:
|
|
4383
|
+
dependencies:
|
|
4384
|
+
makeerror: 1.0.12
|
|
4385
|
+
|
|
4386
|
+
wcwidth@1.0.1:
|
|
4387
|
+
dependencies:
|
|
4388
|
+
defaults: 1.0.4
|
|
4389
|
+
|
|
4390
|
+
whatwg-fetch@3.6.20: {}
|
|
4391
|
+
|
|
4392
|
+
whatwg-url-minimum@0.1.2: {}
|
|
4393
|
+
|
|
4394
|
+
which@2.0.2:
|
|
4395
|
+
dependencies:
|
|
4396
|
+
isexe: 2.0.0
|
|
4397
|
+
|
|
4398
|
+
wrap-ansi@7.0.0:
|
|
4399
|
+
dependencies:
|
|
4400
|
+
ansi-styles: 4.3.0
|
|
4401
|
+
string-width: 4.2.3
|
|
4402
|
+
strip-ansi: 6.0.1
|
|
4403
|
+
|
|
4404
|
+
ws@7.5.11: {}
|
|
4405
|
+
|
|
4406
|
+
ws@8.21.0: {}
|
|
4407
|
+
|
|
4408
|
+
xcode@3.0.1:
|
|
4409
|
+
dependencies:
|
|
4410
|
+
simple-plist: 1.3.1
|
|
4411
|
+
uuid: 7.0.3
|
|
4412
|
+
|
|
4413
|
+
xml2js@0.6.0:
|
|
4414
|
+
dependencies:
|
|
4415
|
+
sax: 1.6.0
|
|
4416
|
+
xmlbuilder: 11.0.1
|
|
4417
|
+
|
|
4418
|
+
xmlbuilder@11.0.1: {}
|
|
4419
|
+
|
|
4420
|
+
xmlbuilder@15.1.1: {}
|
|
4421
|
+
|
|
4422
|
+
y18n@5.0.8: {}
|
|
4423
|
+
|
|
4424
|
+
yallist@3.1.1: {}
|
|
4425
|
+
|
|
4426
|
+
yaml@2.9.0: {}
|
|
4427
|
+
|
|
4428
|
+
yargs-parser@21.1.1: {}
|
|
4429
|
+
|
|
4430
|
+
yargs@17.7.2:
|
|
4431
|
+
dependencies:
|
|
4432
|
+
cliui: 8.0.1
|
|
4433
|
+
escalade: 3.2.0
|
|
4434
|
+
get-caller-file: 2.0.5
|
|
4435
|
+
require-directory: 2.1.1
|
|
4436
|
+
string-width: 4.2.3
|
|
4437
|
+
y18n: 5.0.8
|
|
4438
|
+
yargs-parser: 21.1.1
|
|
4439
|
+
|
|
4440
|
+
zod@3.25.76: {}
|