Files
flipper/desktop/plugins/public/ui-debugger/package.json
Luke De Feo df9b0a6aa6 Use react query to cache myles query
Summary: The call to myles was a little slow and very cachable so use react query. Additionally it depends on VPN / light so added an error state to make that clear.

Reviewed By: lblasa

Differential Revision: D42990344

fbshipit-source-id: 8d6ad20aea79f1972a7cf1f61f8af729e5f3464f
2023-02-03 04:38:51 -08:00

36 lines
845 B
JSON

{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-ui-debugger",
"id": "ui-debugger",
"pluginType": "client",
"version": "0.0.0",
"flipperBundlerEntry": "index.tsx",
"main": "dist/bundle.js",
"license": "MIT",
"title": "UI Debugger (beta)",
"icon": "nav-magnifying-glass",
"keywords": [
"flipper-plugin"
],
"dependencies": {
"lodash": "^4.17.21",
"react-color": "^2.19.3",
"react-hotkeys-hook": "^3.4.7",
"react-query": "^3.39.1"
},
"bugs": {
"url": "https://github.com/facebook/flipper/issues"
},
"peerDependencies": {
"@ant-design/icons": "*",
"@emotion/styled": "*",
"@types/node": "*",
"@types/react": "*",
"@types/react-dom": "*",
"antd": "*",
"flipper-plugin": "*",
"react": "*",
"react-dom": "*"
}
}