2021-10-11 17:52:17 +03:00
|
|
|
{
|
|
|
|
"name": "playwright-core",
|
2022-04-08 04:16:22 +03:00
|
|
|
"version": "1.22.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",
|
2022-04-07 23:26:50 +03:00
|
|
|
"./lib/utils": "./lib/utils/index.js",
|
2022-02-19 01:39:17 +03:00
|
|
|
"./lib/utils/comparators": "./lib/utils/comparators.js",
|
2022-04-08 06:18:22 +03:00
|
|
|
"./lib/utils/eventsHelper": "./lib/utils/eventsHelper.js",
|
|
|
|
"./lib/utils/fileUtils": "./lib/utils/fileUtils.js",
|
2021-10-22 22:59:52 +03:00
|
|
|
"./lib/utils/httpServer": "./lib/utils/httpServer.js",
|
2022-04-08 06:18:22 +03:00
|
|
|
"./lib/utils/hostPlatform": "./lib/utils/hostPlatform.js",
|
|
|
|
"./lib/utils/manualPromise": "./lib/utils/manualPromise.js",
|
|
|
|
"./lib/utils/multimap": "./lib/utils/multimap.js",
|
2021-10-22 22:59:52 +03:00
|
|
|
"./lib/utils/processLauncher": "./lib/utils/processLauncher.js",
|
2022-04-08 06:18:22 +03:00
|
|
|
"./lib/utils/spawnAsync": "./lib/utils/spawnAsync.js",
|
2022-02-02 05:40:44 +03:00
|
|
|
"./lib/utils/stackTrace": "./lib/utils/stackTrace.js",
|
2022-04-08 06:18:22 +03:00
|
|
|
"./lib/utils/timeoutRunner": "./lib/utils/timeoutRunner.js",
|
2022-01-25 23:14:30 +03:00
|
|
|
"./lib/remote/playwrightServer": "./lib/remote/playwrightServer.js",
|
2022-04-07 08:21:27 +03:00
|
|
|
"./lib/remote/playwrightClient": "./lib/remote/playwrightClient.js",
|
|
|
|
"./lib/server": "./lib/server/index.js"
|
2021-10-11 17:52:17 +03:00
|
|
|
},
|
|
|
|
"types": "types/types.d.ts",
|
|
|
|
"bin": {
|
|
|
|
"playwright": "./cli.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-02 13:14:41 +03:00
|
|
|
"commander": "8.3.0",
|
2022-02-19 01:39:17 +03:00
|
|
|
"colors": "1.4.0",
|
2022-02-02 13:14:41 +03:00
|
|
|
"debug": "4.3.3",
|
|
|
|
"extract-zip": "2.0.1",
|
|
|
|
"https-proxy-agent": "5.0.0",
|
|
|
|
"jpeg-js": "0.4.3",
|
|
|
|
"mime": "3.0.0",
|
2022-02-19 01:39:17 +03:00
|
|
|
"pixelmatch": "5.2.1",
|
2022-02-02 13:14:41 +03:00
|
|
|
"pngjs": "6.0.0",
|
|
|
|
"progress": "2.0.3",
|
|
|
|
"proper-lockfile": "4.1.2",
|
|
|
|
"proxy-from-env": "1.1.0",
|
|
|
|
"rimraf": "3.0.2",
|
|
|
|
"socks-proxy-agent": "6.1.1",
|
|
|
|
"stack-utils": "2.0.5",
|
|
|
|
"ws": "8.4.2",
|
|
|
|
"yauzl": "2.10.0",
|
|
|
|
"yazl": "2.5.1"
|
2021-10-11 17:52:17 +03:00
|
|
|
}
|
|
|
|
}
|