-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.54 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
{
"name": "homey-xcomfort-bridge",
"version": "1.0.1",
"description": "xComfort Bridge integration with multiple drivers (bridge, dimming actuator, room)",
"main": "app.mjs",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tsc --noEmit",
"start": "npm run build && homey app run",
"dev": "npm run build && homey app run --clean",
"validate": "npm run build && homey app validate",
"test": "npm run build && NODE_OPTIONS=--import=./tests/register-loader.mjs node --test --test-name-pattern=. .homeybuild/tests/*.test.mjs",
"test:coverage": "npm run build && NODE_OPTIONS=--import=./tests/register-loader.mjs node --test --experimental-test-coverage --test-name-pattern=. .homeybuild/tests/*.test.mjs",
"check": "npm test && homey app validate",
"clean": "rm -rf .homeybuild"
},
"keywords": ["xcomfort", "bridge", "dimming", "room", "automation", "homey"],
"author": "Erlend Hansen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ehsky/homey-xcomfort-bridge.git"
},
"homepage": "https://github.com/ehsky/homey-xcomfort-bridge#readme",
"engines": {
"node": ">=22.0.0"
},
"xcomfort": {
"clientType": "shl-app",
"clientId": "c956e43f999f8004",
"clientVersion": "3.0.0"
},
"dependencies": {
"ws": "^8.18.0",
"node-forge": "^1.3.2"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"@types/node-forge": "^1.3.11",
"homey-apps-sdk-v3-types": "^0.3.8"
}
}