-
Notifications
You must be signed in to change notification settings - Fork 683
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@rushstack/heft-playwright-plugin",
"version": "0.0.0",
"description": "Heft plugin for running Playwright browser tests",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "packages/heft-playwright-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"main": "lib/index.js",
"types": "dist/heft-playwright-plugin.d.ts",
"license": "MIT",
"scripts": {
"build": "heft build --clean",
"install-browsers": "node ./node_modules/playwright-core/cli.js install chromium firefox webkit chrome msedge --with-deps --force",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"exports": {
".": {
"import": "./lib/index.js",
"types": "./dist/heft-playwright-plugin.d.ts"
},
"./lib/*": {
"import": "./lib/*.js",
"types": "./lib-dts/*.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"peerDependencies": {
"@rushstack/heft": "^0.75.0"
},
"dependencies": {
"@rushstack/node-core-library": "workspace:*",
"@rushstack/terminal": "workspace:*",
"@playwright/test": "~1.56.1",
"playwright-core": "~1.56.1"
},
"devDependencies": {
"@rushstack/heft-node-rig": "workspace:*",
"@rushstack/heft": "workspace:*",
"@types/node": "20.17.19",
"typescript": "~5.8.2"
}
}