@bota-dev/react-native-sdk 0.0.2 → 0.0.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 +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# @bota/react-native-sdk
|
|
1
|
+
# @bota-dev/react-native-sdk
|
|
2
2
|
|
|
3
3
|
Official React Native SDK for Bota wearable devices.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @bota/react-native-sdk react-native-ble-plx
|
|
8
|
+
npm install @bota-dev/react-native-sdk react-native-ble-plx
|
|
9
9
|
# or
|
|
10
|
-
yarn add @bota/react-native-sdk react-native-ble-plx
|
|
10
|
+
yarn add @bota-dev/react-native-sdk react-native-ble-plx
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
### iOS Setup
|
|
@@ -44,7 +44,7 @@ cd ios && pod install
|
|
|
44
44
|
## Quick Start
|
|
45
45
|
|
|
46
46
|
```typescript
|
|
47
|
-
import { BotaClient } from '@bota/react-native-sdk';
|
|
47
|
+
import { BotaClient } from '@bota-dev/react-native-sdk';
|
|
48
48
|
|
|
49
49
|
// Initialize SDK
|
|
50
50
|
await BotaClient.configure({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bota-dev/react-native-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Bota React Native SDK for BLE device communication",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"react": ">=18.0.0",
|
|
48
48
|
"react-native": ">=0.72.0",
|
|
49
|
-
"react-native-ble-plx": "
|
|
50
|
-
"@react-native-async-storage/async-storage": "
|
|
49
|
+
"react-native-ble-plx": ">=3.0.0",
|
|
50
|
+
"@react-native-async-storage/async-storage": ">=1.21.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependenciesMeta": {
|
|
53
53
|
"react-native-ble-plx": {
|