reelme 0.2.1 → 0.3.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/assets/audio/PROVENANCE.md +16 -0
- package/assets/audio/bright-sparks.mp3 +0 -0
- package/assets/audio/calm-keys.mp3 +0 -0
- package/assets/audio/circuit-pulse.mp3 +0 -0
- package/assets/audio/clean-horizon.mp3 +0 -0
- package/assets/audio/generate-tracks.mjs +213 -0
- package/assets/audio/manifest.json +83 -0
- package/assets/audio/midnight-protocol.mp3 +0 -0
- package/assets/audio/pixel-bounce.mp3 +0 -0
- package/assets/audio/steady-launch.mp3 +0 -0
- package/assets/audio/sunny-loop.mp3 +0 -0
- package/assets/audio/vector-grid.mp3 +0 -0
- package/package.json +2 -1
- package/src/cache.mjs +1 -0
- package/src/render.mjs +105 -4
- package/template/package.json +3 -1
- package/template/pnpm-lock.yaml +339 -284
- package/template/src/Root.tsx +55 -45
- package/template/src/audio.ts +24 -0
- package/template/src/benchmark.ts +18 -0
- package/template/src/brief.json +1 -0
- package/template/src/brief.ts +61 -3
- package/template/src/cinematic/Atmosphere.tsx +139 -0
- package/template/src/cinematic/Camera.tsx +54 -0
- package/template/src/cinematic/look.ts +89 -0
- package/template/src/cinematic/transitions.tsx +92 -0
- package/template/src/components/primitives/Bar.tsx +82 -0
- package/template/src/components/primitives/Caption.tsx +3 -2
- package/template/src/components/primitives/Kicker.tsx +46 -0
- package/template/src/components/primitives/Label.tsx +18 -24
- package/template/src/components/primitives/RevealText.tsx +101 -0
- package/template/src/components/primitives/Terminal.tsx +11 -0
- package/template/src/components/scenes/Benchmark.tsx +83 -0
- package/template/src/components/scenes/BrowserFrame.tsx +4 -3
- package/template/src/components/scenes/CTA.tsx +56 -10
- package/template/src/components/scenes/Clip.tsx +125 -0
- package/template/src/components/scenes/CodeReveal.tsx +4 -3
- package/template/src/components/scenes/DataFlow.tsx +4 -3
- package/template/src/components/scenes/FeatureList.tsx +13 -8
- package/template/src/components/scenes/FileTree.tsx +4 -3
- package/template/src/components/scenes/Hook.tsx +55 -0
- package/template/src/components/scenes/HotkeyScene.tsx +4 -3
- package/template/src/components/scenes/MobileScreen.tsx +120 -82
- package/template/src/components/scenes/OSWindowScene.tsx +4 -3
- package/template/src/components/scenes/Problem.tsx +28 -29
- package/template/src/components/scenes/SplitComparison.tsx +65 -92
- package/template/src/components/scenes/StatCallout.tsx +93 -4
- package/template/src/components/scenes/TerminalScene.tsx +5 -6
- package/template/src/duration.ts +12 -1
- package/template/src/platforms.ts +4 -0
package/template/pnpm-lock.yaml
CHANGED
|
@@ -11,6 +11,9 @@ importers:
|
|
|
11
11
|
'@remotion/cli':
|
|
12
12
|
specifier: 4.0.290
|
|
13
13
|
version: 4.0.290(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
14
|
+
'@remotion/gif':
|
|
15
|
+
specifier: 4.0.290
|
|
16
|
+
version: 4.0.290(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
14
17
|
'@remotion/google-fonts':
|
|
15
18
|
specifier: 4.0.290
|
|
16
19
|
version: 4.0.290(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
@@ -48,9 +51,12 @@ importers:
|
|
|
48
51
|
typescript:
|
|
49
52
|
specifier: ^5.4.0
|
|
50
53
|
version: 5.9.3
|
|
54
|
+
vite:
|
|
55
|
+
specifier: ^7.3.5
|
|
56
|
+
version: 7.3.5(@types/node@25.9.1)(terser@5.48.0)
|
|
51
57
|
vitest:
|
|
52
|
-
specifier: ^4.1.
|
|
53
|
-
version: 4.1.8(@types/node@25.9.1)(vite@
|
|
58
|
+
specifier: ^4.1.8
|
|
59
|
+
version: 4.1.8(@types/node@25.9.1)(vite@7.3.5(@types/node@25.9.1)(terser@5.48.0))
|
|
54
60
|
|
|
55
61
|
packages:
|
|
56
62
|
|
|
@@ -71,23 +77,17 @@ packages:
|
|
|
71
77
|
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
72
78
|
engines: {node: '>=6.9.0'}
|
|
73
79
|
|
|
74
|
-
'@esbuild/aix-ppc64@0.21.5':
|
|
75
|
-
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
|
|
76
|
-
engines: {node: '>=12'}
|
|
77
|
-
cpu: [ppc64]
|
|
78
|
-
os: [aix]
|
|
79
|
-
|
|
80
80
|
'@esbuild/aix-ppc64@0.25.0':
|
|
81
81
|
resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
|
|
82
82
|
engines: {node: '>=18'}
|
|
83
83
|
cpu: [ppc64]
|
|
84
84
|
os: [aix]
|
|
85
85
|
|
|
86
|
-
'@esbuild/
|
|
87
|
-
resolution: {integrity: sha512-
|
|
88
|
-
engines: {node: '>=
|
|
89
|
-
cpu: [
|
|
90
|
-
os: [
|
|
86
|
+
'@esbuild/aix-ppc64@0.27.7':
|
|
87
|
+
resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
|
|
88
|
+
engines: {node: '>=18'}
|
|
89
|
+
cpu: [ppc64]
|
|
90
|
+
os: [aix]
|
|
91
91
|
|
|
92
92
|
'@esbuild/android-arm64@0.25.0':
|
|
93
93
|
resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
|
|
@@ -95,10 +95,10 @@ packages:
|
|
|
95
95
|
cpu: [arm64]
|
|
96
96
|
os: [android]
|
|
97
97
|
|
|
98
|
-
'@esbuild/android-
|
|
99
|
-
resolution: {integrity: sha512-
|
|
100
|
-
engines: {node: '>=
|
|
101
|
-
cpu: [
|
|
98
|
+
'@esbuild/android-arm64@0.27.7':
|
|
99
|
+
resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
|
|
100
|
+
engines: {node: '>=18'}
|
|
101
|
+
cpu: [arm64]
|
|
102
102
|
os: [android]
|
|
103
103
|
|
|
104
104
|
'@esbuild/android-arm@0.25.0':
|
|
@@ -107,10 +107,10 @@ packages:
|
|
|
107
107
|
cpu: [arm]
|
|
108
108
|
os: [android]
|
|
109
109
|
|
|
110
|
-
'@esbuild/android-
|
|
111
|
-
resolution: {integrity: sha512-
|
|
112
|
-
engines: {node: '>=
|
|
113
|
-
cpu: [
|
|
110
|
+
'@esbuild/android-arm@0.27.7':
|
|
111
|
+
resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==}
|
|
112
|
+
engines: {node: '>=18'}
|
|
113
|
+
cpu: [arm]
|
|
114
114
|
os: [android]
|
|
115
115
|
|
|
116
116
|
'@esbuild/android-x64@0.25.0':
|
|
@@ -119,11 +119,11 @@ packages:
|
|
|
119
119
|
cpu: [x64]
|
|
120
120
|
os: [android]
|
|
121
121
|
|
|
122
|
-
'@esbuild/
|
|
123
|
-
resolution: {integrity: sha512-
|
|
124
|
-
engines: {node: '>=
|
|
125
|
-
cpu: [
|
|
126
|
-
os: [
|
|
122
|
+
'@esbuild/android-x64@0.27.7':
|
|
123
|
+
resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==}
|
|
124
|
+
engines: {node: '>=18'}
|
|
125
|
+
cpu: [x64]
|
|
126
|
+
os: [android]
|
|
127
127
|
|
|
128
128
|
'@esbuild/darwin-arm64@0.25.0':
|
|
129
129
|
resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
|
|
@@ -131,10 +131,10 @@ packages:
|
|
|
131
131
|
cpu: [arm64]
|
|
132
132
|
os: [darwin]
|
|
133
133
|
|
|
134
|
-
'@esbuild/darwin-
|
|
135
|
-
resolution: {integrity: sha512-
|
|
136
|
-
engines: {node: '>=
|
|
137
|
-
cpu: [
|
|
134
|
+
'@esbuild/darwin-arm64@0.27.7':
|
|
135
|
+
resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
|
|
136
|
+
engines: {node: '>=18'}
|
|
137
|
+
cpu: [arm64]
|
|
138
138
|
os: [darwin]
|
|
139
139
|
|
|
140
140
|
'@esbuild/darwin-x64@0.25.0':
|
|
@@ -143,11 +143,11 @@ packages:
|
|
|
143
143
|
cpu: [x64]
|
|
144
144
|
os: [darwin]
|
|
145
145
|
|
|
146
|
-
'@esbuild/
|
|
147
|
-
resolution: {integrity: sha512-
|
|
148
|
-
engines: {node: '>=
|
|
149
|
-
cpu: [
|
|
150
|
-
os: [
|
|
146
|
+
'@esbuild/darwin-x64@0.27.7':
|
|
147
|
+
resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==}
|
|
148
|
+
engines: {node: '>=18'}
|
|
149
|
+
cpu: [x64]
|
|
150
|
+
os: [darwin]
|
|
151
151
|
|
|
152
152
|
'@esbuild/freebsd-arm64@0.25.0':
|
|
153
153
|
resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
|
|
@@ -155,10 +155,10 @@ packages:
|
|
|
155
155
|
cpu: [arm64]
|
|
156
156
|
os: [freebsd]
|
|
157
157
|
|
|
158
|
-
'@esbuild/freebsd-
|
|
159
|
-
resolution: {integrity: sha512-
|
|
160
|
-
engines: {node: '>=
|
|
161
|
-
cpu: [
|
|
158
|
+
'@esbuild/freebsd-arm64@0.27.7':
|
|
159
|
+
resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
|
|
160
|
+
engines: {node: '>=18'}
|
|
161
|
+
cpu: [arm64]
|
|
162
162
|
os: [freebsd]
|
|
163
163
|
|
|
164
164
|
'@esbuild/freebsd-x64@0.25.0':
|
|
@@ -167,11 +167,11 @@ packages:
|
|
|
167
167
|
cpu: [x64]
|
|
168
168
|
os: [freebsd]
|
|
169
169
|
|
|
170
|
-
'@esbuild/
|
|
171
|
-
resolution: {integrity: sha512-
|
|
172
|
-
engines: {node: '>=
|
|
173
|
-
cpu: [
|
|
174
|
-
os: [
|
|
170
|
+
'@esbuild/freebsd-x64@0.27.7':
|
|
171
|
+
resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==}
|
|
172
|
+
engines: {node: '>=18'}
|
|
173
|
+
cpu: [x64]
|
|
174
|
+
os: [freebsd]
|
|
175
175
|
|
|
176
176
|
'@esbuild/linux-arm64@0.25.0':
|
|
177
177
|
resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
|
|
@@ -179,10 +179,10 @@ packages:
|
|
|
179
179
|
cpu: [arm64]
|
|
180
180
|
os: [linux]
|
|
181
181
|
|
|
182
|
-
'@esbuild/linux-
|
|
183
|
-
resolution: {integrity: sha512-
|
|
184
|
-
engines: {node: '>=
|
|
185
|
-
cpu: [
|
|
182
|
+
'@esbuild/linux-arm64@0.27.7':
|
|
183
|
+
resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
|
|
184
|
+
engines: {node: '>=18'}
|
|
185
|
+
cpu: [arm64]
|
|
186
186
|
os: [linux]
|
|
187
187
|
|
|
188
188
|
'@esbuild/linux-arm@0.25.0':
|
|
@@ -191,10 +191,10 @@ packages:
|
|
|
191
191
|
cpu: [arm]
|
|
192
192
|
os: [linux]
|
|
193
193
|
|
|
194
|
-
'@esbuild/linux-
|
|
195
|
-
resolution: {integrity: sha512-
|
|
196
|
-
engines: {node: '>=
|
|
197
|
-
cpu: [
|
|
194
|
+
'@esbuild/linux-arm@0.27.7':
|
|
195
|
+
resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==}
|
|
196
|
+
engines: {node: '>=18'}
|
|
197
|
+
cpu: [arm]
|
|
198
198
|
os: [linux]
|
|
199
199
|
|
|
200
200
|
'@esbuild/linux-ia32@0.25.0':
|
|
@@ -203,10 +203,10 @@ packages:
|
|
|
203
203
|
cpu: [ia32]
|
|
204
204
|
os: [linux]
|
|
205
205
|
|
|
206
|
-
'@esbuild/linux-
|
|
207
|
-
resolution: {integrity: sha512-
|
|
208
|
-
engines: {node: '>=
|
|
209
|
-
cpu: [
|
|
206
|
+
'@esbuild/linux-ia32@0.27.7':
|
|
207
|
+
resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==}
|
|
208
|
+
engines: {node: '>=18'}
|
|
209
|
+
cpu: [ia32]
|
|
210
210
|
os: [linux]
|
|
211
211
|
|
|
212
212
|
'@esbuild/linux-loong64@0.25.0':
|
|
@@ -215,10 +215,10 @@ packages:
|
|
|
215
215
|
cpu: [loong64]
|
|
216
216
|
os: [linux]
|
|
217
217
|
|
|
218
|
-
'@esbuild/linux-
|
|
219
|
-
resolution: {integrity: sha512-
|
|
220
|
-
engines: {node: '>=
|
|
221
|
-
cpu: [
|
|
218
|
+
'@esbuild/linux-loong64@0.27.7':
|
|
219
|
+
resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==}
|
|
220
|
+
engines: {node: '>=18'}
|
|
221
|
+
cpu: [loong64]
|
|
222
222
|
os: [linux]
|
|
223
223
|
|
|
224
224
|
'@esbuild/linux-mips64el@0.25.0':
|
|
@@ -227,10 +227,10 @@ packages:
|
|
|
227
227
|
cpu: [mips64el]
|
|
228
228
|
os: [linux]
|
|
229
229
|
|
|
230
|
-
'@esbuild/linux-
|
|
231
|
-
resolution: {integrity: sha512-
|
|
232
|
-
engines: {node: '>=
|
|
233
|
-
cpu: [
|
|
230
|
+
'@esbuild/linux-mips64el@0.27.7':
|
|
231
|
+
resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==}
|
|
232
|
+
engines: {node: '>=18'}
|
|
233
|
+
cpu: [mips64el]
|
|
234
234
|
os: [linux]
|
|
235
235
|
|
|
236
236
|
'@esbuild/linux-ppc64@0.25.0':
|
|
@@ -239,10 +239,10 @@ packages:
|
|
|
239
239
|
cpu: [ppc64]
|
|
240
240
|
os: [linux]
|
|
241
241
|
|
|
242
|
-
'@esbuild/linux-
|
|
243
|
-
resolution: {integrity: sha512-
|
|
244
|
-
engines: {node: '>=
|
|
245
|
-
cpu: [
|
|
242
|
+
'@esbuild/linux-ppc64@0.27.7':
|
|
243
|
+
resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==}
|
|
244
|
+
engines: {node: '>=18'}
|
|
245
|
+
cpu: [ppc64]
|
|
246
246
|
os: [linux]
|
|
247
247
|
|
|
248
248
|
'@esbuild/linux-riscv64@0.25.0':
|
|
@@ -251,10 +251,10 @@ packages:
|
|
|
251
251
|
cpu: [riscv64]
|
|
252
252
|
os: [linux]
|
|
253
253
|
|
|
254
|
-
'@esbuild/linux-
|
|
255
|
-
resolution: {integrity: sha512-
|
|
256
|
-
engines: {node: '>=
|
|
257
|
-
cpu: [
|
|
254
|
+
'@esbuild/linux-riscv64@0.27.7':
|
|
255
|
+
resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==}
|
|
256
|
+
engines: {node: '>=18'}
|
|
257
|
+
cpu: [riscv64]
|
|
258
258
|
os: [linux]
|
|
259
259
|
|
|
260
260
|
'@esbuild/linux-s390x@0.25.0':
|
|
@@ -263,10 +263,10 @@ packages:
|
|
|
263
263
|
cpu: [s390x]
|
|
264
264
|
os: [linux]
|
|
265
265
|
|
|
266
|
-
'@esbuild/linux-
|
|
267
|
-
resolution: {integrity: sha512-
|
|
268
|
-
engines: {node: '>=
|
|
269
|
-
cpu: [
|
|
266
|
+
'@esbuild/linux-s390x@0.27.7':
|
|
267
|
+
resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==}
|
|
268
|
+
engines: {node: '>=18'}
|
|
269
|
+
cpu: [s390x]
|
|
270
270
|
os: [linux]
|
|
271
271
|
|
|
272
272
|
'@esbuild/linux-x64@0.25.0':
|
|
@@ -275,16 +275,22 @@ packages:
|
|
|
275
275
|
cpu: [x64]
|
|
276
276
|
os: [linux]
|
|
277
277
|
|
|
278
|
+
'@esbuild/linux-x64@0.27.7':
|
|
279
|
+
resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==}
|
|
280
|
+
engines: {node: '>=18'}
|
|
281
|
+
cpu: [x64]
|
|
282
|
+
os: [linux]
|
|
283
|
+
|
|
278
284
|
'@esbuild/netbsd-arm64@0.25.0':
|
|
279
285
|
resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
|
|
280
286
|
engines: {node: '>=18'}
|
|
281
287
|
cpu: [arm64]
|
|
282
288
|
os: [netbsd]
|
|
283
289
|
|
|
284
|
-
'@esbuild/netbsd-
|
|
285
|
-
resolution: {integrity: sha512-
|
|
286
|
-
engines: {node: '>=
|
|
287
|
-
cpu: [
|
|
290
|
+
'@esbuild/netbsd-arm64@0.27.7':
|
|
291
|
+
resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
|
|
292
|
+
engines: {node: '>=18'}
|
|
293
|
+
cpu: [arm64]
|
|
288
294
|
os: [netbsd]
|
|
289
295
|
|
|
290
296
|
'@esbuild/netbsd-x64@0.25.0':
|
|
@@ -293,16 +299,22 @@ packages:
|
|
|
293
299
|
cpu: [x64]
|
|
294
300
|
os: [netbsd]
|
|
295
301
|
|
|
302
|
+
'@esbuild/netbsd-x64@0.27.7':
|
|
303
|
+
resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==}
|
|
304
|
+
engines: {node: '>=18'}
|
|
305
|
+
cpu: [x64]
|
|
306
|
+
os: [netbsd]
|
|
307
|
+
|
|
296
308
|
'@esbuild/openbsd-arm64@0.25.0':
|
|
297
309
|
resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
|
|
298
310
|
engines: {node: '>=18'}
|
|
299
311
|
cpu: [arm64]
|
|
300
312
|
os: [openbsd]
|
|
301
313
|
|
|
302
|
-
'@esbuild/openbsd-
|
|
303
|
-
resolution: {integrity: sha512-
|
|
304
|
-
engines: {node: '>=
|
|
305
|
-
cpu: [
|
|
314
|
+
'@esbuild/openbsd-arm64@0.27.7':
|
|
315
|
+
resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
|
|
316
|
+
engines: {node: '>=18'}
|
|
317
|
+
cpu: [arm64]
|
|
306
318
|
os: [openbsd]
|
|
307
319
|
|
|
308
320
|
'@esbuild/openbsd-x64@0.25.0':
|
|
@@ -311,11 +323,17 @@ packages:
|
|
|
311
323
|
cpu: [x64]
|
|
312
324
|
os: [openbsd]
|
|
313
325
|
|
|
314
|
-
'@esbuild/
|
|
315
|
-
resolution: {integrity: sha512
|
|
316
|
-
engines: {node: '>=
|
|
326
|
+
'@esbuild/openbsd-x64@0.27.7':
|
|
327
|
+
resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==}
|
|
328
|
+
engines: {node: '>=18'}
|
|
317
329
|
cpu: [x64]
|
|
318
|
-
os: [
|
|
330
|
+
os: [openbsd]
|
|
331
|
+
|
|
332
|
+
'@esbuild/openharmony-arm64@0.27.7':
|
|
333
|
+
resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
|
|
334
|
+
engines: {node: '>=18'}
|
|
335
|
+
cpu: [arm64]
|
|
336
|
+
os: [openharmony]
|
|
319
337
|
|
|
320
338
|
'@esbuild/sunos-x64@0.25.0':
|
|
321
339
|
resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
|
|
@@ -323,11 +341,11 @@ packages:
|
|
|
323
341
|
cpu: [x64]
|
|
324
342
|
os: [sunos]
|
|
325
343
|
|
|
326
|
-
'@esbuild/
|
|
327
|
-
resolution: {integrity: sha512-
|
|
328
|
-
engines: {node: '>=
|
|
329
|
-
cpu: [
|
|
330
|
-
os: [
|
|
344
|
+
'@esbuild/sunos-x64@0.27.7':
|
|
345
|
+
resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
|
|
346
|
+
engines: {node: '>=18'}
|
|
347
|
+
cpu: [x64]
|
|
348
|
+
os: [sunos]
|
|
331
349
|
|
|
332
350
|
'@esbuild/win32-arm64@0.25.0':
|
|
333
351
|
resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
|
|
@@ -335,10 +353,10 @@ packages:
|
|
|
335
353
|
cpu: [arm64]
|
|
336
354
|
os: [win32]
|
|
337
355
|
|
|
338
|
-
'@esbuild/win32-
|
|
339
|
-
resolution: {integrity: sha512-
|
|
340
|
-
engines: {node: '>=
|
|
341
|
-
cpu: [
|
|
356
|
+
'@esbuild/win32-arm64@0.27.7':
|
|
357
|
+
resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
|
|
358
|
+
engines: {node: '>=18'}
|
|
359
|
+
cpu: [arm64]
|
|
342
360
|
os: [win32]
|
|
343
361
|
|
|
344
362
|
'@esbuild/win32-ia32@0.25.0':
|
|
@@ -347,10 +365,10 @@ packages:
|
|
|
347
365
|
cpu: [ia32]
|
|
348
366
|
os: [win32]
|
|
349
367
|
|
|
350
|
-
'@esbuild/win32-
|
|
351
|
-
resolution: {integrity: sha512-
|
|
352
|
-
engines: {node: '>=
|
|
353
|
-
cpu: [
|
|
368
|
+
'@esbuild/win32-ia32@0.27.7':
|
|
369
|
+
resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==}
|
|
370
|
+
engines: {node: '>=18'}
|
|
371
|
+
cpu: [ia32]
|
|
354
372
|
os: [win32]
|
|
355
373
|
|
|
356
374
|
'@esbuild/win32-x64@0.25.0':
|
|
@@ -359,6 +377,12 @@ packages:
|
|
|
359
377
|
cpu: [x64]
|
|
360
378
|
os: [win32]
|
|
361
379
|
|
|
380
|
+
'@esbuild/win32-x64@0.27.7':
|
|
381
|
+
resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==}
|
|
382
|
+
engines: {node: '>=18'}
|
|
383
|
+
cpu: [x64]
|
|
384
|
+
os: [win32]
|
|
385
|
+
|
|
362
386
|
'@eslint-community/eslint-utils@4.9.1':
|
|
363
387
|
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
364
388
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
@@ -485,6 +509,12 @@ packages:
|
|
|
485
509
|
cpu: [x64]
|
|
486
510
|
os: [win32]
|
|
487
511
|
|
|
512
|
+
'@remotion/gif@4.0.290':
|
|
513
|
+
resolution: {integrity: sha512-oDQvgbyj0lRCh7BFgtBltCRnlLcwhpwlxVfb0U5YOpg75eV3cybbicvokHiCztbRRtoQ8tP7TUF2s54mDge3hA==}
|
|
514
|
+
peerDependencies:
|
|
515
|
+
react: '>=16.8.0'
|
|
516
|
+
react-dom: '>=16.8.0'
|
|
517
|
+
|
|
488
518
|
'@remotion/google-fonts@4.0.290':
|
|
489
519
|
resolution: {integrity: sha512-/bOAsxiCORmQLqjENuZytyYegb/Ih96dkHvaHU7t7zBoK77bVjP1HC6EwFIUfI7OBAyw6uCD9hc3ZAtLiDKa0g==}
|
|
490
520
|
|
|
@@ -529,141 +559,141 @@ packages:
|
|
|
529
559
|
peerDependencies:
|
|
530
560
|
zod: 3.22.3
|
|
531
561
|
|
|
532
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
533
|
-
resolution: {integrity: sha512-
|
|
562
|
+
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
563
|
+
resolution: {integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==}
|
|
534
564
|
cpu: [arm]
|
|
535
565
|
os: [android]
|
|
536
566
|
|
|
537
|
-
'@rollup/rollup-android-arm64@4.
|
|
538
|
-
resolution: {integrity: sha512-
|
|
567
|
+
'@rollup/rollup-android-arm64@4.61.1':
|
|
568
|
+
resolution: {integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==}
|
|
539
569
|
cpu: [arm64]
|
|
540
570
|
os: [android]
|
|
541
571
|
|
|
542
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
543
|
-
resolution: {integrity: sha512-
|
|
572
|
+
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
573
|
+
resolution: {integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==}
|
|
544
574
|
cpu: [arm64]
|
|
545
575
|
os: [darwin]
|
|
546
576
|
|
|
547
|
-
'@rollup/rollup-darwin-x64@4.
|
|
548
|
-
resolution: {integrity: sha512-
|
|
577
|
+
'@rollup/rollup-darwin-x64@4.61.1':
|
|
578
|
+
resolution: {integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==}
|
|
549
579
|
cpu: [x64]
|
|
550
580
|
os: [darwin]
|
|
551
581
|
|
|
552
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
553
|
-
resolution: {integrity: sha512
|
|
582
|
+
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
583
|
+
resolution: {integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==}
|
|
554
584
|
cpu: [arm64]
|
|
555
585
|
os: [freebsd]
|
|
556
586
|
|
|
557
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
558
|
-
resolution: {integrity: sha512-
|
|
587
|
+
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
588
|
+
resolution: {integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==}
|
|
559
589
|
cpu: [x64]
|
|
560
590
|
os: [freebsd]
|
|
561
591
|
|
|
562
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
563
|
-
resolution: {integrity: sha512-
|
|
592
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
593
|
+
resolution: {integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==}
|
|
564
594
|
cpu: [arm]
|
|
565
595
|
os: [linux]
|
|
566
596
|
libc: [glibc]
|
|
567
597
|
|
|
568
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
569
|
-
resolution: {integrity: sha512-
|
|
598
|
+
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
599
|
+
resolution: {integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==}
|
|
570
600
|
cpu: [arm]
|
|
571
601
|
os: [linux]
|
|
572
602
|
libc: [musl]
|
|
573
603
|
|
|
574
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
575
|
-
resolution: {integrity: sha512-
|
|
604
|
+
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
605
|
+
resolution: {integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==}
|
|
576
606
|
cpu: [arm64]
|
|
577
607
|
os: [linux]
|
|
578
608
|
libc: [glibc]
|
|
579
609
|
|
|
580
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
581
|
-
resolution: {integrity: sha512-
|
|
610
|
+
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
611
|
+
resolution: {integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==}
|
|
582
612
|
cpu: [arm64]
|
|
583
613
|
os: [linux]
|
|
584
614
|
libc: [musl]
|
|
585
615
|
|
|
586
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
587
|
-
resolution: {integrity: sha512-
|
|
616
|
+
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
617
|
+
resolution: {integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==}
|
|
588
618
|
cpu: [loong64]
|
|
589
619
|
os: [linux]
|
|
590
620
|
libc: [glibc]
|
|
591
621
|
|
|
592
|
-
'@rollup/rollup-linux-loong64-musl@4.
|
|
593
|
-
resolution: {integrity: sha512-
|
|
622
|
+
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
623
|
+
resolution: {integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==}
|
|
594
624
|
cpu: [loong64]
|
|
595
625
|
os: [linux]
|
|
596
626
|
libc: [musl]
|
|
597
627
|
|
|
598
|
-
'@rollup/rollup-linux-ppc64-gnu@4.
|
|
599
|
-
resolution: {integrity: sha512-
|
|
628
|
+
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
629
|
+
resolution: {integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==}
|
|
600
630
|
cpu: [ppc64]
|
|
601
631
|
os: [linux]
|
|
602
632
|
libc: [glibc]
|
|
603
633
|
|
|
604
|
-
'@rollup/rollup-linux-ppc64-musl@4.
|
|
605
|
-
resolution: {integrity: sha512-
|
|
634
|
+
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
635
|
+
resolution: {integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==}
|
|
606
636
|
cpu: [ppc64]
|
|
607
637
|
os: [linux]
|
|
608
638
|
libc: [musl]
|
|
609
639
|
|
|
610
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
611
|
-
resolution: {integrity: sha512-
|
|
640
|
+
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
641
|
+
resolution: {integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==}
|
|
612
642
|
cpu: [riscv64]
|
|
613
643
|
os: [linux]
|
|
614
644
|
libc: [glibc]
|
|
615
645
|
|
|
616
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
617
|
-
resolution: {integrity: sha512-
|
|
646
|
+
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
647
|
+
resolution: {integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==}
|
|
618
648
|
cpu: [riscv64]
|
|
619
649
|
os: [linux]
|
|
620
650
|
libc: [musl]
|
|
621
651
|
|
|
622
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
623
|
-
resolution: {integrity: sha512-
|
|
652
|
+
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
653
|
+
resolution: {integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==}
|
|
624
654
|
cpu: [s390x]
|
|
625
655
|
os: [linux]
|
|
626
656
|
libc: [glibc]
|
|
627
657
|
|
|
628
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
629
|
-
resolution: {integrity: sha512-
|
|
658
|
+
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
659
|
+
resolution: {integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==}
|
|
630
660
|
cpu: [x64]
|
|
631
661
|
os: [linux]
|
|
632
662
|
libc: [glibc]
|
|
633
663
|
|
|
634
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
635
|
-
resolution: {integrity: sha512
|
|
664
|
+
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
665
|
+
resolution: {integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==}
|
|
636
666
|
cpu: [x64]
|
|
637
667
|
os: [linux]
|
|
638
668
|
libc: [musl]
|
|
639
669
|
|
|
640
|
-
'@rollup/rollup-openbsd-x64@4.
|
|
641
|
-
resolution: {integrity: sha512-
|
|
670
|
+
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
671
|
+
resolution: {integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==}
|
|
642
672
|
cpu: [x64]
|
|
643
673
|
os: [openbsd]
|
|
644
674
|
|
|
645
|
-
'@rollup/rollup-openharmony-arm64@4.
|
|
646
|
-
resolution: {integrity: sha512-
|
|
675
|
+
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
676
|
+
resolution: {integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==}
|
|
647
677
|
cpu: [arm64]
|
|
648
678
|
os: [openharmony]
|
|
649
679
|
|
|
650
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
651
|
-
resolution: {integrity: sha512-
|
|
680
|
+
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
681
|
+
resolution: {integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==}
|
|
652
682
|
cpu: [arm64]
|
|
653
683
|
os: [win32]
|
|
654
684
|
|
|
655
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
656
|
-
resolution: {integrity: sha512-
|
|
685
|
+
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
686
|
+
resolution: {integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==}
|
|
657
687
|
cpu: [ia32]
|
|
658
688
|
os: [win32]
|
|
659
689
|
|
|
660
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
661
|
-
resolution: {integrity: sha512-
|
|
690
|
+
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
691
|
+
resolution: {integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==}
|
|
662
692
|
cpu: [x64]
|
|
663
693
|
os: [win32]
|
|
664
694
|
|
|
665
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
666
|
-
resolution: {integrity: sha512-
|
|
695
|
+
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
696
|
+
resolution: {integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==}
|
|
667
697
|
cpu: [x64]
|
|
668
698
|
os: [win32]
|
|
669
699
|
|
|
@@ -685,9 +715,6 @@ packages:
|
|
|
685
715
|
'@types/eslint@9.6.1':
|
|
686
716
|
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
|
|
687
717
|
|
|
688
|
-
'@types/estree@1.0.8':
|
|
689
|
-
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
690
|
-
|
|
691
718
|
'@types/estree@1.0.9':
|
|
692
719
|
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
|
|
693
720
|
|
|
@@ -1023,16 +1050,16 @@ packages:
|
|
|
1023
1050
|
es-module-lexer@2.1.0:
|
|
1024
1051
|
resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==}
|
|
1025
1052
|
|
|
1026
|
-
esbuild@0.21.5:
|
|
1027
|
-
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
|
1028
|
-
engines: {node: '>=12'}
|
|
1029
|
-
hasBin: true
|
|
1030
|
-
|
|
1031
1053
|
esbuild@0.25.0:
|
|
1032
1054
|
resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
|
|
1033
1055
|
engines: {node: '>=18'}
|
|
1034
1056
|
hasBin: true
|
|
1035
1057
|
|
|
1058
|
+
esbuild@0.27.7:
|
|
1059
|
+
resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
|
|
1060
|
+
engines: {node: '>=18'}
|
|
1061
|
+
hasBin: true
|
|
1062
|
+
|
|
1036
1063
|
escalade@3.2.0:
|
|
1037
1064
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1038
1065
|
engines: {node: '>=6'}
|
|
@@ -1503,8 +1530,8 @@ packages:
|
|
|
1503
1530
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1504
1531
|
engines: {node: '>=4'}
|
|
1505
1532
|
|
|
1506
|
-
rollup@4.
|
|
1507
|
-
resolution: {integrity: sha512-
|
|
1533
|
+
rollup@4.61.1:
|
|
1534
|
+
resolution: {integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==}
|
|
1508
1535
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1509
1536
|
hasBin: true
|
|
1510
1537
|
|
|
@@ -1700,22 +1727,27 @@ packages:
|
|
|
1700
1727
|
util-deprecate@1.0.2:
|
|
1701
1728
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
1702
1729
|
|
|
1703
|
-
vite@
|
|
1704
|
-
resolution: {integrity: sha512-
|
|
1705
|
-
engines: {node: ^
|
|
1730
|
+
vite@7.3.5:
|
|
1731
|
+
resolution: {integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==}
|
|
1732
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1706
1733
|
hasBin: true
|
|
1707
1734
|
peerDependencies:
|
|
1708
|
-
'@types/node': ^
|
|
1709
|
-
|
|
1735
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
1736
|
+
jiti: '>=1.21.0'
|
|
1737
|
+
less: ^4.0.0
|
|
1710
1738
|
lightningcss: ^1.21.0
|
|
1711
|
-
sass:
|
|
1712
|
-
sass-embedded:
|
|
1713
|
-
stylus: '
|
|
1714
|
-
sugarss:
|
|
1715
|
-
terser: ^5.
|
|
1739
|
+
sass: ^1.70.0
|
|
1740
|
+
sass-embedded: ^1.70.0
|
|
1741
|
+
stylus: '>=0.54.8'
|
|
1742
|
+
sugarss: ^5.0.0
|
|
1743
|
+
terser: ^5.16.0
|
|
1744
|
+
tsx: ^4.8.1
|
|
1745
|
+
yaml: ^2.4.2
|
|
1716
1746
|
peerDependenciesMeta:
|
|
1717
1747
|
'@types/node':
|
|
1718
1748
|
optional: true
|
|
1749
|
+
jiti:
|
|
1750
|
+
optional: true
|
|
1719
1751
|
less:
|
|
1720
1752
|
optional: true
|
|
1721
1753
|
lightningcss:
|
|
@@ -1730,6 +1762,10 @@ packages:
|
|
|
1730
1762
|
optional: true
|
|
1731
1763
|
terser:
|
|
1732
1764
|
optional: true
|
|
1765
|
+
tsx:
|
|
1766
|
+
optional: true
|
|
1767
|
+
yaml:
|
|
1768
|
+
optional: true
|
|
1733
1769
|
|
|
1734
1770
|
vitest@4.1.8:
|
|
1735
1771
|
resolution: {integrity: sha512-flY6ScbCIt9HThs+C5HS7jvGOB560DJtk/Z15IQROTA6zEy49Nh8T/dofWTQL+n3vswqn87sbJNiuqw1SDp5Ig==}
|
|
@@ -1853,150 +1889,159 @@ snapshots:
|
|
|
1853
1889
|
'@babel/helper-string-parser': 7.27.1
|
|
1854
1890
|
'@babel/helper-validator-identifier': 7.28.5
|
|
1855
1891
|
|
|
1856
|
-
'@esbuild/aix-ppc64@0.21.5':
|
|
1857
|
-
optional: true
|
|
1858
|
-
|
|
1859
1892
|
'@esbuild/aix-ppc64@0.25.0':
|
|
1860
1893
|
optional: true
|
|
1861
1894
|
|
|
1862
|
-
'@esbuild/
|
|
1895
|
+
'@esbuild/aix-ppc64@0.27.7':
|
|
1863
1896
|
optional: true
|
|
1864
1897
|
|
|
1865
1898
|
'@esbuild/android-arm64@0.25.0':
|
|
1866
1899
|
optional: true
|
|
1867
1900
|
|
|
1868
|
-
'@esbuild/android-
|
|
1901
|
+
'@esbuild/android-arm64@0.27.7':
|
|
1869
1902
|
optional: true
|
|
1870
1903
|
|
|
1871
1904
|
'@esbuild/android-arm@0.25.0':
|
|
1872
1905
|
optional: true
|
|
1873
1906
|
|
|
1874
|
-
'@esbuild/android-
|
|
1907
|
+
'@esbuild/android-arm@0.27.7':
|
|
1875
1908
|
optional: true
|
|
1876
1909
|
|
|
1877
1910
|
'@esbuild/android-x64@0.25.0':
|
|
1878
1911
|
optional: true
|
|
1879
1912
|
|
|
1880
|
-
'@esbuild/
|
|
1913
|
+
'@esbuild/android-x64@0.27.7':
|
|
1881
1914
|
optional: true
|
|
1882
1915
|
|
|
1883
1916
|
'@esbuild/darwin-arm64@0.25.0':
|
|
1884
1917
|
optional: true
|
|
1885
1918
|
|
|
1886
|
-
'@esbuild/darwin-
|
|
1919
|
+
'@esbuild/darwin-arm64@0.27.7':
|
|
1887
1920
|
optional: true
|
|
1888
1921
|
|
|
1889
1922
|
'@esbuild/darwin-x64@0.25.0':
|
|
1890
1923
|
optional: true
|
|
1891
1924
|
|
|
1892
|
-
'@esbuild/
|
|
1925
|
+
'@esbuild/darwin-x64@0.27.7':
|
|
1893
1926
|
optional: true
|
|
1894
1927
|
|
|
1895
1928
|
'@esbuild/freebsd-arm64@0.25.0':
|
|
1896
1929
|
optional: true
|
|
1897
1930
|
|
|
1898
|
-
'@esbuild/freebsd-
|
|
1931
|
+
'@esbuild/freebsd-arm64@0.27.7':
|
|
1899
1932
|
optional: true
|
|
1900
1933
|
|
|
1901
1934
|
'@esbuild/freebsd-x64@0.25.0':
|
|
1902
1935
|
optional: true
|
|
1903
1936
|
|
|
1904
|
-
'@esbuild/
|
|
1937
|
+
'@esbuild/freebsd-x64@0.27.7':
|
|
1905
1938
|
optional: true
|
|
1906
1939
|
|
|
1907
1940
|
'@esbuild/linux-arm64@0.25.0':
|
|
1908
1941
|
optional: true
|
|
1909
1942
|
|
|
1910
|
-
'@esbuild/linux-
|
|
1943
|
+
'@esbuild/linux-arm64@0.27.7':
|
|
1911
1944
|
optional: true
|
|
1912
1945
|
|
|
1913
1946
|
'@esbuild/linux-arm@0.25.0':
|
|
1914
1947
|
optional: true
|
|
1915
1948
|
|
|
1916
|
-
'@esbuild/linux-
|
|
1949
|
+
'@esbuild/linux-arm@0.27.7':
|
|
1917
1950
|
optional: true
|
|
1918
1951
|
|
|
1919
1952
|
'@esbuild/linux-ia32@0.25.0':
|
|
1920
1953
|
optional: true
|
|
1921
1954
|
|
|
1922
|
-
'@esbuild/linux-
|
|
1955
|
+
'@esbuild/linux-ia32@0.27.7':
|
|
1923
1956
|
optional: true
|
|
1924
1957
|
|
|
1925
1958
|
'@esbuild/linux-loong64@0.25.0':
|
|
1926
1959
|
optional: true
|
|
1927
1960
|
|
|
1928
|
-
'@esbuild/linux-
|
|
1961
|
+
'@esbuild/linux-loong64@0.27.7':
|
|
1929
1962
|
optional: true
|
|
1930
1963
|
|
|
1931
1964
|
'@esbuild/linux-mips64el@0.25.0':
|
|
1932
1965
|
optional: true
|
|
1933
1966
|
|
|
1934
|
-
'@esbuild/linux-
|
|
1967
|
+
'@esbuild/linux-mips64el@0.27.7':
|
|
1935
1968
|
optional: true
|
|
1936
1969
|
|
|
1937
1970
|
'@esbuild/linux-ppc64@0.25.0':
|
|
1938
1971
|
optional: true
|
|
1939
1972
|
|
|
1940
|
-
'@esbuild/linux-
|
|
1973
|
+
'@esbuild/linux-ppc64@0.27.7':
|
|
1941
1974
|
optional: true
|
|
1942
1975
|
|
|
1943
1976
|
'@esbuild/linux-riscv64@0.25.0':
|
|
1944
1977
|
optional: true
|
|
1945
1978
|
|
|
1946
|
-
'@esbuild/linux-
|
|
1979
|
+
'@esbuild/linux-riscv64@0.27.7':
|
|
1947
1980
|
optional: true
|
|
1948
1981
|
|
|
1949
1982
|
'@esbuild/linux-s390x@0.25.0':
|
|
1950
1983
|
optional: true
|
|
1951
1984
|
|
|
1952
|
-
'@esbuild/linux-
|
|
1985
|
+
'@esbuild/linux-s390x@0.27.7':
|
|
1953
1986
|
optional: true
|
|
1954
1987
|
|
|
1955
1988
|
'@esbuild/linux-x64@0.25.0':
|
|
1956
1989
|
optional: true
|
|
1957
1990
|
|
|
1991
|
+
'@esbuild/linux-x64@0.27.7':
|
|
1992
|
+
optional: true
|
|
1993
|
+
|
|
1958
1994
|
'@esbuild/netbsd-arm64@0.25.0':
|
|
1959
1995
|
optional: true
|
|
1960
1996
|
|
|
1961
|
-
'@esbuild/netbsd-
|
|
1997
|
+
'@esbuild/netbsd-arm64@0.27.7':
|
|
1962
1998
|
optional: true
|
|
1963
1999
|
|
|
1964
2000
|
'@esbuild/netbsd-x64@0.25.0':
|
|
1965
2001
|
optional: true
|
|
1966
2002
|
|
|
2003
|
+
'@esbuild/netbsd-x64@0.27.7':
|
|
2004
|
+
optional: true
|
|
2005
|
+
|
|
1967
2006
|
'@esbuild/openbsd-arm64@0.25.0':
|
|
1968
2007
|
optional: true
|
|
1969
2008
|
|
|
1970
|
-
'@esbuild/openbsd-
|
|
2009
|
+
'@esbuild/openbsd-arm64@0.27.7':
|
|
1971
2010
|
optional: true
|
|
1972
2011
|
|
|
1973
2012
|
'@esbuild/openbsd-x64@0.25.0':
|
|
1974
2013
|
optional: true
|
|
1975
2014
|
|
|
1976
|
-
'@esbuild/
|
|
2015
|
+
'@esbuild/openbsd-x64@0.27.7':
|
|
2016
|
+
optional: true
|
|
2017
|
+
|
|
2018
|
+
'@esbuild/openharmony-arm64@0.27.7':
|
|
1977
2019
|
optional: true
|
|
1978
2020
|
|
|
1979
2021
|
'@esbuild/sunos-x64@0.25.0':
|
|
1980
2022
|
optional: true
|
|
1981
2023
|
|
|
1982
|
-
'@esbuild/
|
|
2024
|
+
'@esbuild/sunos-x64@0.27.7':
|
|
1983
2025
|
optional: true
|
|
1984
2026
|
|
|
1985
2027
|
'@esbuild/win32-arm64@0.25.0':
|
|
1986
2028
|
optional: true
|
|
1987
2029
|
|
|
1988
|
-
'@esbuild/win32-
|
|
2030
|
+
'@esbuild/win32-arm64@0.27.7':
|
|
1989
2031
|
optional: true
|
|
1990
2032
|
|
|
1991
2033
|
'@esbuild/win32-ia32@0.25.0':
|
|
1992
2034
|
optional: true
|
|
1993
2035
|
|
|
1994
|
-
'@esbuild/win32-
|
|
2036
|
+
'@esbuild/win32-ia32@0.27.7':
|
|
1995
2037
|
optional: true
|
|
1996
2038
|
|
|
1997
2039
|
'@esbuild/win32-x64@0.25.0':
|
|
1998
2040
|
optional: true
|
|
1999
2041
|
|
|
2042
|
+
'@esbuild/win32-x64@0.27.7':
|
|
2043
|
+
optional: true
|
|
2044
|
+
|
|
2000
2045
|
'@eslint-community/eslint-utils@4.9.1(eslint@9.39.4)':
|
|
2001
2046
|
dependencies:
|
|
2002
2047
|
eslint: 9.39.4
|
|
@@ -2161,6 +2206,12 @@ snapshots:
|
|
|
2161
2206
|
'@remotion/compositor-win32-x64-msvc@4.0.290':
|
|
2162
2207
|
optional: true
|
|
2163
2208
|
|
|
2209
|
+
'@remotion/gif@4.0.290(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2210
|
+
dependencies:
|
|
2211
|
+
react: 18.3.1
|
|
2212
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2213
|
+
remotion: 4.0.290(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2214
|
+
|
|
2164
2215
|
'@remotion/google-fonts@4.0.290(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2165
2216
|
dependencies:
|
|
2166
2217
|
remotion: 4.0.290(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
@@ -2274,79 +2325,79 @@ snapshots:
|
|
|
2274
2325
|
- react
|
|
2275
2326
|
- react-dom
|
|
2276
2327
|
|
|
2277
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
2328
|
+
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
2278
2329
|
optional: true
|
|
2279
2330
|
|
|
2280
|
-
'@rollup/rollup-android-arm64@4.
|
|
2331
|
+
'@rollup/rollup-android-arm64@4.61.1':
|
|
2281
2332
|
optional: true
|
|
2282
2333
|
|
|
2283
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
2334
|
+
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
2284
2335
|
optional: true
|
|
2285
2336
|
|
|
2286
|
-
'@rollup/rollup-darwin-x64@4.
|
|
2337
|
+
'@rollup/rollup-darwin-x64@4.61.1':
|
|
2287
2338
|
optional: true
|
|
2288
2339
|
|
|
2289
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
2340
|
+
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
2290
2341
|
optional: true
|
|
2291
2342
|
|
|
2292
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
2343
|
+
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
2293
2344
|
optional: true
|
|
2294
2345
|
|
|
2295
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
2346
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
2296
2347
|
optional: true
|
|
2297
2348
|
|
|
2298
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
2349
|
+
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
2299
2350
|
optional: true
|
|
2300
2351
|
|
|
2301
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
2352
|
+
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
2302
2353
|
optional: true
|
|
2303
2354
|
|
|
2304
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
2355
|
+
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
2305
2356
|
optional: true
|
|
2306
2357
|
|
|
2307
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
2358
|
+
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
2308
2359
|
optional: true
|
|
2309
2360
|
|
|
2310
|
-
'@rollup/rollup-linux-loong64-musl@4.
|
|
2361
|
+
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
2311
2362
|
optional: true
|
|
2312
2363
|
|
|
2313
|
-
'@rollup/rollup-linux-ppc64-gnu@4.
|
|
2364
|
+
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
2314
2365
|
optional: true
|
|
2315
2366
|
|
|
2316
|
-
'@rollup/rollup-linux-ppc64-musl@4.
|
|
2367
|
+
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
2317
2368
|
optional: true
|
|
2318
2369
|
|
|
2319
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
2370
|
+
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
2320
2371
|
optional: true
|
|
2321
2372
|
|
|
2322
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
2373
|
+
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
2323
2374
|
optional: true
|
|
2324
2375
|
|
|
2325
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
2376
|
+
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
2326
2377
|
optional: true
|
|
2327
2378
|
|
|
2328
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
2379
|
+
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
2329
2380
|
optional: true
|
|
2330
2381
|
|
|
2331
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
2382
|
+
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
2332
2383
|
optional: true
|
|
2333
2384
|
|
|
2334
|
-
'@rollup/rollup-openbsd-x64@4.
|
|
2385
|
+
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
2335
2386
|
optional: true
|
|
2336
2387
|
|
|
2337
|
-
'@rollup/rollup-openharmony-arm64@4.
|
|
2388
|
+
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
2338
2389
|
optional: true
|
|
2339
2390
|
|
|
2340
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
2391
|
+
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
2341
2392
|
optional: true
|
|
2342
2393
|
|
|
2343
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
2394
|
+
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
2344
2395
|
optional: true
|
|
2345
2396
|
|
|
2346
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
2397
|
+
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
2347
2398
|
optional: true
|
|
2348
2399
|
|
|
2349
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
2400
|
+
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
2350
2401
|
optional: true
|
|
2351
2402
|
|
|
2352
2403
|
'@standard-schema/spec@1.1.0': {}
|
|
@@ -2370,8 +2421,6 @@ snapshots:
|
|
|
2370
2421
|
'@types/estree': 1.0.9
|
|
2371
2422
|
'@types/json-schema': 7.0.15
|
|
2372
2423
|
|
|
2373
|
-
'@types/estree@1.0.8': {}
|
|
2374
|
-
|
|
2375
2424
|
'@types/estree@1.0.9': {}
|
|
2376
2425
|
|
|
2377
2426
|
'@types/json-schema@7.0.15': {}
|
|
@@ -2492,13 +2541,13 @@ snapshots:
|
|
|
2492
2541
|
chai: 6.2.2
|
|
2493
2542
|
tinyrainbow: 3.1.0
|
|
2494
2543
|
|
|
2495
|
-
'@vitest/mocker@4.1.8(vite@
|
|
2544
|
+
'@vitest/mocker@4.1.8(vite@7.3.5(@types/node@25.9.1)(terser@5.48.0))':
|
|
2496
2545
|
dependencies:
|
|
2497
2546
|
'@vitest/spy': 4.1.8
|
|
2498
2547
|
estree-walker: 3.0.3
|
|
2499
2548
|
magic-string: 0.30.21
|
|
2500
2549
|
optionalDependencies:
|
|
2501
|
-
vite:
|
|
2550
|
+
vite: 7.3.5(@types/node@25.9.1)(terser@5.48.0)
|
|
2502
2551
|
|
|
2503
2552
|
'@vitest/pretty-format@4.1.8':
|
|
2504
2553
|
dependencies:
|
|
@@ -2756,32 +2805,6 @@ snapshots:
|
|
|
2756
2805
|
|
|
2757
2806
|
es-module-lexer@2.1.0: {}
|
|
2758
2807
|
|
|
2759
|
-
esbuild@0.21.5:
|
|
2760
|
-
optionalDependencies:
|
|
2761
|
-
'@esbuild/aix-ppc64': 0.21.5
|
|
2762
|
-
'@esbuild/android-arm': 0.21.5
|
|
2763
|
-
'@esbuild/android-arm64': 0.21.5
|
|
2764
|
-
'@esbuild/android-x64': 0.21.5
|
|
2765
|
-
'@esbuild/darwin-arm64': 0.21.5
|
|
2766
|
-
'@esbuild/darwin-x64': 0.21.5
|
|
2767
|
-
'@esbuild/freebsd-arm64': 0.21.5
|
|
2768
|
-
'@esbuild/freebsd-x64': 0.21.5
|
|
2769
|
-
'@esbuild/linux-arm': 0.21.5
|
|
2770
|
-
'@esbuild/linux-arm64': 0.21.5
|
|
2771
|
-
'@esbuild/linux-ia32': 0.21.5
|
|
2772
|
-
'@esbuild/linux-loong64': 0.21.5
|
|
2773
|
-
'@esbuild/linux-mips64el': 0.21.5
|
|
2774
|
-
'@esbuild/linux-ppc64': 0.21.5
|
|
2775
|
-
'@esbuild/linux-riscv64': 0.21.5
|
|
2776
|
-
'@esbuild/linux-s390x': 0.21.5
|
|
2777
|
-
'@esbuild/linux-x64': 0.21.5
|
|
2778
|
-
'@esbuild/netbsd-x64': 0.21.5
|
|
2779
|
-
'@esbuild/openbsd-x64': 0.21.5
|
|
2780
|
-
'@esbuild/sunos-x64': 0.21.5
|
|
2781
|
-
'@esbuild/win32-arm64': 0.21.5
|
|
2782
|
-
'@esbuild/win32-ia32': 0.21.5
|
|
2783
|
-
'@esbuild/win32-x64': 0.21.5
|
|
2784
|
-
|
|
2785
2808
|
esbuild@0.25.0:
|
|
2786
2809
|
optionalDependencies:
|
|
2787
2810
|
'@esbuild/aix-ppc64': 0.25.0
|
|
@@ -2810,6 +2833,35 @@ snapshots:
|
|
|
2810
2833
|
'@esbuild/win32-ia32': 0.25.0
|
|
2811
2834
|
'@esbuild/win32-x64': 0.25.0
|
|
2812
2835
|
|
|
2836
|
+
esbuild@0.27.7:
|
|
2837
|
+
optionalDependencies:
|
|
2838
|
+
'@esbuild/aix-ppc64': 0.27.7
|
|
2839
|
+
'@esbuild/android-arm': 0.27.7
|
|
2840
|
+
'@esbuild/android-arm64': 0.27.7
|
|
2841
|
+
'@esbuild/android-x64': 0.27.7
|
|
2842
|
+
'@esbuild/darwin-arm64': 0.27.7
|
|
2843
|
+
'@esbuild/darwin-x64': 0.27.7
|
|
2844
|
+
'@esbuild/freebsd-arm64': 0.27.7
|
|
2845
|
+
'@esbuild/freebsd-x64': 0.27.7
|
|
2846
|
+
'@esbuild/linux-arm': 0.27.7
|
|
2847
|
+
'@esbuild/linux-arm64': 0.27.7
|
|
2848
|
+
'@esbuild/linux-ia32': 0.27.7
|
|
2849
|
+
'@esbuild/linux-loong64': 0.27.7
|
|
2850
|
+
'@esbuild/linux-mips64el': 0.27.7
|
|
2851
|
+
'@esbuild/linux-ppc64': 0.27.7
|
|
2852
|
+
'@esbuild/linux-riscv64': 0.27.7
|
|
2853
|
+
'@esbuild/linux-s390x': 0.27.7
|
|
2854
|
+
'@esbuild/linux-x64': 0.27.7
|
|
2855
|
+
'@esbuild/netbsd-arm64': 0.27.7
|
|
2856
|
+
'@esbuild/netbsd-x64': 0.27.7
|
|
2857
|
+
'@esbuild/openbsd-arm64': 0.27.7
|
|
2858
|
+
'@esbuild/openbsd-x64': 0.27.7
|
|
2859
|
+
'@esbuild/openharmony-arm64': 0.27.7
|
|
2860
|
+
'@esbuild/sunos-x64': 0.27.7
|
|
2861
|
+
'@esbuild/win32-arm64': 0.27.7
|
|
2862
|
+
'@esbuild/win32-ia32': 0.27.7
|
|
2863
|
+
'@esbuild/win32-x64': 0.27.7
|
|
2864
|
+
|
|
2813
2865
|
escalade@3.2.0: {}
|
|
2814
2866
|
|
|
2815
2867
|
escape-string-regexp@4.0.0: {}
|
|
@@ -3240,35 +3292,35 @@ snapshots:
|
|
|
3240
3292
|
|
|
3241
3293
|
resolve-from@4.0.0: {}
|
|
3242
3294
|
|
|
3243
|
-
rollup@4.
|
|
3295
|
+
rollup@4.61.1:
|
|
3244
3296
|
dependencies:
|
|
3245
|
-
'@types/estree': 1.0.
|
|
3297
|
+
'@types/estree': 1.0.9
|
|
3246
3298
|
optionalDependencies:
|
|
3247
|
-
'@rollup/rollup-android-arm-eabi': 4.
|
|
3248
|
-
'@rollup/rollup-android-arm64': 4.
|
|
3249
|
-
'@rollup/rollup-darwin-arm64': 4.
|
|
3250
|
-
'@rollup/rollup-darwin-x64': 4.
|
|
3251
|
-
'@rollup/rollup-freebsd-arm64': 4.
|
|
3252
|
-
'@rollup/rollup-freebsd-x64': 4.
|
|
3253
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.
|
|
3254
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.
|
|
3255
|
-
'@rollup/rollup-linux-arm64-gnu': 4.
|
|
3256
|
-
'@rollup/rollup-linux-arm64-musl': 4.
|
|
3257
|
-
'@rollup/rollup-linux-loong64-gnu': 4.
|
|
3258
|
-
'@rollup/rollup-linux-loong64-musl': 4.
|
|
3259
|
-
'@rollup/rollup-linux-ppc64-gnu': 4.
|
|
3260
|
-
'@rollup/rollup-linux-ppc64-musl': 4.
|
|
3261
|
-
'@rollup/rollup-linux-riscv64-gnu': 4.
|
|
3262
|
-
'@rollup/rollup-linux-riscv64-musl': 4.
|
|
3263
|
-
'@rollup/rollup-linux-s390x-gnu': 4.
|
|
3264
|
-
'@rollup/rollup-linux-x64-gnu': 4.
|
|
3265
|
-
'@rollup/rollup-linux-x64-musl': 4.
|
|
3266
|
-
'@rollup/rollup-openbsd-x64': 4.
|
|
3267
|
-
'@rollup/rollup-openharmony-arm64': 4.
|
|
3268
|
-
'@rollup/rollup-win32-arm64-msvc': 4.
|
|
3269
|
-
'@rollup/rollup-win32-ia32-msvc': 4.
|
|
3270
|
-
'@rollup/rollup-win32-x64-gnu': 4.
|
|
3271
|
-
'@rollup/rollup-win32-x64-msvc': 4.
|
|
3299
|
+
'@rollup/rollup-android-arm-eabi': 4.61.1
|
|
3300
|
+
'@rollup/rollup-android-arm64': 4.61.1
|
|
3301
|
+
'@rollup/rollup-darwin-arm64': 4.61.1
|
|
3302
|
+
'@rollup/rollup-darwin-x64': 4.61.1
|
|
3303
|
+
'@rollup/rollup-freebsd-arm64': 4.61.1
|
|
3304
|
+
'@rollup/rollup-freebsd-x64': 4.61.1
|
|
3305
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.61.1
|
|
3306
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.61.1
|
|
3307
|
+
'@rollup/rollup-linux-arm64-gnu': 4.61.1
|
|
3308
|
+
'@rollup/rollup-linux-arm64-musl': 4.61.1
|
|
3309
|
+
'@rollup/rollup-linux-loong64-gnu': 4.61.1
|
|
3310
|
+
'@rollup/rollup-linux-loong64-musl': 4.61.1
|
|
3311
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.61.1
|
|
3312
|
+
'@rollup/rollup-linux-ppc64-musl': 4.61.1
|
|
3313
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.61.1
|
|
3314
|
+
'@rollup/rollup-linux-riscv64-musl': 4.61.1
|
|
3315
|
+
'@rollup/rollup-linux-s390x-gnu': 4.61.1
|
|
3316
|
+
'@rollup/rollup-linux-x64-gnu': 4.61.1
|
|
3317
|
+
'@rollup/rollup-linux-x64-musl': 4.61.1
|
|
3318
|
+
'@rollup/rollup-openbsd-x64': 4.61.1
|
|
3319
|
+
'@rollup/rollup-openharmony-arm64': 4.61.1
|
|
3320
|
+
'@rollup/rollup-win32-arm64-msvc': 4.61.1
|
|
3321
|
+
'@rollup/rollup-win32-ia32-msvc': 4.61.1
|
|
3322
|
+
'@rollup/rollup-win32-x64-gnu': 4.61.1
|
|
3323
|
+
'@rollup/rollup-win32-x64-msvc': 4.61.1
|
|
3272
3324
|
fsevents: 2.3.3
|
|
3273
3325
|
|
|
3274
3326
|
scheduler@0.23.2:
|
|
@@ -3404,20 +3456,23 @@ snapshots:
|
|
|
3404
3456
|
|
|
3405
3457
|
util-deprecate@1.0.2: {}
|
|
3406
3458
|
|
|
3407
|
-
vite@
|
|
3459
|
+
vite@7.3.5(@types/node@25.9.1)(terser@5.48.0):
|
|
3408
3460
|
dependencies:
|
|
3409
|
-
esbuild: 0.
|
|
3461
|
+
esbuild: 0.27.7
|
|
3462
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
3463
|
+
picomatch: 4.0.4
|
|
3410
3464
|
postcss: 8.5.15
|
|
3411
|
-
rollup: 4.
|
|
3465
|
+
rollup: 4.61.1
|
|
3466
|
+
tinyglobby: 0.2.16
|
|
3412
3467
|
optionalDependencies:
|
|
3413
3468
|
'@types/node': 25.9.1
|
|
3414
3469
|
fsevents: 2.3.3
|
|
3415
3470
|
terser: 5.48.0
|
|
3416
3471
|
|
|
3417
|
-
vitest@4.1.8(@types/node@25.9.1)(vite@
|
|
3472
|
+
vitest@4.1.8(@types/node@25.9.1)(vite@7.3.5(@types/node@25.9.1)(terser@5.48.0)):
|
|
3418
3473
|
dependencies:
|
|
3419
3474
|
'@vitest/expect': 4.1.8
|
|
3420
|
-
'@vitest/mocker': 4.1.8(vite@
|
|
3475
|
+
'@vitest/mocker': 4.1.8(vite@7.3.5(@types/node@25.9.1)(terser@5.48.0))
|
|
3421
3476
|
'@vitest/pretty-format': 4.1.8
|
|
3422
3477
|
'@vitest/runner': 4.1.8
|
|
3423
3478
|
'@vitest/snapshot': 4.1.8
|
|
@@ -3434,7 +3489,7 @@ snapshots:
|
|
|
3434
3489
|
tinyexec: 1.2.4
|
|
3435
3490
|
tinyglobby: 0.2.16
|
|
3436
3491
|
tinyrainbow: 3.1.0
|
|
3437
|
-
vite:
|
|
3492
|
+
vite: 7.3.5(@types/node@25.9.1)(terser@5.48.0)
|
|
3438
3493
|
why-is-node-running: 2.3.0
|
|
3439
3494
|
optionalDependencies:
|
|
3440
3495
|
'@types/node': 25.9.1
|