-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.15 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.15 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
{
"name": "@wdio/native-utils",
"version": "2.3.0",
"description": "Utilities for WebdriverIO Native Desktop Services",
"homepage": "https://github.com/webdriverio/desktop-mobile/tree/main/packages/native-utils",
"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"
],
"./script-detect": {
"import": {
"types": "./dist/esm/script-detect.d.ts",
"default": "./dist/esm/script-detect.js"
},
"require": {
"types": "./dist/cjs/script-detect.d.ts",
"default": "./dist/cjs/script-detect.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",
"test:unit": "vitest run --coverage",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest --coverage",
"lint": "biome check ."
},
"dependencies": {
"@wdio/logger": "catalog:default",
"debug": "^4.4.3",
"esbuild": "^0.28.0",
"find-up-simple": "^1.0.1",
"json5": "^2.2.3",
"smol-toml": "^1.6.0",
"tsx": "^4.21.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"@wdio/native-types": "workspace:*",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/desktop-mobile.git",
"directory": "packages/native-utils"
}
}