Summary: Plugin metadata format extended to include type of each plugin (client / device) and list of supported devices (android/ios/..., emulator/physical, etc). This will allow to detect plugins supported by device even if they are not installed and only available on Marketplace. Reviewed By: mweststrate Differential Revision: D26073531 fbshipit-source-id: e331f1be1af1046cd4220a286a1d52378c26cc53
33 lines
759 B
JSON
33 lines
759 B
JSON
{
|
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
|
"name": "flipper-plugin-kaios-graphs",
|
|
"id": "kaios-graphs",
|
|
"version": "0.0.0",
|
|
"pluginType": "device",
|
|
"supportedDevices": [
|
|
{"os": "Android", "specs": ["KaiOS"]}
|
|
],
|
|
"main": "dist/bundle.js",
|
|
"flipperBundlerEntry": "index.tsx",
|
|
"license": "MIT",
|
|
"title": "KaiOS RAM graph",
|
|
"icon": "apps",
|
|
"keywords": [
|
|
"flipper-plugin"
|
|
],
|
|
"bugs": {
|
|
"email": "oncall+wa_kaios@xmail.facebook.com",
|
|
"url": "https://fb.workplace.com/groups/wa.kaios/"
|
|
},
|
|
"dependencies": {
|
|
"promisify-child-process": "^4.1.0",
|
|
"recharts": "2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/recharts": "1.8.18"
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "16.9.17"
|
|
}
|
|
}
|