initial commit

This commit is contained in:
2025-11-14 20:38:30 +01:00
parent ff91337962
commit ce1710dbd2
22 changed files with 1055 additions and 1 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "nanokvm-mqtt",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch ./src/index.ts",
"build": "tsdown",
"start": "bun run ./dist/index.mjs"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"mqtt": "^5.14.1",
"tsdown": "^0.16.4",
"tslog": "^4.10.2",
"zod": "^4.1.12"
}
}