-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "@wdio/native-types",
"version": "2.2.0",
"description": "Type definitions for WebdriverIO Native Desktop Services (Electron and Tauri)",
"homepage": "https://github.com/webdriverio/desktop-mobile/tree/main/packages/native-types",
"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"
]
},
"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"
},
"devDependencies": {
"@electron-forge/shared-types": "^7.11.1",
"@electron/packager": "^19.1.1",
"@types/node": "^25.5.0",
"@wdio/globals": "catalog:default",
"@wdio/native-spy": "workspace:*",
"@wdio/types": "catalog:default",
"builder-util": "^26.8.0",
"electron": "catalog:default",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"webdriverio": "catalog:default"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/desktop-mobile.git",
"directory": "packages/native-types"
}
}