-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.19 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "webdriverio-execute",
"version": "1.2.0",
"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",
"main": "./bin/wdiox.js",
"types": "./build/cli.d.ts",
"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",
"skills",
"README.md"
],
"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",
"prepare": "husky",
"release": "release-it"
},
"dependencies": {
"@wdio/mcp": "^3.2.2",
"@wdio/types": "^9.27.0",
"jiti": "^2.6.1",
"webdriverio": "^9.27.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.6",
"@types/node": "^24.12.2",
"@types/yargs": "^17.0.35",
"@wdio/eslint": "^0.1.3",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"release-it": "^19.2.4",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{ts,mts,cts}": "eslint --fix"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.26.2"
}