Files
flipper/desktop/plugins/public/cpu/package.json
Pascal Hartig 47099cfd31 Fix Flipper lints #16
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
2021-09-08 08:44:19 -07:00

32 lines
642 B
JSON

{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-device-cpu",
"id": "DeviceCPU",
"pluginType": "device",
"supportedDevices": [
{
"os": "Android",
"type": "physical",
"archived": false
}
],
"version": "0.0.0",
"main": "dist/bundle.js",
"flipperBundlerEntry": "index.tsx",
"license": "MIT",
"keywords": [
"flipper-plugin"
],
"peerDependencies": {
"flipper-plugin": "*"
},
"title": "CPU",
"icon": "underline",
"bugs": {
"url": "https://github.com/facebook/flipper/issues"
},
"dependencies": {
"fs-extra": "^10.0.0"
}
}