This repository was archived by the owner on Feb 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 1.69 KB
/
package.json
File metadata and controls
executable file
·75 lines (75 loc) · 1.69 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
{
"name": "Edirom",
"version": "1.0.0",
"description": "A minimal Electron application with EdiromOnline",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist-all": "electron-builder -mw",
"dist-mac": "electron-builder --mac",
"dist-win": "electron-builder --win"
},
"author": "Max-Reger-Institut/Elsa-Reger-Stiftung, Reger-Werkausgabe, Karlsruhe",
"license": "GPL-3.0-only",
"dependencies": {
"about-window": "^1.12.1",
"jquery": "^2.2.4",
"raphael": "^2.1.0"
},
"devDependencies": {
"electron": "^4.1.1",
"electron-builder": "^20.40.2"
},
"build": {
"appId": "de.max-reger-institut.edirom",
"productName": "Edirom App",
"asar": "true",
"mac": {
"extraResources": [
{
"from": "build/jre/macOS",
"to": "jre",
"filter": [
"**/*"
]
},
{
"from": "build/scripts/macOS",
"to": "scripts",
"filter": [
"**/*"
]
}
],
"category": "public.app-category.music",
"target": "dmg"
},
"win": {
"extraResources": [
{
"from": "build/jre/win-x64",
"to": "jre",
"filter": [
"**/*"
]
},
{
"from": "build/scripts/win-x64",
"to": "scripts",
"filter": [
"**/*"
]
}
],
"target": "nsis-web"
},
"nsisWeb": {
"warningsAsErrors": false,
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"runAfterFinish": false,
"appPackageUrl": "https://www.max-reger-institut.de"
}
}
}