-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "brouwerij-admin",
"version": "1.2.0",
"description": "Nano brouwerij administratie \u2014 batches, ingredi\u00ebnten, accijns en voorraad",
"main": "main.js",
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win --x64",
"build:mac": "electron-builder --mac",
"build:all": "electron-builder --win --mac"
},
"build": {
"appId": "nl.jasperbom.brouwerij-admin",
"productName": "Brouwerij Admin",
"copyright": "\u00a9 2026 Jasper Bom",
"icon": "assets/icon",
"files": [
"main.js",
"preload.js",
"assets/**",
"backend/**",
"static/**"
],
"extraResources": [
{
"from": "backend-dist/",
"to": "backend/",
"filter": [
"**/*"
]
},
{
"from": "static/",
"to": "static/",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "assets/icon.icns",
"category": "public.app-category.productivity"
},
"dmg": {
"title": "Brouwerij Admin",
"background": "assets/dmg-background.png",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"keywords": [
"homebrewing",
"brewery",
"home-assistant"
],
"author": "Jasper Bom",
"license": "AGPL-3.0",
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}