-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "tesseract-wasm",
"version": "0.10.0",
"description": "OCR library built on Tesseract",
"type": "module",
"main": "./dist/lib.js",
"exports": {
".": "./dist/lib.js",
"./node": "./src/node-worker.js"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertknight/tesseract-wasm.git"
},
"author": "Robert Knight <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/robertknight/tesseract-wasm/issues"
},
"homepage": "https://github.com/robertknight/tesseract-wasm#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-virtual": "^2.1.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rollup": "^2.73.0",
"sharp": "^0.32.6",
"typedoc": "^0.23.24",
"typescript": "^4.9.5"
},
"dependencies": {
"comlink": "^4.4.1"
},
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/node-worker.js"
]
}