-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "expo-focus-menu",
"version": "1.0.0",
"description": "Native iOS context menus with haptic feedback, React component icons, and interactive emoji reactions for React Native. Provides an elegant focus menu UI component for Expo and React Native apps.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"test:ios": "cd ios && xcodebuild test -scheme ExpoFocusMenu -destination 'platform=iOS Simulator,name=iPhone 15'",
"prepare": "expo-module prepare",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"react-native",
"expo",
"expo-focus-menu",
"context-menu",
"ios",
"menu",
"haptic-feedback",
"emoji-reactions",
"native-menu",
"uicontextmenu",
"sf-symbols",
"ExpoFocusMenu"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shottah/expo-focus-menu.git"
},
"bugs": {
"url": "https://github.com/shottah/expo-focus-menu/issues"
},
"author": "shottah <14793093+shottah@users.noreply.github.com> (https://github.com/shottah)",
"license": "MIT",
"homepage": "https://github.com/shottah/expo-focus-menu#readme",
"engines": {
"node": ">=20.0.0"
},
"expo": {
"autolinking": {
"nativeModulesDir": ".",
"ios": {
"podspecPath": "ios/ExpoFocusMenu.podspec"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"build",
"src",
"ios",
"android",
"expo-module.config.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/react-native": "^13.3.3",
"@types/react": "~19.1.0",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"expo": "^54.0.2",
"expo-module-scripts": "^5.0.7",
"react-native": "0.81.4",
"semantic-release": "^24.2.8"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}