Files
flipper/desktop/pkg-lib/package.json
Andrey Goncharov fd811db12b Rebuild all plugins if a shared lib changed
Summary: Some plugins import from shared directories. These directories are not plugins themselves, therefore the current plugin root searching mechanism does nto work for them. To support plugin reloading for this scenario, we start re-building all plugins if we fail to find a plugin root.

Reviewed By: lblasa

Differential Revision: D39693820

fbshipit-source-id: 33dd7de4121bd5665a39b0ea96adce4603dc7df0
2022-09-22 04:17:24 -07:00

46 lines
1.1 KiB
JSON

{
"name": "flipper-pkg-lib",
"version": "0.0.0",
"description": "Library for building and publishing Flipper plugins",
"repository": "facebook/flipper",
"main": "lib/index.js",
"flipperBundlerEntry": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {
"chalk": "^4",
"esbuild": "^0.15.7",
"fb-watchman": "^2.0.1",
"flipper-common": "0.0.0",
"flipper-plugin-lib": "0.0.0",
"fs-extra": "^10.1.0",
"metro": "^0.70.2",
"metro-cache": "^0.70.2",
"metro-minify-terser": "^0.70.2",
"npm-packlist": "^4.0.0",
"p-map": "^4"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/mock-fs": "^4.13.1",
"@types/node": "^17.0.31",
"@types/npm-packlist": "^1.1.2",
"flipper-test-utils": "0.0.0",
"mock-fs": "^5.1.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"
}