forked from homebridge-plugins/homebridge-smarthq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.79 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.79 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@homebridge-plugins/homebridge-smarthq",
"displayName": "SmartHQ",
"type": "module",
"version": "0.4.1",
"description": "The SmartHQ plugin allows you to interact with SmartHQ Devices in HomeKit and with Siri.",
"author": {
"name": "donavanbecker",
"url": "https://github.com/donavanbecker"
},
"maintainers": [
"donavanbecker"
],
"license": "ISC",
"funding": [
{
"type": "Paypal",
"url": "https://www.paypal.me/donavanbecker"
},
{
"type": "GitHub",
"url": "https://github.com/sponsors/donavanbecker"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge-plugins/homebridge-smarthq.git"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-smarthq/issues"
},
"keywords": [
"homebridge-plugin",
"oven",
"SmartHQ",
"homebridge"
],
"main": "dist/index.js",
"engines": {
"homebridge": "^1.9.0 || ^2.0.0 || ^2.0.0-beta.29",
"node": "^20 || ^22 || ^24"
},
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"watch": "npm run build && npm run plugin-ui && npm link && nodemon",
"plugin-ui": "rsync ./src/homebridge-ui/public/index.html ./dist/homebridge-ui/public/",
"build": "npm run clean && tsc && tsc-alias && npm run plugin-ui",
"prepublishOnly": "npm run lint && npm run build && npm run plugin-ui && npm run docs && npm run docs:lint",
"postpublish": "npm run clean",
"clean": "shx rm -rf ./dist",
"test": "vitest run",
"test:watch": "vitest watch",
"test-coverage": "npm run test -- --coverage",
"docs": "typedoc",
"docs:lint": "typedoc --emit none --treatWarningsAsErrors"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^2.1.0",
"axios": "^1.11.0",
"axios-cookiejar-support": "^6.0.4",
"axios-form-data": "^1.1.1",
"cheerio": "^1.1.2",
"homebridge": "^1.11.0",
"lodash": "^4.17.21",
"openid-client": "^5.7.0",
"rxjs": "^7.8.2",
"tough-cookie": "^6.0.0",
"undici": "^7.15.0",
"ws": "^8.18.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "*"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.20",
"@types/node": "^24.3.0",
"@types/semver": "^7.7.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.12",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}