-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "oneconnection-server",
"version": "0.3.0",
"description": "Server controlador de Windows",
"main": "index.js",
"scripts": {
"start": "copy \"environment\\environment.dev.js\" \"environment\\environment.js\" && electron .",
"dist": "copy \"environment\\environment.prod.js\" \"environment\\environment.js\" && electron-builder"
},
"author": "KernelWar",
"license": "GNU v3",
"build": {
"asar": true,
"asarUnpack": [
"config/",
"node_modules/wmi-client"
],
"productName": "OneConnection server",
"win": {
"icon": "logo.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": true,
"license": "LICENSE",
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"differentialPackage": false
}
},
"dependencies": {
"battery-level": "^3.0.0",
"bootstrap": "^4.6.0",
"bootstrap-icons": "^1.5.0",
"cors": "^2.8.5",
"electron-log": "^4.4.1",
"express": "^4.17.1",
"ffi-napi": "^3.1.0",
"ip": "^1.1.5",
"jquery": "^3.6.0",
"mustache": "^4.2.0",
"nircmd": "^2.0.0",
"node-cmd": "^3.0.0",
"node-disk-info": "^1.3.0",
"os": "^0.1.2",
"os-utils": "0.0.14",
"qrcode": "^1.4.4",
"ref-napi": "^2.1.2",
"socket.io": "^2.4.1",
"win-audio": "^2.0.2",
"wmi-client": "^0.5.0"
},
"devDependencies": {
"electron": "^10.4.7",
"electron-builder": "^22.11.7"
}
}