-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "lessbytes",
"version": "1.2.3",
"description": "Compress images in the browser or CLI with no quality guessing. SSIM-guided binary search finds the smallest file that still looks identical to the original. Zero dependencies in the browser. Sharp-powered CLI for Node.",
"type": "module",
"main": "./dist/lessbytes.umd.cjs",
"module": "./dist/lessbytes.esm.js",
"browser": "./dist/lessbytes.umd.min.js",
"unpkg": "./dist/lessbytes.umd.min.js",
"jsdelivr": "./dist/lessbytes.umd.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/lessbytes.esm.js",
"require": "./dist/lessbytes.umd.cjs",
"default": "./dist/lessbytes.esm.js"
},
"./package.json": "./package.json"
},
"bin": {
"lessbytes": "bin/lessbytes.cjs"
},
"files": [
"dist",
"src",
"bin",
"README.md"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "node build.cjs",
"test": "node test/run-tests.cjs",
"prepublishOnly": "node build.cjs && node test/run-tests.cjs"
},
"keywords": [
"image-compression",
"image-optimizer",
"image-compressor",
"compress-image",
"ssim",
"perceptual-quality",
"webp",
"avif",
"jpeg",
"png",
"cli",
"browser",
"client-side",
"zero-dependency",
"sharp",
"resize",
"lossy",
"lossless",
"file-size",
"photo-compression"
],
"author": {
"name": "Dev",
"url": "https://devchauhan.in"
},
"license": "MIT",
"homepage": "https://dqev.github.io/lessbytes/",
"repository": {
"type": "git",
"url": "git+https://github.com/dqev/lessbytes.git"
},
"bugs": {
"url": "https://github.com/dqev/lessbytes/issues"
},
"optionalDependencies": {
"sharp": "^0.34.0"
},
"sideEffects": false
}