package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "bonjour-service",
  3. "version": "1.4.4",
  4. "description": "A Bonjour/Zeroconf implementation in TypeScript",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "dependencies": {
  8. "fast-deep-equal": "^3.1.3",
  9. "multicast-dns": "^7.2.5"
  10. },
  11. "devDependencies": {
  12. "@types/multicast-dns": "^7.2.4",
  13. "@types/node": "^25.9.1",
  14. "@typescript-eslint/eslint-plugin": "^8.59.4",
  15. "@typescript-eslint/parser": "^8.59.4",
  16. "after-all": "^2.0.2",
  17. "eslint": "^10.4.0",
  18. "standard": "^17.1.2",
  19. "tape": "^5.9.0",
  20. "ts-node-dev": "^2.0.0",
  21. "typescript": "^6.0.3"
  22. },
  23. "resolutions": {
  24. "js-yaml": "^4.3.0",
  25. "minimatch": "^3.1.3",
  26. "flatted": "^3.4.2",
  27. "picomatch": "^2.3.2",
  28. "brace-expansion": "^1.1.14"
  29. },
  30. "scripts": {
  31. "test": "standard --fix && tape test/*.js",
  32. "build": "rm -rf ./dist && tsc --removeComments true",
  33. "dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
  34. "example:simple": "node examples/simple"
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "https://github.com/onlxltd/bonjour-service.git"
  39. },
  40. "keywords": [
  41. "bonjour",
  42. "zeroconf",
  43. "zero",
  44. "configuration",
  45. "mdns",
  46. "dns",
  47. "service",
  48. "discovery",
  49. "multicast",
  50. "broadcast",
  51. "dns-sd"
  52. ],
  53. "author": "ON LX Lited <team@onlx.ltd> (https://onlx.ltd)",
  54. "license": "MIT",
  55. "bugs": {
  56. "url": "https://github.com/onlxltd/bonjour-service/issues"
  57. },
  58. "homepage": "https://github.com/onlxltd/bonjour-service",
  59. "packageManager": "yarn@4.17.0"
  60. }