react-native-sg-basic-carousel 1.0.7 → 1.0.9
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 +5 -20
- package/package.json +12 -7
package/README.md
CHANGED
|
@@ -1,22 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
This library is moved to
|
|
2
|
+
https://www.npmjs.com/package/rn-snap-carousel-sg
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
Anyone using this library please migrate your changes to
|
|
5
|
+
https://www.npmjs.com/package/rn-snap-carousel-sg
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<img width="347" alt="Screenshot 2024-10-11 at 12 36 06 AM" src="https://github.com/user-attachments/assets/303b35d4-425f-4910-992c-9df671a98dd1">
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
IOS
|
|
21
|
-
|
|
22
|
-
<img width="400" alt="Screenshot 2024-10-11 at 12 46 37 AM" src="https://github.com/user-attachments/assets/40d68bb1-2beb-44bb-93ca-a53a17d1caa9">
|
|
7
|
+
No additional changes are required
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-sg-basic-carousel",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "An npm package to display basic carousel on react native applications",
|
|
5
5
|
"main": "index.tsx",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"test": "npm run test"
|
|
7
|
+
"test": "npm run test",
|
|
8
|
+
"lint": "eslint .",
|
|
9
|
+
"typecheck": "tsc --noEmit"
|
|
8
10
|
},
|
|
9
11
|
"repository": {
|
|
10
12
|
"type": "git",
|
|
@@ -23,10 +25,13 @@
|
|
|
23
25
|
"url": "https://github.com/siddhant124/react-native-sg-basic-carousel/issues"
|
|
24
26
|
},
|
|
25
27
|
"homepage": "https://github.com/siddhant124/react-native-sg-basic-carousel#readme",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"react": ">=18.0.0",
|
|
30
|
+
"react-native": ">=0.75.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/react": "^19.2.0",
|
|
34
|
+
"@types/react-native": "^0.73.0",
|
|
35
|
+
"typescript": "^5.6.0"
|
|
31
36
|
}
|
|
32
37
|
}
|