-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1009 Bytes
/
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
{
"name": "alfred-show-network-info",
"version": "0.3.1",
"description": "Alfred 4 Workflow - See network info and discover local devices",
"license": "MIT",
"repository": "jeppestaerk/alfred-show-network-info",
"author": {
"name": "Jeppe Stærk",
"email": "dev@staerk.io",
"url": "https://github.com/jeppestaerk/alfred-show-network-info"
},
"type": "module",
"exports": "./index.js",
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"index.js",
"icon.png",
"info.plist",
"icons/*.png"
],
"keywords": [
"alfred",
"alfred-workflow",
"alfred4",
"alfred4-workflow",
"alfy",
"local-ip",
"public-ip",
"gateway-ip",
"network-discovery"
],
"engines": {
"node": ">=14.13.1"
},
"dependencies": {
"alfy": "^0.12.2",
"default-gateway": "^6.0.3",
"internal-ip": "^7.0.0",
"local-devices": "^3.2.0",
"public-ip": "^4.0.4"
},
"devDependencies": {}
}