package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "tesseract.js-core",
  3. "version": "5.1.1",
  4. "description": "Tesseract C++ API in Pure Javascript",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha ./tests/unit/*.test.js",
  8. "example": "http-server -p 3000"
  9. },
  10. "files": [
  11. "index.js",
  12. "tesseract-core.js",
  13. "tesseract-core.wasm",
  14. "tesseract-core.wasm.js",
  15. "tesseract-core-lstm.js",
  16. "tesseract-core-lstm.wasm",
  17. "tesseract-core-lstm.wasm.js",
  18. "tesseract-core-simd.js",
  19. "tesseract-core-simd.wasm",
  20. "tesseract-core-simd.wasm.js",
  21. "tesseract-core-simd-lstm.js",
  22. "tesseract-core-simd-lstm.wasm",
  23. "tesseract-core-simd-lstm.wasm.js"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/naptha/tesseract.js-core.git"
  28. },
  29. "keywords": [
  30. "ocr",
  31. "tesseract",
  32. "javascript",
  33. "emscripten",
  34. "port",
  35. "c++",
  36. "api",
  37. "recognize",
  38. "text",
  39. "computer",
  40. "vision",
  41. "vision",
  42. "language",
  43. "multilingual",
  44. "english"
  45. ],
  46. "author": "antimatter15",
  47. "contributors": [
  48. "jeromewu"
  49. ],
  50. "license": "Apache-2.0",
  51. "bugs": {
  52. "url": "https://github.com/naptha/tesseract.js-core/issues"
  53. },
  54. "homepage": "https://github.com/naptha/tesseract.js-core",
  55. "devDependencies": {
  56. "eslint": "^7.32.0",
  57. "eslint-config-airbnb-base": "^14.2.1",
  58. "eslint-plugin-import": "^2.27.5",
  59. "eslint-plugin-jsx-a11y": "^6.7.1",
  60. "eslint-plugin-react": "^7.32.2",
  61. "expect.js": "^0.3.1",
  62. "http-server": "^14.1.1",
  63. "mocha": "^10.2.0",
  64. "tesseract.js-utils": "^1.0.0-beta.8"
  65. }
  66. }