-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.69 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-native-floating-tab",
"version": "1.0.21-beta.1",
"description": "A collection of simple animated floating bottom tabs for React Native. Supports React Navigation and Expo Router.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*",
"src/**/*"
],
"type": "module",
"scripts": {
"build": "expo-module build",
"lint": "expo-module lint -- --fix",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"prepare": "expo-module build && husky",
"commit": "commit"
},
"eslintConfig": {
"extends": "universe/native"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react-native",
"expo",
"react-native-floating-tab",
"floating-tab",
"bottom-tab",
"react-navigation",
"expo-router",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moeen-mahmud/react-native-floating-tab.git"
},
"bugs": {
"url": "https://github.com/moeen-mahmud/react-native-floating-tab/issues"
},
"author": "Moeen Mahmud <[email protected]> (https://github.com/moeen-mahmud)",
"license": "MIT",
"homepage": "https://github.com/moeen-mahmud/react-native-floating-tab#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@commitlint/prompt-cli": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.1.18",
"@types/react": "^18.0.25",
"conventional-changelog-atom": "^5.0.0",
"eslint": "8",
"eslint-config-universe": "^13.0.0",
"expo": "^51.0.37",
"expo-module-scripts": "^3.5.2",
"expo-modules-core": "^1.12.24",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-native": "^0.75.4",
"react-native-reanimated": "^3.15.4",
"react-native-svg": "^15.7.1"
},
"peerDependencies": {
"@react-navigation/native": "*",
"@react-navigation/bottom-tabs": "*",
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-reanimated": "*",
"react-native-svg": "*"
},
"peerDependenciesMeta": {
"@types/react-native": {
"optional": true
},
"@types/react": {
"optional": true
}
}
}