-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.29 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
{
"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",
"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.7",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitest/spy": "^2.0.5",
"@wdio/cli": "^9.0.7",
"@wdio/globals": "^9.0.7",
"@wdio/local-runner": "^9.0.7",
"@wdio/mocha-framework": "^9.0.6",
"debug": "^4.3.6",
"electron": "^32.0.1",
"electron-builder": "^25.0.4",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-wdio": "^9.0.5",
"expect-webdriverio": "5.0.1",
"global-jsdom": "^24.0.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"wdio-electron-service": "^7.0.2",
"webdriverio": "^9.0.7",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"xvfb-maybe": "^0.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"expect-webdriverio": "^5.0.1"
}
},
"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.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}