-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.72 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
{
"name": "@wdio/tauri-service",
"version": "1.0.0-next.0",
"description": "WebdriverIO service for testing Tauri applications",
"author": "WebdriverIO Community",
"homepage": "https://github.com/webdriverio/desktop-mobile/tree/main/packages/tauri-service",
"license": "MIT",
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.11.0"
},
"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"
]
},
"files": ["dist", "docs", "README.md", "LICENSE"],
"scripts": {
"build": "tsx ../../scripts/build-package.ts",
"build:console-wrapper": "tsx scripts/minify-console-wrapper.ts",
"build:watch": "tsx ../../scripts/build-package.ts --watch",
"clean": "shx rm -rf dist",
"clean:dist": "shx rm -rf dist",
"dev": "pnpm run build:watch",
"lint": "biome check --linter-enabled=true --formatter-enabled=false src/",
"lint:fix": "biome check --write --linter-enabled=true --formatter-enabled=false src/",
"test": "vitest run",
"test:unit": "vitest run --config vitest.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@wdio/globals": "catalog:default",
"@wdio/logger": "catalog:default",
"@wdio/native-spy": "workspace:*",
"@wdio/native-types": "workspace:*",
"@wdio/native-utils": "workspace:*",
"@wdio/spec-reporter": "catalog:default",
"@wdio/types": "catalog:default",
"debug": "^4.4.3",
"get-port": "^7.1.0",
"tslib": "^2.8.1",
"webdriverio": "catalog:default"
},
"devDependencies": {
"@babel/parser": "^7.29.0",
"@types/debug": "^4.1.12",
"@types/node": "^25.5.0",
"recast": "^0.23.11",
"shx": "^0.4.0",
"terser": "^5.46.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"webdriverio": "^9.0.0"
},
"peerDependenciesMeta": {
"webdriverio": {
"optional": false
}
},
"keywords": ["webdriverio", "wdio", "wdio-service", "tauri", "testing", "e2e", "desktop"],
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/desktop-mobile.git",
"directory": "packages/tauri-service"
},
"bugs": {
"url": "https://github.com/webdriverio/desktop-mobile/issues"
}
}