-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "update-dynamic-dns-with-vpn",
"type": "module",
"version": "2.1.1",
"description": "Automatically update a dynamic DNS registration based on a given network interface, such as VPN",
"exports": "src/app.js",
"scripts": {
"start": "node src/app.js",
"postinstall": "node src/install-service.js",
"uninstall": "node src/uninstall-service.js",
"show": "node src/show-interfaces.js"
},
"bin": {
"showip": "src/show-interfaces.js"
},
"keywords": [
"dns",
"dynamic dns",
"vpn",
"network",
"network interface",
"monitor",
"windows"
],
"author": "blu3mania <blu3mania@hotmail.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/blu3mania/update-dynamic-dns-with-vpn#readme",
"bugs": {
"url": "https://github.com/blu3mania/update-dynamic-dns-with-vpn/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/blu3mania/update-dynamic-dns-with-vpn.git"
},
"engines": {
"node": ">=16.0.0"
},
"os": [
"win32"
],
"dependencies": {
"chalk": "^5.0.1",
"ffi-napi": "^4.0.3",
"node-notifier": "^10.0.1",
"node-windows": "^1.0.0-beta.8",
"windows-network-interface-monitor": "^1.0.1"
},
"devDependencies": {}
}