-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
69 lines (68 loc) · 1.8 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/devtools-service",
"version": "10.3.1",
"description": "Hook up WebdriverIO with DevTools",
"author": "Christian Bromann <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/devtools-service"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.js"
},
"./launcher": {
"types": "./dist/launcher.d.ts",
"import": "./dist/launcher.js",
"require": "./dist/launcher.js"
}
},
"types": "./dist/index.d.ts",
"typeScriptVersion": "^5.0.0",
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"lint": "eslint ."
},
"dependencies": {
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"@wdio/devtools-backend": "workspace:^",
"@wdio/devtools-script": "workspace:^",
"@wdio/logger": "9.18.0",
"@wdio/reporter": "9.27.0",
"@wdio/types": "9.27.0",
"fluent-ffmpeg": "^2.1.3",
"import-meta-resolve": "^4.1.0",
"stack-trace": "1.0.0-pre2",
"ws": "^8.18.3"
},
"license": "MIT",
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.28.0",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/stack-trace": "^0.0.33",
"@types/ws": "^8.18.1",
"@wdio/globals": "9.27.0",
"@wdio/protocols": "9.27.0",
"typescript": "6.0.3",
"vite": "8.0.9",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"@wdio/protocols": "9.27.0",
"devtools": "^8.42.0",
"webdriverio": "^9.19.1"
}
}