mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ebf1a7b79b
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45015 Set package versions to `0.76.0-main` (`0.75-stable` branch was cut). Changelog: [Internal] Reviewed By: cipolleschi Differential Revision: D58687399 fbshipit-source-id: 27ed987e4557705845d57d64e7547cddbd982a03
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "@react-native/oss-library-example",
|
|
"version": "0.76.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.20.0",
|
|
"@react-native/babel-preset": "0.76.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"
|
|
}
|
|
}
|
|
}
|