mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3ec22c1e69
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39227 Changelog: [Internal] 1. Adds an `unstable_experiments` option to `createDevMiddleware` in `react-native/dev-middleware`. 2. Adds `enableCustomDebuggerFrontend` (default `false` for now) as an experiment flag controlling whether the new debugger frontend (D48680624, D48682302) is in use. We plan to enable this by default in RN 0.73 after additional testing. If enabled, the new debugger frontend will only be used for the `/open-debugger` flow Reviewed By: huntie Differential Revision: D48602725 fbshipit-source-id: 598865b559478df1f19420daf3633ee6c233362a
40 lines
1009 B
JSON
40 lines
1009 B
JSON
{
|
|
"name": "@react-native/dev-middleware",
|
|
"version": "0.73.1",
|
|
"description": "Dev server middleware for React Native",
|
|
"keywords": [
|
|
"react-native",
|
|
"tools"
|
|
],
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/dev-middleware#readme",
|
|
"bugs": "https://github.com/facebook/react-native/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react-native.git",
|
|
"directory": "packages/dev-middleware"
|
|
},
|
|
"license": "MIT",
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@isaacs/ttlcache": "^1.4.1",
|
|
"@react-native/debugger-frontend": "^0.73.0",
|
|
"actual-request-url": "^1.0.4",
|
|
"chrome-launcher": "^0.15.2",
|
|
"chromium-edge-launcher": "^1.0.0",
|
|
"connect": "^3.6.5",
|
|
"debug": "^2.2.0",
|
|
"node-fetch": "^2.2.0",
|
|
"serve-static": "^1.13.1",
|
|
"temp-dir": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|