Summary: This diff moves the rest of the DataInspector jungle to flipper-plugin. No actual improvements are made yet, but the code is decoupled from Electron and the legacy theming. For example by using Antd based context menus. Note that `ManagedDataInspector` is now rebranded `DataInspector`, as that is the only variation that should (and is) used publicly. For the interactionTracker removal, see next diff. SearchableDataInspector will be addressed in a next diff Reviewed By: passy Differential Revision: D27603125 fbshipit-source-id: 188bd000260e4e4704202ce02c7fc98319f0bc22
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "flipper-plugin",
|
|
"version": "0.0.0",
|
|
"description": "Flipper Desktop plugin SDK and components",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"@emotion/css": "^11.1.3",
|
|
"@emotion/react": "^11.1.5",
|
|
"@reach/observe-rect": "^1.2.0",
|
|
"immer": "^9.0.0",
|
|
"lodash": "^4.17.21",
|
|
"react-color": "^2.19.3",
|
|
"react-element-to-jsx-string": "^14.3.2",
|
|
"react-virtual": "^2.6.1",
|
|
"string-natural-compare": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.22",
|
|
"@types/string-natural-compare": "^3.0.0",
|
|
"jest-mock-console": "^1.0.1",
|
|
"typescript": "^4.1.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@ant-design/icons": "^4.2.2",
|
|
"@testing-library/dom": "^7.26.3",
|
|
"@testing-library/react": "^11.1.0",
|
|
"antd": "^4.11.2"
|
|
},
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"prepack": "yarn reset && yarn build"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc"
|
|
}
|