-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 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
{
"name": "@wdio/electron-cdp-bridge",
"version": "10.0.0-next.9",
"description": "CDP Bridge for WebdriverIO Electron Service",
"author": "Sam Maister <[email protected]>",
"homepage": "https://github.com/webdriverio/desktop-mobile/tree/main/packages/electron-cdp-bridge",
"license": "MIT",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": [
{
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./dist/cjs/index.js"
]
},
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.11.0"
},
"scripts": {
"clean": "shx rm -rf dist coverage .turbo",
"build": "tsx ../../scripts/build-package.ts",
"dev": "tsx ../../scripts/build-package.ts --watch",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run --coverage",
"test:unit": "vitest run --coverage",
"test:e2e": "cross-env RUN_E2E=1 vitest run --coverage=false",
"test:dev": "vitest --coverage",
"lint": "biome check ."
},
"dependencies": {
"@wdio/native-utils": "workspace:*",
"wait-port": "^1.1.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.0",
"cross-env": "^10.1.0",
"devtools-protocol": "^0.0.1596832",
"get-port": "^7.1.0",
"nock": "^14.0.11",
"shx": "^0.4.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"files": ["dist", "README.md", "LICENSE"],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/desktop-mobile.git",
"directory": "packages/electron-cdp-bridge"
}
}