-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 963 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 963 Bytes
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
{
"name": "webpad-desktop",
"version": "1.0.0",
"description": "Browser-Based Local Multiplayer Game Controller System",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [
"gamepad",
"controller",
"websocket",
"electron"
],
"author": "Antigravity",
"license": "MIT",
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^24.9.1"
},
"dependencies": {
"bonjour-service": "^1.2.1",
"electron-store": "^8.1.0",
"express": "^4.18.2",
"qrcode": "^1.5.4",
"winston": "^3.11.0",
"ws": "^8.16.0"
},
"build": {
"appId": "com.webpad.desktop",
"win": {
"target": "nsis",
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "resources/installer.nsh"
}
}
}