Summary: Larger list of fixes. Adding another package to the flipper export is a bit nasty but it unblocks us for now and centralises `remote` access which seems like a win for FAAS. Reviewed By: mweststrate Differential Revision: D30785421 fbshipit-source-id: 931297e8566b5d8a213b69ae87d0cda7648b3ed4
45 lines
1000 B
JSON
45 lines
1000 B
JSON
{
|
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
|
"name": "flipper-plugin-crash-reporter",
|
|
"id": "CrashReporter",
|
|
"pluginType": "device",
|
|
"supportedDevices": [
|
|
{
|
|
"os": "Android",
|
|
"type": "emulator"
|
|
},
|
|
{
|
|
"os": "Android",
|
|
"type": "physical"
|
|
},
|
|
{
|
|
"os": "iOS",
|
|
"type": "emulator"
|
|
}
|
|
],
|
|
"version": "0.0.0",
|
|
"description": "A plugin which will display a crash",
|
|
"main": "dist/bundle.js",
|
|
"flipperBundlerEntry": "index.tsx",
|
|
"repository": "https://github.com/facebook/flipper",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"flipper-plugin"
|
|
],
|
|
"title": "Crash Reporter",
|
|
"bugs": {
|
|
"email": "prit91@fb.com",
|
|
"url": "https://fb.workplace.com/groups/220760072184928/"
|
|
},
|
|
"dependencies": {
|
|
"@types/fs-extra": "^9.0.12",
|
|
"fs-extra": "^10.0.0",
|
|
"unicode-substring": "^1.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@ant-design/icons": "*",
|
|
"ant-design": "*",
|
|
"flipper-plugin": "*"
|
|
}
|
|
}
|