mirror of
https://github.com/zhigang1992/react-native-hold-menu.git
synced 2026-06-15 18:38:03 +08:00
105 lines
2.7 KiB
JSON
105 lines
2.7 KiB
JSON
{
|
|
"name": "react-native-hold-menu",
|
|
"version": "0.0.5",
|
|
"description": "A performant, easy to use hold to open context menu for React Native powered by Reanimated.",
|
|
"main": "lib/commonjs/index.js",
|
|
"module": "lib/module/index.js",
|
|
"types": "lib/typescript/index.d.ts",
|
|
"react-native": "src/index.ts",
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"!**/__tests__",
|
|
"!**/__fixtures__",
|
|
"!**/__mocks__"
|
|
],
|
|
"keywords": [
|
|
"react-native",
|
|
"ios",
|
|
"android",
|
|
"hold-menu",
|
|
"context-menu",
|
|
"hold-to-open",
|
|
"reanimated",
|
|
"menu"
|
|
],
|
|
"repository": "https://github.com/enesozturk/react-native-hold-menu",
|
|
"author": "Enes Ozturk (https://ozturkenes.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/enesozturk/react-native-hold-menu/issues"
|
|
},
|
|
"homepage": "https://enesozturk.github.io/react-native-hold-menu",
|
|
"scripts": {
|
|
"typescript": "tsc --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.3",
|
|
"expo-blur": "^9.0.0",
|
|
"lodash.isequal": "^4.5.0",
|
|
"nanoid": "^3.1.20"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "~7.9.0",
|
|
"@commitlint/cli": "^11.0.0",
|
|
"@commitlint/config-conventional": "^11.0.0",
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
"@release-it/conventional-changelog": "^2.0.0",
|
|
"@types/faker": "^5.1.5",
|
|
"@types/lodash.isequal": "^4.5.5",
|
|
"@types/react": "~16.9.35",
|
|
"@types/react-native": "0.63.4",
|
|
"auto-changelog": "^2.2.1",
|
|
"babel-jest": "~25.2.6",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^7.19.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"husky": "^5.0.9",
|
|
"jest": "~25.2.6",
|
|
"prettier": "^2.2.1",
|
|
"react": "16.13.1",
|
|
"react-native": "~0.63.4",
|
|
"react-native-builder-bob": "^0.17.1",
|
|
"react-native-gesture-handler": "1.8.0",
|
|
"react-native-reanimated": "^2.0.0-rc.3",
|
|
"react-test-renderer": "~16.13.1",
|
|
"release-it": "^14.4.1",
|
|
"typescript": "~4.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-native": "*",
|
|
"react-native-gesture-handler": ">=1.8.0",
|
|
"react-native-reanimated": ">=2.0.0-rc.1"
|
|
},
|
|
"@react-native-community/bob": {
|
|
"source": "src",
|
|
"output": "lib",
|
|
"targets": [
|
|
"commonjs",
|
|
"module",
|
|
"typescript"
|
|
]
|
|
},
|
|
"react-native-builder-bob": {
|
|
"source": "src",
|
|
"output": "lib",
|
|
"targets": [
|
|
"commonjs",
|
|
"module",
|
|
"typescript"
|
|
]
|
|
},
|
|
"eslintIgnore": [
|
|
"node_modules/",
|
|
"lib/"
|
|
]
|
|
}
|