-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "musiccast2mqtt",
"version": "0.0.2",
"description": "Gateway between Yamaha Musiccast system and MQTT",
"main": "lib/index.js",
"bin": {
"musiccast2mqtt": "lib/index.js"
},
"preferGlobal": true,
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/jonaseickhoff/musiccast2mqtt"
},
"keywords": [
"mqtt",
"smarthome",
"yamaha",
"musiccast"
],
"author": "Jonas Eickhoff <jonas02401@gmail.com> (https://github.com/jonaseickhoff/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonaseickhoff/musiccast2mqtt/issues"
},
"homepage": "https://github.com/jonaseickhoff/musiccast2mqtt",
"dependencies": {
"@root/request": "^1.6.1",
"mqtt": "^2.16.0",
"peer-ssdp": "0.0.5",
"serilogger": "^0.3.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.11.1",
"@types/yargs": "^15.0.5",
"typescript": "^4.0.2"
},
"yargs": {
"boolean-negation": false
}
}