motion-on-native 1.0.5 → 1.0.7

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -5
  3. package/package.json +19 -8
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Mohd Bilal
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,18 +1,19 @@
1
- # React Native Motion
1
+ # Motion on Native
2
2
 
3
3
  Framer Motion-like animations for React Native using Reanimated.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install react-native-motion
8
+ npm install motion-on-native
9
9
  # or
10
- yarn add react-native-motion
10
+ yarn add motion-on-native
11
11
  ```
12
12
 
13
13
  ## Prerequisites
14
14
 
15
15
  This package requires:
16
+
16
17
  - `react-native-reanimated` >= 3.0.0
17
18
  - `react-native` >= 0.60.0
18
19
  - `react` >= 16.8.0
@@ -20,7 +21,7 @@ This package requires:
20
21
  ## Usage
21
22
 
22
23
  ```tsx
23
- import { NativeMotion } from 'react-native-motion';
24
+ import { NativeMotion } from 'motion-on-native';
24
25
 
25
26
  // Basic animation
26
27
  <NativeMotion.View
@@ -76,4 +77,4 @@ transition={{ type: 'timing', duration: 300 }}
76
77
 
77
78
  ## License
78
79
 
79
- MIT
80
+ MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "motion-on-native",
3
- "version": "1.0.5",
4
- "description": "Framer Motion-like animations for React Native using Reanimated",
3
+ "version": "1.0.7",
4
+ "description": "Framer Motion-inspired animation library for React Native with Reanimated. Easy spring animations, gestures, and transitions for mobile apps.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "scripts": {
@@ -11,10 +11,20 @@
11
11
  },
12
12
  "keywords": [
13
13
  "react-native",
14
- "animation",
15
14
  "framer-motion",
15
+ "animation",
16
16
  "reanimated",
17
- "motion"
17
+ "motion",
18
+ "spring-animation",
19
+ "mobile-animation",
20
+ "react-native-animation",
21
+ "gesture",
22
+ "transition",
23
+ "ui-animation",
24
+ "native-animation",
25
+ "ios",
26
+ "android",
27
+ "typescript"
18
28
  ],
19
29
  "author": "Mohd Bilal",
20
30
  "license": "MIT",
@@ -30,14 +40,15 @@
30
40
  },
31
41
  "files": [
32
42
  "lib",
33
- "README.md"
43
+ "README.md",
44
+ "LICENSE"
34
45
  ],
35
46
  "repository": {
36
47
  "type": "git",
37
- "url": "https://github.com/mohd-Bilal-exe/native-motion.git"
48
+ "url": "https://github.com/mohd-Bilal-exe/motion-on-native.git"
38
49
  },
39
50
  "bugs": {
40
- "url": "https://github.com/mohd-Bilal-exe/native-motion/issues"
51
+ "url": "https://github.com/mohd-Bilal-exe/motion-on-native/issues"
41
52
  },
42
- "homepage": "https://github.com/mohd-Bilal-exe/native-motion#readme"
53
+ "homepage": "https://github.com/mohd-Bilal-exe/motion-on-native#readme"
43
54
  }