-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 968 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 968 Bytes
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
{
"name": "meshcore-mqtt-broker",
"version": "1.0.0",
"description": "MeshCore MQTT broker with public key authentication",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "node --loader ts-node/esm src/server.ts",
"build": "tsc",
"start": "tsx src/server.ts"
},
"keywords": [
"meshcore",
"mqtt",
"broker"
],
"author": "Michael Hart <michaelhart@michaelhart.me> (https://github.com/michaelhart)",
"license": "MIT",
"dependencies": {
"@michaelhart/meshcore-decoder": "^0.2.1",
"aedes": "^0.51.3",
"airport-utils": "^1.0.23",
"better-sqlite3": "^12.4.1",
"dotenv": "^17.2.3",
"ini": "^5.0.0",
"tsx": "^4.19.2",
"websocket-stream": "^5.5.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/ini": "^4.1.1",
"@types/node": "^24.7.0",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}