-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.1 KB
/
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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@three11/optisize",
"version": "3.0.1",
"description": "Resize and optimize images in a folder with Node JS",
"keywords": [
"Image resize",
"Image optimization",
"Image transformation",
"Bulk image resize",
"Bulk image optimization",
"Bulk image transformation"
],
"homepage": "https://github.com/three11/optisize#readme",
"bugs": {
"url": "https://github.com/three11/optisize/issues"
},
"license": "MIT",
"authors": [
{
"name": "Three 11 Ltd",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "[email protected]",
"role": "Developer"
}
],
"type": "module",
"main": "dist/optisize.js",
"types": "dist/optisize.d.ts",
"repository": {
"type": "git",
"url": "github:three11/optisize"
},
"scripts": {
"build": "tsc",
"test": "yarn build && node --experimental-specifier-resolution=node --loader ts-node/esm tests/index.ts",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'"
},
"bin": {
"optisize": "dist/cli.js"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"cosmiconfig": "9.0.0",
"glob": "10.4.5",
"imagemin": "8.0.1",
"imagemin-gifsicle": "7.0.0",
"imagemin-mozjpeg": "10.0.0",
"imagemin-pngquant": "9.0.2",
"imagemin-svgo": "10.0.1",
"imagemin-webp": "8.0.0",
"ora": "8.1.1",
"sharp": "0.33.5",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/imagemin": "8.0.5",
"@types/imagemin-gifsicle": "7.0.4",
"@types/imagemin-mozjpeg": "8.0.4",
"@types/imagemin-svgo": "10.0.5",
"@types/imagemin-webp": "7.0.3",
"@types/node": "20.17.14",
"@types/tape": "5.8.1",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"image-size": "1.2.0",
"tape": "5.9.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"resolutions": {
"http-cache-semantics": "^4.1.1",
"semver-regex": "^4.0.5",
"strip-ansi": "^6.0.1"
}
}