-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 721 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 721 Bytes
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
{
"name": "thumbnail-generator",
"version": "1.0.1",
"description": "A quick and dirty library to generate sprite sheets of thumbnails from a video file",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"@types/node": "^12.7.3",
"canvas": "^2.6.0",
"ffmpeg": "0.0.4",
"mkdirp": "^0.5.1",
"rimraf": "^3.0.0",
"uuidv4": "^5.0.0",
"webp-converter": "^2.2.3"
},
"devDependencies": {
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"scripts": {
"prepublish": "tsc",
"demo": "ts-node example/sample.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Thomas Edwards <tmfksoft@gmail.com>",
"license": "ISC"
}