Skip to content

Commit 202d3f6

Browse files
committed
Initial v5 commit
0 parents  commit 202d3f6

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock = false

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
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

Comments
 (0)