-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "light-on-tray",
"version": "1.0.0",
"description": "Light on Tray is a small utility that allows control over smart lightbulbs conveniently from the system tray",
"keywords": [
"electron-app",
"electron",
"yeelight",
"tray-utility",
"light-control",
"smarthome",
"iot",
"smartbulb"
],
"homepage": "https://github.com/jNullj/light-on-tray#readme",
"bugs": {
"url": "https://github.com/jNullj/light-on-tray/issues"
},
"main": "src/main.js",
"scripts": {
"start": "electron .",
"start:debug": "electron . -debug",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "jNullj (https://github.com/jNullj)",
"repository": {
"type": "git",
"url": "github:jNullj/light-on-tray"
},
"license": "MIT",
"dependencies": {
"electron": "28.1.4",
"ssdp2": "1.1.2",
"yeelight2": "1.3.8"
},
"devDependencies": {
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1"
}
}