forked from Julusian/bonjour-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@julusian/bonjour-service",
"version": "1.4.2",
"description": "A Bonjour/Zeroconf implementation in TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"dns-packet": "^5.2.2",
"fast-deep-equal": "^3.1.3",
"thunky": "^1.0.2"
},
"devDependencies": {
"@types/dns-packet": "^5.6.5",
"@types/node": "^16.18.103",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"after-all": "^2.0.2",
"eslint": "^8.15.0",
"standard": "^17.0.0",
"tape": "^5.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.4.4"
},
"scripts": {
"test": "standard --fix && tape test/*.js",
"build": "tsc --removeComments true",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"example:simple": "node examples/simple"
},
"repository": {
"type": "git",
"url": "https://github.com/julusian/bonjour-service.git"
},
"keywords": [
"bonjour",
"zeroconf",
"zero",
"configuration",
"mdns",
"dns",
"service",
"discovery",
"multicast",
"broadcast",
"dns-sd"
],
"author": "ON LX Lited <team@onlx.ltd> (https://labs.onlx.ltd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/julusian/bonjour-service/issues"
},
"homepage": "https://github.com/julusian/bonjour-service",
"files": [
"/dist",
"/types",
"/multicast-dns"
],
"packageManager": "yarn@1.22.22+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}