-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 941 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
{
"name": "mac-window-select",
"version": "1.0.1",
"description": "Prompt the user to select a window on macOS, mimicking the native screenshot utility",
"repository": "https://github.com/karaggeorge/mac-window-select",
"author": {
"name": "George Karagkiaouris",
"email": "[email protected]",
"url": "https://gkaragkiaouris.tech"
},
"license": "MIT",
"scripts": {
"test": "xo",
"build": "swift build --configuration=release && mv .build/release/window-select .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"electron-util": "^0.13.0",
"execa": "^3.4.0",
"macos-version": "^5.2.0",
"p-cancelable": "^2.0.0"
},
"devDependencies": {
"xo": "^0.25.3"
},
"files": [
"index.js",
"window-select"
],
"keywords": [
"macos",
"swift",
"window",
"select",
"prompt",
"screencapture"
],
"engines": {
"node": ">=8"
}
}