mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
63f4fb129f
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51688 Changelog: [Internal] # Context See D74904547. ## This diff Creates the `react-native/debugger-shell` package, containing a basic implementation of an Electron-based shell for React Native DevTools. At this point, there is no direct dependency on the new package from the rest of React Native - it's designed to be used as part of a Meta-internal experimental rollout of the new debugger shell via the `BrowserLauncher` interface in `dev-middleware`. Reviewed By: huntie Differential Revision: D74820232 fbshipit-source-id: cb06ea9e2ed8c8822019cad8296cc19e69f9db0b
37 lines
946 B
JSON
37 lines
946 B
JSON
{
|
|
"name": "@react-native/debugger-shell",
|
|
"version": "0.80.0-main",
|
|
"description": "Experimental debugger shell for React Native for use with @react-native/debugger-frontend",
|
|
"keywords": [
|
|
"react-native",
|
|
"tools"
|
|
],
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/debugger-shell#readme",
|
|
"bugs": "https://github.com/facebook/react-native/issues",
|
|
"main": "./src/node/index.js",
|
|
"exports": {
|
|
"node": "./src/node/index.js",
|
|
"electron": "./src/electron/index.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "electron src/electron"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react-native.git",
|
|
"directory": "packages/debugger-shell"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18",
|
|
"electron": ">=36.2.0"
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "^7.0.6",
|
|
"electron": "36.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"semver": "^7.1.3"
|
|
}
|
|
}
|