-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "random-media-creator",
"version": "1.2.0",
"description": "CLI tool for generating random media",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-png": "node --import=tsx index.ts png 3",
"test-gif": "node --import=tsx index.ts gif 3",
"test-mp4": "node --import=tsx index.ts mp4 3",
"test-version": "node --import=tsx index.ts version",
"test-help": "node --import=tsx index.ts help"
},
"bin": {
"rmc": "./index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harrymaynard/random-media-creator.git"
},
"keywords": [
"cli"
],
"author": "Harry Maynard",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/harrymaynard/random-media-creator/issues"
},
"homepage": "https://github.com/harrymaynard/random-media-creator#readme",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"canvas": "^2.8.0",
"commander": "^8.0.0",
"fluent-ffmpeg": "^2.1.3",
"gifencoder": "^2.0.1"
},
"devDependencies": {
"@types/node": "^22.5.0",
"tsx": "^4.17.0",
"typescript": "~5.5.4"
}
}