-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "10x-brolls",
"version": "1.0.0",
"description": "Professional video production with brand management using Remotion",
"main": "dist/index.js",
"bin": {
"10x-brolls": "./dist/cli/index.js"
},
"scripts": {
"dev": "npx remotion studio",
"studio": "npx remotion studio",
"build": "tsc",
"render": "npx remotion render src/index.ts",
"render:youtube": "npx remotion render src/index.ts youtube-intro out/youtube.mp4",
"render:tiktok": "npx remotion render src/index.ts tiktok-intro out/tiktok.mp4",
"render:instagram": "npx remotion render src/index.ts instagram-square out/instagram.mp4",
"still": "npx remotion still src/index.ts",
"cli": "npx ts-node cli/index.ts",
"start": "npx ts-node cli/index.ts start",
"brand:create": "npx ts-node cli/index.ts brand create",
"brand:list": "npx ts-node cli/index.ts brand list",
"project:create": "npx ts-node cli/index.ts project create",
"project:list": "npx ts-node cli/index.ts project list",
"project:select": "npx ts-node cli/index.ts project select",
"upgrade": "npx remotion upgrade"
},
"keywords": [
"remotion",
"video",
"react",
"brand",
"production",
"animation"
],
"author": "",
"license": "ISC",
"dependencies": {
"@remotion/cli": "^4.0.414",
"@remotion/google-fonts": "^4.0.414",
"@remotion/media-utils": "^4.0.414",
"@remotion/player": "^4.0.414",
"@remotion/zod-types": "^4.0.414",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"inquirer": "^13.2.2",
"ora": "^9.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remotion": "^4.0.414",
"typescript": "^5.9.3",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"ts-node": "^10.9.2"
}
}