-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
{
"name": "show-myip",
"version": "1.0.0",
"description": "See your Public-IP and Local-IP",
"main": "index.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"package-linux": "electron-packager . show-myip --overwrite --asar --platform=linux --arch=x64 --icon=icon.png --prune=true --out=release-builds",
"package-win": "electron-packager . show-myip --overwrite --asar --platform=win32 --arch=ia32 --icon=build/icon.ico --prune=true --out=release-builds --version-string.CompanyName=HD --version-string.FileDescription=HD --version-string.ProductName=\"Show My IP\"",
"electron-toolkit": "electron ./node_modules/electron-toolkit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeribertoKubuntu/Show-MyIP.git"
},
"keywords": [
"network-monitoring",
"public-ip-address",
"public-ip",
"local-ip"
],
"author": "Heriberto Delgado",
"license": "MIT",
"bugs": {
"url": "https://github.com/HeribertoKubuntu/Show-MyIP/issues"
},
"homepage": "https://github.com/HeribertoKubuntu/Show-MyIP#readme",
"devDependencies": {
"electron": "^5.0.13",
"electron-builder": "^20.44.4",
"electron-packager": "^14.2.1",
"electron-toolkit": "^1.0.24",
"electron-winstaller": "^4.0.0"
},
"dependencies": {
"bootstrap": "4.3.1",
"clipboardy": "^2.1.0",
"cryptiles": "^4.1.3",
"ip": "^1.1.5",
"public-ip": "^3.1.0"
}
}