Summary: Caused some inconsistencies when running `tsc`. This brings them back in line. Reviewed By: aigoncharov Differential Revision: D36101548 fbshipit-source-id: b8f757c59f879911c9b0920fe11396246ffa37e2
36 lines
841 B
JSON
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.2.1"
|
|
},
|
|
"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"
|
|
}
|