mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3a41131913
Summary: This diff adds a `package.json` inside `react-native-gradle-plugin` so it can be distributed and used inside the `template/` project similarly to what we do with the `react-native-codegen` package. Changelog: [Internal] [Added] - Setup a package inside `react-native-gradle-plugin` Reviewed By: fkgozali Differential Revision: D31081980 fbshipit-source-id: 9a9ad696ee6db01666bae75255616fd20aadd243
30 lines
722 B
JSON
30 lines
722 B
JSON
{
|
|
"name": "react-native-gradle-plugin",
|
|
"version": "0.0.1",
|
|
"description": "⚛️ Gradle Plugin for React Native",
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/react-native-gradle-plugin",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:facebook/react-native.git",
|
|
"directory": "packages/react-native-gradle-plugin"
|
|
},
|
|
"scripts": {
|
|
"build": "./gradlew build",
|
|
"clean": "./gradlew clean",
|
|
"test": "./gradlew check"
|
|
},
|
|
"license": "MIT",
|
|
"files": [
|
|
"settings.gradle.kts",
|
|
"build.gradle.kts",
|
|
"gradle",
|
|
"gradlew",
|
|
"gradlew.bat",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"react-native-codegen": "*"
|
|
},
|
|
"devDependencies": {}
|
|
}
|