-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 Bytes
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
{
"name": "node-red-contrib-tuya-smart-device",
"version": "5.4.0",
"description": "A node-red module to interact with the tuya smart devices",
"repository": "https://github.com/vinodsr/node-red-contrib-tuya-smart-device",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Vinod S R",
"license": "MIT",
"homepage": "https://github.com/vinodsr/node-red-contrib-tuya-smart-device",
"keywords": [
"node-red",
"tuya",
"tuyapi",
"tuya device"
],
"node-red": {
"version": ">=2.5.0",
"nodes": {
"tuya-smart-device": "src/tuya-smart-device.js",
"tuya-smart-device-generic": "src/tuya-smart-device-generic.js"
}
},
"dependencies": {
"tuyapi": "~7.7.0"
},
"engines": {
"node": ">=16.0.0"
}
}