Reviewed By: passy Differential Revision: D28964502 fbshipit-source-id: 76322dc7aec09497f6ba7e4dfb1af8f0318837ca
30 lines
744 B
JSON
30 lines
744 B
JSON
{
|
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
|
"name": "flipper-plugin-example",
|
|
"id": "Example",
|
|
"version": "0.0.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://github.com/facebook/flipper/issues"
|
|
},
|
|
"scripts": {
|
|
"lint": "flipper-pkg lint",
|
|
"build": "flipper-pkg bundle",
|
|
"watch": "flipper-pkg bundle --watch",
|
|
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
|
|
},
|
|
"peerDependencies": {
|
|
"antd": "*",
|
|
"flipper-plugin": "*",
|
|
"flipper-pkg": "*"
|
|
}
|
|
}
|