Files
react-native/packages/react-native-codegen-typescript-test/package.json
T
Riccardo Cipolleschi 95fb44848a Make the codegen test package private (#39543)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/39543

As per title, this is a test package that should not be public, nor published.

## Changelog:
[Internal] - Make the react-native-codegen-test package private

Reviewed By: cortinico

Differential Revision: D49418378

fbshipit-source-id: 2bea9a42c647b2aed97a1b27a74a9d611b254f1f
2023-09-19 10:54:56 -07:00

43 lines
1.4 KiB
JSON

{
"name": "@react-native/codegen-typescript-test",
"version": "0.0.1",
"private": true,
"description": "TypeScript related unit test for @react-native/codegen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/facebook/react-native.git",
"directory": "packages/react-native-codegen-typescript-test"
},
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/react-native-typescript-test",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "yarn clean && node scripts/build.js --verbose && tsc",
"clean": "rimraf lib && rimraf __generated__/*.ts",
"prepare": "yarn run build"
},
"dependencies": {
"@react-native/codegen": "*"
},
"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",
"@types/jest": "^29.5.3",
"jest": "^29.6.3",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@babel/preset-env": "^7.1.6"
}
}