Files
react-native/packages/react-native-gradle-plugin/package.json
T
Nicola Corti 3a41131913 Setup a package inside react-native-gradle-plugin.
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
2021-09-24 09:27:59 -07:00

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": {}
}