playwright/packages/playwright/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

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",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/playwright.git"
},
2021-10-11 16:52:17 +02:00
"homepage": "https://playwright.dev",
"engines": {
"node": ">=18"
2021-10-11 16:52:17 +02:00
},
"main": "index.js",
2021-10-11 16:52:17 +02:00
"exports": {
".": {
"types": "./index.d.ts",
2021-10-11 16:52:17 +02:00
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json",
"./lib/common/configLoader": "./lib/common/configLoader.js",
"./lib/fsWatcher": "./lib/fsWatcher.js",
"./lib/program": "./lib/program.js",
"./lib/transform/babelBundle": "./lib/transform/babelBundle.js",
"./lib/transform/compilationCache": "./lib/transform/compilationCache.js",
"./lib/runner/runner": "./lib/runner/runner.js",
2024-02-20 18:56:33 +01:00
"./lib/runner/testServer": "./lib/runner/testServer.js",
"./lib/transform/esmLoader": "./lib/transform/esmLoader.js",
"./lib/transform/transform": "./lib/transform/transform.js",
"./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
},
"bin": {
"playwright": "cli.js"
},
"author": {
"name": "Microsoft Corporation"
2021-10-11 16:52:17 +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"
},
"optionalDependencies": {
"fsevents": "2.3.2"
2021-10-11 16:52:17 +02:00
}
}