react-native-autocomplete-dropdown
Version:
Dropdown Item picker with search and autocomplete (typeahead) functionality for react native
137 lines (136 loc) • 4.23 kB
JSON
{
"name": "react-native-autocomplete-dropdown",
"version": "5.0.0",
"description": "Dropdown Item picker with search and autocomplete (typeahead) functionality for react native",
"keywords": [
"react-native",
"dropdown",
"autocomplete",
"picker",
"typeahead",
"select",
"react native typeahead",
"react native autocomplete",
"react native dropdown",
"react native picker",
"react native select"
],
"homepage": "https://github.com/onmotion/react-native-autocomplete-dropdown",
"bugs": {
"url": "https://github.com/onmotion/react-native-autocomplete-dropdown/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/onmotion/react-native-autocomplete-dropdown.git"
},
"license": "MIT",
"author": "Alexandr Kozhevnikov <onmotion1@gmail.com>",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"source": "src/index",
"react-native": "src/index",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib",
"src"
],
"workspaces": [
"example"
],
"scripts": {
"build": "bob build",
"clean": "del-cli lib",
"example": "yarn workspace react-native-awesome-library-example",
"lint": "eslint .",
"prepare": "bob build",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-native-animatable": "^1.4.0",
"react-native-feather": "^1.1.2",
"react-native-size-matters": "^0.4.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@commitlint/config-conventional": "^17.0.0",
"@react-native-community/cli": "18.0.0",
"@react-native-community/cli-platform-android": "18.0.0",
"@react-native-community/cli-platform-ios": "18.0.0",
"@react-native/babel-preset": "0.79.2",
"@react-native/eslint-config": "0.79.2",
"@react-native/metro-config": "0.79.2",
"@react-native/typescript-config": "0.79.2",
"@types/jest": "^29.5.13",
"@types/lodash.debounce": "^4.0.8",
"@types/react-test-renderer": "^19.0.0",
"commitlint": "^17.0.2",
"del-cli": "^5.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.6.3",
"lefthook": "^1.11.12",
"prettier": "^3.0.0",
"react": "19.0.0",
"react-native": "0.79.2",
"react-native-builder-bob": "^0.30.2",
"react-native-svg": "^15.1.0",
"react-test-renderer": "19.0.0",
"release-it": "^15.0.0",
"typescript": "5.1.6"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-native": ">=0.60.0",
"react-native-svg": ">=13.0.0"
},
"packageManager": "yarn@3.6.1",
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"exclude": "example/**",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"release-it": {
"git": {
"commitMessage": "Release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}