We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 202d3f6Copy full SHA for 202d3f6
.gitignore
@@ -0,0 +1 @@
1
+node_modules
.npmrc
+package-lock = false
package.json
@@ -0,0 +1,25 @@
+{
2
+ "//": "TODO: author, contributors",
3
+ "name": "mqtt",
4
+ "version": "5.0.0",
5
+ "description": "A MQTT client library",
6
+ "keywords": [
7
+ "mqtt",
8
+ "publish",
9
+ "subscribe",
10
+ "publish-subscribe",
11
+ "publish/subscribe",
12
+ "client",
13
+ "broker"
14
+ ],
15
+ "homepage": "https://github.com/mqttjs/MQTT.js#readme",
16
+ "bugs": "https://github.com/mqttjs/MQTT.js/issues",
17
+ "license": "MIT",
18
+ "type": "module",
19
+ "exports": "./dist/index.js",
20
+ "engines": {
21
+ "node": ">=14.0.0"
22
+ },
23
+ "files": ["dist"],
24
+ "types": "dist"
25
+}
0 commit comments