-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "tesseract-ocr-golem",
"version": "1.0.0",
"description": "Tesseract OCR library that executes the OCR on the Golem Network scaling to thousands of CPUs",
"keywords": [
"tesseract",
"ocr",
"optical",
"character",
"recognition",
"golem",
"network",
"distributed",
"computing",
"internet",
"computer"
],
"scripts": {
"test": "jest",
"prebuild": "rimraf dist/",
"build": "tsc --build",
"format": "prettier -w .",
"format:check": "prettier -c .",
"example": "tsx examples/usage.ts",
"lint": "eslint . && tsc --noEmit",
"docs": "typedoc --excludeExternals --excludeProtected --excludePrivate src/index.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/golemfactory/tesseract-ocr-golem.git"
},
"author": "GolemFactory <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/golemfactory/tesseract-ocr-golem/issues"
},
"homepage": "https://github.com/golemfactory/tesseract-ocr-golem#readme",
"dependencies": {
"@golem-sdk/golem-js": "^3.4.2",
"debug": "^4.3.7",
"generic-pool": "^3.9.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/debug": "^4.1.12",
"@types/node": "^20.16.12",
"@types/wtfnode": "^0.7.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.2",
"tsx": "^4.19.1",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"wtfnode": "^0.9.3"
},
"engines": {
"node": ">=18"
}
}