create-video 4.0.436 → 4.0.437
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/esm/index.mjs +23 -0
- package/dist/templates.d.ts +1 -1
- package/dist/templates.js +23 -0
- package/package.json +2 -2
package/dist/esm/index.mjs
CHANGED
|
@@ -325,6 +325,29 @@ var FEATURED_TEMPLATES = [
|
|
|
325
325
|
contributedBy: null,
|
|
326
326
|
showStackblitz: true
|
|
327
327
|
},
|
|
328
|
+
{
|
|
329
|
+
homePageLabel: "Electron",
|
|
330
|
+
shortName: "Electron",
|
|
331
|
+
org: "remotion-dev",
|
|
332
|
+
repoName: "template-electron",
|
|
333
|
+
description: "Render Remotion videos from a desktop app",
|
|
334
|
+
longerDescription: "An Electron Forge + Vite starter template that renders Remotion videos from the Electron main process.",
|
|
335
|
+
promoVideo: {
|
|
336
|
+
muxId: "EvaWtUbbZ5zuYQ5EZFcZ501fg4JPtdVXXt9K02Rf62xcM",
|
|
337
|
+
width: 1920,
|
|
338
|
+
height: 1080
|
|
339
|
+
},
|
|
340
|
+
cliId: "electron",
|
|
341
|
+
type: "video",
|
|
342
|
+
defaultBranch: "main",
|
|
343
|
+
featuredOnHomePage: null,
|
|
344
|
+
previewURL: null,
|
|
345
|
+
previewLabel: null,
|
|
346
|
+
templateInMonorepo: "template-electron",
|
|
347
|
+
allowEnableTailwind: false,
|
|
348
|
+
contributedBy: null,
|
|
349
|
+
showStackblitz: false
|
|
350
|
+
},
|
|
328
351
|
{
|
|
329
352
|
homePageLabel: "React Router 7",
|
|
330
353
|
shortName: "React Router",
|
package/dist/templates.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export type Template = {
|
|
|
20
20
|
repoName: string;
|
|
21
21
|
homePageLabel: string;
|
|
22
22
|
longerDescription: string;
|
|
23
|
-
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-no-tailwind' | 'next-pages-dir' | 'react-router' | 'three' | 'still' | 'audiogram' | 'music-visualization' | 'prompt-to-video' | 'skia' | 'overlay' | 'stargazer' | 'tiktok' | 'code-hike' | 'render-server' | 'recorder' | 'prompt-to-motion-graphics' | 'vercel';
|
|
23
|
+
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-no-tailwind' | 'next-pages-dir' | 'react-router' | 'three' | 'still' | 'audiogram' | 'music-visualization' | 'prompt-to-video' | 'skia' | 'overlay' | 'stargazer' | 'tiktok' | 'code-hike' | 'render-server' | 'recorder' | 'prompt-to-motion-graphics' | 'electron' | 'vercel';
|
|
24
24
|
defaultBranch: string;
|
|
25
25
|
featuredOnHomePage: string | null;
|
|
26
26
|
previewURL: string | null;
|
package/dist/templates.js
CHANGED
|
@@ -235,6 +235,29 @@ exports.FEATURED_TEMPLATES = [
|
|
|
235
235
|
contributedBy: null,
|
|
236
236
|
showStackblitz: true,
|
|
237
237
|
},
|
|
238
|
+
{
|
|
239
|
+
homePageLabel: 'Electron',
|
|
240
|
+
shortName: 'Electron',
|
|
241
|
+
org: 'remotion-dev',
|
|
242
|
+
repoName: 'template-electron',
|
|
243
|
+
description: 'Render Remotion videos from a desktop app',
|
|
244
|
+
longerDescription: 'An Electron Forge + Vite starter template that renders Remotion videos from the Electron main process.',
|
|
245
|
+
promoVideo: {
|
|
246
|
+
muxId: 'EvaWtUbbZ5zuYQ5EZFcZ501fg4JPtdVXXt9K02Rf62xcM',
|
|
247
|
+
width: 1920,
|
|
248
|
+
height: 1080,
|
|
249
|
+
},
|
|
250
|
+
cliId: 'electron',
|
|
251
|
+
type: 'video',
|
|
252
|
+
defaultBranch: 'main',
|
|
253
|
+
featuredOnHomePage: null,
|
|
254
|
+
previewURL: null,
|
|
255
|
+
previewLabel: null,
|
|
256
|
+
templateInMonorepo: 'template-electron',
|
|
257
|
+
allowEnableTailwind: false,
|
|
258
|
+
contributedBy: null,
|
|
259
|
+
showStackblitz: false,
|
|
260
|
+
},
|
|
238
261
|
{
|
|
239
262
|
homePageLabel: 'React Router 7',
|
|
240
263
|
shortName: 'React Router',
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/create-video"
|
|
4
4
|
},
|
|
5
5
|
"name": "create-video",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.437",
|
|
7
7
|
"description": "Create a new Remotion project",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@types/prompts": "^2.0.12",
|
|
31
31
|
"@types/tar": "6.1.1",
|
|
32
32
|
"react": "19.2.3",
|
|
33
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
33
|
+
"@remotion/eslint-config-internal": "4.0.437",
|
|
34
34
|
"eslint": "9.19.0",
|
|
35
35
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
36
36
|
},
|