Files
flipper/desktop/plugin-lib/package.json
Michel Weststrate e7f841b6d2 Move flipper plugin from flipper-lib types to flipper-common
Summary: Moved all types related to plugin descriptions from plugin-lib (which handles downloads and such) to flipper-common. The goal of that is to remove all plugin-lib usage from ui-core to server-core, so that the UI itself doesn't do any file operations anymore related to plugins. That will be done in next diffs, this just moves types but no code.

Reviewed By: nikoant, aigoncharov

Differential Revision: D32665064

fbshipit-source-id: 86d908e7264569b0229b09290a891171876c8e00
2021-12-08 04:30:55 -08:00

51 lines
1.3 KiB
JSON

{
"name": "flipper-plugin-lib",
"version": "0.0.0",
"description": "Library containing common Flipper plugin installation utilities",
"repository": "facebook/flipper",
"main": "lib/index.js",
"flipperBundlerEntry": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {
"algoliasearch": "^4.11.0",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"expand-tilde": "^2.0.2",
"flipper-common": "^0.0.0",
"fs-extra": "^10.0.0",
"live-plugin-manager": "^0.17.0",
"npm-api": "^1.0.1",
"p-filter": "^2.1.0",
"p-map": "^4.0.0",
"semver": "^7.3.5",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/node": "^15.12.5",
"flipper-test-utils": "0.0.0",
"jest": "^26.6.3",
"mock-fs": "^5.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.4.4"
},
"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"
}