react-native-avoid-softinput
Version:
Native logic for avoiding covering text inputs by soft input views
124 lines (123 loc) • 2.88 kB
JSON
{
"name": "react-native-avoid-softinput",
"version": "8.0.0",
"description": "Native logic for avoiding covering text inputs by soft input views",
"keywords": [
"react-native",
"soft input",
"keyboard",
"avoid soft input",
"avoid keyboard",
"ios",
"android"
],
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"repository": {
"type": "git",
"url": "https://github.com/mateusz1913/react-native-avoid-softinput.git",
"directory": "packages/react-native-avoid-softinput"
},
"author": "Mateusz Mędrek <luigimario1913@gmail.com> (https://github.com/mateusz1913)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mateusz1913/react-native-avoid-softinput/issues"
},
"homepage": "https://github.com/mateusz1913/react-native-avoid-softinput#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"ReactNativeAvoidSoftinput.podspec",
"jest",
"LICENSE",
"!lib/typescript/example",
"!android/.gradle",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/spotless.gradle",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"build-library": "bob build",
"release-library": "release-it"
},
"dependencies": {
"react-native-is-edge-to-edge": "^1.1.6"
},
"devDependencies": {
"@release-it/conventional-changelog": "10.0.1",
"@types/react": "19.0.10",
"react": "19.0.0",
"react-native": "0.79.4",
"react-native-builder-bob": "0.40.12",
"release-it": "19.0.3",
"typescript": "5.8.3"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-native": ">=0.78.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true,
"versionArgs": [
"--workspaces-update=false"
]
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
},
"codegenConfig": {
"name": "rnavoidsoftinput",
"type": "all",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.reactnativeavoidsoftinput"
},
"ios": {
"componentProvider": {
"AvoidSoftInputView": "AvoidSoftInputViewComponentView"
}
}
}
}