Files
flipper/desktop/pkg-lib/package.json
Anton Kastritskiy 4477f3b550 Update esbuild
Summary:
Update esbuild to the latest version that is backward compatible to the current version.

Specifically I was looking for a version that adds support for the typescript's `satisfies` feature [0.15.3](https://github.com/evanw/esbuild/releases/tag/v0.15.13)

Reviewed By: passy

Differential Revision: D51537364

fbshipit-source-id: 6fb8f01ee7b4d19db048d03277be6b6642124002
2023-11-23 02:56:07 -08:00

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.18",
"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": "^11.0.1",
"@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"
}