mirror of
https://github.com/kaffarell/obsidian-tesseract-ocr.git
synced 2026-07-22 07:40:26 +00:00
When executing tesseract, sometimes we get the correct output on stdout and an error on stderr, in that case we simply use the stdout and discard the error. Bump to version 0.3.8.
24 lines
706 B
JSON
24 lines
706 B
JSON
{
|
|
"name": "image-ocr",
|
|
"version": "0.3.8",
|
|
"description": "Runs ocr on pasted images and posts result in details box. This allows to search in images.",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|