-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
{
"private": false,
"displayName": "Winix Air Purifiers",
"name": "homebridge-winix-purifiers",
"version": "2.1.4",
"description": "Homebridge plugin for Winix air purifiers",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/regaw-leinad/homebridge-winix-purifiers.git"
},
"bugs": {
"url": "https://github.com/regaw-leinad/homebridge-winix-purifiers/issues"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/dwager0"
},
"engines": {
"node": "^18 || ^20 || ^22",
"homebridge": "^1.7.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"files": [
"dist",
"config.schema.json"
],
"scripts": {
"build": "yarn clean && yarn build:ui && yarn build:server && cp -R ./src/homebridge-ui/ui/dist ./dist/homebridge-ui/public",
"build:server": "tsc",
"build:ui": "yarn --cwd ./src/homebridge-ui/ui build",
"ci": "yarn ci:server && yarn ci:ui",
"ci:server": "yarn --frozen-lockfile",
"ci:ui": "yarn --cwd ./src/homebridge-ui/ui --frozen-lockfile",
"clean": "rm -rf ./dist && rm -rf ./src/homebridge-ui/ui/dist",
"encrypt-password": "ts-node ./script/encrypt-password.ts",
"install:ui": "yarn --cwd ./src/homebridge-ui/ui",
"lint": "yarn lint:server && yarn lint:ui",
"lint:server": "eslint ./src/**.ts --max-warnings=0",
"lint:ui": "eslint ./src/homebridge-ui/**/**.ts --max-warnings=0",
"postversion": "git push && git push --tags && yarn clean",
"prepublishOnly": "yarn validate",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate": "yarn lint && yarn build && yarn test",
"version": "yarn validate"
},
"keywords": [
"homebridge-plugin",
"c545",
"c909",
"c610",
"winix",
"winix c545",
"winix c909",
"winix c610",
"winix purifier",
"winix air purifier"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "1.0.3",
"async-lock": "1.4.1",
"winix-api": "1.6.3"
},
"devDependencies": {
"@types/async-lock": "1.4.2",
"@types/node": "20.11.0",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vitest/coverage-v8": "2.1.8",
"eslint": "8.0.1",
"homebridge": "1.8.5",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vitest": "2.1.8"
}
}