mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a380ea55fb
Summary:
Minor fix to package.json which newer version of npm warn about when publishing, after running `npm pkg fix -ws` on the workspace.
{F1470070110}
## Changelog: [Internal] npm pkg fix -ws
Pull Request resolved: https://github.com/facebook/react-native/pull/43519
Test Plan: eyescloseddog
Reviewed By: cortinico
Differential Revision: D55012872
Pulled By: blakef
fbshipit-source-id: ff3c63a3eefaf56d369219a3d4b32d44d6d842c9
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "@react-native/codegen",
|
|
"version": "0.75.0-main",
|
|
"description": "Code generation tools for React Native",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react-native.git",
|
|
"directory": "packages/react-native-codegen"
|
|
},
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/react-native-codegen#readme",
|
|
"keywords": [
|
|
"code",
|
|
"generation",
|
|
"codegen",
|
|
"tools",
|
|
"react-native"
|
|
],
|
|
"bugs": "https://github.com/facebook/react-native/issues",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn clean && node scripts/build.js --verbose",
|
|
"clean": "rimraf lib",
|
|
"prepare": "yarn run build"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"dependencies": {
|
|
"@babel/parser": "^7.20.0",
|
|
"glob": "^7.1.1",
|
|
"hermes-parser": "0.20.1",
|
|
"invariant": "^2.2.4",
|
|
"jscodeshift": "^0.14.0",
|
|
"mkdirp": "^0.5.1",
|
|
"nullthrows": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.0",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.20.0",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
|
|
"@babel/plugin-transform-async-to-generator": "^7.20.0",
|
|
"@babel/plugin-transform-destructuring": "^7.20.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.20.0",
|
|
"@babel/preset-env": "^7.20.0",
|
|
"chalk": "^4.0.0",
|
|
"hermes-estree": "0.20.1",
|
|
"micromatch": "^4.0.4",
|
|
"prettier": "2.8.8",
|
|
"rimraf": "^3.0.2",
|
|
"yargs": "^17.6.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/preset-env": "^7.1.6"
|
|
}
|
|
}
|