-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.16 KB
/
package.json
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
{
"name": "diont",
"version": "1.1.1",
"description": "Easy Service Discovery on Local Networks in pure Javascript / Typescript",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf ./dist/",
"example:listener": "ts-node-esm ./examples/listener.ts",
"example:server:1": "ts-node-esm ./examples/server_1.ts",
"example:server:2": "ts-node-esm ./examples/server_2.ts",
"example:server:3:broadcast": "ts-node-esm ./examples/server_3_broadcast.ts"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/willemmulder/Diont"
},
"keywords": [
"typescript",
"udp",
"multicast",
"broadcast",
"service",
"discovery",
"mdns",
"bonjour",
"diont",
"local",
"network"
],
"author": "Willem Mulder",
"contributors": [
"kennarddh",
"Keyvan Fatehi"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/willemmulder/Diont/issues"
},
"homepage": "https://github.com/willemmulder/Diont",
"devDependencies": {
"@types/node": "^20.2.5",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}