Summary: FlipperServerClient is a useful abstraction for any JS-based client of headless Flipper. No need to bundle it with flipper-frontend-core, as the rest is not useful for external clients. Currently, I am planning to add it to jest-e2e to send commands to Flipper Reviewed By: lblasa Differential Revision: D40765668 fbshipit-source-id: af48710bb15444ac1ecd649fe9a2ab252f3088f3
41 lines
1020 B
JSON
41 lines
1020 B
JSON
{
|
|
"name": "flipper-ui-browser",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "Flipper's UI, packaged for the browser",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"reconnecting-websocket": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"eventemitter3": "^4.0.7",
|
|
"flipper-common": "0.0.0",
|
|
"flipper-frontend-core": "0.0.0",
|
|
"flipper-server-client": "0.0.0",
|
|
"flipper-ui-core": "0.0.0",
|
|
"invariant": "^2.2.4",
|
|
"metro-runtime": "^0.70.2",
|
|
"pretty-format": "^27.5.0",
|
|
"react-refresh": "^0.10.0"
|
|
},
|
|
"peerDependencies": {},
|
|
"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"
|
|
}
|