@eavfw/react-native-curved-tab-bar
Version:
A beautiful animated curved tab bar for React Native apps with customizable floating action button
163 lines (162 loc) • 4.07 kB
JSON
{
"name": "@eavfw/react-native-curved-tab-bar",
"version": "1.0.1",
"description": "A beautiful animated curved tab bar for React Native apps with customizable floating action button",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build",
"release": "semantic-release",
"example": "npm --prefix example",
"bootstrap": "npm run example && npm install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react-native",
"expo",
"tab-bar",
"curved-tab-bar",
"animated",
"bottom-navigation",
"navigation",
"react-native-component",
"android",
"ios",
"fab"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eavfw/react-native-curved-tab-bar.git"
},
"author": "Poul Kjeldager <poul@kjeldager.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eavfw/react-native-curved-tab-bar/issues"
},
"homepage": "https://github.com/eavfw/react-native-curved-tab-bar#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-reanimated": ">=2.0.0",
"react-native-safe-area-context": ">=3.0.0",
"react-native-svg": ">=12.0.0"
},
"dependencies": {
"expo-haptics": ">=12.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@react-native-community/eslint-config": "^3.0.2",
"@react-navigation/bottom-tabs": "7.2.1",
"@storybook/addon-actions": "8.6.3",
"@storybook/addon-essentials": "8.6.3",
"@storybook/addon-links": "8.6.3",
"@storybook/react": "8.6.3",
"@types/jest": "^28.1.2",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"commitlint": "^17.0.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.0",
"react-native-builder-bob": "^0.20.4",
"react-native-reanimated": "^3.0.0",
"react-native-safe-area-context": "^4.0.0",
"react-native-svg": "^13.0.0",
"semantic-release": "24.2.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"typescript": "^5.8.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"semantic-release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"pkgRoot": ".",
"access": "public"
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}