mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
35f9c6d1e6
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
134 lines
3.1 KiB
JSON
134 lines
3.1 KiB
JSON
{
|
|
"name": "puppeteer-core",
|
|
"version": "21.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": ">=16.3.0"
|
|
},
|
|
"scripts": {
|
|
"build:docs": "wireit",
|
|
"build": "wireit",
|
|
"check": "tsx tools/ensure-correct-devtools-protocol-package",
|
|
"clean": "../../tools/clean.js",
|
|
"prepack": "wireit",
|
|
"unit": "wireit"
|
|
},
|
|
"wireit": {
|
|
"prepack": {
|
|
"command": "tsx ../../tools/cp.ts ../../README.md README.md",
|
|
"files": [
|
|
"../../README.md"
|
|
],
|
|
"output": [
|
|
"README.md"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependencies": [
|
|
"build:tsc",
|
|
"build:types"
|
|
]
|
|
},
|
|
"build:docs": {
|
|
"command": "api-extractor run --local --config \"./api-extractor.docs.json\"",
|
|
"files": [
|
|
"api-extractor.docs.json",
|
|
"lib/esm/puppeteer/puppeteer-core.d.ts",
|
|
"tsconfig.json"
|
|
],
|
|
"dependencies": [
|
|
"build:tsc"
|
|
]
|
|
},
|
|
"build:tsc": {
|
|
"command": "hereby build",
|
|
"clean": "if-file-deleted",
|
|
"dependencies": [
|
|
"../browsers:build"
|
|
],
|
|
"files": [
|
|
"{src,third_party}/**",
|
|
"../../versions.js",
|
|
"!src/generated"
|
|
],
|
|
"output": [
|
|
"lib/{cjs,esm}/**"
|
|
]
|
|
},
|
|
"build:types": {
|
|
"command": "api-extractor run --local && eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts",
|
|
"files": [
|
|
"../../.eslintrc.types.cjs",
|
|
"api-extractor.json",
|
|
"lib/esm/puppeteer/types.d.ts",
|
|
"tsconfig.json"
|
|
],
|
|
"output": [
|
|
"lib/types.d.ts"
|
|
],
|
|
"dependencies": [
|
|
"build:tsc"
|
|
]
|
|
},
|
|
"unit": {
|
|
"command": "node --test --test-reporter spec lib/cjs",
|
|
"dependencies": [
|
|
"build"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"!*.test.js",
|
|
"!*.test.d.ts",
|
|
"!*.test.js.map",
|
|
"!*.test.d.ts.map",
|
|
"!*.tsbuildinfo"
|
|
],
|
|
"author": "The Chromium Authors",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@puppeteer/browsers": "1.8.0",
|
|
"chromium-bidi": "0.4.32",
|
|
"cross-fetch": "4.0.0",
|
|
"debug": "4.3.4",
|
|
"devtools-protocol": "0.0.1191157",
|
|
"ws": "8.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.17.15",
|
|
"mitt": "3.0.1",
|
|
"parsel-js": "1.1.2",
|
|
"rxjs": "7.8.1"
|
|
}
|
|
}
|