@cleanuidev/react-native-scanner 1.0.0-beta.4 → 1.0.0-beta.6
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/Scanner.podspec +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**A powerful, native barcode and QR code scanner for React Native with configurable target area scanning. Limit scan area and restrict scanning to a specific region.**
|
|
6
6
|
|
|
7
|
-

|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@cleanuidev/react-native-scanner)
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -103,9 +103,9 @@ yarn add @cleanuidev/react-native-scanner@beta
|
|
|
103
103
|
To install a specific beta version:
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
|
-
npm install @cleanuidev/react-native-scanner@1.0.0-beta.
|
|
106
|
+
npm install @cleanuidev/react-native-scanner@1.0.0-beta.6
|
|
107
107
|
# or
|
|
108
|
-
yarn add @cleanuidev/react-native-scanner@1.0.0-beta.
|
|
108
|
+
yarn add @cleanuidev/react-native-scanner@1.0.0-beta.6
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
> **Note**: Once the library reaches stable release (1.0.0), you can install it without the `@beta` tag:
|
|
@@ -724,7 +724,7 @@ Yes! The target area is optional. By default, you can scan the entire camera vie
|
|
|
724
724
|
QR Code, Code128, Code39, EAN-13, EAN-8, UPC-A, UPC-E, Data Matrix, PDF417, Aztec, and ITF (Interleaved 2 of 5). See the [Barcode Formats](#barcode-formats) section for the complete list.
|
|
725
725
|
|
|
726
726
|
### Is it production-ready?
|
|
727
|
-
The library is currently in beta (1.0.0-beta.
|
|
727
|
+
The library is currently in beta (1.0.0-beta.6) but is stable and actively maintained. Production use is recommended with proper testing. We're working towards a stable 1.0.0 release.
|
|
728
728
|
|
|
729
729
|
### Does it work with React Native 0.83+?
|
|
730
730
|
Yes! The library supports React Native 0.83 and newer versions, including full support for the new architecture.
|
package/Scanner.podspec
CHANGED
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.authors = package["author"]
|
|
12
12
|
|
|
13
13
|
s.platforms = { :ios => min_ios_version_supported }
|
|
14
|
-
s.source = { :git => "https://github.com/
|
|
14
|
+
s.source = { :git => "https://github.com/cleanui-dev/react-native-scanner.git", :tag => "#{s.version}" }
|
|
15
15
|
|
|
16
16
|
s.source_files = "ios/**/*.{h,m,mm,swift,cpp}"
|
|
17
17
|
s.private_header_files = "ios/**/*.h"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleanuidev/react-native-scanner",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.6",
|
|
4
4
|
"description": "High-performance native barcode and QR code scanner for React Native. Scan barcodes in configurable target areas for precise detection. Built with CameraX & ML Kit (Android) and AVFoundation & Vision (iOS).",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
@@ -73,14 +73,14 @@
|
|
|
73
73
|
],
|
|
74
74
|
"repository": {
|
|
75
75
|
"type": "git",
|
|
76
|
-
"url": "git+https://github.com/
|
|
76
|
+
"url": "git+https://github.com/cleanui-dev/react-native-scanner.git"
|
|
77
77
|
},
|
|
78
78
|
"author": "Rahul Gupta <rahulgwebdev@gmail.com> (https://github.com/rahulgwebdev)",
|
|
79
79
|
"license": "MIT",
|
|
80
80
|
"bugs": {
|
|
81
|
-
"url": "https://github.com/
|
|
81
|
+
"url": "https://github.com/cleanui-dev/react-native-scanner/issues"
|
|
82
82
|
},
|
|
83
|
-
"homepage": "https://github.com/
|
|
83
|
+
"homepage": "https://github.com/cleanui-dev/react-native-scanner#readme",
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"registry": "https://registry.npmjs.org/",
|
|
86
86
|
"access": "public"
|