-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
61
62
63
{
"name": "lstsim-commander",
"author": {
"name": "Matthias Schaffer",
"url": "https://matthiasschaffer.com"
},
"version": "0.0.3",
"description": "LeitstellenSimulator Commander führt über eine Website KeyboardShortcuts auf dem Leitstellenrechner aus. Java Runtime wird benötigt (Download: https://www.java.com/)",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build --win --publish never",
"deploy": "electron-builder build --win --publish always"
},
"repository": {
"type": "git",
"url": "https://github.com/fellwell5/lstsim-commander"
},
"build": {
"asar": true,
"appId": "com.matthiasschaffer.lstsim-commander",
"productName": "lstsim-commander",
"directories": {
"output": "build/electron-release"
},
"extraFiles": [
"icon.png"
],
"extraResources": ["./public/**"],
"win": {
"target": "portable",
"verifyUpdateCodeSignature": false,
"icon": "icon.png"
},
"mac": {
"icon": "./icon.png",
"category": "public.app-category.utilities"
}
},
"license": "ISC",
"dependencies": {
"dotenv": "^8.6.0",
"express": "^4.17.2",
"ip": "^1.1.5",
"js-yaml": "^3.14.1",
"node-key-sender": "^1.0.11",
"pushover-notifications": "^1.2.2",
"socket.io": "^2.4.1",
"update-electron-app": "^2.0.1"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.63",
"electron": "^16.0.8",
"electron-builder": "^22.14.13",
"nodemon": "^2.0.15"
},
"nodemonConfig": {
"ignore": [
"public/app.js",
"public/lstsim-commander.user.js"
]
}
}