-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "macos-key-cast",
"version": "1.4.0",
"description": "Log keys pressed on macOS. Useful for screen recordings and presentations.",
"repository": "https://github.com/karaggeorge/macos-key-cast",
"author": {
"name": "George Karagkiaouris",
"email": "[email protected]",
"url": "https://gkaragkiaouris.tech"
},
"bin": {
"macos-key-cast": "./key-cast",
"key-cast": "./key-cast"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"key-cast"
],
"scripts": {
"test": "xo && tsd",
"build": "swift build --configuration=release && mv .build/release/key-cast .",
"prepublishOnly": "npm run build"
},
"keywords": [
"macos",
"swift",
"log",
"cast",
"keys",
"keyboard",
"keylogger",
"record",
"screen"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"electron-util": "^0.13.1",
"execa": "^4.0.0",
"macos-accessibility-permissions": "^1.0.1",
"macos-version": "^5.2.0",
"p-cancelable": "^2.0.0"
},
"devDependencies": {
"tsd": "^0.11.0",
"xo": "^0.25.3"
}
}