mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
136d795c22
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53743 As titled. A long awaited quality of life improvement that we can now deliver with our desktop shell. Window arrangements are saved per [`windowKey`](https://github.com/facebook/react-native/blob/da7bf9c54567aae62ff355b79e66f511cb382065/packages/dev-middleware/src/middleware/openDebuggerMiddleware.js#L193), mapping to each previously opened debugger target. **Limitations** - Does not save/restore macOS fullscreen app state. Changelog: [Internal] Reviewed By: vzaidman Differential Revision: D82236159 fbshipit-source-id: e3c2f9c0cb05a3b8ef2208eb4a288e0be064489a
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "@react-native/debugger-shell",
|
|
"productName": "React Native DevTools",
|
|
"version": "0.82.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/index.js",
|
|
"exports": {
|
|
".": {
|
|
"node": "./src/node/index.js",
|
|
"electron": "./src/electron/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"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": ">= 20.19.4"
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "^7.0.6",
|
|
"fb-dotslash": "0.5.8"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "37.2.6",
|
|
"electron-store": "^8.2.0",
|
|
"semver": "^7.1.3"
|
|
},
|
|
"files": [
|
|
"!**/__tests__/**",
|
|
"bin",
|
|
"dist",
|
|
"!src/electron"
|
|
]
|
|
}
|