-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "netprobe",
"main": "netprobe.js",
"author": {
"name": "Madhav nair",
"email": "madhavnair700@gmail.com",
"url": "https://maxtac.tech"
},
"description": "Internet Connection Monitor using JavaScript. FOSS by MaxTac.",
"version": "2.0.0",
"scripts": {
"build": "esbuild netprobe.js --bundle --platform=node --outfile=netprobe-out.js",
"start": "node netprobe.js",
"package": "npx exe exe.json"
},
"dependencies": {
"@angablue/exe": "^3.2.4",
"child_process": "^1.0.2",
"docker": "^1.0.0",
"is-online": "^11.0.0",
"nexe": "^4.0.0-rc.6",
"node-notifier": "^10.0.1",
"os": "^0.1.2",
"systray": "^1.0.5",
"systray2": "^2.1.4",
"webpack": "^5.97.1"
},
"properties": {
"FileDescription": "{package:description}",
"ProductName": "{package:name}",
"LegalCopyright": "{package:author.name}",
"OriginalFilename": "{package:name}"
},
"pkg": {
"scripts": "netprobe.js",
"assets": "/assets/",
"outputPath": "dist",
"targets": [
"node23-linux-x64",
"node23-macos-x64",
"node23-win-x64"
]
},
"devDependencies": {
"electron": "^33.3.1",
"electron-packager": "^17.1.2",
"nw": "^0.94.1-1",
"nw-builder": "^4.13.8"
},
"bin": {
"execute": "netprobe.js"
}
}