|
1
|
{ |
|
2
|
"name": "playwright", |
|
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
|
"main": "index.js", |
|
14
|
"exports": { |
|
15
|
".": { |
|
16
|
"types": "./index.d.ts", |
|
17
|
"import": "./index.mjs", |
|
18
|
"require": "./index.js", |
|
19
|
"default": "./index.js" |
|
20
|
}, |
|
21
|
"./package.json": "./package.json", |
|
22
|
"./lib/common/configLoader": "./lib/common/configLoader.js", |
|
23
|
"./lib/fsWatcher": "./lib/fsWatcher.js", |
|
24
|
"./lib/mcp/index": "./lib/mcp/index.js", |
|
25
|
"./lib/mcp/browser/tools": "./lib/mcp/browser/tools.js", |
|
26
|
"./lib/mcp/program": "./lib/mcp/program.js", |
|
27
|
"./lib/mcp/sdk/bundle": "./lib/mcp/sdk/bundle.js", |
|
28
|
"./lib/mcp/sdk/exports": "./lib/mcp/sdk/exports.js", |
|
29
|
"./lib/program": "./lib/program.js", |
|
30
|
"./lib/reporters/base": "./lib/reporters/base.js", |
|
31
|
"./lib/reporters/list": "./lib/reporters/list.js", |
|
32
|
"./lib/transform/babelBundle": "./lib/transform/babelBundle.js", |
|
33
|
"./lib/transform/compilationCache": "./lib/transform/compilationCache.js", |
|
34
|
"./lib/transform/esmLoader": "./lib/transform/esmLoader.js", |
|
35
|
"./lib/transform/transform": "./lib/transform/transform.js", |
|
36
|
"./lib/internalsForTest": "./lib/internalsForTest.js", |
|
37
|
"./lib/plugins": "./lib/plugins/index.js", |
|
38
|
"./lib/runner/testRunner": "./lib/runner/testRunner.js", |
|
39
|
"./jsx-runtime": { |
|
40
|
"import": "./jsx-runtime.mjs", |
|
41
|
"require": "./jsx-runtime.js", |
|
42
|
"default": "./jsx-runtime.js" |
|
43
|
}, |
|
44
|
"./lib/util": "./lib/util.js", |
|
45
|
"./lib/utilsBundle": "./lib/utilsBundle.js", |
|
46
|
"./types/test": { |
|
47
|
"types": "./types/test.d.ts" |
|
48
|
}, |
|
49
|
"./types/testReporter": { |
|
50
|
"types": "./types/testReporter.d.ts" |
|
51
|
}, |
|
52
|
"./test": { |
|
53
|
"types": "./test.d.ts", |
|
54
|
"import": "./test.mjs", |
|
55
|
"require": "./test.js", |
|
56
|
"default": "./test.js" |
|
57
|
} |
|
58
|
}, |
|
59
|
"bin": { |
|
60
|
"playwright": "cli.js" |
|
61
|
}, |
|
62
|
"author": { |
|
63
|
"name": "Microsoft Corporation" |
|
64
|
}, |
|
65
|
"license": "Apache-2.0", |
|
66
|
"dependencies": { |
|
67
|
"playwright-core": "1.58.2" |
|
68
|
}, |
|
69
|
"optionalDependencies": { |
|
70
|
"fsevents": "2.3.2" |
|
71
|
} |
|
72
|
} |
|
73
|
|