Summary: This updates minor and patch level dependencies. Frustratingly, I had to revert a bunch of changes in that version range that still caused incompatibilities and test failures. If I find time, I'll dig a bit deeper. Reviewed By: ivanmisuno Differential Revision: D48433210 fbshipit-source-id: 9ab12e774c1992d4f22cc1428d34f102ce820b75
39 lines
1017 B
JSON
39 lines
1017 B
JSON
{
|
|
"name": "flipper-frontend-core",
|
|
"version": "0.0.0",
|
|
"description": "Exposes core functionality for Flipper frontends: Flipper Electron, Flipper Browser UI, Flipper Server Companion.",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"eventemitter3": "^4.0.7",
|
|
"flipper-common": "0.0.0",
|
|
"flipper-plugin-core": "0.0.0",
|
|
"immer": "^9.0.18",
|
|
"js-base64": "^3.7.5",
|
|
"p-map": "^4.0.0",
|
|
"reconnecting-websocket": "^4.4.0",
|
|
"semver": "^7.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"flipper-test-utils": "0.0.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"
|
|
}
|