simple-mdns-announce
Version:
A NodeJS library to announce services using mdns.
41 lines (40 loc) • 943 B
JSON
{
"name": "simple-mdns-announce",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "npm run clean && npx --package=typescript@5.8 -- tsc",
"clean": "rm -rf ./dist/*",
"prepublishOnly": "npm run build"
},
"keywords": [
"mdns",
"dnssd"
],
"author": "Arne Goedeke",
"license": "MIT",
"type": "module",
"repository": "github:arneg/simple-mdns-announce",
"homepage": "https://github.com/arneg/simple-mdns-announce",
"files": [
"package.json",
"README.md",
"LICENSE",
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"!src/test/",
"!src/**/*_test.ts",
"!dist/test/",
"!dist/**/*_test.js",
"!dist/**/*_test.js.map",
"!dist/**/*_test.d.ts",
"!dist/**/*_test.d.ts.map"
],
"exports": {
".": "./dist/main.js"
},
"description": "A NodeJS library to announce services using mdns."
}