2021-10-11 16:52:17 +02:00
|
|
|
{
|
|
|
|
|
"name": "playwright",
|
2024-04-30 02:19:05 +02:00
|
|
|
"version": "1.45.0-next",
|
2021-10-11 16:52:17 +02:00
|
|
|
"description": "A high-level API to automate web browsers",
|
2023-10-06 01:18:22 +02:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2023-10-06 01:42:27 +02:00
|
|
|
"url": "git+https://github.com/microsoft/playwright.git"
|
2023-10-06 01:18:22 +02:00
|
|
|
},
|
2021-10-11 16:52:17 +02:00
|
|
|
"homepage": "https://playwright.dev",
|
|
|
|
|
"engines": {
|
2024-05-08 18:41:27 +02:00
|
|
|
"node": ">=18"
|
2021-10-11 16:52:17 +02:00
|
|
|
},
|
2023-09-08 23:23:35 +02:00
|
|
|
"main": "index.js",
|
2021-10-11 16:52:17 +02:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2022-05-26 22:09:32 +02:00
|
|
|
"types": "./index.d.ts",
|
2021-10-11 16:52:17 +02:00
|
|
|
"import": "./index.mjs",
|
2022-08-08 22:30:07 +02:00
|
|
|
"require": "./index.js",
|
|
|
|
|
"default": "./index.js"
|
2021-10-27 00:41:18 +02:00
|
|
|
},
|
2023-09-08 23:23:35 +02:00
|
|
|
"./package.json": "./package.json",
|
2024-01-25 17:36:13 +01:00
|
|
|
"./lib/common/configLoader": "./lib/common/configLoader.js",
|
|
|
|
|
"./lib/fsWatcher": "./lib/fsWatcher.js",
|
2024-01-24 00:22:09 +01:00
|
|
|
"./lib/program": "./lib/program.js",
|
2023-09-08 23:23:35 +02:00
|
|
|
"./lib/transform/babelBundle": "./lib/transform/babelBundle.js",
|
|
|
|
|
"./lib/transform/compilationCache": "./lib/transform/compilationCache.js",
|
2024-01-25 17:36:13 +01:00
|
|
|
"./lib/runner/runner": "./lib/runner/runner.js",
|
2024-02-20 18:56:33 +01:00
|
|
|
"./lib/runner/testServer": "./lib/runner/testServer.js",
|
2023-09-08 23:23:35 +02:00
|
|
|
"./lib/transform/esmLoader": "./lib/transform/esmLoader.js",
|
2024-01-17 04:31:19 +01:00
|
|
|
"./lib/transform/transform": "./lib/transform/transform.js",
|
2023-09-08 23:23:35 +02:00
|
|
|
"./lib/internalsForTest": "./lib/internalsForTest.js",
|
|
|
|
|
"./lib/plugins": "./lib/plugins/index.js",
|
|
|
|
|
"./jsx-runtime": {
|
|
|
|
|
"import": "./jsx-runtime.mjs",
|
|
|
|
|
"require": "./jsx-runtime.js",
|
|
|
|
|
"default": "./jsx-runtime.js"
|
|
|
|
|
},
|
|
|
|
|
"./lib/util": "./lib/util.js",
|
|
|
|
|
"./lib/utilsBundle": "./lib/utilsBundle.js",
|
|
|
|
|
"./types/test": {
|
|
|
|
|
"types": "./types/test.d.ts"
|
|
|
|
|
},
|
|
|
|
|
"./types/testReporter": {
|
|
|
|
|
"types": "./types/testReporter.d.ts"
|
|
|
|
|
},
|
|
|
|
|
"./test": {
|
|
|
|
|
"types": "./test.d.ts",
|
|
|
|
|
"import": "./test.mjs",
|
|
|
|
|
"require": "./test.js",
|
|
|
|
|
"default": "./test.js"
|
|
|
|
|
}
|
2021-10-11 16:52:17 +02:00
|
|
|
},
|
2021-10-19 20:49:47 +02:00
|
|
|
"bin": {
|
2023-10-06 01:42:27 +02:00
|
|
|
"playwright": "cli.js"
|
2021-10-19 20:49:47 +02:00
|
|
|
},
|
2023-09-08 23:23:35 +02:00
|
|
|
"author": {
|
|
|
|
|
"name": "Microsoft Corporation"
|
2021-10-11 16:52:17 +02:00
|
|
|
},
|
2023-09-08 23:23:35 +02:00
|
|
|
"license": "Apache-2.0",
|
2021-10-11 16:52:17 +02:00
|
|
|
"dependencies": {
|
2024-04-30 02:19:05 +02:00
|
|
|
"playwright-core": "1.45.0-next"
|
2023-09-08 23:23:35 +02:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"fsevents": "2.3.2"
|
2021-10-11 16:52:17 +02:00
|
|
|
}
|
|
|
|
|
}
|