-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-native-gradient-mask",
"version": "0.0.1-beta.3",
"description": "A native gradient mask component for React Native with Reanimated animation support. Supports iOS, Android, and Web platforms.",
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"gradient",
"mask",
"fade",
"opacity",
"animation",
"reanimated",
"native",
"ios",
"android",
"web",
"gradient-mask",
"fade-effect",
"scroll-fade",
"list-mask"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CS6/react-native-gradient-mask.git"
},
"bugs": {
"url": "https://github.com/CS6/react-native-gradient-mask/issues"
},
"author": {
"name": "DaYuan Lin",
"email": "dayuan.code@gmail.com",
"url": "https://github.com/CS6"
},
"license": "MIT",
"homepage": "https://github.com/CS6/react-native-gradient-mask#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/CS6"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"dependencies": {},
"devDependencies": {
"@types/react": "~19.1.0",
"expo": "^54.0.27",
"expo-module-scripts": "^5.0.8",
"react-native": "0.81.5",
"react-native-reanimated": "^3.0.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-reanimated": ">=3.0.0"
},
"peerDependenciesMeta": {
"react-native-reanimated": {
"optional": true
}
}
}