mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
14316bd635
Summary: This diff adds _missing_ README files for all public RN packages. #### Changes: For all public RN packages: - Add _Missing_ READMEs Update package.json in all RN packages to add: - Issues, Bugs urls - Keywords and Homepage urls to respective pkgs ## Changelog: [GENERAL][ADDED] - Add missing README files for all public RN packages. [GENERAL][CHANGED] - Update package.json in all RN packages to add required fields. Pull Request resolved: https://github.com/facebook/react-native/pull/37090 Test Plan: - `yarn lint && yarn flow && yarn test-ci` --> _should be green_ Reviewed By: cortinico Differential Revision: D45390861 Pulled By: hoxyq fbshipit-source-id: 524a92de56a7cb553573d9f54ccf40a998dfd35f
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "@react-native/tester",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "React Native tester app.",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react-native.git",
|
|
"directory": "packages/rn-tester"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"scripts": {
|
|
"start": "react-native start",
|
|
"install-android-jsc": "../../gradlew :packages:rn-tester:android:app:installJscDebug",
|
|
"install-android-hermes": "../../gradlew :packages:rn-tester:android:app:installHermesDebug",
|
|
"clean-android": "rm -rf android/app/build",
|
|
"setup-ios-jsc": "bundle install && USE_HERMES=0 bundle exec pod install",
|
|
"setup-ios-hermes": "bundle install && USE_HERMES=1 bundle exec pod install",
|
|
"clean-ios": "rm -rf build/generated/ios Pods Podfile.lock"
|
|
},
|
|
"dependencies": {
|
|
"flow-enums-runtime": "^0.0.5",
|
|
"invariant": "^2.2.4",
|
|
"nullthrows": "^1.1.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "18.2.0",
|
|
"react-native": "*"
|
|
},
|
|
"codegenConfig": {
|
|
"name": "AppSpecs",
|
|
"type": "all",
|
|
"jsSrcsDir": ".",
|
|
"android": {
|
|
"javaPackageName": "com.facebook.fbreact.specs"
|
|
}
|
|
}
|
|
}
|