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
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "flipper-pkg-lib",
|
|
"version": "0.0.0",
|
|
"description": "Library for building and publishing Flipper plugins",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"chalk": "^4",
|
|
"esbuild": "^0.15.7",
|
|
"fb-watchman": "^2.0.2",
|
|
"flipper-common": "0.0.0",
|
|
"flipper-plugin-lib": "0.0.0",
|
|
"fs-extra": "^11.1.1",
|
|
"metro": "^0.70.2",
|
|
"metro-cache": "^0.70.2",
|
|
"metro-minify-terser": "^0.75.0",
|
|
"npm-packlist": "^4.0.0",
|
|
"p-map": "^4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "^17.0.31",
|
|
"@types/npm-packlist": "^1.1.2",
|
|
"flipper-test-utils": "0.0.0",
|
|
"mock-fs": "^5.2.0"
|
|
},
|
|
"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"
|
|
}
|