forked from michaelahern/homebridge-airthings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
55
56
57
58
59
{
"name": "homebridge-airthings",
"displayName": "Homebridge Airthings",
"type": "module",
"version": "1.4.0",
"description": "A Homebridge plugin for Airthings air quality monitors via the Airthings Consumer API.",
"keywords": [
"airthings",
"homebridge",
"homebridge-plugin"
],
"homepage": "https://github.com/michaelahern/homebridge-airthings",
"bugs": {
"url": "http://github.com/michaelahern/homebridge-airthings/issues"
},
"license": "ISC",
"author": "Michael Ahern <[email protected]>",
"funding": {
"type": "paypal",
"url": "https://paypal.me/michaeljahern"
},
"files": [
"config.schema.json",
"dist"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/michaelahern/homebridge-airthings.git"
},
"scripts": {
"eslint": "eslint src/**.ts --max-warnings=0",
"eslint-fix": "eslint src/**.ts --max-warnings=0 --fix",
"lint": "npm run eslint",
"lint-fix": "npm run eslint-fix",
"fmt": "npm run lint-fix",
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"axios": "~1.7",
"simple-oauth2": "~5.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2",
"@types/node": "^20",
"@types/simple-oauth2": "~5.0",
"eslint": "^9",
"homebridge": "~1.8",
"rimraf": "^6",
"typescript": "~5.5",
"typescript-eslint": "^8"
},
"engines": {
"homebridge": "^1.7.0 || ^2.0.0-beta.0",
"node": "^18 || ^20"
}
}