2021-10-11 17:52:17 +03:00
|
|
|
{
|
|
|
|
"name": "playwright-core",
|
2022-01-12 22:50:44 +03:00
|
|
|
"version": "1.19.0-next",
|
2021-10-11 17:52:17 +03:00
|
|
|
"description": "A high-level API to automate web browsers",
|
|
|
|
"repository": "github:Microsoft/playwright",
|
|
|
|
"homepage": "https://playwright.dev",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=12"
|
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Microsoft Corporation"
|
|
|
|
},
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": "./index.mjs",
|
|
|
|
"require": "./index.js"
|
|
|
|
},
|
2021-10-19 21:49:47 +03:00
|
|
|
"./cli": "./cli.js",
|
2021-10-27 01:41:18 +03:00
|
|
|
"./package.json": "./package.json",
|
2021-10-22 22:59:52 +03:00
|
|
|
"./lib/grid/gridServer": "./lib/grid/gridServer.js",
|
|
|
|
"./lib/grid/gridClient": "./lib/grid/gridClient.js",
|
|
|
|
"./lib/grid/dockerGridFactory": "./lib/grid/dockerGridFactory.js",
|
2022-01-16 06:25:32 +03:00
|
|
|
"./lib/outofprocess": "./lib/outofprocess.js",
|
2021-10-22 22:59:52 +03:00
|
|
|
"./lib/utils/async": "./lib/utils/async.js",
|
|
|
|
"./lib/utils/httpServer": "./lib/utils/httpServer.js",
|
|
|
|
"./lib/utils/multimap": "./lib/utils/multimap.js",
|
|
|
|
"./lib/utils/processLauncher": "./lib/utils/processLauncher.js",
|
|
|
|
"./lib/utils/registry": "./lib/utils/registry.js",
|
2022-01-25 23:14:30 +03:00
|
|
|
"./lib/utils/utils": "./lib/utils/utils.js",
|
2022-02-02 05:40:44 +03:00
|
|
|
"./lib/utils/stackTrace": "./lib/utils/stackTrace.js",
|
2022-01-25 23:14:30 +03:00
|
|
|
"./lib/remote/playwrightServer": "./lib/remote/playwrightServer.js",
|
|
|
|
"./lib/remote/playwrightClient": "./lib/remote/playwrightClient.js"
|
2021-10-11 17:52:17 +03:00
|
|
|
},
|
|
|
|
"types": "types/types.d.ts",
|
|
|
|
"bin": {
|
|
|
|
"playwright": "./cli.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-01 23:27:34 +03:00
|
|
|
"commander": "^8.3.0",
|
|
|
|
"debug": "^4.3.3",
|
2021-10-11 17:52:17 +03:00
|
|
|
"extract-zip": "^2.0.1",
|
|
|
|
"https-proxy-agent": "^5.0.0",
|
2022-02-01 23:27:34 +03:00
|
|
|
"jpeg-js": "^0.4.3",
|
|
|
|
"mime": "^3.0.0",
|
|
|
|
"pngjs": "^6.0.0",
|
2021-10-11 17:52:17 +03:00
|
|
|
"progress": "^2.0.3",
|
2022-02-01 23:27:34 +03:00
|
|
|
"proper-lockfile": "^4.1.2",
|
2021-10-11 17:52:17 +03:00
|
|
|
"proxy-from-env": "^1.1.0",
|
|
|
|
"rimraf": "^3.0.2",
|
2022-02-01 23:27:34 +03:00
|
|
|
"socks-proxy-agent": "^6.1.1",
|
|
|
|
"stack-utils": "^2.0.5",
|
|
|
|
"ws": "^8.4.2",
|
2021-10-13 00:42:50 +03:00
|
|
|
"yauzl": "^2.10.0",
|
|
|
|
"yazl": "^2.5.1"
|
2021-10-11 17:52:17 +03:00
|
|
|
}
|
|
|
|
}
|