UNPKG

@seriousme/opifex

Version:

MQTT client & server for Deno & NodeJS

73 lines (72 loc) 2.01 kB
{ "name": "@seriousme/opifex", "version": "1.8.2", "description": "MQTT client & server for Deno & NodeJS", "type": "module", "scripts": { "test": "node --experimental-strip-types --test --test-skip-pattern='/^Deno/'", "prebuild": "rm -rf dist", "build": "npx -p typescript tsc --build", "format": "deno fmt", "preversion": "npm run test", "postversion": "jq '( { name:.name , version:.version, license:.license } + .deno)' package.json > deno.json", "postpostversion": "deno install" }, "keywords": [ "MQTT", "typescript", "mqtt-broker" ], "bin": { "mqtt": "dist/bin/mqtt.js", "demoServer": "dist/bin/demoServer.js" }, "files": [ "package.json", "README.md", "LICENSE.txt", "**/*.ts", "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts", "dist/**/*.d.ts.map" ], "exports": { "./tcpClient": "./dist/node/tcpClient.js", "./tcpServer": "./dist/node/tcpServer.js", "./server": "./dist/server/mod.js", "./client": "./dist/client/mod.js", "./persistence": "./dist/persistence/persistence.js", "./mqttConn": "./dist/mqttConn/mqttConn.js", "./mqttPacket": "./dist/mqttPacket/mod.js", "./utils": "./dist/utils/mod.js" }, "deno": { "exports": { "./tcpClient": "./deno/tcpClient.ts", "./tcpServer": "./deno/tcpServer.ts", "./server": "./server/mod.ts", "./client": "./client/mod.ts", "./persistence": "./persistence/persistence.ts", "./mqttConn": "./mqttConn/mqttConn.ts", "./mqttPacket": "./mqttPacket/mod.ts", "./utils": "./utils/mod.ts" }, "exclude": [ "dist" ] }, "author": "Hans Klunder", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/seriousme/opifex.git" }, "bugs": { "url": "https://github.com/seriousme/opifex/issues" }, "homepage": "https://github.com/seriousme/opifex#readme", "devDependencies": { "@types/node": "^22.13.1" } }