-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "webp-converter",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [],
"author": "voxsay.com",
"license": "MIT",
"description": "一款批量将 jpg、png 格式图像转换为 webp 格式的工具",
"dependencies": {
"color-name": "^2.0.0",
"iconv-lite": "^0.6.3",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"electron": "^33.0.2",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.voxsay.webpconverter",
"productName": "WebP Converter",
"files": [
"**/*",
"!dist/**/*",
"!build/**/*",
"!node_modules/**/*.{md,markdown,txt}",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp}",
"!**/.*",
"!**/test/**",
"!**/tests/**",
"!**/*.map"
],
"directories": {
"buildResources": "build",
"output": "dist"
},
"win": {
"target": "nsis"
},
"publish": [
{
"provider": "github",
"owner": "harrisonwang",
"repo": "webp-converter",
"releaseType": "release"
}
]
}
}