@vaishnavkm/flutterbridge 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ bunx @vaishnavkm/flutterbridge
|
|
|
37
37
|
Navigate to your Flutter project directory and run:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
|
|
40
|
+
bridge
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
A QR code will appear in your terminal. Scan it with the FlutterBridge companion app to connect.
|
|
@@ -49,18 +49,18 @@ and encode that address in the QR so phones can connect over WiFi.
|
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
51
|
# Choose a specific device
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
bridge --device <device-id>
|
|
53
|
+
bridge -d <device-id>
|
|
54
54
|
|
|
55
55
|
# Print only the QR code (no extra logs)
|
|
56
|
-
|
|
56
|
+
bridge --qr-only
|
|
57
57
|
|
|
58
58
|
# Print machine-readable JSON output
|
|
59
|
-
|
|
59
|
+
bridge --json
|
|
60
60
|
|
|
61
61
|
# Pass additional Flutter flags
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
bridge -- --release
|
|
63
|
+
bridge -- --flavor production
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
## Requirements
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaishnavkm/flutterbridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Bridge your Flutter code to your phone instantly. Wireless development with QR code pairing.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
|
+
},
|
|
12
15
|
"keywords": [
|
|
13
16
|
"flutter",
|
|
14
17
|
"mobile",
|
|
@@ -34,12 +37,10 @@
|
|
|
34
37
|
"engines": {
|
|
35
38
|
"node": ">=18.0.0"
|
|
36
39
|
},
|
|
40
|
+
"packageManager": "pnpm@10.33.0",
|
|
37
41
|
"dependencies": {
|
|
38
42
|
"chalk": "^4.1.2",
|
|
39
43
|
"qrcode-terminal": "^0.12.0",
|
|
40
44
|
"ws": "^8.21.0"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
44
45
|
}
|
|
45
|
-
}
|
|
46
|
+
}
|