forked from amcdnl/homebridge-sonos-announcer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"displayName": "Homebridge Sonos Announcer",
"name": "@jakspalding/homebridge-sonos-announcer",
"version": "2.1.0",
"description": "Announce via Sonos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jak/homebridge-sonos-announcer.git"
},
"bugs": {
"url": "https://github.com/jak/homebridge-sonos-announcer/issues"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"prepare": "husky install"
},
"keywords": [
"homebridge-plugin",
"sonos",
"announce",
"notification",
"notifier"
],
"dependencies": {
"@svrooij/sonos": "^2.4.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"homebridge": "^1.3.9",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"access": "public"
}
}