-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
62 lines (62 loc) · 1.42 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
62
{
"name": "sonos2mqtt",
"version": "0.0.0-development",
"description": "A smarthome bridge between your sonos system and a mqtt server.",
"main": "lib/index.js",
"license": "MIT",
"author": "Stephan van Rooij <[email protected]> (https://svrooij.nl)",
"bin": {
"sonos2mqtt": "lib/index.js"
},
"keywords": [
"sonos",
"mqtt-smarthome",
"mqtt",
"music control"
],
"preferGlobal": true,
"scripts": {
"build": "tsc",
"serve-docs": "docker-compose -f ./docs/docker-compose.yml up jekyll",
"test": "eslint ./src/*.ts"
},
"dependencies": {
"@svrooij/sonos": "^2.5.0-beta.7",
"mqtt": "4.2.8",
"serilogger": "^0.3.1",
"yalm": "4.1.0",
"yargs": "17.1.1"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/node": "^14.14.21",
"@types/yargs": "17.0.2",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.1",
"eslint": "7.32.0",
"pre-commit": "1.2.2",
"typescript": "3.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/svrooij/sonos2mqtt.git"
},
"bugs": {
"url": "https://github.com/svrooij/sonos2mqtt/issues"
},
"pre-commit": [
"build",
"test"
],
"funding": {
"type": "Github sponsor",
"url": "https://github.com/sponsors/svrooij"
},
"files": [
"README.md",
"LICENSE",
"lib/**/*.ts",
"lib/**/*.js"
]
}