mirror of
https://github.com/zhigang1992/react-native-bottom-sheet.git
synced 2026-01-13 09:29:34 +08:00
92 lines
2.5 KiB
JSON
92 lines
2.5 KiB
JSON
{
|
|
"name": "@gorhom/bottom-sheet",
|
|
"version": "3.4.1",
|
|
"description": "A performant interactive bottom sheet with fully configurable options 🚀",
|
|
"main": "lib/commonjs/index",
|
|
"module": "lib/module/index",
|
|
"types": "lib/typescript/index.d.ts",
|
|
"react-native": "src/index.ts",
|
|
"files": [
|
|
"src",
|
|
"lib"
|
|
],
|
|
"keywords": [
|
|
"react-native",
|
|
"ios",
|
|
"android",
|
|
"bottom-sheet",
|
|
"bottomsheet",
|
|
"reanimated",
|
|
"sheet"
|
|
],
|
|
"repository": "https://github.com/gorhom/react-native-bottom-sheet",
|
|
"author": "Mo Gorhom (https://gorhom.dev)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/gorhom/react-native-bottom-sheet/issues"
|
|
},
|
|
"homepage": "https://gorhom.github.io/react-native-bottom-sheet",
|
|
"scripts": {
|
|
"typescript": "tsc --skipLibCheck --noEmit",
|
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
"build": "bob build && yarn copy-dts",
|
|
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
|
|
"release": "release-it",
|
|
"example": "yarn --cwd example",
|
|
"bootstrap": "yarn install && yarn example"
|
|
},
|
|
"dependencies": {
|
|
"@gorhom/portal": "^1.0.4",
|
|
"invariant": "^2.2.4",
|
|
"lodash.isequal": "^4.5.0",
|
|
"nanoid": "^3.1.20",
|
|
"react-native-redash": "^16.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^11.0.0",
|
|
"@commitlint/config-conventional": "^11.0.0",
|
|
"@react-native-community/bob": "^0.17.1",
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
"@release-it/conventional-changelog": "^2.0.0",
|
|
"@types/invariant": "^2.2.34",
|
|
"@types/lodash.isequal": "^4.5.5",
|
|
"@types/react": "^16.9.46",
|
|
"@types/react-native": "^0.63.8",
|
|
"auto-changelog": "^2.2.1",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^7.20.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"husky": "^4.3.6",
|
|
"lint-staged": "^10.5.4",
|
|
"prettier": "^2.2.1",
|
|
"react": "~16.9.0",
|
|
"react-native": "^0.62.2",
|
|
"react-native-gesture-handler": "^1.10.1",
|
|
"react-native-reanimated": "^2.0.0",
|
|
"release-it": "^14.2.2",
|
|
"typescript": "^4.1.5"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-native": "*",
|
|
"react-native-gesture-handler": ">=1.9.0",
|
|
"react-native-reanimated": ">=2.0.0-rc.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"@react-native-community/bob": {
|
|
"source": "src",
|
|
"output": "lib",
|
|
"targets": [
|
|
"commonjs",
|
|
"module",
|
|
"typescript"
|
|
]
|
|
}
|
|
}
|