-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "prevvy",
"version": "8.0.1",
"description": "Create a tiled video preview image using ffmpeg... FAST!",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"scripts": {
"dev": "tsx --watch ./src/index.ts",
"test": "vitest ./src/index.test.ts",
"assets": "cd src/fixtures && wget -O ./video.mp4 https://ipfs.io/ipfs/QmTKZgRNwDNZwHtJSjCp6r5FYefzpULfy37JvMt9DwvXse/video.mp4 && cp ./video.mp4 \"./test vid (spaces).mp4\"",
"build": "tsc --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insanity54/prevvy.git"
},
"author": "Chris Grimmett <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/insanity54/prevvy/issues"
},
"homepage": "https://github.com/insanity54/prevvy#readme",
"keywords": [
"ffmpeg",
"preview",
"screenshots",
"snapshots",
"tile",
"generate"
],
"dependencies": {
"@types/debug": "^4.1.11",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/luxon": "^3.3.4",
"@types/node": "^20.9.0",
"debug": "^4.3.4",
"execa": "^8.0.1",
"fluent-ffmpeg": "^2.1.2",
"luxon": "^1.28.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.7.3",
"run-script": "^0.1.1",
"ts-mocha": "^10.0.0",
"tsx": "^4.19.0",
"vitest": "^2.0.5"
},
"type": "module"
}