reelme 0.3.0 → 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/generate-tracks.mjs +6 -1
- package/package.json +8 -2
- package/src/cache.mjs +154 -14
- package/src/cli.mjs +20 -11
- package/src/render.mjs +91 -19
- package/template/package.json +6 -6
- package/template/pnpm-lock.yaml +177 -122
- package/template/pnpm-workspace.yaml +2 -0
- package/template/src/Root.tsx +27 -15
- package/template/src/brief.json +6 -6
- package/template/src/brief.ts +13 -3
- package/template/src/cinematic/Camera.tsx +1 -1
- package/template/src/cinematic/look.ts +25 -8
- package/template/src/cinematic/transitions.tsx +27 -9
- package/template/src/components/primitives/Bar.tsx +6 -2
- package/template/src/components/primitives/Caption.tsx +2 -2
- package/template/src/components/primitives/Icon.tsx +7 -0
- package/template/src/components/primitives/KeyPill.tsx +1 -1
- package/template/src/components/primitives/Label.tsx +4 -1
- package/template/src/components/primitives/Loop.tsx +65 -0
- package/template/src/components/primitives/RevealText.tsx +27 -5
- package/template/src/components/primitives/Stage.tsx +62 -0
- package/template/src/components/scenes/BrowserFrame.tsx +1 -1
- package/template/src/components/scenes/CTA.tsx +45 -82
- package/template/src/components/scenes/Clip.tsx +9 -3
- package/template/src/components/scenes/CodeReveal.tsx +6 -5
- package/template/src/components/scenes/DataFlow.tsx +1 -1
- package/template/src/components/scenes/FeatureList.tsx +74 -77
- package/template/src/components/scenes/FileTree.tsx +1 -1
- package/template/src/components/scenes/HotkeyScene.tsx +4 -3
- package/template/src/components/scenes/MobileScreen.tsx +222 -107
- package/template/src/components/scenes/OSWindowScene.tsx +4 -4
- package/template/src/components/scenes/Problem.tsx +1 -1
- package/template/src/components/scenes/SplitComparison.tsx +1 -1
- package/template/src/components/scenes/StatCallout.tsx +123 -68
- package/template/src/components/scenes/TerminalScene.tsx +12 -11
- package/template/src/duration.ts +12 -2
- package/template/src/index.ts +7 -5
- package/template/src/timing.ts +49 -0
package/template/pnpm-lock.yaml
CHANGED
|
@@ -4,28 +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)
|
|
14
17
|
'@remotion/gif':
|
|
15
|
-
specifier: 4.0.
|
|
16
|
-
version: 4.0.
|
|
18
|
+
specifier: 4.0.410
|
|
19
|
+
version: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
17
20
|
'@remotion/google-fonts':
|
|
18
|
-
specifier: 4.0.
|
|
19
|
-
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)
|
|
20
23
|
chroma-js:
|
|
21
24
|
specifier: ^3.1.2
|
|
22
25
|
version: 3.2.0
|
|
23
26
|
lucide-react:
|
|
24
27
|
specifier: ^0.511.0
|
|
25
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)
|
|
26
35
|
remotion:
|
|
27
|
-
specifier: 4.0.
|
|
28
|
-
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)
|
|
29
38
|
devDependencies:
|
|
30
39
|
'@types/chroma-js':
|
|
31
40
|
specifier: ^2.4.4
|
|
@@ -42,12 +51,6 @@ importers:
|
|
|
42
51
|
eslint:
|
|
43
52
|
specifier: ^9.0.0
|
|
44
53
|
version: 9.39.4
|
|
45
|
-
react:
|
|
46
|
-
specifier: ^18.3.0
|
|
47
|
-
version: 18.3.1
|
|
48
|
-
react-dom:
|
|
49
|
-
specifier: ^18.3.0
|
|
50
|
-
version: 18.3.1(react@18.3.1)
|
|
51
54
|
typescript:
|
|
52
55
|
specifier: ^5.4.0
|
|
53
56
|
version: 5.9.3
|
|
@@ -457,105 +460,117 @@ packages:
|
|
|
457
460
|
'@jridgewell/trace-mapping@0.3.31':
|
|
458
461
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
459
462
|
|
|
460
|
-
'@remotion/bundler@4.0.
|
|
461
|
-
resolution: {integrity: sha512-
|
|
463
|
+
'@remotion/bundler@4.0.410':
|
|
464
|
+
resolution: {integrity: sha512-JuNF/wmwirL4saSAYPIdPKvh3rIfHa3qVRWZMdq2EmPxVWfEP9IPS4kMGYardsisWjbQbZXeW3jv1O9SUtZBEw==}
|
|
462
465
|
peerDependencies:
|
|
463
466
|
react: '>=16.8.0'
|
|
464
467
|
react-dom: '>=16.8.0'
|
|
465
468
|
|
|
466
|
-
'@remotion/cli@4.0.
|
|
467
|
-
resolution: {integrity: sha512-
|
|
469
|
+
'@remotion/cli@4.0.410':
|
|
470
|
+
resolution: {integrity: sha512-2wler/J9yq0CILLHANnJijglMPA6NBXmbKMHtzS+DgP9RR7lrBrwtxU6C6H2oxy/PQMtui0KgtBrJ9vhh/4SHQ==}
|
|
468
471
|
hasBin: true
|
|
469
472
|
peerDependencies:
|
|
470
473
|
react: '>=16.8.0'
|
|
471
474
|
react-dom: '>=16.8.0'
|
|
472
475
|
|
|
473
|
-
'@remotion/compositor-darwin-arm64@4.0.
|
|
474
|
-
resolution: {integrity: sha512-
|
|
476
|
+
'@remotion/compositor-darwin-arm64@4.0.410':
|
|
477
|
+
resolution: {integrity: sha512-RgabM1QSTHgIo+RLaFzEpkTQY6IB2GWg0N09QlDUvofWP5XCGyt7yfU/CkeJ0pHTyhb3HmzVumBB4aYEgHFEBw==}
|
|
475
478
|
cpu: [arm64]
|
|
476
479
|
os: [darwin]
|
|
477
480
|
|
|
478
|
-
'@remotion/compositor-darwin-x64@4.0.
|
|
479
|
-
resolution: {integrity: sha512-
|
|
481
|
+
'@remotion/compositor-darwin-x64@4.0.410':
|
|
482
|
+
resolution: {integrity: sha512-wj5MAtx2mwBeMkM93BQDth1VmubrxiT1N8pUHZkgywmFy10yyc+JTBOW9eDQdsMLKK7ssRW/ATxNhaCNcv+eug==}
|
|
480
483
|
cpu: [x64]
|
|
481
484
|
os: [darwin]
|
|
482
485
|
|
|
483
|
-
'@remotion/compositor-linux-arm64-gnu@4.0.
|
|
484
|
-
resolution: {integrity: sha512-
|
|
486
|
+
'@remotion/compositor-linux-arm64-gnu@4.0.410':
|
|
487
|
+
resolution: {integrity: sha512-v+2CQaBNlfFiZmlvoH+BUXtnI60g3aFik03WD6KQO03Knows0m7KIWjaSto2hu9oX4pSL18nU/7CYPC/nMXN6Q==}
|
|
485
488
|
cpu: [arm64]
|
|
486
489
|
os: [linux]
|
|
487
490
|
libc: [glibc]
|
|
488
491
|
|
|
489
|
-
'@remotion/compositor-linux-arm64-musl@4.0.
|
|
490
|
-
resolution: {integrity: sha512-
|
|
492
|
+
'@remotion/compositor-linux-arm64-musl@4.0.410':
|
|
493
|
+
resolution: {integrity: sha512-PVm99n1udo9GW6uGpukzGpeo1KzOr/jvbvok8kzykXIMByT6/dFQz2nf2bg2KLT0G15iaAcx2ySGAxKhPdcFVA==}
|
|
491
494
|
cpu: [arm64]
|
|
492
495
|
os: [linux]
|
|
493
496
|
libc: [musl]
|
|
494
497
|
|
|
495
|
-
'@remotion/compositor-linux-x64-gnu@4.0.
|
|
496
|
-
resolution: {integrity: sha512-
|
|
498
|
+
'@remotion/compositor-linux-x64-gnu@4.0.410':
|
|
499
|
+
resolution: {integrity: sha512-0q4HHEqRZHX0Tv2mYqNW4nTn7fo5g4deHJRqufj308KztFYaBzFuw1wgbejfBh0Wk6JGEViFaBSmfaYNg2DZKg==}
|
|
497
500
|
cpu: [x64]
|
|
498
501
|
os: [linux]
|
|
499
502
|
libc: [glibc]
|
|
500
503
|
|
|
501
|
-
'@remotion/compositor-linux-x64-musl@4.0.
|
|
502
|
-
resolution: {integrity: sha512-
|
|
504
|
+
'@remotion/compositor-linux-x64-musl@4.0.410':
|
|
505
|
+
resolution: {integrity: sha512-VPlz/IZ1co4IxgDFIyyQ8g45JNZghj2hVD2uyWFPO1B+5JX7nJwlrIT5pstcd9X2BZhpXYEIsWUCZ3qACUDzPg==}
|
|
503
506
|
cpu: [x64]
|
|
504
507
|
os: [linux]
|
|
505
508
|
libc: [musl]
|
|
506
509
|
|
|
507
|
-
'@remotion/compositor-win32-x64-msvc@4.0.
|
|
508
|
-
resolution: {integrity: sha512-
|
|
510
|
+
'@remotion/compositor-win32-x64-msvc@4.0.410':
|
|
511
|
+
resolution: {integrity: sha512-ELKZigwUi63RMFWM7key7zC6VCCsYEGhvxj7NL2wLDzqXXb7ifp0rA1cFLyGJ2VJNPY5H8mKhoF+4cfenNcUag==}
|
|
509
512
|
cpu: [x64]
|
|
510
513
|
os: [win32]
|
|
511
514
|
|
|
512
|
-
'@remotion/gif@4.0.
|
|
513
|
-
resolution: {integrity: sha512-
|
|
515
|
+
'@remotion/gif@4.0.410':
|
|
516
|
+
resolution: {integrity: sha512-b60IXCO+TIiLXx84wmT9uqJ50VBvWfVO020+DNLeX62kbvxFsVsh3XtHF7budCCxfUK7moLmAE/s2mtH/ECk1Q==}
|
|
514
517
|
peerDependencies:
|
|
515
518
|
react: '>=16.8.0'
|
|
516
519
|
react-dom: '>=16.8.0'
|
|
517
520
|
|
|
518
|
-
'@remotion/google-fonts@4.0.
|
|
519
|
-
resolution: {integrity: sha512
|
|
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==}
|
|
520
526
|
|
|
521
|
-
'@remotion/media-parser@4.0.
|
|
522
|
-
resolution: {integrity: sha512-
|
|
527
|
+
'@remotion/media-parser@4.0.410':
|
|
528
|
+
resolution: {integrity: sha512-rfmFy5ZnE+TOvqXRgROI4t9lODlKLzGDdstN+0yB/84eRj1hLAIqeGROtbfohFO+X20WFRtNTS7HAs6318fOmg==}
|
|
523
529
|
|
|
524
|
-
'@remotion/media-utils@4.0.
|
|
525
|
-
resolution: {integrity: sha512-
|
|
530
|
+
'@remotion/media-utils@4.0.410':
|
|
531
|
+
resolution: {integrity: sha512-jrgB3QFgLhELbVq+XNQoYraA4ofCIVaJron2KShSBdPNbkRTg2w0wCjA2gLFTdBacLSGS9N7I4Ft/qA1tpz96w==}
|
|
526
532
|
peerDependencies:
|
|
527
533
|
react: '>=16.8.0'
|
|
528
534
|
react-dom: '>=16.8.0'
|
|
529
535
|
|
|
530
|
-
'@remotion/player@4.0.
|
|
531
|
-
resolution: {integrity: sha512-
|
|
536
|
+
'@remotion/player@4.0.410':
|
|
537
|
+
resolution: {integrity: sha512-G8hATP2rdyU/jHm1MYd0jHslIyP3Vawv3mZn1HpBCtlmVH8AVK2ZmLzVYCVTeNhnYHv95SGwGlEowqiIJeM/Kw==}
|
|
532
538
|
peerDependencies:
|
|
533
539
|
react: '>=16.8.0'
|
|
534
540
|
react-dom: '>=16.8.0'
|
|
535
541
|
|
|
536
|
-
'@remotion/renderer@4.0.
|
|
537
|
-
resolution: {integrity: sha512
|
|
542
|
+
'@remotion/renderer@4.0.410':
|
|
543
|
+
resolution: {integrity: sha512-Fbj7f0nh9qClW5QNbrUzxn3QEb0Xvi8llUl8OStxArJRYGsx0UhLP5FeA53p4fU+zNzU4Vje4jtyIihnNKLYng==}
|
|
538
544
|
peerDependencies:
|
|
539
545
|
react: '>=16.8.0'
|
|
540
546
|
react-dom: '>=16.8.0'
|
|
541
547
|
|
|
542
|
-
'@remotion/streaming@4.0.
|
|
543
|
-
resolution: {integrity: sha512-
|
|
548
|
+
'@remotion/streaming@4.0.410':
|
|
549
|
+
resolution: {integrity: sha512-Ku+0h6ZNZn7W/U4tKk03PwONdZIXAMOvVWF0oVDo2ZBR5XQGLLEL3MsL6ECKIvDn90DmjkxUY2yT89IWrCXDYA==}
|
|
544
550
|
|
|
545
|
-
'@remotion/studio-server@4.0.
|
|
546
|
-
resolution: {integrity: sha512-
|
|
551
|
+
'@remotion/studio-server@4.0.410':
|
|
552
|
+
resolution: {integrity: sha512-5uFR9UBySL17K5xvDY2H9lkpl43QpNrYgOvcTmZo83bT7UOT+GrHcTH1C29SVg3U0KN+BEXesgwondILzBG8lQ==}
|
|
547
553
|
|
|
548
|
-
'@remotion/studio-shared@4.0.
|
|
549
|
-
resolution: {integrity: sha512-
|
|
554
|
+
'@remotion/studio-shared@4.0.410':
|
|
555
|
+
resolution: {integrity: sha512-dJKj2rY9snqIlmbbGEEGpy3Mv+mhvpKk0YemNZH5J0Rd5CMHphUEuSF9goar79Ox5vSkOtyE9hTlfYvgy9pb1Q==}
|
|
550
556
|
|
|
551
|
-
'@remotion/studio@4.0.
|
|
552
|
-
resolution: {integrity: sha512-
|
|
557
|
+
'@remotion/studio@4.0.410':
|
|
558
|
+
resolution: {integrity: sha512-WjAJg6vUZppEmk3PM1q4aueMel915+uTJY/nqcM98Py+wjRcLQP9SzL387o9OiuXEupvfqeLz1L3+ZG1gWf9+Q==}
|
|
553
559
|
peerDependencies:
|
|
554
560
|
react: '>=16.8.0'
|
|
555
561
|
react-dom: '>=16.8.0'
|
|
556
562
|
|
|
557
|
-
'@remotion/
|
|
558
|
-
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==}
|
|
559
574
|
peerDependencies:
|
|
560
575
|
zod: 3.22.3
|
|
561
576
|
|
|
@@ -709,6 +724,12 @@ packages:
|
|
|
709
724
|
'@types/deep-eql@4.0.2':
|
|
710
725
|
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
|
|
711
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
|
+
|
|
712
733
|
'@types/eslint-scope@3.7.7':
|
|
713
734
|
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
|
|
714
735
|
|
|
@@ -1346,6 +1367,9 @@ packages:
|
|
|
1346
1367
|
magic-string@0.30.21:
|
|
1347
1368
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1348
1369
|
|
|
1370
|
+
mediabunny@1.29.0:
|
|
1371
|
+
resolution: {integrity: sha512-18B8w/rhO/ph/AFsIXvzZg8RaSQZ+ZYfJ99MZlTjDmlgCT58jV3azrnWQ/OSquYDi8q0xmn64mnfTEHgww3+zw==}
|
|
1372
|
+
|
|
1349
1373
|
memfs@3.4.3:
|
|
1350
1374
|
resolution: {integrity: sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==}
|
|
1351
1375
|
engines: {node: '>= 4.0.0'}
|
|
@@ -1512,12 +1536,12 @@ packages:
|
|
|
1512
1536
|
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
1513
1537
|
engines: {node: '>=0.10.0'}
|
|
1514
1538
|
|
|
1515
|
-
recast@0.23.
|
|
1516
|
-
resolution: {integrity: sha512-
|
|
1539
|
+
recast@0.23.11:
|
|
1540
|
+
resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
|
|
1517
1541
|
engines: {node: '>= 4'}
|
|
1518
1542
|
|
|
1519
|
-
remotion@4.0.
|
|
1520
|
-
resolution: {integrity: sha512-
|
|
1543
|
+
remotion@4.0.410:
|
|
1544
|
+
resolution: {integrity: sha512-qk1IRV3hSm67Bgt3yIgrNmuAE5XJRIft3t40gGbkV+H98Ob0NYHBtkJBjlkz0I1ysC7eTP6iOkPUHLDzUA1D3Q==}
|
|
1521
1545
|
peerDependencies:
|
|
1522
1546
|
react: '>=16.8.0'
|
|
1523
1547
|
react-dom: '>=16.8.0'
|
|
@@ -1849,8 +1873,8 @@ packages:
|
|
|
1849
1873
|
wrappy@1.0.2:
|
|
1850
1874
|
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
1851
1875
|
|
|
1852
|
-
ws@8.
|
|
1853
|
-
resolution: {integrity: sha512-
|
|
1876
|
+
ws@8.21.0:
|
|
1877
|
+
resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
|
|
1854
1878
|
engines: {node: '>=10.0.0'}
|
|
1855
1879
|
peerDependencies:
|
|
1856
1880
|
bufferutil: ^4.0.1
|
|
@@ -2123,16 +2147,17 @@ snapshots:
|
|
|
2123
2147
|
'@jridgewell/resolve-uri': 3.1.2
|
|
2124
2148
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2125
2149
|
|
|
2126
|
-
'@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)':
|
|
2127
2151
|
dependencies:
|
|
2128
|
-
'@remotion/
|
|
2129
|
-
'@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)
|
|
2130
2155
|
css-loader: 5.2.7(webpack@5.96.1(esbuild@0.25.0)(postcss@8.5.15))
|
|
2131
2156
|
esbuild: 0.25.0
|
|
2132
2157
|
react: 18.3.1
|
|
2133
2158
|
react-dom: 18.3.1(react@18.3.1)
|
|
2134
2159
|
react-refresh: 0.9.0
|
|
2135
|
-
remotion: 4.0.
|
|
2160
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2136
2161
|
source-map: 0.7.3
|
|
2137
2162
|
style-loader: 4.0.0(webpack@5.96.1(esbuild@0.25.0)(postcss@8.5.15))
|
|
2138
2163
|
webpack: 5.96.1(esbuild@0.25.0)(postcss@8.5.15)
|
|
@@ -2153,21 +2178,21 @@ snapshots:
|
|
|
2153
2178
|
- utf-8-validate
|
|
2154
2179
|
- webpack-cli
|
|
2155
2180
|
|
|
2156
|
-
'@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)':
|
|
2157
2182
|
dependencies:
|
|
2158
|
-
'@remotion/bundler': 4.0.
|
|
2159
|
-
'@remotion/media-utils': 4.0.
|
|
2160
|
-
'@remotion/player': 4.0.
|
|
2161
|
-
'@remotion/renderer': 4.0.
|
|
2162
|
-
'@remotion/studio': 4.0.
|
|
2163
|
-
'@remotion/studio-server': 4.0.
|
|
2164
|
-
'@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)
|
|
2165
2190
|
dotenv: 9.0.2
|
|
2166
2191
|
minimist: 1.2.6
|
|
2167
2192
|
prompts: 2.4.2
|
|
2168
2193
|
react: 18.3.1
|
|
2169
2194
|
react-dom: 18.3.1(react@18.3.1)
|
|
2170
|
-
remotion: 4.0.
|
|
2195
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2171
2196
|
transitivePeerDependencies:
|
|
2172
2197
|
- '@minify-html/node'
|
|
2173
2198
|
- '@swc/core'
|
|
@@ -2185,89 +2210,95 @@ snapshots:
|
|
|
2185
2210
|
- utf-8-validate
|
|
2186
2211
|
- webpack-cli
|
|
2187
2212
|
|
|
2188
|
-
'@remotion/compositor-darwin-arm64@4.0.
|
|
2213
|
+
'@remotion/compositor-darwin-arm64@4.0.410':
|
|
2189
2214
|
optional: true
|
|
2190
2215
|
|
|
2191
|
-
'@remotion/compositor-darwin-x64@4.0.
|
|
2216
|
+
'@remotion/compositor-darwin-x64@4.0.410':
|
|
2192
2217
|
optional: true
|
|
2193
2218
|
|
|
2194
|
-
'@remotion/compositor-linux-arm64-gnu@4.0.
|
|
2219
|
+
'@remotion/compositor-linux-arm64-gnu@4.0.410':
|
|
2195
2220
|
optional: true
|
|
2196
2221
|
|
|
2197
|
-
'@remotion/compositor-linux-arm64-musl@4.0.
|
|
2222
|
+
'@remotion/compositor-linux-arm64-musl@4.0.410':
|
|
2198
2223
|
optional: true
|
|
2199
2224
|
|
|
2200
|
-
'@remotion/compositor-linux-x64-gnu@4.0.
|
|
2225
|
+
'@remotion/compositor-linux-x64-gnu@4.0.410':
|
|
2201
2226
|
optional: true
|
|
2202
2227
|
|
|
2203
|
-
'@remotion/compositor-linux-x64-musl@4.0.
|
|
2228
|
+
'@remotion/compositor-linux-x64-musl@4.0.410':
|
|
2204
2229
|
optional: true
|
|
2205
2230
|
|
|
2206
|
-
'@remotion/compositor-win32-x64-msvc@4.0.
|
|
2231
|
+
'@remotion/compositor-win32-x64-msvc@4.0.410':
|
|
2207
2232
|
optional: true
|
|
2208
2233
|
|
|
2209
|
-
'@remotion/gif@4.0.
|
|
2234
|
+
'@remotion/gif@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2210
2235
|
dependencies:
|
|
2211
2236
|
react: 18.3.1
|
|
2212
2237
|
react-dom: 18.3.1(react@18.3.1)
|
|
2213
|
-
remotion: 4.0.
|
|
2238
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2214
2239
|
|
|
2215
|
-
'@remotion/google-fonts@4.0.
|
|
2240
|
+
'@remotion/google-fonts@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2216
2241
|
dependencies:
|
|
2217
|
-
remotion: 4.0.
|
|
2242
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2218
2243
|
transitivePeerDependencies:
|
|
2219
2244
|
- react
|
|
2220
2245
|
- react-dom
|
|
2221
2246
|
|
|
2222
|
-
'@remotion/
|
|
2247
|
+
'@remotion/licensing@4.0.410': {}
|
|
2223
2248
|
|
|
2224
|
-
'@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)':
|
|
2225
2252
|
dependencies:
|
|
2253
|
+
'@remotion/media-parser': 4.0.410
|
|
2254
|
+
'@remotion/webcodecs': 4.0.410
|
|
2255
|
+
mediabunny: 1.29.0
|
|
2226
2256
|
react: 18.3.1
|
|
2227
2257
|
react-dom: 18.3.1(react@18.3.1)
|
|
2228
|
-
remotion: 4.0.
|
|
2258
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2229
2259
|
|
|
2230
|
-
'@remotion/player@4.0.
|
|
2260
|
+
'@remotion/player@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2231
2261
|
dependencies:
|
|
2232
2262
|
react: 18.3.1
|
|
2233
2263
|
react-dom: 18.3.1(react@18.3.1)
|
|
2234
|
-
remotion: 4.0.
|
|
2264
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2235
2265
|
|
|
2236
|
-
'@remotion/renderer@4.0.
|
|
2266
|
+
'@remotion/renderer@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2237
2267
|
dependencies:
|
|
2238
|
-
'@remotion/
|
|
2268
|
+
'@remotion/licensing': 4.0.410
|
|
2269
|
+
'@remotion/streaming': 4.0.410
|
|
2239
2270
|
execa: 5.1.1
|
|
2240
2271
|
extract-zip: 2.0.1
|
|
2241
2272
|
react: 18.3.1
|
|
2242
2273
|
react-dom: 18.3.1(react@18.3.1)
|
|
2243
|
-
remotion: 4.0.
|
|
2274
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2244
2275
|
source-map: 0.8.0-beta.0
|
|
2245
|
-
ws: 8.
|
|
2276
|
+
ws: 8.21.0
|
|
2246
2277
|
optionalDependencies:
|
|
2247
|
-
'@remotion/compositor-darwin-arm64': 4.0.
|
|
2248
|
-
'@remotion/compositor-darwin-x64': 4.0.
|
|
2249
|
-
'@remotion/compositor-linux-arm64-gnu': 4.0.
|
|
2250
|
-
'@remotion/compositor-linux-arm64-musl': 4.0.
|
|
2251
|
-
'@remotion/compositor-linux-x64-gnu': 4.0.
|
|
2252
|
-
'@remotion/compositor-linux-x64-musl': 4.0.
|
|
2253
|
-
'@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
|
|
2254
2285
|
transitivePeerDependencies:
|
|
2255
2286
|
- bufferutil
|
|
2256
2287
|
- supports-color
|
|
2257
2288
|
- utf-8-validate
|
|
2258
2289
|
|
|
2259
|
-
'@remotion/streaming@4.0.
|
|
2290
|
+
'@remotion/streaming@4.0.410': {}
|
|
2260
2291
|
|
|
2261
|
-
'@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)':
|
|
2262
2293
|
dependencies:
|
|
2263
2294
|
'@babel/parser': 7.24.1
|
|
2264
|
-
'@remotion/bundler': 4.0.
|
|
2265
|
-
'@remotion/renderer': 4.0.
|
|
2266
|
-
'@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)
|
|
2267
2298
|
memfs: 3.4.3
|
|
2268
2299
|
open: 8.4.2
|
|
2269
|
-
recast: 0.23.
|
|
2270
|
-
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)
|
|
2271
2302
|
semver: 7.5.3
|
|
2272
2303
|
source-map: 0.7.3
|
|
2273
2304
|
transitivePeerDependencies:
|
|
@@ -2289,26 +2320,27 @@ snapshots:
|
|
|
2289
2320
|
- utf-8-validate
|
|
2290
2321
|
- webpack-cli
|
|
2291
2322
|
|
|
2292
|
-
'@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)':
|
|
2293
2324
|
dependencies:
|
|
2294
|
-
remotion: 4.0.
|
|
2325
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2295
2326
|
transitivePeerDependencies:
|
|
2296
2327
|
- react
|
|
2297
2328
|
- react-dom
|
|
2298
2329
|
|
|
2299
|
-
'@remotion/studio@4.0.
|
|
2330
|
+
'@remotion/studio@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2300
2331
|
dependencies:
|
|
2301
|
-
'@remotion/media-
|
|
2302
|
-
'@remotion/
|
|
2303
|
-
'@remotion/
|
|
2304
|
-
'@remotion/
|
|
2305
|
-
'@remotion/
|
|
2306
|
-
'@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
|
|
2307
2339
|
memfs: 3.4.3
|
|
2308
2340
|
open: 8.4.2
|
|
2309
2341
|
react: 18.3.1
|
|
2310
2342
|
react-dom: 18.3.1(react@18.3.1)
|
|
2311
|
-
remotion: 4.0.
|
|
2343
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2312
2344
|
semver: 7.5.3
|
|
2313
2345
|
source-map: 0.7.3
|
|
2314
2346
|
zod: 3.22.3
|
|
@@ -2317,9 +2349,21 @@ snapshots:
|
|
|
2317
2349
|
- supports-color
|
|
2318
2350
|
- utf-8-validate
|
|
2319
2351
|
|
|
2320
|
-
'@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)':
|
|
2321
2365
|
dependencies:
|
|
2322
|
-
remotion: 4.0.
|
|
2366
|
+
remotion: 4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2323
2367
|
zod: 3.22.3
|
|
2324
2368
|
transitivePeerDependencies:
|
|
2325
2369
|
- react
|
|
@@ -2411,6 +2455,12 @@ snapshots:
|
|
|
2411
2455
|
|
|
2412
2456
|
'@types/deep-eql@4.0.2': {}
|
|
2413
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
|
+
|
|
2414
2464
|
'@types/eslint-scope@3.7.7':
|
|
2415
2465
|
dependencies:
|
|
2416
2466
|
'@types/eslint': 9.6.1
|
|
@@ -3128,6 +3178,11 @@ snapshots:
|
|
|
3128
3178
|
dependencies:
|
|
3129
3179
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3130
3180
|
|
|
3181
|
+
mediabunny@1.29.0:
|
|
3182
|
+
dependencies:
|
|
3183
|
+
'@types/dom-mediacapture-transform': 0.1.11
|
|
3184
|
+
'@types/dom-webcodecs': 0.1.13
|
|
3185
|
+
|
|
3131
3186
|
memfs@3.4.3:
|
|
3132
3187
|
dependencies:
|
|
3133
3188
|
fs-monkey: 1.0.3
|
|
@@ -3275,7 +3330,7 @@ snapshots:
|
|
|
3275
3330
|
dependencies:
|
|
3276
3331
|
loose-envify: 1.4.0
|
|
3277
3332
|
|
|
3278
|
-
recast@0.23.
|
|
3333
|
+
recast@0.23.11:
|
|
3279
3334
|
dependencies:
|
|
3280
3335
|
ast-types: 0.16.1
|
|
3281
3336
|
esprima: 4.0.1
|
|
@@ -3283,7 +3338,7 @@ snapshots:
|
|
|
3283
3338
|
tiny-invariant: 1.3.3
|
|
3284
3339
|
tslib: 2.8.1
|
|
3285
3340
|
|
|
3286
|
-
remotion@4.0.
|
|
3341
|
+
remotion@4.0.410(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
|
3287
3342
|
dependencies:
|
|
3288
3343
|
react: 18.3.1
|
|
3289
3344
|
react-dom: 18.3.1(react@18.3.1)
|
|
@@ -3563,7 +3618,7 @@ snapshots:
|
|
|
3563
3618
|
|
|
3564
3619
|
wrappy@1.0.2: {}
|
|
3565
3620
|
|
|
3566
|
-
ws@8.
|
|
3621
|
+
ws@8.21.0: {}
|
|
3567
3622
|
|
|
3568
3623
|
yallist@4.0.0: {}
|
|
3569
3624
|
|