-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.88 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
{
"description": "Homebridge plugin for Levoit Humidifiers",
"name": "homebridge-levoit-humidifiers",
"displayName": "Levoit Humidifiers",
"main": "dist/index.js",
"license": "Apache-2.0",
"version": "1.14.1",
"private": false,
"bugs": {
"url": "https://github.com/pschroeder89/homebridge-levoit-humidifiers/issues"
},
"repository": {
"url": "git://github.com/pschroeder89/homebridge-levoit-humidifiers.git",
"type": "git"
},
"scripts": {
"remove-link": "npm -g remove homebridge-levoit-humidifiers",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon",
"lint": "eslint src/**.ts --max-warnings=0",
"build": "rimraf ./dist && tsc"
},
"devDependencies": {
"@types/async-lock": "^1.1.3",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"homebridge": "^1.3.5",
"nodemon": "^2.0.13",
"rimraf": "^3.0.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"engines": {
"homebridge": ">=1.3.5",
"node": ">=18.16.0"
},
"dependencies": {
"async-lock": "^1.3.0",
"axios": "^0.24.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"yarn": "^1.22.21"
},
"keywords": [
"homebridge-plugin",
"humidifier",
"classic 300s",
"vesync",
"levoit",
"300s",
"oasis",
"lv600s",
"homebridge"
],
"types": "./dist/index.d.ts",
"homepage": "https://github.com/pschroeder89/homebridge-levoit-humidifiers#readme",
"author": "Paul Schroeder",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/pschroeder89"
},
{
"type": "paypal",
"url": "https://www.paypal.me/pschroeder89"
}
]
}