Summary: Set up an initial library which can (should) be used by plugins in the future. Reviewed By: jknoxville Differential Revision: D22019554 fbshipit-source-id: 502b14b34b2c9c117cea377ab6ebbf150e6faee9
29 lines
668 B
JSON
29 lines
668 B
JSON
{
|
|
"name": "flipper-plugin",
|
|
"version": "0.49.0",
|
|
"description": "Flipper Desktop plugin SDK and components",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"typescript": "^3.9.2"
|
|
},
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"prepack": "yarn reset && yarn build"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc"
|
|
}
|