-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
56 lines (56 loc) · 1.53 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@pankod/canvas2video",
"version": "1.0.7",
"description": "canvas to video renderer",
"main": "dist/index.js",
"types": "dist/typings/index.d.ts",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts --watch src",
"test": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pankod/canvas2video.git"
},
"author": "Pankod Inc.",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/pankod/canvas2video/issues"
},
"homepage": "https://github.com/pankod/canvas2video#readme",
"keywords": [
"canvas",
"video",
"generator",
"ffmpeg",
"canvas to video"
],
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.2",
"@types/fabric": "^3.6.8",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/cli-progress": "^3.8.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"cli-progress": "^3.8.2",
"fabric": "^4.1.0",
"ffmpeg-static": "^4.2.7",
"ffprobe-static": "^3.0.0",
"fluent-ffmpeg": "^2.1.2",
"gsap": "^3.5.0"
}
}