generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"displayName": "free@home Local API",
"name": "homebridge-freeathome-local-api",
"version": "1.14.2",
"preview": false,
"description": "Control your free@home setup using the local API provided by your System Access Point",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pgerke/homebridge-freeathome-local-api.git"
},
"author": {
"email": "info@philipgerke.com",
"name": "Philip Gerke",
"url": "https://www.philipgerke.com"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/PhilipGerke"
},
"bugs": {
"url": "https://github.com/pgerke/homebridge-freeathome-local-api/issues"
},
"engines": {
"homebridge": ">=1.8.0 || ^2.0.0-beta.0",
"node": "^18.15.0 || ^20.15.1 || ^22.10.0"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"clean": "rimraf dist tsc-out",
"lint": "eslint . --fix --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"test": "node --import tsx jasmine.mjs",
"test:ci": "c8 npm run test",
"build": "npm run clean && tsc -p tsconfig.json",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"free@home",
"freeathome",
"buschjaeger",
"busch-jaeger",
"abb",
"smarthome"
],
"dependencies": {
"freeathome-local-api-client": "^1.4.11",
"rxjs": "^7.8.1",
"undici": "^7.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/events": "^3.0.3",
"@types/jasmine": "^5.1.5",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"homebridge": "^2.0.0-beta.0",
"jasmine": "^5.5.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "~5.7.2"
}
}