-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "homebridge-tahoma",
"displayName": "Homebridge TaHoma",
"version": "2.2.59",
"description": "Sample Platform plugin for TaHoma and Cozytouch services (Somfy,Atlantic,Thermor,Sauter): https://github.com/dubocr/homebridge-tahoma",
"author": "Romain DUBOC <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dubocr/homebridge-tahoma.git"
},
"bugs": {
"url": "https://github.com/dubocr/homebridge-tahoma/issues"
},
"engines": {
"node": ">=12.4.0",
"homebridge": ">=1.3.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build && npm version patch --m 'Release %s'",
"postpublish": "npm run clean"
},
"keywords": [
"homebridge-plugin",
"tahoma",
"cozytouch",
"somfy",
"connexoon"
],
"homepage": "https://github.com/dubocr/homebridge-tahoma#readme",
"dependencies": {
"moment": "^2.30.1",
"overkiz-client": "^0.1.85"
},
"devDependencies": {
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"homebridge": "^1.8.5",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"funding": {
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=L4X489MG7FUCN"
}
}