@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 +42 -0
- package/build/Release/@mcesystems+usb-device-listener.node +0 -0
- package/dist/index.js +31130 -0
- package/dist/index.js.map +7 -0
- package/dist/resources/bin/windows/AdbWinApi.dll +0 -0
- package/dist/resources/bin/windows/AdbWinUsbApi.dll +0 -0
- package/dist/resources/bin/windows/adb.exe +0 -0
- package/dist/resources/licenses/APACHE-2.0.txt +6 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/logic/adbDeviceKit.d.ts +55 -0
- package/dist/types/logic/adbDeviceKit.d.ts.map +1 -0
- package/dist/types/logic/devicesMonitor.d.ts +13 -0
- package/dist/types/logic/devicesMonitor.d.ts.map +1 -0
- package/dist/types/utils/adbPath.d.ts +24 -0
- package/dist/types/utils/adbPath.d.ts.map +1 -0
- package/dist/types/utils/debug.d.ts +7 -0
- package/dist/types/utils/debug.d.ts.map +1 -0
- package/package.json +58 -0
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
|
+
|
|
Binary file
|