-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.77 KB
/
package.json
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
{
"name": "react-native-animated-blur-view",
"version": "0.1.4",
"description": "React Native Animated Blur component",
"main": "src/index",
"types": "src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "yarn workspace react-native-animated-blur-view-example",
"test": "jest",
"typecheck": "tsc --noEmit",
"clean": "del-cli lib",
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android",
"blur",
"blur view",
"animate",
"animated",
"animate blur view",
"gradient"
],
"repository": "https://github.com/gevgasparyan/react-native-animated-blur-view",
"author": "Gevorg Gasparyan <[email protected]> (https://github.com/gevgasparyan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gevgasparyan/react-native-animated-blur-view/issues"
},
"homepage": "https://github.com/gevgasparyan/react-native-animated-blur-view#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"resolutions": {
"@types/react": "17.0.21"
},
"dependencies": {
"react-native-webview": "^13.6.2"
},
"devDependencies": {
"del-cli": "^5.0.0",
"react": "18.2.0",
"react-native": "0.72.5",
"react-native-webview": "^13.6.2",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"workspaces": [
"example"
]
}