Files
flipper/desktop/flipper-server-core/package.json
Michel Weststrate 943d535e86 Move sending intern requests from client to server
Summary: This diff moves send intern request from the browser to the server. The reason to make this change is that making such requests from a browser environment causes CORS restrictions to kick in.

Reviewed By: nikoant

Differential Revision: D32835449

fbshipit-source-id: e8e92e51ca963aa50b3c859bb61c2381171e85ae
2021-12-08 04:30:57 -08:00

61 lines
1.5 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": {
"@iarna/toml": "^2.2.5",
"JSONStream": "^1.3.1",
"adbkit": "^2.11.1",
"adbkit-logcat": "^2.0.1",
"archiver": "^5.3.0",
"async-mutex": "^0.3.2",
"axios": "^0.22.0",
"flipper-common": "0.0.0",
"flipper-doctor": "0.0.0",
"flipper-plugin-lib": "0.0.0",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"invariant": "^2.2.4",
"js-base64": "^3.7.2",
"lodash.memoize": "^4.1.2",
"open": "^8.3.0",
"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",
"serialize-error": "^8.1.0",
"split2": "^4.1.0",
"tmp": "^0.2.1",
"uuid": "^8.3.2",
"which": "^2.0.2",
"ws": "^8.2.3",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"@types/node": "^15.12.5"
},
"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"
}