-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "combo-clip-composer",
"version": "0.0.1",
"description": "Combo Clip Composer is a command-line tool that allows users to stitch together videos and inputs based on text inputs. ",
"main": "main.js",
"scripts": {
"clean": "rm -rf ./artifacts/ && mkdir artifacts",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.0.0",
"canvas": "^2.11.0",
"ffmpeg-extract-frames": "^2.0.2",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.0",
"image-size": "^1.0.2",
"uuid": "^9.0.0",
"ytdl-core": "^4.11.3"
},
"devDependencies": {
"jest": "^29.4.3"
},
"peerDependencies": {},
"typings": "index.d.ts",
"author": "dabruhce",
"license": "MIT"
}