-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 971 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
{
"name": "not-the-systray",
"version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/simonbuchan/node-not-the-systray",
"repository": {
"type": "git",
"url": "https://github.com/simonbuchan/node-not-the-systray.git"
},
"keywords": [
"windows",
"icon",
"notify",
"notification",
"systray",
"system tray",
"tray",
"napi"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"notify_icon.node"
],
"scripts": {
"prepack": "node build rebuild",
"install": "echo Using prebuilt binary",
"clean": "node build clean",
"rebuild": "node build rebuild",
"build": "node build build"
},
"dependencies": {
"@types/node": "*"
},
"devDependencies": {
"node-gyp": "^5.0.3"
},
"os": [
"win32"
]
}