-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "@wdio/devtools-service",
"version": "0.0.0",
"description": "Hook up WebdriverIO with DevTools",
"author": "Christian Bromann <mail@bromann.dev>",
"type": "module",
"exports": {
".": "./dist/index.js",
"./types": {
"import": "./dist/types.js",
"types": "./dist/types.d.ts",
"node": "./dist/types.js"
},
"./launcher": {
"import": "./dist/launcher.js",
"types": "./dist/launcher.d.ts",
"node": "./dist/launcher.js"
}
},
"types": "./dist/index.d.ts",
"typeScriptVersion": "^5.0.0",
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"test": "eslint ."
},
"dependencies": {
"@wdio/devtools-backend": "workspace:^",
"@wdio/devtools-script": "workspace:^",
"@wdio/logger": "^8.23.0",
"@wdio/reporter": "^8.23.0",
"@wdio/types": "^8.23.0",
"import-meta-resolve": "^4.0.0",
"stack-trace": "1.0.0-pre2",
"webdriverio": "^8.23.0",
"ws": "^8.15.1"
},
"license": "MIT",
"devDependencies": {
"@types/stack-trace": "^0.0.33",
"@types/ws": "^8.5.10",
"@wdio/globals": "^9.0.4",
"@wdio/protocols": "^8.23.0",
"vite-plugin-dts": "^3.6.3"
},
"peerDependencies": {
"@wdio/protocols": "^8.20.4",
"webdriverio": "^8.20.3"
}
}