-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.23 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
{
"name": "adb-proxy-browser",
"version": "0.8.0",
"description": "A customized browser that routes traffic through ADB tunnel to phone proxy (Clash)",
"main": "src/main/index.js",
"scripts": {
"start": "electron .",
"prepare:platform-tools": "node scripts/prepare-platform-tools.js",
"build": "electron-builder --config electron-builder.yml",
"build:win": "electron-builder --config electron-builder.yml --win",
"build:mac": "electron-builder --config electron-builder.yml --mac",
"build:linux": "electron-builder --config electron-builder.yml --linux",
"debug:screenshot": "electron scripts/debug-screenshot.js",
"debug:auto": "electron scripts/debug-auto.js",
"test:browser": "electron scripts/test-browser-features.js"
},
"author": {
"name": "Bahtya",
"email": "bahtya@github.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bahtya/adb-proxy-browser.git"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"adbkit": "^2.11.1",
"ssh2": "^1.17.0",
"usb": "^2.11.0"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
}
}