-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1013 Bytes
/
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
{
"name": "vite-plugin-vsharp",
"version": "1.8.1",
"description": "A Vite plugin that compresses static images after each builds by using sharp.js",
"main": "./lib/vsharp.js",
"types": "./lib/vsharp.d.ts",
"type": "module",
"keywords": [
"vite",
"vite-plugin",
"sharp.js"
],
"scripts": {
"dev": "npx babel src --watch --out-dir lib --no-comments",
"build": "npx babel src --out-dir lib --no-comments; cp ./src/vsharp.d.ts ./lib/vsharp.d.ts"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"vite": "^3.2.7"
},
"peerDependencies": {
"vite": ">= 2.6 <= 5"
},
"dependencies": {
"chalk": "^4.1.2",
"glob": "^7.2.3",
"sharp": "^0.33.4"
},
"repository": {
"type": "git",
"url": "https://github.com/jw-12138/vite-plugin-vsharp"
},
"bugs": {
"url": "https://github.com/jw-12138/vite-plugin-vsharp/issues"
},
"author": "Jacky Wong",
"license": "MIT"
}