-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "@jens_rossbach/node-red-sony-audio",
"version": "2.0.5",
"description": "Node-RED nodes for querying and controlling Sony audio devices",
"author": {
"name": "Jens-Uwe Rossbach",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"node-red",
"sony",
"audio",
"audio control api",
"remote control",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/jensrossbach/node-red-sony-audio"
},
"homepage": "https://jensrossbach.github.io/node-red-sony-audio",
"bugs": "https://github.com/jensrossbach/node-red-sony-audio/issues",
"dependencies": {
"node-fetch": "^2.6.11",
"node-ssdp": "^4.0.1",
"nunjucks": "^3.2.4",
"websocket": "^1.0.34",
"xml-js": "^1.6.11"
},
"devDependencies": {
"eslint": "^8.56.0"
},
"main": "none",
"scripts": {
"lint": "npx eslint \"nodes/**/*.js\""
},
"engines": {
"node": ">=12.0.0"
},
"node-red": {
"version": ">=1.0.0",
"nodes": {
"sonyaudio-device": "nodes/device.js",
"sonyaudio-control": "nodes/control.js",
"sonyaudio-notify": "nodes/notify.js"
}
}
}