Summary: Closes https://github.com/facebook/flipper/issues/2578 Adds Brotli compression support for br-encoded endpoints ## Changelog - Brotli compression support Pull Request resolved: https://github.com/facebook/flipper/pull/4288 Test Plan: Confirmed `content-encoding` had `br` for Brotli and that the response text post-decompression was parsed properly:   A note for reviewer(s) is that I am by no means a javascript/typescript/yarn/npm/electron/etc developer, so please please make sure I did things properly and let me know what to fix, how, why it's wrong. Thanks! Reviewed By: antonk52 Differential Revision: D41444623 Pulled By: mweststrate fbshipit-source-id: ac4e84b4501c67a4b89163c20c63de1be14d6cef
35 lines
836 B
JSON
35 lines
836 B
JSON
{
|
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
|
"name": "flipper-plugin-network",
|
|
"id": "Network",
|
|
"flipperBundlerEntry": "index.tsx",
|
|
"main": "dist/bundle.js",
|
|
"title": "Network",
|
|
"description": "Use the Network inspector to inspect outgoing network traffic in your apps.",
|
|
"icon": "internet",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"flipper-plugin"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/flipper/issues"
|
|
},
|
|
"dependencies": {
|
|
"brotli": "^1.3.3",
|
|
"lodash": "^4.17.21",
|
|
"pako": "^2.0.3",
|
|
"protobufjs": "^6.10.2",
|
|
"xml-beautifier": "^0.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"flipper": "*",
|
|
"flipper-plugin": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/brotli": "^1.3.1",
|
|
"@types/pako": "^1.0.1",
|
|
"js-base64": "^3.6.0"
|
|
}
|
|
}
|