-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 835 Bytes
/
package.json
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
{
"name": "meshtastic-proxy",
"version": "0.1.0",
"type": "module",
"description": "Proxy Meshtastic MQTT messages and locations to other services.",
"main": "index.js",
"repository": "git@github.com:Georepublic/meshtastic-proxy.git",
"author": "Daniel Kastl <daniel@georepublic.de>",
"license": "GPL-3.0-or-later",
"dependencies": {
"@meshtastic/js": "^2.3.7-5",
"axios": "^1.7.8",
"dotenv": "^16.4.6",
"duckdb": "^1.1.3",
"mqtt": "^5.10.3",
"typescript": "^5.7.2",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/mqtt": "^2.5.0",
"@types/node": "^22.10.1",
"@types/winston": "^2.4.4",
"tsx": "^4.19.2"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
}
}