iobroker.homewizard 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "iobroker.homewizard",
3
+ "version": "0.1.0",
4
+ "description": "ioBroker adapter for HomeWizard Energy devices — real-time energy monitoring via API v2 with WebSocket push",
5
+ "author": {
6
+ "name": "krobi",
7
+ "email": "krobi@power-dreams.com"
8
+ },
9
+ "homepage": "https://github.com/krobipd/ioBroker.homewizard",
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "ioBroker",
13
+ "homewizard",
14
+ "energy",
15
+ "p1",
16
+ "meter",
17
+ "smartmeter",
18
+ "websocket"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/krobipd/ioBroker.homewizard"
23
+ },
24
+ "engines": {
25
+ "node": ">=20",
26
+ "npm": ">=10"
27
+ },
28
+ "dependencies": {
29
+ "@iobroker/adapter-core": "^3.3.2",
30
+ "bonjour-service": "^1.3.0",
31
+ "ws": "^8.18.1"
32
+ },
33
+ "devDependencies": {
34
+ "@alcalzone/release-script": "^5.1.1",
35
+ "@alcalzone/release-script-plugin-iobroker": "^5.1.2",
36
+ "@alcalzone/release-script-plugin-license": "^5.1.1",
37
+ "@alcalzone/release-script-plugin-manual-review": "^5.1.1",
38
+ "@iobroker/adapter-dev": "^1.5.0",
39
+ "@iobroker/eslint-config": "^2.2.0",
40
+ "@iobroker/testing": "^5.2.2",
41
+ "@tsconfig/node20": "^20.1.9",
42
+ "@types/iobroker": "npm:@iobroker/types@^7.1.0",
43
+ "@types/node": "^25.5.2",
44
+ "@types/ws": "^8.18.1",
45
+ "rimraf": "^6.1.3",
46
+ "source-map-support": "^0.5.21",
47
+ "ts-node": "^10.9.2",
48
+ "typescript": "~5.9.3"
49
+ },
50
+ "files": [
51
+ "admin",
52
+ "build",
53
+ "io-package.json",
54
+ "LICENSE",
55
+ "README.md"
56
+ ],
57
+ "scripts": {
58
+ "prepare": "test -d build || npm run build",
59
+ "prebuild": "rimraf build",
60
+ "build:ts": "build-adapter ts",
61
+ "build": "build-adapter ts",
62
+ "build:test": "rm -rf ./build && tsc -p tsconfig.test.json",
63
+ "watch": "build-adapter ts --watch",
64
+ "check": "tsc --noEmit",
65
+ "test:package": "npm run build:test && mocha --exit \"build/test/testPackageFiles.js\"",
66
+ "test:integration": "npm run build:test && mocha --exit \"build/test/**/*.js\"",
67
+ "test": "npm run build:test && mocha --exit \"build/test/**/*.js\"",
68
+ "translate": "translate-adapter",
69
+ "lint": "eslint",
70
+ "lint:fix": "eslint --fix",
71
+ "release": "release-script"
72
+ },
73
+ "bugs": {
74
+ "url": "https://github.com/krobipd/ioBroker.homewizard/issues"
75
+ },
76
+ "main": "build/main.js"
77
+ }