mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e77fe5c471
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48975 After cutting 0.78-stable, we need to bump the monorepo packages to `0.79.0-main` ## Changelog: [Internal] - Bump monorepo packages to `0.79.0-main` Reviewed By: cortinico, huntie Differential Revision: D68715005 fbshipit-source-id: cb5abbf05e8638683687be8d61d66b3037111572
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@react-native/oss-library-example",
|
|
"version": "0.79.0-main",
|
|
"private": true,
|
|
"description": "Package that includes native module exapmle, native component example, targets both the old and the new architecture. It should serve as an example of a real-world OSS library.",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/facebook/react-native.git",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react-native.git",
|
|
"directory": "packages/react-native-test-library"
|
|
},
|
|
"main": "./index.js",
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn clean && babel --out-dir lib src",
|
|
"clean": "rimraf lib",
|
|
"codegen": "npx react-native codegen",
|
|
"prepare": "yarn run codegen && yarn run build"
|
|
},
|
|
"files": [
|
|
"generated"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@react-native/babel-preset": "0.79.0-main",
|
|
"react-native": "1000.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-native": "*"
|
|
},
|
|
"codegenConfig": {
|
|
"name": "OSSLibraryExampleSpec",
|
|
"type": "all",
|
|
"jsSrcsDir": "src",
|
|
"outputDir": {
|
|
"ios": "ios",
|
|
"android": "android/src/main"
|
|
},
|
|
"includesGeneratedCode": true,
|
|
"android": {
|
|
"javaPackageName": "com.reactnative.osslibraryexample"
|
|
},
|
|
"ios": {
|
|
"componentProvider": {
|
|
"SampleNativeComponent": "RCTSampleNativeComponentComponentView"
|
|
}
|
|
}
|
|
}
|
|
}
|