-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
64
65
66
67
{
"name": "webapp-display",
"private": true,
"main": "src/main.js",
"version": "4.11.6",
"scripts": {
"package:win": "electron-builder build --win",
"package:mac": "electron-builder build --mac",
"package:linux": "electron-builder build --linux",
"package": "electron-builder build --win --mac --linux tar.gz:armv7l tar.gz:arm64 tar.gz:x64",
"format": "prettier --write src",
"lint": "eslint src",
"start": "electron ."
},
"build": {
"appId": "webapp-display",
"asar": true,
"directories": {
"output": "build"
},
"files": [
"src"
],
"win": {
"target": [
"dir"
],
"signAndEditExecutable": false
},
"mac": {
"target": [
"dir"
],
"hardenedRuntime": false,
"extendInfo": {
"NSMicrophoneUsageDescription": "Please give us access to your microphone",
"NSCameraUsageDescription": "Please give us access to your camera",
"com.apple.security.device.audio-input": true,
"com.apple.security.device.camera": true
}
},
"linux": {
"target": [
"dir"
]
}
},
"engines": {
"node": "18.18"
},
"dependencies": {
"@artcom/bootstrap-client": "^4.6.0",
"@artcom/logger": "^1.6.0",
"@electron-toolkit/utils": "^4.0.0",
"lodash.frompairs": "^4.0.1",
"minimist": "^1.2.5",
"prettier": "^2.5.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"electron": "^34.2.0",
"electron-builder": "^25.1.8",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0"
}
}