reelme 0.2.2 → 0.4.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/README.md +10 -3
- 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 +218 -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 +9 -2
- package/src/cache.mjs +155 -14
- package/src/cli.mjs +20 -11
- package/src/render.mjs +172 -9
- package/template/package.json +6 -5
- package/template/pnpm-lock.yaml +186 -116
- package/template/pnpm-workspace.yaml +2 -0
- package/template/src/Root.tsx +73 -51
- package/template/src/audio.ts +24 -0
- package/template/src/benchmark.ts +18 -0
- package/template/src/brief.json +7 -6
- package/template/src/brief.ts +73 -5
- package/template/src/cinematic/Atmosphere.tsx +139 -0
- package/template/src/cinematic/Camera.tsx +54 -0
- package/template/src/cinematic/look.ts +106 -0
- package/template/src/cinematic/transitions.tsx +110 -0
- package/template/src/components/primitives/Bar.tsx +86 -0
- package/template/src/components/primitives/Caption.tsx +5 -4
- package/template/src/components/primitives/Icon.tsx +7 -0
- package/template/src/components/primitives/KeyPill.tsx +1 -1
- package/template/src/components/primitives/Kicker.tsx +46 -0
- package/template/src/components/primitives/Label.tsx +22 -25
- package/template/src/components/primitives/Loop.tsx +65 -0
- package/template/src/components/primitives/RevealText.tsx +123 -0
- package/template/src/components/primitives/Stage.tsx +62 -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 +5 -4
- package/template/src/components/scenes/CTA.tsx +67 -58
- package/template/src/components/scenes/Clip.tsx +131 -0
- package/template/src/components/scenes/CodeReveal.tsx +10 -8
- package/template/src/components/scenes/DataFlow.tsx +5 -4
- package/template/src/components/scenes/FeatureList.tsx +80 -78
- package/template/src/components/scenes/FileTree.tsx +5 -4
- package/template/src/components/scenes/Hook.tsx +55 -0
- package/template/src/components/scenes/HotkeyScene.tsx +8 -6
- package/template/src/components/scenes/MobileScreen.tsx +308 -155
- package/template/src/components/scenes/OSWindowScene.tsx +8 -7
- package/template/src/components/scenes/Problem.tsx +29 -30
- package/template/src/components/scenes/SplitComparison.tsx +65 -92
- package/template/src/components/scenes/StatCallout.tsx +162 -18
- package/template/src/components/scenes/TerminalScene.tsx +16 -16
- package/template/src/duration.ts +23 -2
- package/template/src/index.ts +7 -5
- package/template/src/platforms.ts +4 -0
- package/template/src/timing.ts +49 -0
package/template/pnpm-lock.yaml
CHANGED
|
@@ -4,25 +4,37 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
ws@>=8.0.0 <8.21.0: ^8.21.0
|
|
9
|
+
|
|
7
10
|
importers:
|
|
8
11
|
|
|
9
12
|
.:
|
|
10
13
|
dependencies:
|
|
11
14
|
'@remotion/cli':
|
|
12
|
-
specifier: 4.0.
|
|
13
|
-
version: 4.0.
|
|
15
|
+
specifier: 4.0.410
|
|
16
|
+
version: 4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
17
|
+
'@remotion/gif':
|
|
18
|
+
specifier: 4.0.410
|
|
19
|
+
version: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
14
20
|
'@remotion/google-fonts':
|
|
15
|
-
specifier: 4.0.
|
|
16
|
-
version: 4.0.
|
|
21
|
+
specifier: 4.0.410
|
|
22
|
+
version: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
17
23
|
chroma-js:
|
|
18
24
|
specifier: ^3.1.2
|
|
19
25
|
version: 3.2.0
|
|
20
26
|
lucide-react:
|
|
21
27
|
specifier: ^0.511.0
|
|
22
28
|
version: 0.511.0(react@18.3.1)
|
|
29
|
+
react:
|
|
30
|
+
specifier: ^18.3.0
|
|
31
|
+
version: 18.3.1
|
|
32
|
+
react-dom:
|
|
33
|
+
specifier: ^18.3.0
|
|
34
|
+
version: 18.3.1(react@18.3.1)
|
|
23
35
|
remotion:
|
|
24
|
-
specifier: 4.0.
|
|
25
|
-
version: 4.0.
|
|
36
|
+
specifier: 4.0.410
|
|
37
|
+
version: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
26
38
|
devDependencies:
|
|
27
39
|
'@types/chroma-js':
|
|
28
40
|
specifier: ^2.4.4
|
|
@@ -39,12 +51,6 @@ importers:
|
|
|
39
51
|
eslint:
|
|
40
52
|
specifier: ^9.0.0
|
|
41
53
|
version: 9.39.4
|
|
42
|
-
react:
|
|
43
|
-
specifier: ^18.3.0
|
|
44
|
-
version: 18.3.1
|
|
45
|
-
react-dom:
|
|
46
|
-
specifier: ^18.3.0
|
|
47
|
-
version: 18.3.1(react@18.3.1)
|
|
48
54
|
typescript:
|
|
49
55
|
specifier: ^5.4.0
|
|
50
56
|
version: 5.9.3
|
|
@@ -454,99 +460,117 @@ packages:
|
|
|
454
460
|
'@jridgewell/trace-mapping@0.3.31':
|
|
455
461
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
456
462
|
|
|
457
|
-
'@remotion/bundler@4.0.
|
|
458
|
-
resolution: {integrity: sha512-
|
|
463
|
+
'@remotion/bundler@4.0.410':
|
|
464
|
+
resolution: {integrity: sha512-JuNF/wmwirL4saSAYPIdPKvh3rIfHa3qVRWZMdq2EmPxVWfEP9IPS4kMGYardsisWjbQbZXeW3jv1O9SUtZBEw==}
|
|
459
465
|
peerDependencies:
|
|
460
466
|
react: '>=16.8.0'
|
|
461
467
|
react-dom: '>=16.8.0'
|
|
462
468
|
|
|
463
|
-
'@remotion/cli@4.0.
|
|
464
|
-
resolution: {integrity: sha512-
|
|
469
|
+
'@remotion/cli@4.0.410':
|
|
470
|
+
resolution: {integrity: sha512-2wler/J9yq0CILLHANnJijglMPA6NBXmbKMHtzS+DgP9RR7lrBrwtxU6C6H2oxy/PQMtui0KgtBrJ9vhh/4SHQ==}
|
|
465
471
|
hasBin: true
|
|
466
472
|
peerDependencies:
|
|
467
473
|
react: '>=16.8.0'
|
|
468
474
|
react-dom: '>=16.8.0'
|
|
469
475
|
|
|
470
|
-
'@remotion/compositor-darwin-arm64@4.0.
|
|
471
|
-
resolution: {integrity: sha512-
|
|
476
|
+
'@remotion/compositor-darwin-arm64@4.0.410':
|
|
477
|
+
resolution: {integrity: sha512-RgabM1QSTHgIo+RLaFzEpkTQY6IB2GWg0N09QlDUvofWP5XCGyt7yfU/CkeJ0pHTyhb3HmzVumBB4aYEgHFEBw==}
|
|
472
478
|
cpu: [arm64]
|
|
473
479
|
os: [darwin]
|
|
474
480
|
|
|
475
|
-
'@remotion/compositor-darwin-x64@4.0.
|
|
476
|
-
resolution: {integrity: sha512-
|
|
481
|
+
'@remotion/compositor-darwin-x64@4.0.410':
|
|
482
|
+
resolution: {integrity: sha512-wj5MAtx2mwBeMkM93BQDth1VmubrxiT1N8pUHZkgywmFy10yyc+JTBOW9eDQdsMLKK7ssRW/ATxNhaCNcv+eug==}
|
|
477
483
|
cpu: [x64]
|
|
478
484
|
os: [darwin]
|
|
479
485
|
|
|
480
|
-
'@remotion/compositor-linux-arm64-gnu@4.0.
|
|
481
|
-
resolution: {integrity: sha512-
|
|
486
|
+
'@remotion/compositor-linux-arm64-gnu@4.0.410':
|
|
487
|
+
resolution: {integrity: sha512-v+2CQaBNlfFiZmlvoH+BUXtnI60g3aFik03WD6KQO03Knows0m7KIWjaSto2hu9oX4pSL18nU/7CYPC/nMXN6Q==}
|
|
482
488
|
cpu: [arm64]
|
|
483
489
|
os: [linux]
|
|
484
490
|
libc: [glibc]
|
|
485
491
|
|
|
486
|
-
'@remotion/compositor-linux-arm64-musl@4.0.
|
|
487
|
-
resolution: {integrity: sha512-
|
|
492
|
+
'@remotion/compositor-linux-arm64-musl@4.0.410':
|
|
493
|
+
resolution: {integrity: sha512-PVm99n1udo9GW6uGpukzGpeo1KzOr/jvbvok8kzykXIMByT6/dFQz2nf2bg2KLT0G15iaAcx2ySGAxKhPdcFVA==}
|
|
488
494
|
cpu: [arm64]
|
|
489
495
|
os: [linux]
|
|
490
496
|
libc: [musl]
|
|
491
497
|
|
|
492
|
-
'@remotion/compositor-linux-x64-gnu@4.0.
|
|
493
|
-
resolution: {integrity: sha512-
|
|
498
|
+
'@remotion/compositor-linux-x64-gnu@4.0.410':
|
|
499
|
+
resolution: {integrity: sha512-0q4HHEqRZHX0Tv2mYqNW4nTn7fo5g4deHJRqufj308KztFYaBzFuw1wgbejfBh0Wk6JGEViFaBSmfaYNg2DZKg==}
|
|
494
500
|
cpu: [x64]
|
|
495
501
|
os: [linux]
|
|
496
502
|
libc: [glibc]
|
|
497
503
|
|
|
498
|
-
'@remotion/compositor-linux-x64-musl@4.0.
|
|
499
|
-
resolution: {integrity: sha512-
|
|
504
|
+
'@remotion/compositor-linux-x64-musl@4.0.410':
|
|
505
|
+
resolution: {integrity: sha512-VPlz/IZ1co4IxgDFIyyQ8g45JNZghj2hVD2uyWFPO1B+5JX7nJwlrIT5pstcd9X2BZhpXYEIsWUCZ3qACUDzPg==}
|
|
500
506
|
cpu: [x64]
|
|
501
507
|
os: [linux]
|
|
502
508
|
libc: [musl]
|
|
503
509
|
|
|
504
|
-
'@remotion/compositor-win32-x64-msvc@4.0.
|
|
505
|
-
resolution: {integrity: sha512-
|
|
510
|
+
'@remotion/compositor-win32-x64-msvc@4.0.410':
|
|
511
|
+
resolution: {integrity: sha512-ELKZigwUi63RMFWM7key7zC6VCCsYEGhvxj7NL2wLDzqXXb7ifp0rA1cFLyGJ2VJNPY5H8mKhoF+4cfenNcUag==}
|
|
506
512
|
cpu: [x64]
|
|
507
513
|
os: [win32]
|
|
508
514
|
|
|
509
|
-
'@remotion/
|
|
510
|
-
resolution: {integrity: sha512
|
|
515
|
+
'@remotion/gif@4.0.410':
|
|
516
|
+
resolution: {integrity: sha512-b60IXCO+TIiLXx84wmT9uqJ50VBvWfVO020+DNLeX62kbvxFsVsh3XtHF7budCCxfUK7moLmAE/s2mtH/ECk1Q==}
|
|
517
|
+
peerDependencies:
|
|
518
|
+
react: '>=16.8.0'
|
|
519
|
+
react-dom: '>=16.8.0'
|
|
520
|
+
|
|
521
|
+
'@remotion/google-fonts@4.0.410':
|
|
522
|
+
resolution: {integrity: sha512-c0w3mCk+EINosaCQEh2L4SBA9kZ/0yPLHUsRg9G73R7mMaOSt1V1XzBcp1AF85BfLfkq4ehGiVmdZkkF9R7aWw==}
|
|
523
|
+
|
|
524
|
+
'@remotion/licensing@4.0.410':
|
|
525
|
+
resolution: {integrity: sha512-Rnu/FabQFLfT+CKPbFMFrqcs7yA0C+QZAGv2to5lZfFk9CjZ+mEyx4Ek4afr4Nv9+bVPQ9mU7FF2fTHyglZTIg==}
|
|
511
526
|
|
|
512
|
-
'@remotion/media-parser@4.0.
|
|
513
|
-
resolution: {integrity: sha512-
|
|
527
|
+
'@remotion/media-parser@4.0.410':
|
|
528
|
+
resolution: {integrity: sha512-rfmFy5ZnE+TOvqXRgROI4t9lODlKLzGDdstN+0yB/84eRj1hLAIqeGROtbfohFO+X20WFRtNTS7HAs6318fOmg==}
|
|
514
529
|
|
|
515
|
-
'@remotion/media-utils@4.0.
|
|
516
|
-
resolution: {integrity: sha512-
|
|
530
|
+
'@remotion/media-utils@4.0.410':
|
|
531
|
+
resolution: {integrity: sha512-jrgB3QFgLhELbVq+XNQoYraA4ofCIVaJron2KShSBdPNbkRTg2w0wCjA2gLFTdBacLSGS9N7I4Ft/qA1tpz96w==}
|
|
517
532
|
peerDependencies:
|
|
518
533
|
react: '>=16.8.0'
|
|
519
534
|
react-dom: '>=16.8.0'
|
|
520
535
|
|
|
521
|
-
'@remotion/player@4.0.
|
|
522
|
-
resolution: {integrity: sha512-
|
|
536
|
+
'@remotion/player@4.0.410':
|
|
537
|
+
resolution: {integrity: sha512-G8hATP2rdyU/jHm1MYd0jHslIyP3Vawv3mZn1HpBCtlmVH8AVK2ZmLzVYCVTeNhnYHv95SGwGlEowqiIJeM/Kw==}
|
|
523
538
|
peerDependencies:
|
|
524
539
|
react: '>=16.8.0'
|
|
525
540
|
react-dom: '>=16.8.0'
|
|
526
541
|
|
|
527
|
-
'@remotion/renderer@4.0.
|
|
528
|
-
resolution: {integrity: sha512
|
|
542
|
+
'@remotion/renderer@4.0.410':
|
|
543
|
+
resolution: {integrity: sha512-Fbj7f0nh9qClW5QNbrUzxn3QEb0Xvi8llUl8OStxArJRYGsx0UhLP5FeA53p4fU+zNzU4Vje4jtyIihnNKLYng==}
|
|
529
544
|
peerDependencies:
|
|
530
545
|
react: '>=16.8.0'
|
|
531
546
|
react-dom: '>=16.8.0'
|
|
532
547
|
|
|
533
|
-
'@remotion/streaming@4.0.
|
|
534
|
-
resolution: {integrity: sha512-
|
|
548
|
+
'@remotion/streaming@4.0.410':
|
|
549
|
+
resolution: {integrity: sha512-Ku+0h6ZNZn7W/U4tKk03PwONdZIXAMOvVWF0oVDo2ZBR5XQGLLEL3MsL6ECKIvDn90DmjkxUY2yT89IWrCXDYA==}
|
|
535
550
|
|
|
536
|
-
'@remotion/studio-server@4.0.
|
|
537
|
-
resolution: {integrity: sha512-
|
|
551
|
+
'@remotion/studio-server@4.0.410':
|
|
552
|
+
resolution: {integrity: sha512-5uFR9UBySL17K5xvDY2H9lkpl43QpNrYgOvcTmZo83bT7UOT+GrHcTH1C29SVg3U0KN+BEXesgwondILzBG8lQ==}
|
|
538
553
|
|
|
539
|
-
'@remotion/studio-shared@4.0.
|
|
540
|
-
resolution: {integrity: sha512-
|
|
554
|
+
'@remotion/studio-shared@4.0.410':
|
|
555
|
+
resolution: {integrity: sha512-dJKj2rY9snqIlmbbGEEGpy3Mv+mhvpKk0YemNZH5J0Rd5CMHphUEuSF9goar79Ox5vSkOtyE9hTlfYvgy9pb1Q==}
|
|
541
556
|
|
|
542
|
-
'@remotion/studio@4.0.
|
|
543
|
-
resolution: {integrity: sha512-
|
|
557
|
+
'@remotion/studio@4.0.410':
|
|
558
|
+
resolution: {integrity: sha512-WjAJg6vUZppEmk3PM1q4aueMel915+uTJY/nqcM98Py+wjRcLQP9SzL387o9OiuXEupvfqeLz1L3+ZG1gWf9+Q==}
|
|
544
559
|
peerDependencies:
|
|
545
560
|
react: '>=16.8.0'
|
|
546
561
|
react-dom: '>=16.8.0'
|
|
547
562
|
|
|
548
|
-
'@remotion/
|
|
549
|
-
resolution: {integrity: sha512-
|
|
563
|
+
'@remotion/web-renderer@4.0.410':
|
|
564
|
+
resolution: {integrity: sha512-rELpiy7MwwD6iHuNgP+lPhlYWkWomyo4Y5gyd9FjeBVVIvElKlGWUVMse99yks/3Ezjhykq5St1kUyDlX6Gwhg==}
|
|
565
|
+
peerDependencies:
|
|
566
|
+
react: '>=18.0.0'
|
|
567
|
+
react-dom: '>=18.0.0'
|
|
568
|
+
|
|
569
|
+
'@remotion/webcodecs@4.0.410':
|
|
570
|
+
resolution: {integrity: sha512-VNIq6Q6pWFE/PQ+ye1S/EUJvWeYTp2QK375mBA+8GdsEd64c0z6/MsfXIpmI3y/QZRtJlygsWcxqyiIGDduHXg==}
|
|
571
|
+
|
|
572
|
+
'@remotion/zod-types@4.0.410':
|
|
573
|
+
resolution: {integrity: sha512-fqwCocF8kOUrhSSaPMendFTHPOGaRkGP+h2rk/9pthBcJf9Yema9842cBLTr+O7pnINP10W/e7Ewo2N9c9qSEw==}
|
|
550
574
|
peerDependencies:
|
|
551
575
|
zod: 3.22.3
|
|
552
576
|
|
|
@@ -700,6 +724,12 @@ packages:
|
|
|
700
724
|
'@types/deep-eql@4.0.2':
|
|
701
725
|
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
|
|
702
726
|
|
|
727
|
+
'@types/dom-mediacapture-transform@0.1.11':
|
|
728
|
+
resolution: {integrity: sha512-Y2p+nGf1bF2XMttBnsVPHUWzRRZzqUoJAKmiP10b5umnO6DDrWI0BrGDJy1pOHoOULVmGSfFNkQrAlC5dcj6nQ==}
|
|
729
|
+
|
|
730
|
+
'@types/dom-webcodecs@0.1.13':
|
|
731
|
+
resolution: {integrity: sha512-O5hkiFIcjjszPIYyUSyvScyvrBoV3NOEEZx/pMlsu44TKzWNkLVBBxnxJz42in5n3QIolYOcBYFCPZZ0h8SkwQ==}
|
|
732
|
+
|
|
703
733
|
'@types/eslint-scope@3.7.7':
|
|
704
734
|
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
|
|
705
735
|
|
|
@@ -1337,6 +1367,9 @@ packages:
|
|
|
1337
1367
|
magic-string@0.30.21:
|
|
1338
1368
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1339
1369
|
|
|
1370
|
+
mediabunny@1.29.0:
|
|
1371
|
+
resolution: {integrity: sha512-18B8w/rhO/ph/AFsIXvzZg8RaSQZ+ZYfJ99MZlTjDmlgCT58jV3azrnWQ/OSquYDi8q0xmn64mnfTEHgww3+zw==}
|
|
1372
|
+
|
|
1340
1373
|
memfs@3.4.3:
|
|
1341
1374
|
resolution: {integrity: sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==}
|
|
1342
1375
|
engines: {node: '>= 4.0.0'}
|
|
@@ -1503,12 +1536,12 @@ packages:
|
|
|
1503
1536
|
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
1504
1537
|
engines: {node: '>=0.10.0'}
|
|
1505
1538
|
|
|
1506
|
-
recast@0.23.
|
|
1507
|
-
resolution: {integrity: sha512-
|
|
1539
|
+
recast@0.23.11:
|
|
1540
|
+
resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
|
|
1508
1541
|
engines: {node: '>= 4'}
|
|
1509
1542
|
|
|
1510
|
-
remotion@4.0.
|
|
1511
|
-
resolution: {integrity: sha512-
|
|
1543
|
+
remotion@4.0.410:
|
|
1544
|
+
resolution: {integrity: sha512-qk1IRV3hSm67Bgt3yIgrNmuAE5XJRIft3t40gGbkV+H98Ob0NYHBtkJBjlkz0I1ysC7eTP6iOkPUHLDzUA1D3Q==}
|
|
1512
1545
|
peerDependencies:
|
|
1513
1546
|
react: '>=16.8.0'
|
|
1514
1547
|
react-dom: '>=16.8.0'
|
|
@@ -1840,8 +1873,8 @@ packages:
|
|
|
1840
1873
|
wrappy@1.0.2:
|
|
1841
1874
|
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
1842
1875
|
|
|
1843
|
-
ws@8.
|
|
1844
|
-
resolution: {integrity: sha512-
|
|
1876
|
+
ws@8.21.0:
|
|
1877
|
+
resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
|
|
1845
1878
|
engines: {node: '>=10.0.0'}
|
|
1846
1879
|
peerDependencies:
|
|
1847
1880
|
bufferutil: ^4.0.1
|
|
@@ -2114,16 +2147,17 @@ snapshots:
|
|
|
2114
2147
|
'@jridgewell/resolve-uri': 3.1.2
|
|
2115
2148
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2116
2149
|
|
|
2117
|
-
'@remotion/bundler@4.0.
|
|
2150
|
+
'@remotion/bundler@4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2118
2151
|
dependencies:
|
|
2119
|
-
'@remotion/
|
|
2120
|
-
'@remotion/studio
|
|
2152
|
+
'@remotion/media-parser': 4.0.410
|
|
2153
|
+
'@remotion/studio': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2154
|
+
'@remotion/studio-shared': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2121
2155
|
css-loader: 5.2.7(webpack@5.96.1(esbuild@0.25.0)(postcss@8.5.15))
|
|
2122
2156
|
esbuild: 0.25.0
|
|
2123
2157
|
react: 18.3.1
|
|
2124
2158
|
react-dom: 18.3.1(react@18.3.1)
|
|
2125
2159
|
react-refresh: 0.9.0
|
|
2126
|
-
remotion: 4.0.
|
|
2160
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2127
2161
|
source-map: 0.7.3
|
|
2128
2162
|
style-loader: 4.0.0(webpack@5.96.1(esbuild@0.25.0)(postcss@8.5.15))
|
|
2129
2163
|
webpack: 5.96.1(esbuild@0.25.0)(postcss@8.5.15)
|
|
@@ -2144,21 +2178,21 @@ snapshots:
|
|
|
2144
2178
|
- utf-8-validate
|
|
2145
2179
|
- webpack-cli
|
|
2146
2180
|
|
|
2147
|
-
'@remotion/cli@4.0.
|
|
2181
|
+
'@remotion/cli@4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2148
2182
|
dependencies:
|
|
2149
|
-
'@remotion/bundler': 4.0.
|
|
2150
|
-
'@remotion/media-utils': 4.0.
|
|
2151
|
-
'@remotion/player': 4.0.
|
|
2152
|
-
'@remotion/renderer': 4.0.
|
|
2153
|
-
'@remotion/studio': 4.0.
|
|
2154
|
-
'@remotion/studio-server': 4.0.
|
|
2155
|
-
'@remotion/studio-shared': 4.0.
|
|
2183
|
+
'@remotion/bundler': 4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2184
|
+
'@remotion/media-utils': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2185
|
+
'@remotion/player': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2186
|
+
'@remotion/renderer': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2187
|
+
'@remotion/studio': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2188
|
+
'@remotion/studio-server': 4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2189
|
+
'@remotion/studio-shared': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2156
2190
|
dotenv: 9.0.2
|
|
2157
2191
|
minimist: 1.2.6
|
|
2158
2192
|
prompts: 2.4.2
|
|
2159
2193
|
react: 18.3.1
|
|
2160
2194
|
react-dom: 18.3.1(react@18.3.1)
|
|
2161
|
-
remotion: 4.0.
|
|
2195
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2162
2196
|
transitivePeerDependencies:
|
|
2163
2197
|
- '@minify-html/node'
|
|
2164
2198
|
- '@swc/core'
|
|
@@ -2176,83 +2210,95 @@ snapshots:
|
|
|
2176
2210
|
- utf-8-validate
|
|
2177
2211
|
- webpack-cli
|
|
2178
2212
|
|
|
2179
|
-
'@remotion/compositor-darwin-arm64@4.0.
|
|
2213
|
+
'@remotion/compositor-darwin-arm64@4.0.410':
|
|
2180
2214
|
optional: true
|
|
2181
2215
|
|
|
2182
|
-
'@remotion/compositor-darwin-x64@4.0.
|
|
2216
|
+
'@remotion/compositor-darwin-x64@4.0.410':
|
|
2183
2217
|
optional: true
|
|
2184
2218
|
|
|
2185
|
-
'@remotion/compositor-linux-arm64-gnu@4.0.
|
|
2219
|
+
'@remotion/compositor-linux-arm64-gnu@4.0.410':
|
|
2186
2220
|
optional: true
|
|
2187
2221
|
|
|
2188
|
-
'@remotion/compositor-linux-arm64-musl@4.0.
|
|
2222
|
+
'@remotion/compositor-linux-arm64-musl@4.0.410':
|
|
2189
2223
|
optional: true
|
|
2190
2224
|
|
|
2191
|
-
'@remotion/compositor-linux-x64-gnu@4.0.
|
|
2225
|
+
'@remotion/compositor-linux-x64-gnu@4.0.410':
|
|
2192
2226
|
optional: true
|
|
2193
2227
|
|
|
2194
|
-
'@remotion/compositor-linux-x64-musl@4.0.
|
|
2228
|
+
'@remotion/compositor-linux-x64-musl@4.0.410':
|
|
2195
2229
|
optional: true
|
|
2196
2230
|
|
|
2197
|
-
'@remotion/compositor-win32-x64-msvc@4.0.
|
|
2231
|
+
'@remotion/compositor-win32-x64-msvc@4.0.410':
|
|
2198
2232
|
optional: true
|
|
2199
2233
|
|
|
2200
|
-
'@remotion/
|
|
2234
|
+
'@remotion/gif@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2235
|
+
dependencies:
|
|
2236
|
+
react: 18.3.1
|
|
2237
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2238
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2239
|
+
|
|
2240
|
+
'@remotion/google-fonts@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2201
2241
|
dependencies:
|
|
2202
|
-
remotion: 4.0.
|
|
2242
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2203
2243
|
transitivePeerDependencies:
|
|
2204
2244
|
- react
|
|
2205
2245
|
- react-dom
|
|
2206
2246
|
|
|
2207
|
-
'@remotion/
|
|
2247
|
+
'@remotion/licensing@4.0.410': {}
|
|
2208
2248
|
|
|
2209
|
-
'@remotion/media-
|
|
2249
|
+
'@remotion/media-parser@4.0.410': {}
|
|
2250
|
+
|
|
2251
|
+
'@remotion/media-utils@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2210
2252
|
dependencies:
|
|
2253
|
+
'@remotion/media-parser': 4.0.410
|
|
2254
|
+
'@remotion/webcodecs': 4.0.410
|
|
2255
|
+
mediabunny: 1.29.0
|
|
2211
2256
|
react: 18.3.1
|
|
2212
2257
|
react-dom: 18.3.1(react@18.3.1)
|
|
2213
|
-
remotion: 4.0.
|
|
2258
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2214
2259
|
|
|
2215
|
-
'@remotion/player@4.0.
|
|
2260
|
+
'@remotion/player@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2216
2261
|
dependencies:
|
|
2217
2262
|
react: 18.3.1
|
|
2218
2263
|
react-dom: 18.3.1(react@18.3.1)
|
|
2219
|
-
remotion: 4.0.
|
|
2264
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2220
2265
|
|
|
2221
|
-
'@remotion/renderer@4.0.
|
|
2266
|
+
'@remotion/renderer@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2222
2267
|
dependencies:
|
|
2223
|
-
'@remotion/
|
|
2268
|
+
'@remotion/licensing': 4.0.410
|
|
2269
|
+
'@remotion/streaming': 4.0.410
|
|
2224
2270
|
execa: 5.1.1
|
|
2225
2271
|
extract-zip: 2.0.1
|
|
2226
2272
|
react: 18.3.1
|
|
2227
2273
|
react-dom: 18.3.1(react@18.3.1)
|
|
2228
|
-
remotion: 4.0.
|
|
2274
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2229
2275
|
source-map: 0.8.0-beta.0
|
|
2230
|
-
ws: 8.
|
|
2276
|
+
ws: 8.21.0
|
|
2231
2277
|
optionalDependencies:
|
|
2232
|
-
'@remotion/compositor-darwin-arm64': 4.0.
|
|
2233
|
-
'@remotion/compositor-darwin-x64': 4.0.
|
|
2234
|
-
'@remotion/compositor-linux-arm64-gnu': 4.0.
|
|
2235
|
-
'@remotion/compositor-linux-arm64-musl': 4.0.
|
|
2236
|
-
'@remotion/compositor-linux-x64-gnu': 4.0.
|
|
2237
|
-
'@remotion/compositor-linux-x64-musl': 4.0.
|
|
2238
|
-
'@remotion/compositor-win32-x64-msvc': 4.0.
|
|
2278
|
+
'@remotion/compositor-darwin-arm64': 4.0.410
|
|
2279
|
+
'@remotion/compositor-darwin-x64': 4.0.410
|
|
2280
|
+
'@remotion/compositor-linux-arm64-gnu': 4.0.410
|
|
2281
|
+
'@remotion/compositor-linux-arm64-musl': 4.0.410
|
|
2282
|
+
'@remotion/compositor-linux-x64-gnu': 4.0.410
|
|
2283
|
+
'@remotion/compositor-linux-x64-musl': 4.0.410
|
|
2284
|
+
'@remotion/compositor-win32-x64-msvc': 4.0.410
|
|
2239
2285
|
transitivePeerDependencies:
|
|
2240
2286
|
- bufferutil
|
|
2241
2287
|
- supports-color
|
|
2242
2288
|
- utf-8-validate
|
|
2243
2289
|
|
|
2244
|
-
'@remotion/streaming@4.0.
|
|
2290
|
+
'@remotion/streaming@4.0.410': {}
|
|
2245
2291
|
|
|
2246
|
-
'@remotion/studio-server@4.0.
|
|
2292
|
+
'@remotion/studio-server@4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2247
2293
|
dependencies:
|
|
2248
2294
|
'@babel/parser': 7.24.1
|
|
2249
|
-
'@remotion/bundler': 4.0.
|
|
2250
|
-
'@remotion/renderer': 4.0.
|
|
2251
|
-
'@remotion/studio-shared': 4.0.
|
|
2295
|
+
'@remotion/bundler': 4.0.410(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2296
|
+
'@remotion/renderer': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2297
|
+
'@remotion/studio-shared': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2252
2298
|
memfs: 3.4.3
|
|
2253
2299
|
open: 8.4.2
|
|
2254
|
-
recast: 0.23.
|
|
2255
|
-
remotion: 4.0.
|
|
2300
|
+
recast: 0.23.11
|
|
2301
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2256
2302
|
semver: 7.5.3
|
|
2257
2303
|
source-map: 0.7.3
|
|
2258
2304
|
transitivePeerDependencies:
|
|
@@ -2274,26 +2320,27 @@ snapshots:
|
|
|
2274
2320
|
- utf-8-validate
|
|
2275
2321
|
- webpack-cli
|
|
2276
2322
|
|
|
2277
|
-
'@remotion/studio-shared@4.0.
|
|
2323
|
+
'@remotion/studio-shared@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2278
2324
|
dependencies:
|
|
2279
|
-
remotion: 4.0.
|
|
2325
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2280
2326
|
transitivePeerDependencies:
|
|
2281
2327
|
- react
|
|
2282
2328
|
- react-dom
|
|
2283
2329
|
|
|
2284
|
-
'@remotion/studio@4.0.
|
|
2330
|
+
'@remotion/studio@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2285
2331
|
dependencies:
|
|
2286
|
-
'@remotion/media-
|
|
2287
|
-
'@remotion/
|
|
2288
|
-
'@remotion/
|
|
2289
|
-
'@remotion/
|
|
2290
|
-
'@remotion/
|
|
2291
|
-
'@remotion/zod-types': 4.0.
|
|
2332
|
+
'@remotion/media-utils': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2333
|
+
'@remotion/player': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2334
|
+
'@remotion/renderer': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2335
|
+
'@remotion/studio-shared': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2336
|
+
'@remotion/web-renderer': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2337
|
+
'@remotion/zod-types': 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.22.3)
|
|
2338
|
+
mediabunny: 1.29.0
|
|
2292
2339
|
memfs: 3.4.3
|
|
2293
2340
|
open: 8.4.2
|
|
2294
2341
|
react: 18.3.1
|
|
2295
2342
|
react-dom: 18.3.1(react@18.3.1)
|
|
2296
|
-
remotion: 4.0.
|
|
2343
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2297
2344
|
semver: 7.5.3
|
|
2298
2345
|
source-map: 0.7.3
|
|
2299
2346
|
zod: 3.22.3
|
|
@@ -2302,9 +2349,21 @@ snapshots:
|
|
|
2302
2349
|
- supports-color
|
|
2303
2350
|
- utf-8-validate
|
|
2304
2351
|
|
|
2305
|
-
'@remotion/
|
|
2352
|
+
'@remotion/web-renderer@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2353
|
+
dependencies:
|
|
2354
|
+
'@remotion/licensing': 4.0.410
|
|
2355
|
+
mediabunny: 1.29.0
|
|
2356
|
+
react: 18.3.1
|
|
2357
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2358
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2359
|
+
|
|
2360
|
+
'@remotion/webcodecs@4.0.410':
|
|
2361
|
+
dependencies:
|
|
2362
|
+
'@remotion/media-parser': 4.0.410
|
|
2363
|
+
|
|
2364
|
+
'@remotion/zod-types@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.22.3)':
|
|
2306
2365
|
dependencies:
|
|
2307
|
-
remotion: 4.0.
|
|
2366
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2308
2367
|
zod: 3.22.3
|
|
2309
2368
|
transitivePeerDependencies:
|
|
2310
2369
|
- react
|
|
@@ -2396,6 +2455,12 @@ snapshots:
|
|
|
2396
2455
|
|
|
2397
2456
|
'@types/deep-eql@4.0.2': {}
|
|
2398
2457
|
|
|
2458
|
+
'@types/dom-mediacapture-transform@0.1.11':
|
|
2459
|
+
dependencies:
|
|
2460
|
+
'@types/dom-webcodecs': 0.1.13
|
|
2461
|
+
|
|
2462
|
+
'@types/dom-webcodecs@0.1.13': {}
|
|
2463
|
+
|
|
2399
2464
|
'@types/eslint-scope@3.7.7':
|
|
2400
2465
|
dependencies:
|
|
2401
2466
|
'@types/eslint': 9.6.1
|
|
@@ -3113,6 +3178,11 @@ snapshots:
|
|
|
3113
3178
|
dependencies:
|
|
3114
3179
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3115
3180
|
|
|
3181
|
+
mediabunny@1.29.0:
|
|
3182
|
+
dependencies:
|
|
3183
|
+
'@types/dom-mediacapture-transform': 0.1.11
|
|
3184
|
+
'@types/dom-webcodecs': 0.1.13
|
|
3185
|
+
|
|
3116
3186
|
memfs@3.4.3:
|
|
3117
3187
|
dependencies:
|
|
3118
3188
|
fs-monkey: 1.0.3
|
|
@@ -3260,7 +3330,7 @@ snapshots:
|
|
|
3260
3330
|
dependencies:
|
|
3261
3331
|
loose-envify: 1.4.0
|
|
3262
3332
|
|
|
3263
|
-
recast@0.23.
|
|
3333
|
+
recast@0.23.11:
|
|
3264
3334
|
dependencies:
|
|
3265
3335
|
ast-types: 0.16.1
|
|
3266
3336
|
esprima: 4.0.1
|
|
@@ -3268,7 +3338,7 @@ snapshots:
|
|
|
3268
3338
|
tiny-invariant: 1.3.3
|
|
3269
3339
|
tslib: 2.8.1
|
|
3270
3340
|
|
|
3271
|
-
remotion@4.0.
|
|
3341
|
+
remotion@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
|
3272
3342
|
dependencies:
|
|
3273
3343
|
react: 18.3.1
|
|
3274
3344
|
react-dom: 18.3.1(react@18.3.1)
|
|
@@ -3548,7 +3618,7 @@ snapshots:
|
|
|
3548
3618
|
|
|
3549
3619
|
wrappy@1.0.2: {}
|
|
3550
3620
|
|
|
3551
|
-
ws@8.
|
|
3621
|
+
ws@8.21.0: {}
|
|
3552
3622
|
|
|
3553
3623
|
yallist@4.0.0: {}
|
|
3554
3624
|
|