package.json 1.55 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
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
{
"name": "tesseract.js-core",
"version": "5.1.0",
"description": "Tesseract C++ API in Pure Javascript",
"main": "index.js",
"scripts": {
"test": "mocha ./tests/unit/*.test.js",
"example": "http-server -p 3000"
},
"files": [
"index.js",
"tesseract-core.js",
"tesseract-core.wasm",
"tesseract-core.wasm.js",
"tesseract-core-lstm.js",
"tesseract-core-lstm.wasm",
"tesseract-core-lstm.wasm.js",
"tesseract-core-simd.js",
"tesseract-core-simd.wasm",
"tesseract-core-simd.wasm.js",
"tesseract-core-simd-lstm.js",
"tesseract-core-simd-lstm.wasm",
"tesseract-core-simd-lstm.wasm.js"
],
"repository": {
"type": "git",
"url": "https://github.com/naptha/tesseract.js-core.git"
},
"keywords": [
"ocr",
"tesseract",
"javascript",
"emscripten",
"port",
"c++",
"api",
"recognize",
"text",
"computer",
"vision",
"vision",
"language",
"multilingual",
"english"
],
"author": "antimatter15",
"contributors": [
"jeromewu"
],
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/naptha/tesseract.js-core/issues"
},
"homepage": "https://github.com/naptha/tesseract.js-core",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"expect.js": "^0.3.1",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"tesseract.js-utils": "^1.0.0-beta.8"
}
}