-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.35 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@ecgear/fitimage",
"version": "0.5.0",
"description": "Cross-platform batch image compressor with an interactive mode — shrink and convert between JPG/WebP/PNG/GIF, powered by sharp. No deprecated dependencies, no GPL codecs.",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"fitimage": "bin/cli.js"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/cli.js",
"test": "node --test",
"preflight": "node scripts/preflight.mjs",
"prepare": "git config core.hooksPath .githooks || true"
},
"keywords": [
"image",
"compression",
"compress",
"optimize",
"optimizer",
"webp",
"jpeg",
"jpg",
"png",
"mozjpeg",
"sharp",
"cli",
"batch",
"convert",
"cross-platform"
],
"author": "ECgear",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ECgear/FitImage.git"
},
"homepage": "https://github.com/ECgear/FitImage#readme",
"bugs": {
"url": "https://github.com/ECgear/FitImage/issues"
},
"dependencies": {
"commander": "^12.1.0",
"sharp": "^0.33.5",
"update-notifier": "^7.3.1"
}
}