forked from microsoft/playwright-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
54
55
56
57
58
59
60
61
62
{
"name": "electron-playwright-cli",
"version": "0.1.3",
"description": "Playwright CLI with Electron app support",
"keywords": [
"playwright",
"electron",
"cli",
"testing",
"automation",
"desktop"
],
"repository": {
"type": "git",
"url": "git+https://github.com/spacecake-labs/electron-playwright-cli.git"
},
"homepage": "https://github.com/spacecake-labs/electron-playwright-cli",
"bugs": {
"url": "https://github.com/spacecake-labs/electron-playwright-cli/issues"
},
"engines": {
"node": ">=18"
},
"author": {
"name": "Spacecake Labs"
},
"license": "Apache-2.0",
"scripts": {
"check": "npm run fmt && npm run lint && npm run typecheck",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"lint": "oxlint .",
"typecheck": "tsc --noEmit",
"test": "playwright test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"files": [
"playwright-cli.js",
"playwright-electron/",
"skills/"
],
"devDependencies": {
"@playwright/test": "1.59.0-alpha-1771104257000",
"@types/node": "^25.2.1",
"electron": "^35.0.0",
"oxfmt": "^0.7.0",
"oxlint": "^0.16.0",
"typescript": "^5.7.0",
"@changesets/cli": "^2.27.0"
},
"dependencies": {
"minimist": "^1.2.5"
},
"peerDependencies": {
"playwright": ">=1.52.0"
},
"bin": {
"electron-playwright-cli": "playwright-cli.js"
}
}