-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-red-contrib-virtual-smart-home",
"version": "4.0.0",
"type": "commonjs",
"description": "A Node-RED node that represents a 'virtual device' which can be controlled via Alexa. Requires the virtual smart home skill to be enabled for your Amazon account.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "npm shrinkwrap && echo \"module.exports = '$npm_package_version'\" > version.js && echo \"$npm_package_version\" > ./icons/version.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csuermann/node-red-contrib-virtual-smart-home.git"
},
"keywords": [
"Alexa",
"Echo",
"smart-home",
"node-red",
"virtual smart home",
"virtual device",
"Home Assistant",
"vsh"
],
"author": "Cornelius Suermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/csuermann/node-red-contrib-virtual-smart-home/issues"
},
"homepage": "https://github.com/csuermann/node-red-contrib-virtual-smart-home#readme",
"node-red": {
"version": ">=2.0.0",
"nodes": {
"vsh-connection": "connection.js",
"vsh-virtual-device": "virtual-device.js"
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"dependencies": {
"axios": "^1.7.7",
"bottleneck": "2.19.5",
"color-convert": "2.0.1",
"dayjs": "^1.11.13",
"debounce": "1.2.1",
"deep-eql": "4.1.3",
"deepmerge": "4.2.2",
"mqtt": "^5.10.1",
"semver": "^7.6.3"
},
"overrides": {
"fast-unique-numbers": "8.0.13",
"deepmerge": "4.2.2"
},
"engines": {
"node": ">=16.0.0"
}
}