initial commit

This commit is contained in:
2025-11-16 15:57:18 +01:00
parent f97b165008
commit edd6c028e5
21 changed files with 673 additions and 15 deletions

25
package.json Normal file
View File

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