-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.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
{
"name": "electron-script-app-example-esm",
"version": "0.0.0",
"description": "Simple Electron app example using wdio-electron-service (ESM)",
"main": "out/main/index.js",
"type": "module",
"private": true,
"scripts": {
"clean": "pnpx shx rm -rf out node_modules",
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron .",
"test": "cross-env DEBUG=wdio-electron-service wdio run wdio.conf.ts",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/semver": "^7.7.1",
"@wdio/cli": "^9.27.0",
"@wdio/electron-service": "workspace:*",
"@wdio/globals": "^9.27.0",
"@wdio/local-runner": "^9.27.0",
"@wdio/mocha-framework": "^9.27.0",
"@wdio/spec-reporter": "^9.27.0",
"cross-env": "^10.1.0",
"electron": "41.2.1",
"electron-vite": "^5.0.0",
"semver": "^7.7.4",
"typescript": "^5.9.3"
},
"keywords": ["electron", "electron-vite", "webdriverio", "testing", "example"],
"author": "WebDriverIO Community",
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": ["electron"]
}
}