UNPKG

react-native-animated-header-flat-list

Version:

A React Native FlatList component with an animated collapsible header, featuring parallax effects, smooth title transitions, sticky component support, and customizable styles. Built with TypeScript and separate background/content layers in header.

168 lines (167 loc) 4.34 kB
{ "name": "react-native-animated-header-flat-list", "version": "1.6.1", "description": "A React Native FlatList component with an animated collapsible header, featuring parallax effects, smooth title transitions, sticky component support, and customizable styles. Built with TypeScript and separate background/content layers in header.", "source": "./src/index.tsx", "main": "./lib/module/index.js", "types": "./lib/typescript/src/index.d.ts", "exports": { ".": { "types": "./lib/typescript/src/index.d.ts", "default": "./lib/module/index.js" }, "./package.json": "./package.json" }, "files": [ "src", "lib", "android", "ios", "cpp", "*.podspec", "react-native.config.js", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "example": "yarn workspace react-native-animated-header-flat-list-example", "test": "jest", "typecheck": "tsc", "lint": "eslint \"**/*.{js,ts,tsx}\"", "clean": "del-cli lib", "prepare": "bob build", "release": "release-it" }, "keywords": [ "react-native", "ios", "android", "flat-list", "animated" ], "repository": { "type": "git", "url": "git+https://github.com/lukailun/react-native-animated-header-flat-list.git" }, "author": "Karen (https://github.com/lukailun)", "license": "MIT", "bugs": { "url": "https://github.com/lukailun/react-native-animated-header-flat-list/issues" }, "homepage": "https://github.com/lukailun/react-native-animated-header-flat-list#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@commitlint/config-conventional": "^19.8.1", "@eslint/compat": "^1.3.1", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.32.0", "@evilmartians/lefthook": "^1.5.0", "@react-native/eslint-config": "^0.79.2", "@react-navigation/elements": "^2.4.3", "@react-navigation/native": "^7.1.10", "@react-navigation/native-stack": "^7.3.14", "@release-it/conventional-changelog": "^9.0.2", "@types/jest": "^30.0.0", "@types/react": "^19.1.9", "commitlint": "^19.8.1", "del-cli": "^5.1.0", "eslint": "^9.28.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-ft-flow": "^3.0.11", "eslint-plugin-prettier": "^5.5.4", "jest": "^30.0.5", "prettier": "^3.6.2", "react": "18.3.1", "react-native": "0.76.9", "react-native-builder-bob": "0.37.0", "react-native-reanimated": "^3.18.0", "react-native-safe-area-context": "^5.6.2", "release-it": "^17.10.0", "typescript": "^5.9.3" }, "peerDependencies": { "@react-navigation/elements": ">=2.0.0", "@react-navigation/native": ">=7.0.0", "@react-navigation/native-stack": ">=7.0.0", "react": "*", "react-native": "*", "react-native-reanimated": ">=3.0.0", "react-native-safe-area-context": ">=5.0.0" }, "workspaces": [ "example" ], "packageManager": "yarn@3.6.1", "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": { "name": "angular" }, "infile": "CHANGELOG.md" } } }, "prettier": { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json" } ] ] }, "create-react-native-library": { "languages": "js", "type": "library", "version": "0.49.8" } }