{
  "name": "mdns-listener-advanced",
  "version": "4.0.1",
  "description": "Advanced mDNS listener — discover and publish .local hostnames easily.",
  "author": "aminekun90",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aminekun90/mdns_listener_advanced.git"
  },
  "homepage": "https://github.com/aminekun90/mdns_listener_advanced#readme",
  "bugs": {
    "url": "https://github.com/aminekun90/mdns_listener_advanced/issues"
  },
  "funding": "https://github.com/sponsors/aminekun90",
  "type": "module",
  "imports": {
    "@/*": "./src/*"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "engines": {
    "node": ">=22.21.1"
  },
  "scripts": {
    "start": "npx -y tsx example.ts",
    "pack": "yarn build && npm pack",
    "test": "vitest run",
    "test:cov": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
    "clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
    "build:js": "tsup src/index.ts --format cjs,esm",
    "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
    "build": "yarn build:js && yarn build:types",
    "release": "yarn clean && yarn build && yarn test"
  },
  "devDependencies": {
    "@commitlint/cli": "^21.0.2",
    "@commitlint/config-conventional": "^21.0.2",
    "@types/multicast-dns": "^7.2.4",
    "@types/node": "^25.9.1",
    "@typescript-eslint/eslint-plugin": "^8.60.1",
    "@typescript-eslint/parser": "^8.60.1",
    "@vitest/coverage-v8": "^4.1.8",
    "@vitest/eslint-plugin": "^1.6.19",
    "eslint": "^10.4.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin": "^1.0.1",
    "eslint-plugin-prettier": "^5.5.6",
    "husky": "^9.1.7",
    "jiti": "^2.7.0",
    "lint-staged": "^17.0.7",
    "prettier": "^3.8.3",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.60.1",
    "vite-tsconfig-paths": "^6.1.1",
    "vitest": "^4.1.8"
  },
  "lint-staged": {
    "src/**/*.{ts,js,json,md}": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "keywords": [
    "mDNS",
    "Bonjour",
    ".local",
    "DNS",
    "Listener",
    "zeroconf",
    "multicast-dns",
    "network-discovery",
    "IoT"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "packageManager": "yarn@4.13.0",
  "resolutions": {
    "fast-uri": "^4.0.0",
    "flatted": "^3.4.2",
    "postcss": "^8.5.15",
    "picomatch": "^4.0.4",
    "ip-address": "^10.2.0"
  }
}
