Summary: moved `app/src/server` to `flipper-server-core/src` and fixed any fallout from that (aka integration points I missed on the preparing diffs). Reviewed By: passy Differential Revision: D31541378 fbshipit-source-id: 8a7e0169ebefa515781f6e5e0f7b926415d4b7e9
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "flipper-server-core",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "Flipper server connection SDK",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"JSONStream": "^1.3.1",
|
|
"adbkit": "^2.11.1",
|
|
"adbkit-logcat": "^2.0.1",
|
|
"archiver": "^5.3.0",
|
|
"async-mutex": "^0.3.2",
|
|
"flipper-common": "0.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"invariant": "^2.2.4",
|
|
"js-base64": "^3.7.2",
|
|
"lodash.memoize": "^4.1.2",
|
|
"openssl-wrapper": "^0.3.4",
|
|
"promisify-child-process": "^4.1.1",
|
|
"rsocket-core": "^0.0.27",
|
|
"rsocket-flowable": "^0.0.27",
|
|
"rsocket-tcp-server": "^0.0.25",
|
|
"rsocket-types": "^0.0.25",
|
|
"split2": "^3.2.2",
|
|
"tmp": "^0.2.1",
|
|
"uuid": "^8.3.2",
|
|
"which": "^2.0.2",
|
|
"ws": "^8.2.3"
|
|
},
|
|
"devDependencies": {},
|
|
"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"
|
|
}
|