-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 823 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
{
"name": "denon_avr_volume_control",
"version": "1.0.0",
"description": "Control your Denon AVR's volume from Volumio.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dale Rider",
"license": "GPL-3.0",
"repository": "https://github.com/charliesjc/denonavrvolume",
"volumio_info": {
"prettyName": "Denon AVR Volume Control",
"icon": "fas fa-volume-up",
"plugin_type": "system_hardware",
"architectures": [
"amd64",
"armhf",
"i386"
],
"os": [
"buster"
],
"details": "Controls volume on Denon AVR using Heos and TCP connection.",
"changelog": "First draft"
},
"engines": {
"node": ">=14",
"volumio": ">=3"
},
"dependencies": {
"fs-extra": "^0.28.0",
"heos-api": "^4.0.0",
"kew": "^0.7.0",
"v-conf": "^1.4.0"
}
}