mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b494ae0703
Summary: The `react-native-codegen` package handles the generation of native code artifacts for modules and components in the new React Native architecture. This change moves the dependency from being an application-level dependency to being a direct dependency of the `react-native` package. Changelog: [General] Move react-native-codegen dependency to react-native root package.json Reviewed By: yungsters Differential Revision: D31129619 fbshipit-source-id: dfa0df589c4dbca70dde6db0208485431e304809
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "react-native-codegen",
|
|
"version": "0.0.8",
|
|
"description": "⚛️ Code generation tools for React Native",
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/react-native-codegen",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:facebook/react-native.git",
|
|
"directory": "packages/react-native-codegen"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn clean && node scripts/build.js --verbose",
|
|
"clean": "rm -rf lib",
|
|
"prepublish": "yarn run build"
|
|
},
|
|
"license": "MIT",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"dependencies": {
|
|
"flow-parser": "^0.121.0",
|
|
"jscodeshift": "^0.11.0",
|
|
"nullthrows": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
"@babel/plugin-transform-async-to-generator": "^7.0.0",
|
|
"@babel/plugin-transform-destructuring": "^7.0.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
|
|
"chalk": "^4.0.0",
|
|
"glob": "^7.1.1",
|
|
"invariant": "^2.2.4",
|
|
"micromatch": "^4.0.2",
|
|
"mkdirp": "^0.5.1",
|
|
"prettier": "1.19.1"
|
|
}
|
|
}
|