-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "vite-plugin-compress",
"version": "2.2.0-1",
"description": "Compress your bundle + assets from Vite",
"author": "Alec Larson",
"license": "MIT",
"repository": "alloc/vite-plugin-compress",
"main": "dist/plugin.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc -p .",
"prepare": "yarn build"
},
"peerDependencies": {
"vite": ">2.0.0-0"
},
"dependencies": {
"@types/clean-css": "^4.2.5",
"@types/html-minifier-terser": "^5.1.2",
"@types/imagemin-webp": "^5.1.2",
"@types/svgo": "^1.3.3",
"chalk": "^4.1.0",
"clean-css": "^4.2.3",
"debug": "^4.3.2",
"glob-regex": "^0.3.2",
"html-minifier-terser": "^5.1.1",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.1",
"imagemin-webp": "^6.0.0",
"recrawl-sync": "^2.0.2",
"svgo": "^1.3.2"
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@types/debug": "^4.1.7",
"@types/imagemin": "^7.0.0",
"@types/node": "^14.14.20",
"prettier": "^2.0.5",
"typescript": "^4.0.0",
"vite": "*"
},
"prettier": "@alloc/prettier-config",
"keywords": [
"vite",
"vite-plugin",
"compress",
"brotli",
"imagemin",
"pngquant",
"svgo"
]
}