-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 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
{
"name": "piqsl",
"productName": "PiQSL",
"version": "1.0.0",
"description": "PiQSL is a Digital Mode for 32x32 pixel art transmission over HF",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^33.0.2",
"electron-rebuild": "^3.2.9"
},
"dependencies": {
"d3": "^7.9.0",
"electron-store": "^10.0.0",
"fabric": "^6.4.3",
"feather-icons": "^4.29.2",
"lowdb": "^7.0.1",
"uikit": "^3.21.13"
},
"build": {
"mac": {
"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
},
"icon": "src/icons/app-icon.icns",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": false
},
"linux": {
"icon": "src/icons/app-icon.png",
"target": [
"AppImage",
"deb"
]
},
"win": {
"icon": "src/icons/app-icon.ico",
"target": [
"nsis",
"zip"
]
}
}
}