forked from t-mullen/wififox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.35 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
{
"name": "wififox",
"version": "1.0.4",
"description": "A simple tool for bypassing WiFi gatekeepers.",
"main": "main.js",
"bin": "main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps && patch-package",
"start": "npm run electron:serve",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "electron . --serve",
"electron:local": "electron .",
"electron:linux": "electron-builder build --linux",
"electron:windows": "electron-builder build --windows",
"electron:mac": "electron-builder build --mac",
"electron:linux:publish": "npm run electron:linux -- --publish always",
"electron:windows:publish": "npm run electron:windows -- --publish always",
"electron:mac:publish": "npm run electron:mac -- --publish always",
"audit-dependencies": "audit-ci --config .audit-ci.json"
},
"author": "",
"license": "GPLv3",
"dependencies": {
"is-elevated": "^3.0.0",
"cidr-range": "^2.0.0",
"default-gateway": "^6.0.3",
"node-wifi": "^2.0.16",
"node-fetch": "^2.6.7",
"spoof": "^2.0.4"
},
"devDependencies": {
"electron": "^17.0.0",
"electron-builder": "22.14.13",
"electron-builder-squirrel-windows": "^22.14.13",
"electron-download": "^4.1.1",
"electron-notarize": "^1.1.1",
"patch-package": "^6.4.7"
}
}