-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
127 lines (127 loc) · 3.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "homebridge-homeconnect",
"displayName": "HomeConnect",
"version": "1.2.3",
"description": "Home Connect home appliances plugin for Homebridge",
"license": "ISC",
"keywords": [
"Homebridge",
"homebridge-plugin",
"HomeConnect",
"appliance",
"kitchen",
"Bosch",
"Balay",
"Constructa",
"Siemens",
"Gaggenau",
"NEFF",
"Pitsos",
"Profilo",
"Thermador",
"cleaningrobot",
"coffeemachine",
"coffeemaker",
"cookprocessor",
"cooktop",
"dishwasher",
"dryer",
"freezer",
"fridge",
"fridgefreezer",
"hob",
"hood",
"oven",
"refrigerator",
"roxxter",
"warmingdrawer",
"washer",
"washerdryer",
"winecooler"
],
"author": {
"name": "Alexander Thoukydides",
"url": "https://www.thouky.co.uk/"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/thoukydides"
},
{
"type": "paypal",
"url": "https://paypal.me/thoukydides"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/thouky"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/thouky"
}
],
"repository": {
"type": "git",
"url": "git://github.com/thoukydides/homebridge-homeconnect.git"
},
"bugs": {
"url": "https://github.com/thoukydides/homebridge-homeconnect/issues"
},
"type": "module",
"main": "dist/index.js",
"engines": {
"node": "^22.0.0 || ^20.9.0 || ^18.20.0",
"homebridge": "^1.8.0|| ^2.0.0-beta.0"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.3",
"chalk": "^4.1.2",
"node-persist": "^3.1.3",
"semver": "^7.6.3",
"ts-interface-checker": "^1.0.2",
"undici": "^7.1.0"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@octokit/core": "^6.1.2",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@tsconfig/node18": "^18.2.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^18.19.68",
"@types/node-persist": "^3.1.8",
"@types/semver": "^7.5.8",
"browserify": "^17.0.1",
"copyfiles": "^2.4.1",
"eslint": "^9.16.0",
"esmify": "^2.1.1",
"globals": "^15.13.0",
"homebridge": "^2.0.0-beta.23",
"homebridge-config-ui-x": "^4.65.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-interface-builder": "^0.3.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"scripts": {
"build-checkers": "mkdir -p ./src/ti && ts-interface-builder -c -o ./src/ti ./src/*-types.ts && tsx bin/ts-interface-post.ts ./src/ti",
"build-static": "copyfiles -u 1 -e './**/*.ts' './src/homebridge-ui/public/**' ./dist",
"build-tsc": "tsc -p ./src && tsc -p ./src/homebridge-ui/public/",
"build-ui": "browserify -d -p esmify dist/homebridge-ui/public/client.js -o dist/homebridge-ui/public/bundle.js",
"build": "npm run build-checkers && npm run build-tsc && npm run build-ui && npm run build-static",
"clean": "rimraf ./dist",
"lint": "eslint eslint.config.mjs 'bin/**/*.ts' 'src/**/*.ts' --max-warnings=0",
"watch": "nodemon",
"test": "tsx bin/test-startup.ts",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build && npm run lint"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}