-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 913 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
40
41
42
{
"name": "dimpic",
"version": "1.0.2",
"description": "A command line tool for resizing image dimensions and file size",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "node index.js"
},
"author": "Isaac Wilson",
"license": "MIT",
"keywords": [
"dimpic",
"image resize",
"compress",
"optimize image",
"image",
"resize",
"dimensions",
"compress image",
"command line tool",
"crop image",
"file size",
"command line",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wisac/dimpic.git"
},
"dependencies": {
"commander": "^11.1.0",
"imagemin": "^8.0.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"sharp": "^0.32.6"
},
"bin": {
"dimpic": "bin/index.js"
}
}