@remotion/cli 4.0.468 → 4.0.470
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/dist/config/index.d.ts +5 -0
- package/dist/config/index.js +2 -1
- package/dist/parsed-cli.d.ts +47 -12
- package/dist/parsed-cli.js +14 -2
- package/dist/studio.js +4 -1
- package/package.json +14 -14
package/dist/config/index.d.ts
CHANGED
|
@@ -432,6 +432,11 @@ type FlatConfig = RemotionConfigObject & RemotionBundlingOptions & {
|
|
|
432
432
|
* Default: 48000
|
|
433
433
|
*/
|
|
434
434
|
setSampleRate: (sampleRate: number) => void;
|
|
435
|
+
/**
|
|
436
|
+
* Set the audio sample rate for preview playback.
|
|
437
|
+
* Default: null, which uses 48000 Hz.
|
|
438
|
+
*/
|
|
439
|
+
setPreviewSampleRate: (sampleRate: number | null) => void;
|
|
435
440
|
/**
|
|
436
441
|
* @deprecated 'The config format has changed. Change `Config.Bundling.*()` calls to `Config.*()` in your config file.'
|
|
437
442
|
*/
|
package/dist/config/index.js
CHANGED
|
@@ -20,7 +20,7 @@ const preview_server_2 = require("./preview-server");
|
|
|
20
20
|
const still_frame_1 = require("./still-frame");
|
|
21
21
|
const webpack_caching_1 = require("./webpack-caching");
|
|
22
22
|
const webpack_poll_1 = require("./webpack-poll");
|
|
23
|
-
const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, concurrencyOption, offthreadVideoCacheSizeInBytesOption, x264Option, audioBitrateOption, videoBitrateOption, scaleOption, crfOption, jpegQualityOption, enforceAudioOption, overwriteOption, chromeModeOption, mutedOption, videoCodecOption, colorSpaceOption, disallowParallelEncodingOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, glOption, gopSizeOption, headlessOption, numberOfGifLoopsOption, beepOnFinishOption, encodingMaxRateOption, encodingBufferSizeOption, reproOption, enableLambdaInsights, logLevelOption, delayRenderTimeoutInMillisecondsOption, publicDirOption, binariesDirectoryOption, preferLosslessOption, framesOption, forSeamlessAacConcatenationOption, audioCodecOption, publicPathOption, hardwareAccelerationOption, audioLatencyHintOption, enableCrossSiteIsolationOption, imageSequencePatternOption, darkModeOption, askAIOption, publicLicenseKeyOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, stillImageFormatOption, videoImageFormatOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, rspackOption, outDirOption, webpackPollOption, imageSequenceOption, bundleCacheOption, envFileOption, runsOption, noOpenOption, sampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
23
|
+
const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, concurrencyOption, offthreadVideoCacheSizeInBytesOption, x264Option, audioBitrateOption, videoBitrateOption, scaleOption, crfOption, jpegQualityOption, enforceAudioOption, overwriteOption, chromeModeOption, mutedOption, videoCodecOption, colorSpaceOption, disallowParallelEncodingOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, glOption, gopSizeOption, headlessOption, numberOfGifLoopsOption, beepOnFinishOption, encodingMaxRateOption, encodingBufferSizeOption, reproOption, enableLambdaInsights, logLevelOption, delayRenderTimeoutInMillisecondsOption, publicDirOption, binariesDirectoryOption, preferLosslessOption, framesOption, forSeamlessAacConcatenationOption, audioCodecOption, publicPathOption, hardwareAccelerationOption, audioLatencyHintOption, enableCrossSiteIsolationOption, imageSequencePatternOption, darkModeOption, askAIOption, publicLicenseKeyOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, stillImageFormatOption, videoImageFormatOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, rspackOption, outDirOption, webpackPollOption, imageSequenceOption, bundleCacheOption, envFileOption, runsOption, noOpenOption, sampleRateOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
24
24
|
exports.Config = {
|
|
25
25
|
get Bundling() {
|
|
26
26
|
throw new Error('The config format has changed. Change `Config.Bundling.*()` calls to `Config.*()` in your config file.');
|
|
@@ -130,6 +130,7 @@ exports.Config = {
|
|
|
130
130
|
setBenchmarkRuns: runsOption.setConfig,
|
|
131
131
|
setBenchmarkConcurrencies: benchmarkConcurrenciesOption.setConfig,
|
|
132
132
|
setSampleRate: sampleRateOption.setConfig,
|
|
133
|
+
setPreviewSampleRate: previewSampleRateOption.setConfig,
|
|
133
134
|
};
|
|
134
135
|
exports.ConfigInternals = {
|
|
135
136
|
getBrowser: browser_1.getBrowser,
|
package/dist/parsed-cli.d.ts
CHANGED
|
@@ -996,6 +996,21 @@ declare const allowHtmlInCanvasOption: {
|
|
|
996
996
|
};
|
|
997
997
|
setConfig: (value: import("@remotion/renderer").FrameRange | null) => void;
|
|
998
998
|
id: "frames";
|
|
999
|
+
}, isProductionOption: {
|
|
1000
|
+
name: string;
|
|
1001
|
+
cliFlag: "is-production";
|
|
1002
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1003
|
+
ssrName: "isProduction";
|
|
1004
|
+
docLink: string;
|
|
1005
|
+
getValue: ({ commandLine }: {
|
|
1006
|
+
commandLine: Record<string, unknown>;
|
|
1007
|
+
}) => {
|
|
1008
|
+
source: string;
|
|
1009
|
+
value: boolean | null;
|
|
1010
|
+
};
|
|
1011
|
+
setConfig: (value: boolean | null) => void;
|
|
1012
|
+
type: boolean | null;
|
|
1013
|
+
id: "is-production";
|
|
999
1014
|
}, noOpenOption: {
|
|
1000
1015
|
name: string;
|
|
1001
1016
|
cliFlag: "no-open";
|
|
@@ -1101,6 +1116,24 @@ declare const allowHtmlInCanvasOption: {
|
|
|
1101
1116
|
};
|
|
1102
1117
|
setConfig: (value: number) => void;
|
|
1103
1118
|
id: "sample-rate";
|
|
1119
|
+
}, previewSampleRateOption: {
|
|
1120
|
+
name: string;
|
|
1121
|
+
cliFlag: "preview-sample-rate";
|
|
1122
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1123
|
+
ssrName: null;
|
|
1124
|
+
docLink: string;
|
|
1125
|
+
type: number | null;
|
|
1126
|
+
getValue: ({ commandLine }: {
|
|
1127
|
+
commandLine: Record<string, unknown>;
|
|
1128
|
+
}) => {
|
|
1129
|
+
value: number;
|
|
1130
|
+
source: string;
|
|
1131
|
+
} | {
|
|
1132
|
+
value: null;
|
|
1133
|
+
source: string;
|
|
1134
|
+
};
|
|
1135
|
+
setConfig: (value: number | null) => void;
|
|
1136
|
+
id: "preview-sample-rate";
|
|
1104
1137
|
};
|
|
1105
1138
|
export type CommandLineOptions = {
|
|
1106
1139
|
[browserExecutableOption.cliFlag]: TypeOfOption<typeof browserExecutableOption>;
|
|
@@ -1110,16 +1143,16 @@ export type CommandLineOptions = {
|
|
|
1110
1143
|
[x264Option.cliFlag]: TypeOfOption<typeof x264Option>;
|
|
1111
1144
|
[bundleCacheOption.cliFlag]: TypeOfOption<typeof bundleCacheOption>;
|
|
1112
1145
|
[envFileOption.cliFlag]: TypeOfOption<typeof envFileOption>;
|
|
1113
|
-
[ignoreCertificateErrorsOption.cliFlag]: TypeOfOption<typeof ignoreCertificateErrorsOption
|
|
1114
|
-
[darkModeOption.cliFlag]: TypeOfOption<typeof darkModeOption
|
|
1115
|
-
[disableWebSecurityOption.cliFlag]: TypeOfOption<typeof disableWebSecurityOption
|
|
1146
|
+
[ignoreCertificateErrorsOption.cliFlag]: TypeOfOption<typeof ignoreCertificateErrorsOption> | null;
|
|
1147
|
+
[darkModeOption.cliFlag]: TypeOfOption<typeof darkModeOption> | null;
|
|
1148
|
+
[disableWebSecurityOption.cliFlag]: TypeOfOption<typeof disableWebSecurityOption> | null;
|
|
1116
1149
|
[everyNthFrameOption.cliFlag]: TypeOfOption<typeof everyNthFrameOption>;
|
|
1117
1150
|
[numberOfGifLoopsOption.cliFlag]: TypeOfOption<typeof numberOfGifLoopsOption>;
|
|
1118
1151
|
[numberOfSharedAudioTagsOption.cliFlag]: TypeOfOption<typeof numberOfSharedAudioTagsOption>;
|
|
1119
1152
|
[offthreadVideoCacheSizeInBytesOption.cliFlag]: TypeOfOption<typeof offthreadVideoCacheSizeInBytesOption>;
|
|
1120
1153
|
[colorSpaceOption.cliFlag]: TypeOfOption<typeof colorSpaceOption>;
|
|
1121
|
-
[disallowParallelEncodingOption.cliFlag]: TypeOfOption<typeof disallowParallelEncodingOption
|
|
1122
|
-
[beepOnFinishOption.cliFlag]: TypeOfOption<typeof beepOnFinishOption
|
|
1154
|
+
[disallowParallelEncodingOption.cliFlag]: TypeOfOption<typeof disallowParallelEncodingOption> | null;
|
|
1155
|
+
[beepOnFinishOption.cliFlag]: TypeOfOption<typeof beepOnFinishOption> | null;
|
|
1123
1156
|
[versionFlagOption.cliFlag]: TypeOfOption<typeof versionFlagOption>;
|
|
1124
1157
|
[videoCodecOption.cliFlag]: TypeOfOption<typeof videoCodecOption>;
|
|
1125
1158
|
[concurrencyOption.cliFlag]: TypeOfOption<typeof concurrencyOption>;
|
|
@@ -1135,22 +1168,22 @@ export type CommandLineOptions = {
|
|
|
1135
1168
|
[crfOption.cliFlag]: TypeOfOption<typeof crfOption>;
|
|
1136
1169
|
[gopSizeOption.cliFlag]: TypeOfOption<typeof gopSizeOption>;
|
|
1137
1170
|
output: string | undefined;
|
|
1138
|
-
[overwriteOption.cliFlag]: TypeOfOption<typeof overwriteOption
|
|
1171
|
+
[overwriteOption.cliFlag]: TypeOfOption<typeof overwriteOption> | null;
|
|
1139
1172
|
png: boolean;
|
|
1140
1173
|
[propsOption.cliFlag]: TypeOfOption<typeof propsOption>;
|
|
1141
1174
|
quality: number;
|
|
1142
1175
|
[jpegQualityOption.cliFlag]: TypeOfOption<typeof jpegQualityOption>;
|
|
1143
1176
|
[framesOption.cliFlag]: string | number;
|
|
1144
1177
|
[scaleOption.cliFlag]: TypeOfOption<typeof scaleOption>;
|
|
1145
|
-
[imageSequenceOption.cliFlag]: TypeOfOption<typeof imageSequenceOption
|
|
1178
|
+
[imageSequenceOption.cliFlag]: TypeOfOption<typeof imageSequenceOption> | null;
|
|
1146
1179
|
quiet: boolean;
|
|
1147
1180
|
q: boolean;
|
|
1148
1181
|
[logLevelOption.cliFlag]: TypeOfOption<typeof logLevelOption>;
|
|
1149
1182
|
help: boolean;
|
|
1150
1183
|
[portOption.cliFlag]: TypeOfOption<typeof portOption>;
|
|
1151
1184
|
[stillFrameOption.cliFlag]: TypeOfOption<typeof stillFrameOption>;
|
|
1152
|
-
[headlessOption.cliFlag]: TypeOfOption<typeof headlessOption
|
|
1153
|
-
[keyboardShortcutsOption.cliFlag]: TypeOfOption<typeof keyboardShortcutsOption
|
|
1185
|
+
[headlessOption.cliFlag]: TypeOfOption<typeof headlessOption> | null;
|
|
1186
|
+
[keyboardShortcutsOption.cliFlag]: TypeOfOption<typeof keyboardShortcutsOption> | null;
|
|
1154
1187
|
[allowHtmlInCanvasOption.cliFlag]: TypeOfOption<typeof allowHtmlInCanvasOption>;
|
|
1155
1188
|
[experimentalClientSideRenderingOption.cliFlag]: TypeOfOption<typeof experimentalClientSideRenderingOption>;
|
|
1156
1189
|
[mutedOption.cliFlag]: TypeOfOption<typeof mutedOption>;
|
|
@@ -1170,16 +1203,18 @@ export type CommandLineOptions = {
|
|
|
1170
1203
|
[userAgentOption.cliFlag]: TypeOfOption<typeof userAgentOption>;
|
|
1171
1204
|
[outDirOption.cliFlag]: TypeOfOption<typeof outDirOption>;
|
|
1172
1205
|
[audioLatencyHintOption.cliFlag]: AudioContextLatencyCategory;
|
|
1173
|
-
[ipv4Option.cliFlag]: TypeOfOption<typeof ipv4Option
|
|
1206
|
+
[ipv4Option.cliFlag]: TypeOfOption<typeof ipv4Option> | null;
|
|
1174
1207
|
[deleteAfterOption.cliFlag]: TypeOfOption<typeof deleteAfterOption>;
|
|
1175
1208
|
[folderExpiryOption.cliFlag]: TypeOfOption<typeof folderExpiryOption>;
|
|
1176
1209
|
[enableMultiprocessOnLinuxOption.cliFlag]: TypeOfOption<typeof enableMultiprocessOnLinuxOption>;
|
|
1177
|
-
[reproOption.cliFlag]: TypeOfOption<typeof reproOption
|
|
1210
|
+
[reproOption.cliFlag]: TypeOfOption<typeof reproOption> | null;
|
|
1178
1211
|
[imageSequencePatternOption.cliFlag]: TypeOfOption<typeof imageSequencePatternOption>;
|
|
1179
1212
|
'license-key': string;
|
|
1180
1213
|
[publicLicenseKeyOption.cliFlag]: string;
|
|
1181
|
-
[forceNewStudioOption.cliFlag]: TypeOfOption<typeof forceNewStudioOption
|
|
1214
|
+
[forceNewStudioOption.cliFlag]: TypeOfOption<typeof forceNewStudioOption> | null;
|
|
1182
1215
|
[sampleRateOption.cliFlag]: TypeOfOption<typeof sampleRateOption>;
|
|
1216
|
+
[previewSampleRateOption.cliFlag]: TypeOfOption<typeof previewSampleRateOption>;
|
|
1217
|
+
[isProductionOption.cliFlag]: TypeOfOption<typeof isProductionOption> | null;
|
|
1183
1218
|
};
|
|
1184
1219
|
export declare const BooleanFlags: string[];
|
|
1185
1220
|
export declare const parsedCli: CommandLineOptions & {
|
package/dist/parsed-cli.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.quietFlagProvided = exports.parsedCli = exports.BooleanFlags = void 0;
|
|
7
7
|
const client_1 = require("@remotion/renderer/client");
|
|
8
8
|
const minimist_1 = __importDefault(require("minimist"));
|
|
9
|
-
const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, beepOnFinishOption, colorSpaceOption, concurrencyOption, disallowParallelEncodingOption, offthreadVideoCacheSizeInBytesOption, encodingBufferSizeOption, encodingMaxRateOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, numberOfGifLoopsOption, x264Option, enforceAudioOption, jpegQualityOption, audioBitrateOption, videoBitrateOption, audioCodecOption, publicPathOption, audioLatencyHintOption, darkModeOption, publicLicenseKeyOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, outDirOption, packageManagerOption, webpackPollOption, keyboardShortcutsOption, experimentalClientSideRenderingOption, imageSequencePatternOption, scaleOption, overwriteOption, crfOption, logLevelOption, videoCodecOption, stillFrameOption, imageSequenceOption, versionFlagOption, bundleCacheOption, envFileOption, glOption, gopSizeOption, runsOption, reproOption, mutedOption, headlessOption, disableGitSourceOption, delayRenderTimeoutInMillisecondsOption, framesOption, forSeamlessAacConcatenationOption, isProductionOption, noOpenOption, portOption, propsOption, configOption, browserOption, sampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
9
|
+
const { allowHtmlInCanvasOption, benchmarkConcurrenciesOption, beepOnFinishOption, colorSpaceOption, concurrencyOption, disallowParallelEncodingOption, offthreadVideoCacheSizeInBytesOption, encodingBufferSizeOption, encodingMaxRateOption, deleteAfterOption, folderExpiryOption, enableMultiprocessOnLinuxOption, numberOfGifLoopsOption, x264Option, enforceAudioOption, jpegQualityOption, audioBitrateOption, videoBitrateOption, audioCodecOption, publicPathOption, audioLatencyHintOption, darkModeOption, publicLicenseKeyOption, forceNewStudioOption, numberOfSharedAudioTagsOption, ipv4Option, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, outDirOption, packageManagerOption, webpackPollOption, keyboardShortcutsOption, experimentalClientSideRenderingOption, imageSequencePatternOption, scaleOption, overwriteOption, crfOption, logLevelOption, videoCodecOption, stillFrameOption, imageSequenceOption, versionFlagOption, bundleCacheOption, envFileOption, glOption, gopSizeOption, runsOption, reproOption, mutedOption, headlessOption, disableGitSourceOption, delayRenderTimeoutInMillisecondsOption, framesOption, forSeamlessAacConcatenationOption, isProductionOption, noOpenOption, portOption, propsOption, configOption, browserOption, sampleRateOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
10
10
|
exports.BooleanFlags = [
|
|
11
11
|
overwriteOption.cliFlag,
|
|
12
12
|
imageSequenceOption.cliFlag,
|
|
@@ -35,10 +35,22 @@ exports.BooleanFlags = [
|
|
|
35
35
|
exports.parsedCli = (0, minimist_1.default)(process.argv.slice(2), {
|
|
36
36
|
boolean: exports.BooleanFlags,
|
|
37
37
|
default: {
|
|
38
|
-
[overwriteOption.cliFlag]:
|
|
38
|
+
[overwriteOption.cliFlag]: null,
|
|
39
39
|
[bundleCacheOption.cliFlag]: null,
|
|
40
40
|
[allowHtmlInCanvasOption.cliFlag]: null,
|
|
41
41
|
[experimentalClientSideRenderingOption.cliFlag]: null,
|
|
42
|
+
[darkModeOption.cliFlag]: null,
|
|
43
|
+
[imageSequenceOption.cliFlag]: null,
|
|
44
|
+
[disableWebSecurityOption.cliFlag]: null,
|
|
45
|
+
[ignoreCertificateErrorsOption.cliFlag]: null,
|
|
46
|
+
[headlessOption.cliFlag]: null,
|
|
47
|
+
[keyboardShortcutsOption.cliFlag]: null,
|
|
48
|
+
[ipv4Option.cliFlag]: null,
|
|
49
|
+
[beepOnFinishOption.cliFlag]: null,
|
|
50
|
+
[disallowParallelEncodingOption.cliFlag]: null,
|
|
51
|
+
[reproOption.cliFlag]: null,
|
|
52
|
+
[isProductionOption.cliFlag]: null,
|
|
53
|
+
[forceNewStudioOption.cliFlag]: null,
|
|
42
54
|
[mutedOption.cliFlag]: null,
|
|
43
55
|
},
|
|
44
56
|
});
|
package/dist/studio.js
CHANGED
|
@@ -13,7 +13,7 @@ const get_render_defaults_1 = require("./get-render-defaults");
|
|
|
13
13
|
const log_1 = require("./log");
|
|
14
14
|
const parsed_cli_1 = require("./parsed-cli");
|
|
15
15
|
const queue_1 = require("./render-queue/queue");
|
|
16
|
-
const { binariesDirectoryOption, publicDirOption, disableGitSourceOption, enableCrossSiteIsolationOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, audioLatencyHintOption, ipv4Option, rspackOption, webpackPollOption, noOpenOption, portOption, browserOption, } = client_1.BrowserSafeApis.options;
|
|
16
|
+
const { binariesDirectoryOption, publicDirOption, disableGitSourceOption, enableCrossSiteIsolationOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, forceNewStudioOption, numberOfSharedAudioTagsOption, audioLatencyHintOption, ipv4Option, rspackOption, webpackPollOption, noOpenOption, portOption, browserOption, previewSampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
17
17
|
const studioCommand = async (remotionRoot, args, logLevel) => {
|
|
18
18
|
var _a, _b, _c;
|
|
19
19
|
const { file, reason } = (0, entry_point_1.findEntryPoint)({
|
|
@@ -113,6 +113,9 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
|
|
|
113
113
|
audioLatencyHint: audioLatencyHintOption.getValue({
|
|
114
114
|
commandLine: parsed_cli_1.parsedCli,
|
|
115
115
|
}).value,
|
|
116
|
+
previewSampleRate: previewSampleRateOption.getValue({
|
|
117
|
+
commandLine: parsed_cli_1.parsedCli,
|
|
118
|
+
}).value,
|
|
116
119
|
enableCrossSiteIsolation,
|
|
117
120
|
askAIEnabled,
|
|
118
121
|
forceNew: forceNewStudioOption.getValue({ commandLine: parsed_cli_1.parsedCli }).value,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cli",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.470",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
37
37
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@remotion/bundler": "4.0.
|
|
40
|
-
"@remotion/media-utils": "4.0.
|
|
41
|
-
"@remotion/player": "4.0.
|
|
42
|
-
"@remotion/renderer": "4.0.
|
|
43
|
-
"@remotion/studio-shared": "4.0.
|
|
44
|
-
"@remotion/studio-server": "4.0.
|
|
45
|
-
"@remotion/studio": "4.0.
|
|
39
|
+
"@remotion/bundler": "4.0.470",
|
|
40
|
+
"@remotion/media-utils": "4.0.470",
|
|
41
|
+
"@remotion/player": "4.0.470",
|
|
42
|
+
"@remotion/renderer": "4.0.470",
|
|
43
|
+
"@remotion/studio-shared": "4.0.470",
|
|
44
|
+
"@remotion/studio-server": "4.0.470",
|
|
45
|
+
"@remotion/studio": "4.0.470",
|
|
46
46
|
"dotenv": "17.3.1",
|
|
47
47
|
"minimist": "1.2.6",
|
|
48
48
|
"prompts": "2.4.2",
|
|
49
|
-
"remotion": "4.0.
|
|
49
|
+
"remotion": "4.0.470"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=16.8.0",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"@types/prompts": "2.4.9",
|
|
58
58
|
"@types/prettier": "2.7.2",
|
|
59
59
|
"@types/node": "20.12.14",
|
|
60
|
-
"@remotion/zod-types": "4.0.
|
|
61
|
-
"@remotion/tailwind-v4": "4.0.
|
|
62
|
-
"@remotion/enable-scss": "4.0.
|
|
63
|
-
"@remotion/skia": "4.0.
|
|
60
|
+
"@remotion/zod-types": "4.0.470",
|
|
61
|
+
"@remotion/tailwind-v4": "4.0.470",
|
|
62
|
+
"@remotion/enable-scss": "4.0.470",
|
|
63
|
+
"@remotion/skia": "4.0.470",
|
|
64
64
|
"react": "19.2.3",
|
|
65
65
|
"react-dom": "19.2.3",
|
|
66
66
|
"zod": "4.3.6",
|
|
67
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
67
|
+
"@remotion/eslint-config-internal": "4.0.470",
|
|
68
68
|
"eslint": "9.19.0",
|
|
69
69
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
70
70
|
},
|