@devvie/bottom-sheet
Version:
The 😎smart , 📦tiny , and 🎗flexible bottom sheet your app craves 🚀
156 lines (155 loc) • 4.42 kB
JSON
{
"name": "@devvie/bottom-sheet",
"version": "0.4.3",
"description": "The 😎smart , 📦tiny , and 🎗flexible bottom sheet your app craves 🚀",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"scripts"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"del-build-dir": "node scripts/delete-lib-dir.js",
"build-dts": "tsc --project tsconfig.build.json",
"copy-dts:unix": "mkdir -p lib/typescript && rsync --prune-empty-dirs -av --include '*/' --include '*.d.ts' --exclude '*' src/ lib/typescript/",
"copy-dts:windows": "xcopy /S /Y \"src\\*.d.ts\" \"lib\\typescript\"",
"copy-dts": "if [ \"$OS\" = \"Windows_NT\" ]; then yarn copy-dts:windows; else yarn copy-dts:unix; fi",
"prepack": "yarn del-build-dir && yarn build-dts && yarn copy-dts && bob build",
"release": "yarn prepack && dotenv release-it --",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn install"
},
"keywords": [
"react-native",
"ios",
"android",
"bottom-sheet",
"react-native-bottom-sheet",
"devvie-bottom-sheet",
"@devvie/bottom-sheet",
"tiny-bottom-sheet",
"flexible-bottom-sheet",
"modal-bottom-sheet",
"sheet",
"ui-sheet"
],
"repository": "https://github.com/stanleyugwu/react-native-bottom-sheet",
"author": "Devvie <stanleyugwu2018@gmail.com> (https://github.com/stanleyugwu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stanleyugwu/react-native-bottom-sheet/issues"
},
"homepage": "https://github.com/stanleyugwu/react-native-bottom-sheet#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.2.2",
"@react-native/eslint-config": "^0.72.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^28.1.2",
"@types/react": "~18.2.0",
"@types/react-native": "0.70.0",
"commitlint": "^17.0.2",
"del-cli": "^5.0.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-builder-bob": "^0.23.1",
"release-it": "^15.0.0",
"typescript": "^5.0.2"
},
"resolutions": {
"@types/react": "18.2.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"packageManager": "yarn@1.22.19",
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"release-it": {
"git": {
"commitMessage": "🛠️🚀 build: release ${version}",
"tagName": "v${version}",
"requireBranch": "main"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseNotes": "git log --no-merges --pretty=format:\"* %s %h\" ${latestTag}...main",
"comments": {
"submit": true,
"issue": ":rocket: _This issue has been resolved in v${version}. See [${releaseName}](${releaseUrl}) for release notes._",
"pr": ":rocket: _This pull request is included in v${version}. See [${releaseName}](${releaseUrl}) for release notes._"
}
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"endOfLine": "auto"
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module"
]
}
}