-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
39 lines (39 loc) · 952 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
{
"name": "macos-notification-state",
"version": "3.0.0",
"description": "macOS notification state as a native node addon",
"main": "lib/index.js",
"scripts": {
"preinstall": "node ensure-sdk.js",
"test": "standard && mocha ./test/test.js"
},
"repository": "https://github.com/felixrieseberg/macos-notification-state",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/felixrieseberg/macos-notification-state/blob/master/LICENSE"
}
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "3.0.0"
},
"author": {
"email": "[email protected]",
"name": "Felix Rieseberg",
"url": "http://www.felixrieseberg.com"
},
"keywords": [
"macos",
"darwin",
"CGSSessionScreenIsLocked",
"kCGSSessionOnConsoleKey",
"doNotDisturb",
"do not disturb"
],
"devDependencies": {
"mocha": "^9.2.0",
"standard": "^16.0.1"
}
}