-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "electron-taskbar-badge",
"version": "1.1.2",
"description": "An easy way for electron apps to add app badges to the taskbar to indicate notifications and other countable things, with maximum compatibility and customizability.",
"type": "commonjs",
"main": "./lib/cjs/index.js",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.mjs"
}
},
"module": "./lib/esm/index.mjs",
"types": "./types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"bugs": {
"url": "https://github.com/NexovaDev/electron-taskbar-badge/issues",
"email": "kkart2007@gmail.com"
},
"homepage": "https://github.com/NexovaDev/electron-taskbar-badge#readme",
"author": "NotBacon",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NexovaDev/electron-taskbar-badge"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"electron",
"windows",
"badge",
"taskbar",
"color",
"accent"
]
}