-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.69 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
{
"name": "@343dev/optimizt",
"version": "13.0.0",
"description": "CLI image optimization tool",
"keywords": [
"svg",
"png",
"jpeg",
"gif",
"webp",
"avif",
"image-compression",
"sharp",
"svgo",
"gifsicle",
"guetzli"
],
"license": "MIT",
"author": "Andrey Warkentin (https://github.com/343dev)",
"repository": "343dev/optimizt",
"homepage": "https://github.com/343dev/optimizt#readme",
"bugs": {
"url": "https://github.com/343dev/optimizt/issues"
},
"exports": {},
"bin": {
"optimizt": "cli.js"
},
"files": [
"lib/",
".optimiztrc.cjs",
"cli.js",
"convert.js",
"index.js",
"MIGRATION.md",
"optimize.js"
],
"scripts": {
"license-check": "npx license-compliance@3.0.1 --report detailed --allow '0BSD;Apache-2.0;Artistic-2.0;BlueOak-1.0.0;BSD-2-Clause;BSD-3-Clause;BSD-4-Clause;CC0-1.0;CC-BY-4.0;ISC;LGPL-2.1-or-later;LGPL-3.0-or-later;MIT;MPL-1.1;MPL-2.0;Python-2.0;Unlicense;W3C;W3C-20150513;X11;Zlib' --exclude 'spdx-exceptions;@343dev/gifsicle'",
"lint": "eslint --ignore-pattern 'coverage/*' ./",
"test": "vitest run --testTimeout 60000",
"test-coverage": "vitest run --testTimeout 60000 --coverage",
"enable-git-hooks": "git config core.hooksPath .githooks"
},
"dependencies": {
"@343dev/gifsicle": "1.2.0",
"@343dev/guetzli": "1.3.0",
"cli-progress": "3.12.0",
"commander": "15.0.0",
"fdir": "6.5.0",
"p-limit": "7.3.0",
"sharp": "0.35.2",
"svgo": "4.0.1"
},
"devDependencies": {
"@343dev/eslint-config": "5.0.0",
"@vitest/coverage-v8": "4.1.9",
"eslint": "10.5.0",
"lint-staged": "17.0.7",
"vitest": "4.1.9"
},
"engines": {
"node": ">=22.22.1"
},
"type": "module",
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}