-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "favicon-generator",
"version": "0.1.1",
"description": "A simple favicon generator",
"author": "Anthony Pauwels <hello@anthonypauwels.be>",
"license": "ISC",
"homepage": "./",
"main": "./build/main.js",
"keywords": [
"favicon",
"generator"
],
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"build": {
"appId": "be.anthonypauwels.favicon-generator",
"productName": "Favicon Generator",
"files": [
"package.json",
"build/**/*",
"node_modules"
],
"mac": {
"target": "dmg",
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage",
"category": "Utility"
}
},
"scripts": {
"serve": "electron .",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"production": "mix --production",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"build": "mix --production && electron-builder"
},
"devDependencies": {
"electron": "^14.0.1",
"laravel-mix": "^6.0.31",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"electron-builder": "^24.4.0"
},
"dependencies": {
"sharp": "^0.29.1",
"xmldom": "^0.6.0",
"zip-dir": "^2.0.0"
}
}