forked from Brandawg93/homebridge-levoit-air-purifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.57 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
{
"description": "Made for Core 200S/300S/400S/400S Pro/600S",
"name": "homebridge-levoit-air-purifier",
"displayName": "Levoit Air Purifier",
"main": "dist/index.js",
"license": "Apache-2.0",
"version": "2.0.0",
"private": false,
"bugs": {
"url": "https://github.com/RaresAil/homebridge-levoit-air-purifier/issues"
},
"repository": {
"url": "git://github.com/RaresAil/homebridge-levoit-air-purifier.git",
"type": "git"
},
"funding": {
"url": "https://revolut.me/nicolanuyi",
"type": "individual"
},
"scripts": {
"remove-link": "npm -g remove homebridge-levoit-air-purifier",
"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",
"start": "npm run build && nodemon"
},
"devDependencies": {
"@types/async-lock": "^1.4.1",
"@types/big.js": "^6.2.1",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"homebridge": "^1.6.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"homebridge": ">=1.3.5",
"node": ">=16"
},
"dependencies": {
"async-lock": "^1.4.0",
"axios": "^1.5.1",
"big.js": "^6.2.1"
},
"resolutions": {
"semver": "^7.5.2"
},
"keywords": [
"homebridge-plugin",
"air-purifier",
"400s Pro",
"vesync",
"levoit",
"200s",
"300s",
"400s",
"600s"
]
}