-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 962 Bytes
/
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
{
"name": "keystroke-visualizer",
"version": "1.0.0",
"description": "App for presentation your key presses.",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"pack": "npm run clean && electron-builder --dir",
"dist": "npm run clean && electron-builder",
"clean": "rm -rf dist"
},
"keywords": [
"keystroke",
"keyboard",
"keypress",
"onscreen",
"visualizer"
],
"author": "Inomdzhon Mirdzhamolov",
"license": "ISC",
"devDependencies": {
"electron": "^8.2.3",
"electron-builder": "^22.5.1"
},
"dependencies": {
"iohook": "^0.6.5"
},
"build": {
"productName": "Keystroke Visualizer",
"files": [
"./assets",
"./server",
"./client",
"./main.js"
]
},
"iohook": {
"targets": [
"electron-76"
],
"platforms": [
"darwin"
],
"arches": [
"x64"
]
}
}