@mcesystems/adb-kit 1.0.0

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 ADDED
@@ -0,0 +1,42 @@
1
+ # adb-kit
2
+
3
+ ADB (Android Debug Bridge) toolkit for device management.
4
+
5
+ ## Description
6
+
7
+ This package provides utilities for interacting with Android devices through the Android Debug Bridge (ADB).
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ pnpm install
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```typescript
18
+ import adbKit from 'adb-kit';
19
+
20
+ // TODO: Add usage examples
21
+ ```
22
+
23
+ ## Development
24
+
25
+ ```bash
26
+ # Build the package
27
+ pnpm build
28
+
29
+ # Run tests
30
+ pnpm test
31
+
32
+ # Watch mode for tests
33
+ pnpm test:watch
34
+
35
+ # Clean build artifacts
36
+ pnpm clean
37
+ ```
38
+
39
+ ## License
40
+
41
+ ISC
42
+