-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "@wdio/tauri-plugin",
"version": "1.0.0-next.1",
"description": "Tauri plugin providing execute and mocking capabilities for WebDriverIO testing",
"homepage": "https://github.com/webdriverio/desktop-mobile/tree/main/packages/tauri-plugin",
"type": "module",
"main": "./dist-js/index.js",
"types": "./dist-js/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist-js/index.d.ts",
"default": "./dist-js/index.js"
}
}
},
"files": [
"README.md",
"dist-js",
"LICENSE"
],
"scripts": {
"build": "tsx scripts/build-guest-js.ts",
"build:js": "tsx scripts/build-guest-js.ts",
"test": "vitest run"
},
"keywords": [
"tauri",
"webdriverio",
"testing",
"automation"
],
"author": "WebDriverIO Community",
"license": "MIT",
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.11.0"
},
"dependencies": {
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-log": "2.8.0",
"@wdio/native-spy": "workspace:*",
"@wdio/native-utils": "workspace:*"
},
"devDependencies": {
"@vitest/coverage-v8": "4.1.4",
"esbuild": "^0.28.0",
"jsdom": "^28.1.0",
"tsx": "^4.19.0",
"typescript": "^5.0.0",
"vitest": "4.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/desktop-mobile.git",
"directory": "packages/tauri-plugin"
}
}