-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "electron-script-app-example-cjs",
"version": "0.0.0",
"description": "Simple Electron app example using wdio-electron-service (CJS)",
"main": "out/main/index.js",
"type": "commonjs",
"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.3.0",
"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"
]
}
}