1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| {
| "name": "playwright-core",
| "version": "1.61.1",
| "description": "A high-level API to automate web browsers",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/microsoft/playwright.git"
| },
| "homepage": "https://playwright.dev",
| "engines": {
| "node": ">=18"
| },
| "author": {
| "name": "Microsoft Corporation"
| },
| "license": "Apache-2.0",
| "exports": {
| ".": {
| "types": "./index.d.ts",
| "import": "./index.mjs",
| "require": "./index.js",
| "default": "./index.js"
| },
| "./package.json": "./package.json",
| "./lib/bootstrap": "./lib/bootstrap.js",
| "./lib/coreBundle": "./lib/coreBundle.js",
| "./lib/utilsBundle": "./lib/utilsBundle.js",
| "./lib/tools/cli-client/program": "./lib/tools/cli-client/program.js"
| },
| "bin": {
| "playwright-core": "cli.js"
| },
| "types": "types/types.d.ts"
| }
|
|