react-native-boxes 1.0.20 → 1.2.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 +16 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1 +1,17 @@
|
|
|
1
1
|
# React Native Boxes
|
|
2
|
+
|
|
3
|
+
### Install
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm install react-native-boxes
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
Make sure you have following dependencies installed. The versions can be satisfying version but must not have ny breaking changes.
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
"@expo/vector-icons": "^13.0.0",
|
|
14
|
+
"react": "^18.2.0",
|
|
15
|
+
"react-native": "^0.73.6",
|
|
16
|
+
"react-native-safe-area-context": "^4.9.0"
|
|
17
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-boxes",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A react native library for rapid development of UI using boxes",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,9 +25,13 @@
|
|
|
25
25
|
"homepage": "https://github.com/shiveshnavin/react-native-boxes#readme",
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"devDependencies": {
|
|
28
|
+
"@expo/vector-icons": "^13.0.0",
|
|
29
|
+
"react": "^18.2.0",
|
|
30
|
+
"react-native": "^0.73.6",
|
|
31
|
+
"react-native-safe-area-context": "^4.9.0",
|
|
28
32
|
"@tsconfig/react-native": "^3.0.4",
|
|
29
33
|
"@types/jest": "^29.5.12",
|
|
30
34
|
"@types/react": "^18.2.71",
|
|
31
35
|
"typescript": "^5.4.3"
|
|
32
36
|
}
|
|
33
|
-
}
|
|
37
|
+
}
|