UNPKG

react-native-reanimated-modal

Version:

A lightweight and performant modal component. Designed for smooth animations, flexibility, and minimal footprint.

184 lines (183 loc) 4.53 kB
{ "name": "react-native-reanimated-modal", "version": "1.2.4", "description": "A lightweight and performant modal component. Designed for smooth animations, flexibility, and minimal footprint.", "main": "./lib/module/index.js", "types": "./lib/typescript/src/index.d.ts", "exports": { ".": { "source": "./src/index.ts", "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-reanimated-modal-example", "test": "jest", "typecheck": "tsc", "lint": "eslint \"**/*.{js,ts,tsx}\"", "clean": "del-cli lib", "prepare": "bob build", "release": "release-it --only-version", "docs": "typedoc" }, "keywords": [ "react-native", "ios", "android", "modal", "popup", "overlay", "reanimated", "gesture-handler", "animation", "swipe", "fade", "slide", "typescript", "performant", "lightweight" ], "repository": { "type": "git", "url": "git+https://github.com/whidrubeld/react-native-reanimated-modal.git" }, "author": "whidrubeld <whidrubeld@gmail.com> (https://github.com/whidrubeld)", "license": "MIT", "bugs": { "url": "https://github.com/whidrubeld/react-native-reanimated-modal/issues" }, "homepage": "https://whidrubeld.github.io/react-native-reanimated-modal", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@babel/plugin-transform-flow-strip-types": "^7.27.1", "@commitlint/config-conventional": "^19.6.0", "@eslint/compat": "^1.2.7", "@eslint/eslintrc": "^3.3.0", "@eslint/js": "^9.22.0", "@evilmartians/lefthook": "^1.5.0", "@react-native/babel-preset": "^0.81.1", "@react-native/eslint-config": "^0.81.1", "@release-it/conventional-changelog": "^9.0.2", "@testing-library/react-native": "^13.2.0", "@types/jest": "^30.0.0", "@types/react": "~19.1.10", "commitlint": "^19.6.1", "del-cli": "^5.1.0", "eslint": "^9.22.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-prettier": "^5.2.3", "jest": "^30.1.3", "prettier": "^3.0.3", "react": "19.1.0", "react-native": "0.81.4", "react-native-builder-bob": "^0.40.8", "react-native-gesture-handler": "~2.28.0", "react-native-reanimated": "~4.1.1", "react-native-worklets": "^0.5.1", "react-test-renderer": "19.1.0", "release-it": "^17.10.0", "typedoc": "^0.28.8", "typedoc-theme-oxide": "^0.2.0", "typescript": "~5.9.2" }, "peerDependencies": { "react": "*", "react-native": "*", "react-native-gesture-handler": "*", "react-native-reanimated": "*" }, "workspaces": [ "example" ], "packageManager": "yarn@3.6.1", "jest": { "preset": "react-native", "setupFilesAfterEnv": [ "<rootDir>/jest-setup.js" ], "transformIgnorePatterns": [ "node_modules/(?!((jest-)?react-native(-.*)?|@react-native(-community)?|@react-native/js-polyfills)/)" ], "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" } } } }, "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.52.0" } }