fritz2mqtt 0.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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/index.js +2 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # fritz2mqtt
2
+
3
+ Placeholder package - work in progress.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // fritz2mqtt - placeholder, work in progress
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "fritz2mqtt",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder - work in progress. Connects AVM FRITZ! devices to MQTT.",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "author": "Sebastian Raff <sebastian@raff.club>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/hobbyquaker/fritz2mqtt.git"
11
+ },
12
+ "keywords": ["fritz", "fritzbox", "avm", "mqtt", "smarthome"],
13
+ "files": ["index.js", "README.md"]
14
+ }