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