-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 933 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
{
"name": "tuya-smart-taskbar",
"version": "1.0.3",
"private": true,
"description": "Windows Taskbar App for controlling Tuya Smart Switches",
"main": "main.js",
"type": "module",
"scripts": {
"start": "electron .",
"build": "node build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "nodemon --exec electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adib23704/Tuya-Smart-Taskbar.git"
},
"author": "Zahin A. Adib <adib23704@gmail.com> (https://adib.lol/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.11.1",
"electron": "^32.1.2",
"electron-builder": "^25.1.7",
"eslint": "^9.11.1",
"nodemon": "^3.1.7"
},
"dependencies": {
"@tuya/tuya-connector-nodejs": "^2.1.2",
"node-fetch": "^3.3.2"
},
"nodemonConfig": {
"events": {
"start": "cls || clear"
},
"ext": "js,html"
}
}