-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.4 KB
/
package.json
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
{
"name": "wdio-electron-service-example",
"version": "1.0.0",
"main": "./dist/main.js",
"scripts": {
"build": "webpack && cp ./src/index.html ./dist && electron-builder -p never",
"ci": "pnpm build && pnpm test && pnpm lint",
"clean": "pnpm clean:dist && rm -rf ./node_modules ./all-logs pnpm-lock.yaml",
"clean:dist": "rm -rf ./dist && mkdir -p ./dist",
"format": "prettier --write \"**/*.{j,t}s\"",
"lint": "eslint \"**/*.{j,t}s\"",
"prepare": "husky",
"test": "xvfb-maybe wdio run ./wdio.conf.js"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/webdriverio": "^3.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitest/spy": "^3.0.5",
"@wdio/cli": "^9.8.0",
"@wdio/globals": "^9.8.0",
"@wdio/local-runner": "^9.8.0",
"@wdio/mocha-framework": "^9.7.3",
"debug": "^4.4.0",
"electron": "^34.1.1",
"electron-builder": "^25.1.8",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-wdio": "^9.6.0",
"expect-webdriverio": "5.0.5",
"global-jsdom": "^26.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"wdio-electron-service": "7.4.0-next.0",
"webdriverio": "^9.8.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"xvfb-maybe": "^0.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
],
"**/*.{yml,json,md,ts,js}": [
"prettier --write"
]
},
"build": {
"asar": true,
"appId": "com.wdio-electron-service-example.demo",
"copyright": "goosewobbler",
"productName": "wdio-electron-service-example",
"files": [
"./dist/*"
],
"linux": {
"executableName": "wdio-electron-service-example",
"category": "Utility",
"target": [
"AppImage"
]
}
},
"packageManager": "[email protected]+sha512.ee592eda8815a8a293c206bb0917c4bb0ff274c50def7cbc17be05ec641fc2d1b02490ce660061356bd0d126a4d7eb2ec8830e6959fb8a447571c631d5a2442d",
"pnpm": {
"ignoredBuiltDependencies": [
"edgedriver",
"esbuild",
"geckodriver"
],
"onlyBuiltDependencies": [
"electron"
]
}
}