-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@smartiot-stack/iot-bridge",
"version": "1.0.0",
"description": "A CLI tool for Serial and MQTT IoT communication with a built-in dashboard, mqtt-broker, rest-api server, database, interactive command line interface, logs manager and more.",
"repository": {
"type": "git",
"url": "git+https://github.com/smartiot-stack/iot-bridge.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"iot-bridge": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "./index.js",
"keywords": [
"iot",
"com port",
"COM",
"UART",
"cli",
"mqtt",
"serial",
"serial port",
"arduino",
"esp32",
"logs",
"data logging",
"dashboard",
"hardware"
],
"author": "Abhishek Sharma",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"aedes": "^1.0.2",
"bcrypt": "^6.0.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"cors": "^2.8.6",
"env-paths": "^4.0.0",
"express": "^5.2.1",
"filesize": "^11.0.16",
"inquirer": "^13.4.2",
"jsonwebtoken": "^9.0.3",
"net": "^1.0.2",
"ora": "^9.4.0",
"serialport": "^13.0.0",
"socket.io": "^4.8.3",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1"
},
"files": [
"index.js",
"api.js",
"auth.js",
"bridge.js",
"database.js",
"events.js",
"mqtt.js",
"paths.js",
"middleware.js",
"serial.js",
"public/"
]
}