mqttpc 2.0.0 → 2.0.1
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/config.js +3 -0
- package/package.json +2 -2
package/config.js
CHANGED
|
@@ -41,6 +41,9 @@ export default parseConfig({
|
|
|
41
41
|
pkg,
|
|
42
42
|
options: OPTIONS,
|
|
43
43
|
defaults: {name: 'pc'},
|
|
44
|
+
// it publishes status items (pid, exit, stdout), so --json-payloads means something here —
|
|
45
|
+
// but it announces no Home Assistant entities, so those two options would configure nothing
|
|
46
|
+
publishesDiscovery: false,
|
|
44
47
|
check,
|
|
45
48
|
examples: [
|
|
46
49
|
['$0 -u mqtt://broker -f /etc/mqttpc/pc.procs.json', 'run in the foreground'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mqttpc",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Control processes on a host via MQTT. Follows the mqtt-smarthome architecture.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"serviceExtra": []
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"mqtt-interfaces-core": "^0.
|
|
57
|
+
"mqtt-interfaces-core": "^0.15.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@eslint/js": "^9",
|