homebridge-valor-fireplace 2.0.1 → 2.0.2
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/.claude/settings.local.json +34 -0
- package/config.schema.json +9 -4
- package/package.json +8 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(claude --teleport session_01Qb4v5WnSRTLZcG3xnaszQN)"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"disabledMcpjsonServers": [
|
|
8
|
+
"HyperContext",
|
|
9
|
+
"sosumi",
|
|
10
|
+
"apple-docs",
|
|
11
|
+
"playwright",
|
|
12
|
+
"ios-simulator",
|
|
13
|
+
"fastmail",
|
|
14
|
+
"Craft",
|
|
15
|
+
"parcel-api-mcp",
|
|
16
|
+
"ynab",
|
|
17
|
+
"word-headless",
|
|
18
|
+
"travel-hub"
|
|
19
|
+
],
|
|
20
|
+
"enabledMcpjsonServers": [
|
|
21
|
+
"HyperContext",
|
|
22
|
+
"sosumi",
|
|
23
|
+
"apple-docs",
|
|
24
|
+
"playwright",
|
|
25
|
+
"ios-simulator",
|
|
26
|
+
"fastmail",
|
|
27
|
+
"Craft",
|
|
28
|
+
"parcel-api-mcp",
|
|
29
|
+
"ynab",
|
|
30
|
+
"word-headless",
|
|
31
|
+
"travel-hub"
|
|
32
|
+
],
|
|
33
|
+
"enableAllProjectMcpServers": true
|
|
34
|
+
}
|
package/config.schema.json
CHANGED
|
@@ -6,6 +6,12 @@
|
|
|
6
6
|
"schema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
9
|
+
"name": {
|
|
10
|
+
"title": "Name",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"default": "Valor Fireplace",
|
|
13
|
+
"description": "Plugin name as displayed in the Homebridge log."
|
|
14
|
+
},
|
|
9
15
|
"debug": {
|
|
10
16
|
"title": "Debug Mode",
|
|
11
17
|
"type": "boolean",
|
|
@@ -32,17 +38,16 @@
|
|
|
32
38
|
"name": {
|
|
33
39
|
"title": "Name",
|
|
34
40
|
"type": "string",
|
|
35
|
-
"placeholder": "Fireplace"
|
|
36
|
-
"required": true
|
|
41
|
+
"placeholder": "Fireplace"
|
|
37
42
|
},
|
|
38
43
|
"ip": {
|
|
39
44
|
"title": "IP Address",
|
|
40
45
|
"type": "string",
|
|
41
46
|
"placeholder": "192.168.x.x",
|
|
42
|
-
"required": true,
|
|
43
47
|
"description": "Static IP address of the fireplace WiFi controller"
|
|
44
48
|
}
|
|
45
|
-
}
|
|
49
|
+
},
|
|
50
|
+
"required": ["name", "ip"]
|
|
46
51
|
}
|
|
47
52
|
}
|
|
48
53
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Valor Fireplace",
|
|
3
3
|
"name": "homebridge-valor-fireplace",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.2",
|
|
5
5
|
"description": "Controls Valor Fireplace WiFi controllers, connecting real fire with Homebridge.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": {
|
|
@@ -28,7 +28,13 @@
|
|
|
28
28
|
"prepublishOnly": "npm run lint && npm run build"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
|
-
"homebridge-plugin"
|
|
31
|
+
"homebridge-plugin",
|
|
32
|
+
"homebridge",
|
|
33
|
+
"valor",
|
|
34
|
+
"fireplace",
|
|
35
|
+
"heater",
|
|
36
|
+
"smart-home",
|
|
37
|
+
"home-automation"
|
|
32
38
|
],
|
|
33
39
|
"dependencies": {},
|
|
34
40
|
"devDependencies": {
|