931d4fced5
🤖 I have created a release *beep* *boop* --- <details><summary>puppeteer: 19.4.0</summary> ## [19.4.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.3.0...puppeteer-v19.4.0) (2022-12-07) ### Features * **chromium:** roll to Chromium 109.0.5412.0 (r1069273) ([#9364](https://github.com/puppeteer/puppeteer/issues/9364)) ([1875da6
](1875da6191
)), closes [#9233](https://github.com/puppeteer/puppeteer/issues/9233) ### Dependencies * The following workspace dependencies were updated * dependencies * puppeteer-core bumped from 19.3.0 to 19.4.0 </details> <details><summary>puppeteer-core: 19.4.0</summary> ## [19.4.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.3.0...puppeteer-core-v19.4.0) (2022-12-07) ### Features * ability to send headers via ws connection to browser in node.js environment ([#9314](https://github.com/puppeteer/puppeteer/issues/9314)) ([937fffa
](937fffaedc
)), closes [#7218](https://github.com/puppeteer/puppeteer/issues/7218) * **chromium:** roll to Chromium 109.0.5412.0 (r1069273) ([#9364](https://github.com/puppeteer/puppeteer/issues/9364)) ([1875da6
](1875da6191
)), closes [#9233](https://github.com/puppeteer/puppeteer/issues/9233) * **puppeteer-core:** keydown supports commands ([#9357](https://github.com/puppeteer/puppeteer/issues/9357)) ([b7ebc5d
](b7ebc5d9bb
)) ### Bug Fixes * **puppeteer-core:** avoid type instantiation errors ([#9370](https://github.com/puppeteer/puppeteer/issues/9370)) ([17f31a9
](17f31a9ee4
)), closes [#9369](https://github.com/puppeteer/puppeteer/issues/9369) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
165 lines
3.8 KiB
JSON
165 lines
3.8 KiB
JSON
{
|
|
"name": "puppeteer-core",
|
|
"version": "19.4.0",
|
|
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
|
"keywords": [
|
|
"puppeteer",
|
|
"chrome",
|
|
"headless",
|
|
"automation"
|
|
],
|
|
"type": "commonjs",
|
|
"main": "./lib/cjs/puppeteer/puppeteer-core.js",
|
|
"types": "./lib/types.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/types.d.ts",
|
|
"import": "./lib/esm/puppeteer/puppeteer-core.js",
|
|
"require": "./lib/cjs/puppeteer/puppeteer-core.js"
|
|
},
|
|
"./internal/*": {
|
|
"import": "./lib/esm/puppeteer/*",
|
|
"require": "./lib/cjs/puppeteer/*"
|
|
},
|
|
"./*": {
|
|
"import": "./*",
|
|
"require": "./*"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.1.0"
|
|
},
|
|
"scripts": {
|
|
"build:third_party": "wireit",
|
|
"build:tsc": "wireit",
|
|
"build:types": "wireit",
|
|
"build": "wireit",
|
|
"check": "tsx tools/ensure-correct-devtools-protocol-package",
|
|
"clean": "tsc -b --clean && rimraf lib src/generated",
|
|
"format:types": "wireit",
|
|
"generate:package-json": "wireit",
|
|
"generate:sources": "wireit",
|
|
"prepack": "wireit"
|
|
},
|
|
"wireit": {
|
|
"prepack": {
|
|
"command": "cp ../../README.md README.md",
|
|
"files": [
|
|
"../../README.md"
|
|
],
|
|
"output": [
|
|
"README.md"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependencies": [
|
|
"build:third_party",
|
|
"format:types",
|
|
"generate:package-json"
|
|
]
|
|
},
|
|
"generate:sources": {
|
|
"command": "tsx tools/generate_sources.ts",
|
|
"files": [
|
|
"tools/generate_sources.ts",
|
|
"src/templates/**"
|
|
],
|
|
"output": [
|
|
"src/generated/**"
|
|
]
|
|
},
|
|
"build:third_party": {
|
|
"command": "rollup --config rollup.third_party.config.js",
|
|
"dependencies": [
|
|
"build:tsc"
|
|
],
|
|
"clean": false,
|
|
"files": [
|
|
"lib/esm/third_party/**",
|
|
"lib/cjs/third_party/**"
|
|
],
|
|
"output": [
|
|
"lib/esm/third_party/**",
|
|
"lib/cjs/third_party/**"
|
|
]
|
|
},
|
|
"generate:package-json": {
|
|
"command": "echo '{\"type\": \"module\"}' > lib/esm/package.json",
|
|
"clean": "if-file-deleted",
|
|
"dependencies": [
|
|
"build:tsc"
|
|
],
|
|
"output": [
|
|
"lib/esm/package.json"
|
|
]
|
|
},
|
|
"build:types": {
|
|
"command": "api-extractor run --local",
|
|
"dependencies": [
|
|
"build:tsc"
|
|
],
|
|
"files": [
|
|
"tsconfig.json",
|
|
"api-extractor.json",
|
|
"lib/esm/puppeteer/types.d.ts"
|
|
],
|
|
"output": [
|
|
"lib/types.d.ts"
|
|
]
|
|
},
|
|
"format:types": {
|
|
"command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts",
|
|
"dependencies": [
|
|
"build:types"
|
|
],
|
|
"clean": false,
|
|
"files": [
|
|
"lib/types.d.ts",
|
|
"../../.eslintrc.types.cjs"
|
|
],
|
|
"output": [
|
|
"lib/types.d.ts"
|
|
]
|
|
},
|
|
"build:tsc": {
|
|
"command": "tsc -b",
|
|
"clean": "if-file-deleted",
|
|
"dependencies": [
|
|
"generate:sources"
|
|
],
|
|
"files": [
|
|
"src/**",
|
|
"compat/**",
|
|
"third_party/**",
|
|
"**/tsconfig.*.json"
|
|
],
|
|
"output": [
|
|
"lib/esm/**",
|
|
"lib/cjs/**"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.tsbuildinfo"
|
|
],
|
|
"author": "The Chromium Authors",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"cross-fetch": "3.1.5",
|
|
"debug": "4.3.4",
|
|
"devtools-protocol": "0.0.1068969",
|
|
"extract-zip": "2.0.1",
|
|
"https-proxy-agent": "5.0.1",
|
|
"proxy-from-env": "1.1.0",
|
|
"rimraf": "3.0.2",
|
|
"tar-fs": "2.1.1",
|
|
"unbzip2-stream": "1.4.3",
|
|
"ws": "8.10.0"
|
|
}
|
|
}
|