-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 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
28
29
30
31
32
33
34
{
"name": "bread-compressor-cli",
"type": "module",
"version": "4.0.0",
"description": "CLI tool compressing static resources with Brotli, Zopfli (gzip) and Zstandard (zst)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ralscha/bread-compressor-cli.git"
},
"author": "Ralph Schaer <ralphschaer@gmail.com>",
"bin": {
"bread-compressor": "bin.js"
},
"keywords": [
"zopfli",
"brotli",
"gzip",
"zstandard"
],
"main": "index.js",
"dependencies": {
"@bokuweb/zstd-wasm": "0.0.27",
"@gfx/zopfli": "1.0.15",
"brotli": "1.3.3",
"chalk": "5.6.2",
"commander": "14.0.3",
"globby": "16.1.1",
"promise-limit": "2.7.0"
},
"optionalDependencies": {
"node-zopfli-es": "2.0.5"
}
}