-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 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
39
40
41
42
43
44
45
{
"name": "@wdio/ocr-service",
"author": "Wim Selles - wswebcreation",
"description": "A WebdriverIO service that is using Tesseract OCR for Desktop/Mobile Web and Mobile Native App tests.",
"version": "2.2.4",
"license": "MIT",
"homepage": "https://webdriver.io/docs/visual-testing",
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/visual-testing.git"
},
"bin": {
"ocr-service": "./dist/cli.js"
},
"keywords": [
"webdriverio",
"tesseract",
"ocr",
"image"
],
"exports": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"build": "run-s clean build:*",
"build:tsc": "tsc --project ./tsconfig.json",
"clean": "rimraf coverage dist .tmp",
"watch": "pnpm run build:tsc -w"
},
"dependencies": {
"@wdio/globals": "^9.7.1",
"@wdio/logger": "^9.4.4",
"@wdio/types": "^9.6.3",
"fuse.js": "^7.0.0",
"@inquirer/prompts": "7.2.3",
"jimp": "^1.6.0",
"node-tesseract-ocr": "^2.2.1",
"tesseract.js": "^5.1.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/inquirer": "~9.0.7",
"@types/xml2js": "~0.4.14"
}
}