@bobfrankston/miscinfo 1.0.18 → 1.0.19
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 +8 -1
- package/ports.js +1 -23
- package/settings.json +0 -23
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/miscinfo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "Browser-compatible shared constants including port definitions and MQTT configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js",
|
|
9
|
+
"index.d.ts",
|
|
10
|
+
"ports.js",
|
|
11
|
+
"ports.d.ts",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
7
14
|
"scripts": {
|
|
8
15
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
16
|
"build": "tsc",
|
package/ports.js
CHANGED
|
@@ -20,7 +20,7 @@ export const ports = {
|
|
|
20
20
|
rmfprod: 9081, // Secondary port for production version (debugging)
|
|
21
21
|
rmfbeta: 9082, // Secondary port for beta version (debugging)
|
|
22
22
|
rmfalpha: 9083, // Secondary port for the alpha version
|
|
23
|
-
shim: 9084, //
|
|
23
|
+
shim: 9084, // Reserved; no listener at present
|
|
24
24
|
shims: 9085, //
|
|
25
25
|
jvport: 9180, // These are copied in hlib
|
|
26
26
|
jvports: 9143,
|
|
@@ -76,26 +76,4 @@ export const mqtt = {
|
|
|
76
76
|
},
|
|
77
77
|
URL: `mqtt://${mqttHost}.${default_fqdn}:${mqttPort}`
|
|
78
78
|
};
|
|
79
|
-
// <port port="9070" name="Listen for Hubitat (experimental)" />
|
|
80
|
-
// <port port="9080" name="birdbox1:80" />
|
|
81
|
-
// <port port="9081" name="Home port for home.rmf.vc et al" />
|
|
82
|
-
// <port port="9082" name="Home port for home.rmf.vc et al for SSL" />
|
|
83
|
-
// <port port="9083" name="Web Sockets for home control" />
|
|
84
|
-
// <port port="9084" name="Insteon Shim" />
|
|
85
|
-
// <port port="9085" name="Insteon Shim SSL (reserved)" />
|
|
86
|
-
// <port port="9086" name="shimmer" />
|
|
87
|
-
// <port port="9087" name="shimmer SSL (not yet)" />
|
|
88
|
-
// <port port="9088" name="TCP For NodeSQLAssit" />
|
|
89
|
-
// <port port="9089" name="TCP Shelly Listener (HTLog)" />
|
|
90
|
-
// <port port="9389" name="Birdbox1:3389" />
|
|
91
|
-
// <port port="9920" name="HC XML" />
|
|
92
|
-
// <!-- <port port="9994" name="HC TCP Listener" /> -->
|
|
93
|
-
// <port port="9800-9899" name="HC TCP Listener" />
|
|
94
|
-
// <!-- <port port="9960-9969" name="HC TCP Listener" /> -->
|
|
95
|
-
// <port port="9995" name="HC xcmd" />
|
|
96
|
-
// <port port="9996" name="HC Manual" />
|
|
97
|
-
// <port port="9997" name="HC HTTP" />
|
|
98
|
-
// <port port="9970-9979" name="HC Telnet" />
|
|
99
|
-
// <port port="9901" name="Lightify Client1" />
|
|
100
|
-
//
|
|
101
79
|
//# sourceMappingURL=ports.js.map
|
package/settings.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"workbench.colorTheme": "Visual Studio 2019 Dark",
|
|
3
|
-
"workbench.colorCustomizations": {
|
|
4
|
-
"activityBar.activeBackground": "#77a8ff",
|
|
5
|
-
"activityBar.background": "#77a8ff",
|
|
6
|
-
"activityBar.foreground": "#15202b",
|
|
7
|
-
"activityBar.inactiveForeground": "#15202b99",
|
|
8
|
-
"activityBarBadge.background": "#df0050",
|
|
9
|
-
"activityBarBadge.foreground": "#e7e7e7",
|
|
10
|
-
"commandCenter.border": "#15202b99",
|
|
11
|
-
"sash.hoverBorder": "#77a8ff",
|
|
12
|
-
"statusBar.background": "#4488ff",
|
|
13
|
-
"statusBar.foreground": "#15202b",
|
|
14
|
-
"statusBarItem.hoverBackground": "#1168ff",
|
|
15
|
-
"statusBarItem.remoteBackground": "#4488ff",
|
|
16
|
-
"statusBarItem.remoteForeground": "#15202b",
|
|
17
|
-
"titleBar.activeBackground": "#4488ff",
|
|
18
|
-
"titleBar.activeForeground": "#15202b",
|
|
19
|
-
"titleBar.inactiveBackground": "#4488ff99",
|
|
20
|
-
"titleBar.inactiveForeground": "#15202b99"
|
|
21
|
-
},
|
|
22
|
-
"peacock.color": "4488ff"
|
|
23
|
-
}
|