-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 KB
/
package.json
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
{
"name": "deriv-dynamic-videos",
"version": "1.0.0",
"description": "My Remotion video",
"scripts": {
"start": "remotion preview",
"build": "f () { yarn build:video $1 $2 && yarn build:gif $1 $2 && for i in $@; do yarn build:thumbnail $1 $2 $i; done ;}; f",
"build:video": "f () { remotion render $1 out/video.mp4 $2 ;}; f",
"build:gif": "f () { remotion render $1 out/loop.gif $2 --codec=gif --every-nth-frame=2 ;}; f",
"build:thumbnail": "f () { remotion still $1 \"out/frame-${3}.jpeg\" $2 --image-format=jpeg --frame=$3 ;}; f",
"upgrade": "remotion upgrade",
"test": "eslint src --ext ts,tsx,js,jsx && tsc"
},
"repository": {},
"license": "UNLICENSED",
"devDependencies": {
"@remotion/eslint-config": "^3.0.0",
"@types/react": "^18.0.6",
"@types/web": "^0.0.61",
"eslint": "^8.14.0",
"prettier": "^2.2.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@remotion/cli": "3.3.2",
"@remotion/google-fonts": "3.3.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remotion": "3.3.2",
"remotion-animated": "^1.0.2"
}
}