|
1
|
{ |
|
2
|
"name": "playwright-core", |
|
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
|
"./package.json": "./package.json", |
|
25
|
"./lib/outofprocess": "./lib/outofprocess.js", |
|
26
|
"./lib/cli/program": "./lib/cli/program.js", |
|
27
|
"./lib/mcpBundle": "./lib/mcpBundle.js", |
|
28
|
"./lib/remote/playwrightServer": "./lib/remote/playwrightServer.js", |
|
29
|
"./lib/server": "./lib/server/index.js", |
|
30
|
"./lib/server/utils/image_tools/stats": "./lib/server/utils/image_tools/stats.js", |
|
31
|
"./lib/server/utils/image_tools/compare": "./lib/server/utils/image_tools/compare.js", |
|
32
|
"./lib/server/utils/image_tools/imageChannel": "./lib/server/utils/image_tools/imageChannel.js", |
|
33
|
"./lib/server/utils/image_tools/colorUtils": "./lib/server/utils/image_tools/colorUtils.js", |
|
34
|
"./lib/server/registry/index": "./lib/server/registry/index.js", |
|
35
|
"./lib/utils": "./lib/utils.js", |
|
36
|
"./lib/utilsBundle": "./lib/utilsBundle.js", |
|
37
|
"./lib/zipBundle": "./lib/zipBundle.js" |
|
38
|
}, |
|
39
|
"bin": { |
|
40
|
"playwright-core": "cli.js" |
|
41
|
}, |
|
42
|
"types": "types/types.d.ts" |
|
43
|
} |
|
44
|
|