9eb5502076
* remove unused examples * init bare example with test app * add react-native-video * add test app suport in expo plugin * expo plugin: skip keys that are already in pod file * fix podfile * add src files * fix metro config * finalize react native test app configuration * init expo example * remove old examples * add guide for example * Add link to examples apps in docs * adopt bare example to CI tests * update CI workflows * CI build lib after node_modules install * fix examples readme * fix iOS CI * Add Example for DRM * Update examples/README.md * fix links * update examples README * sync example code * update README
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "expoexample",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"postinstall": "yarn update-src",
|
|
"start": "expo start",
|
|
"start:tv": "EXPO_TV=1 expo start",
|
|
"android:tv": "EXPO_TV=1 expo run:android",
|
|
"android": "EXPO_TV=0 expo run:android",
|
|
"ios:tv": "EXPO_TV=1 expo run:ios",
|
|
"ios": "EXPO_TV=0 expo run:ios",
|
|
"web": "expo start --web",
|
|
"prebuild:tv": "EXPO_TV=1 expo prebuild",
|
|
"prebuild": "EXPO_TV=0 expo prebuild",
|
|
"update-src": "echo 'Updating src from ../bare/src' && rm -r ./src && cp -r ../bare/src ./src && echo 'Updated src from ../bare/src'"
|
|
},
|
|
"dependencies": {
|
|
"@react-native-picker/picker": "2.8.1",
|
|
"expo": "~51.0.31",
|
|
"expo-splash-screen": "~0.27.5",
|
|
"expo-status-bar": "~1.12.1",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-native": "npm:react-native-tvos@~0.74.5-0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.0",
|
|
"@expo/config-plugins": "^8.0.10",
|
|
"@react-native-tvos/config-tv": "^0.0.10",
|
|
"@react-native/metro-config": "^0.75.4",
|
|
"@types/react": "~18.2.45",
|
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
"typescript": "~5.3.3"
|
|
},
|
|
"expo": {
|
|
"install": {
|
|
"exclude": [
|
|
"react-native"
|
|
]
|
|
}
|
|
},
|
|
"private": true
|
|
}
|