Files
flipper/desktop/plugins/example/package.json
Chaiwat Ekkaewnumchai 88f3faffb1 Enable Plugin
Summary: Encountered while debugging. Seems that the id was incorrect. This diff changes the id back to `"Example"`

Reviewed By: nikoant

Differential Revision: D24782578

fbshipit-source-id: ad1c6d6fe4962179ad609728c8641adc2063e929
2020-11-06 05:24:13 -08:00

32 lines
763 B
JSON

{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-example",
"id": "Example",
"version": "0.64.0",
"description": "An example for a Flipper plugin",
"main": "dist/bundle.js",
"flipperBundlerEntry": "index.tsx",
"license": "MIT",
"keywords": [
"flipper-plugin"
],
"title": "Example Plugin",
"icon": "apps",
"bugs": {
"url": "https://fbflipper.com/"
},
"scripts": {
"lint": "flipper-pkg lint",
"build": "flipper-pkg bundle",
"watch": "flipper-pkg bundle --watch",
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
},
"peerDependencies": {
"flipper": "0.64.0"
},
"devDependencies": {
"flipper": "0.64.0",
"flipper-pkg": "0.64.0"
}
}