forked from chasenicholl/homebridge-weatherflow-tempest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"private": false,
"displayName": "Homebridge WeatherFlow Tempest",
"name": "homebridge-weatherflow-tempest",
"version": "4.1.1",
"description": "Exposes WeatherFlow Tempest Station data as Temperature Sensors, Light Sensors, Humidity Sensors and Fan Sensors (for Wind Speed).",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/chasenicholl/homebridge-weatherflow-tempest.git"
},
"bugs": {
"url": "https://github.com/chasenicholl/homebridge-weatherflow-tempest/issues"
},
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1"
},
"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",
"WeatherFlow",
"Tempest"
],
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"follow-redirects": "^1.14.7",
"homebridge": "^1.1.3",
"minimist": "^1.2.7",
"nodemon": "^3.0.1",
"rimraf": "^6.0.1",
"ts-node": "^10.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "1.7.7"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/chasenicholl"
}
}