react-native-screenshot-aware 1.2.1 → 1.3.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 +8 -0
- package/package.json +9 -9
- package/lib/module/package.json +0 -1
package/README.md
CHANGED
|
@@ -19,6 +19,14 @@
|
|
|
19
19
|
- 📱 Supports Android 14+ (API level 34+) and iOS 14+
|
|
20
20
|
- 🏗️ Supports the new architecture for React Native
|
|
21
21
|
|
|
22
|
+
|
|
23
|
+
## Compatibility
|
|
24
|
+
|
|
25
|
+
### Version Compatibility
|
|
26
|
+
|
|
27
|
+
- React Native <0.76, use version 1.2.2 or below 1.2.0 of this package (1.2.1 is buggy)
|
|
28
|
+
- React Native >=0.76, use version 1.3.0 or later
|
|
29
|
+
|
|
22
30
|
## Installation
|
|
23
31
|
|
|
24
32
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-screenshot-aware",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "React Native module for real-time screenshot detection on Android and iOS",
|
|
5
5
|
"source": "src/index.tsx",
|
|
6
6
|
"main": "lib/commonjs/index.js",
|
|
@@ -61,34 +61,34 @@
|
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@biomejs/biome": "1.9.4",
|
|
64
|
-
"@commitlint/cli": "19.
|
|
65
|
-
"@commitlint/config-conventional": "19.
|
|
64
|
+
"@commitlint/cli": "19.8.0",
|
|
65
|
+
"@commitlint/config-conventional": "19.8.0",
|
|
66
66
|
"@react-native-community/cli": "15.1.3",
|
|
67
67
|
"@semantic-release/changelog": "6.0.3",
|
|
68
68
|
"@semantic-release/git": "10.0.1",
|
|
69
69
|
"@testing-library/react-native": "13.2.0",
|
|
70
70
|
"@types/jest": "29.5.14",
|
|
71
|
-
"@types/react": "19.0.
|
|
71
|
+
"@types/react": "19.0.12",
|
|
72
72
|
"@types/react-test-renderer": "19.0.0",
|
|
73
|
-
"commitlint": "19.
|
|
73
|
+
"commitlint": "19.8.0",
|
|
74
74
|
"del-cli": "6.0.0",
|
|
75
75
|
"expo": "^52.0.37",
|
|
76
76
|
"husky": "9.1.7",
|
|
77
77
|
"jest": "29.7.0",
|
|
78
78
|
"react": "19.0.0",
|
|
79
|
-
"react-native": "0.78.
|
|
80
|
-
"react-native-builder-bob": "0.
|
|
79
|
+
"react-native": "0.78.1",
|
|
80
|
+
"react-native-builder-bob": "0.38.0",
|
|
81
81
|
"react-test-renderer": "19.0.0",
|
|
82
82
|
"semantic-release": "24.2.3",
|
|
83
83
|
"turbo": "2.4.4",
|
|
84
84
|
"typescript": "5.8.2"
|
|
85
85
|
},
|
|
86
86
|
"resolutions": {
|
|
87
|
-
"@types/react": "19.0.
|
|
87
|
+
"@types/react": "19.0.12"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"react": "*",
|
|
91
|
-
"react-native": "
|
|
91
|
+
"react-native": ">=0.76"
|
|
92
92
|
},
|
|
93
93
|
"peerDependenciesMeta": {
|
|
94
94
|
"expo": {
|
package/lib/module/package.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"module"}
|