-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 894 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
38
39
{
"name": "homebridge-sonos-announcer",
"version": "1.0.3",
"description": "Announce things via Homebridge and Sonos",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc"
},
"files": [
"LICENSE",
"dist"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://[email protected]/amcdnl/homebridge-sonos-announcer.git"
},
"keywords": [
"homebridge-plugin"
],
"engines": {
"homebridge": ">=0.2.5"
},
"author": "Austin McDaniel",
"license": "MIT",
"bugs": {
"url": "https://github.com/amcdnl/homebridge-sonos-announcer/issues"
},
"homepage": "https://github.com/amcdnl/homebridge-sonos-announcer#readme",
"devDependencies": {
"@types/node": "^17.0.42",
"homebridge": "^1.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.3"
},
"dependencies": {
"@svrooij/sonos": "^2.4.1"
}
}