forked from imagemin/imagemin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.28 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
{
"name": "@hkjeffchan/imagemin",
"version": "9.3.3",
"description": "Minify images seamlessly",
"license": "MIT",
"repository": "https://github.com/hkjeffchan/imagemin",
"type": "commonjs",
"engines": {
"node": ">=12"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"packlist": "npx npm-packlist",
"build": "tsup src/index.ts",
"watch": "npm run build -- --watch src",
"test": "xo && ava",
"publish:lib": "npm publish --access public"
},
"files": [
"dist"
],
"keywords": [
"minify",
"compress",
"image",
"images",
"jpeg",
"jpg",
"png",
"gif",
"svg"
],
"dependencies": {
"file-type": "^18.2.1",
"globby": "^13.1.3",
"graceful-fs": "^4.2.11",
"junk": "^4.0.0",
"p-pipe": "^4.0.0",
"replace-ext": "^2.0.0",
"slash": "^5.0.0"
},
"devDependencies": {
"@types/graceful-fs": "^4.1.6",
"@types/replace-ext": "^2.0.0",
"ava": "^5.2.0",
"del": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-svgo": "^10.0.1",
"imagemin-webp": "^8.0.0",
"is-jpg": "^3.0.0",
"tempy": "^3.0.0",
"tsup": "^6.6.3",
"xo": "^0.53.1"
},
"publishConfig": {
"access": "public"
}
}