generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"displayName": "Intercom",
"name": "homebridge-intercom",
"version": "1.2.0",
"description": "Manage your old intercom via Homebridge. \nIt consists of two accessories: a doorbell (for checking and notifyng if the intercom rings) and a lock mechanism (for opening the intercom door).",
"license": "Apache-2.0",
"homepage": "https://github.com/denisgabriel5/homebridge-intercom",
"repository": {
"type": "git",
"url": "git+https://github.com/denisgabriel5/homebridge-intercom.git"
},
"bugs": {
"url": "https://github.com/denisgabriel5/homebridge-intercom/issues"
},
"engines": {
"node": "^18.17.0 || ^20.9.0",
"homebridge": "^1.7.0"
},
"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"
},
"keywords": [
"homebridge-plugin",
"shelly",
"intercom",
"doorbell",
"lock"
],
"devDependencies": {
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"homebridge": "^1.8.2",
"nodemon": "^3.1.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2"
}
}