-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "react-native-motionify",
"version": "1.0.3",
"description": "A lightweight library for smooth, scroll-driven UI with Reanimated 3.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "bun run build",
"release": "node scripts/publish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dennytosp/react-native-motionify.git"
},
"keywords": [
"react-native",
"motionify",
"animation",
"reanimated",
"scroll",
"gestures",
"animated-value",
"responsive-ui"
],
"author": "mad.dinh",
"license": "MIT",
"bugs": {
"url": "https://github.com/dennytosp/react-native-motionify/issues"
},
"homepage": "https://github.com/dennytosp/react-native-motionify#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-reanimated": ">=3.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"typescript": "^5.0.0"
},
"files": [
"lib",
"src",
"README.md"
]
}