-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "Keyboard_Overlay",
"version": "0.2.2",
"main": "main.js",
"dependencies": {
"app": "^0.1.0",
"browser-window": "^0.4.0",
"iohook": "^0.9.3"
},
"scripts": {
"rebuildnew": "npm rebuild --runtime=electron --target=12.0.0 --disturl=https://atom.io/download/atom-shell --abi=87",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder"
},
"build": {
"productName": "Keyboard_Overlay",
"appId": "com.keyboard.overlay.app",
"copyright": "MIT",
"directories": {
"output": "build"
},
"asar": false
},
"iohook": {
"targets": [
"electron-87"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64",
"ia32"
]
},
"devDependencies": {
"electron": "^12.0.0",
"electron-builder": "^23.0.3",
"node-abi": "^3.15.0"
}
}