Files
flipper/desktop/flipper-server-core/package.json
dependabot[bot] df5ddf01a6 Bump js-base64 from 3.7.4 to 3.7.5 in /desktop (#4519)
Summary:
Bumps [js-base64](https://github.com/dankogai/js-base64) from 3.7.4 to 3.7.5.
<details>
<summary>Commits</summary>
<ul>
<li><a href="7e790b799e"><code>7e790b7</code></a> version 3.7.5</li>
<li><a href="f729053682"><code>f729053</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dankogai/js-base64/issues/167">https://github.com/facebook/flipper/issues/167</a> from ctomacheski/main</li>
<li><a href="a9a994f367"><code>a9a994f</code></a> improve performance by stop using the mapFn param on Uint8Array.from constructor</li>
<li>See full diff in <a href="https://github.com/dankogai/js-base64/compare/3.7.4...3.7.5">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=js-base64&package-manager=npm_and_yarn&previous-version=3.7.4&new-version=3.7.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

 ---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>

Pull Request resolved: https://github.com/facebook/flipper/pull/4519

Reviewed By: mweststrate

Differential Revision: D43305193

Pulled By: ivanmisuno

fbshipit-source-id: e10eb134c079951e325c1f4d627eb1e60510c12d
2023-02-16 06:33:32 -08:00

83 lines
2.2 KiB
JSON

{
"name": "flipper-server-core",
"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.1",
"async-mutex": "^0.3.2",
"axios": "^0.26.0",
"exit-hook": "^2.1.1",
"express": "^4.17.3",
"flipper-common": "0.0.0",
"flipper-doctor": "0.0.0",
"flipper-plugin-core": "0.0.0",
"flipper-plugin-lib": "0.0.0",
"flipper-server-companion": "0.0.0",
"form-data": "^4.0.0",
"fs-extra": "^11.1.0",
"http-proxy": "^1.18.1",
"invariant": "^2.2.4",
"js-base64": "^3.7.5",
"lodash.memoize": "^4.1.2",
"memorystream": "^0.3.1",
"node-fetch": "2",
"node-forge": "^0.10.0",
"open": "^8.3.0",
"openssl-wrapper": "^0.3.4",
"promisify-child-process": "^4.1.1",
"rimraf": "^3.0.2",
"rsocket-core": "^0.0.27",
"rsocket-flowable": "^0.0.27",
"rsocket-tcp-server": "^0.0.25",
"rsocket-types": "^0.0.25",
"semver": "^7.3.7",
"serialize-error": "^8.1.0",
"split2": "^4.1.0",
"tmp": "^0.2.1",
"which": "^2.0.2",
"ws": "^8.6.0",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.8",
"@types/invariant": "^2.2.35",
"@types/memorystream": "^0.3.0",
"@types/node": "^17.0.31",
"@types/node-fetch": "2",
"@types/node-forge": "^0.10",
"@types/rimraf": "^3.0.2",
"@types/rsocket-core": "^0.0.7",
"@types/rsocket-tcp-server": "^0.0.2",
"@types/split2": "^3.2.1",
"@types/tmp": "^0.2.3",
"@types/which": "^2.0.1",
"@types/ws": "^8.5.3"
},
"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"
}