-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.57 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
63
64
65
66
67
68
{
"name": "webdriverio-execute",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/Winify/webdriverio-execute.git"
},
"description": "Interactive browser and app CLI for developers using WebdriverIO",
"author": "Vince Graics <wince17@gmail.com>",
"homepage": "https://github.com/Winify/webdriverio-execute",
"license": "MIT",
"bin": {
"wdiox": "./bin/wdiox.js"
},
"engines": {
"node": ">=18.20.0"
},
"keywords": [
"webdriver",
"webdriverio",
"wdio",
"cli",
"browser",
"automation"
],
"bugs": {
"url": "https://github.com/Winify/webdriverio-execute/issues"
},
"type": "module",
"files": [
"bin",
"build",
"README.md"
],
"types": "./dist/index.d.ts",
"scripts": {
"bundle": "rimraf build && tsup",
"postbundle": "pnpm pack",
"dev": "tsup --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint --fix && pnpm run typecheck",
"link": "pnpm run bundle && pnpm i && pnpm link --global"
},
"dependencies": {
"@wdio/mcp": "^2.3.0",
"@wdio/types": "^9.24.0",
"webdriverio": "^9.24.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^24.10.13",
"@types/yargs": "^17.0.24",
"@wdio/eslint": "^0.1.3",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"release-it": "^19.2.4",
"rimraf": "^6.1.2",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.26.2"
}