Files
flipper/desktop/flipper-ui-browser/package.json
Michel Weststrate 5d45bd741b Initialise flipper-ui-browser with socket connection
Summary:
This diff sets up the socket connection between flipper-browser and flipper-server, and verifies that the initial UI initialisation work (e.g. `get-config` command works). The initial RenderHost is initialised as well based on the config and browser APIs.

Note that flipper-ui-core itself isn't started yet, as that has still a plethora of node imports, so Metro will correctly refuse to bundle

Not in this diff
* remove Node usage from flipper-ui-core
* implement all RenderHost APIs

Reviewed By: aigoncharov

Differential Revision: D32644074

fbshipit-source-id: 2c8065caf0191771a3867b69a431ca50eeb7a5a3
2021-12-08 04:30:55 -08:00

38 lines
936 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": {},
"devDependencies": {
"invariant": "^2.2.4",
"eventemitter3": "^4.0.7",
"flipper-common": "0.0.0",
"flipper-ui-core": "0.0.0",
"metro-runtime": "^0.66.2",
"pretty-format": "^27.3.1",
"react-refresh": "^0.10.0",
"socket.io-client": "^4.4.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"
}