playwright/packages/playwright-browser-firefox/package.json
Dmitry Gozman 36347e7fea
feat: make playwright package not install browsers automatically (#26672)
Additionally introduce `@playwright/browser-<browser>` packages that
just download the respective browser, but do not export anything.

References #26614.
2023-08-27 07:24:35 -07:00

30 lines
670 B
JSON

{
"name": "@playwright/browser-firefox",
"version": "1.38.0-next",
"description": "Playwright package that automatically installs Firefox",
"repository": "github:Microsoft/playwright",
"homepage": "https://playwright.dev",
"engines": {
"node": ">=16"
},
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"install": "node install.js"
},
"dependencies": {
"playwright-core": "1.38.0-next"
}
}