Files
flipper/desktop/flipper-dump/package.json
Pascal Hartig 160b05a5bd Bump deps
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
2023-08-21 03:03:30 -07:00

36 lines
841 B
JSON

{
"name": "flipper-dump",
"private": true,
"version": "0.0.0",
"description": "Flipper tool to dump data from clients",
"repository": "facebook/flipper",
"main": "lib/index.js",
"flipperBundlerEntry": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {
"flipper-common": "0.0.0",
"flipper-server-core": "0.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^17.0.31"
},
"peerDependencies": {},
"scripts": {
"start": "ts-node src/index.tsx",
"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"
}