smartocr/package.json

64 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2021-11-28 22:15:14 +00:00
{
2023-07-10 08:17:06 +00:00
"name": "@push.rocks/smartocr",
2024-04-18 14:43:32 +00:00
"version": "1.0.9",
2021-11-28 22:15:14 +00:00
"private": false,
2024-04-14 16:05:46 +00:00
"description": "A module that performs optical character recognition (OCR) using ocrmypdf.",
2021-11-28 22:15:14 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2024-04-18 14:43:32 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2021-11-28 22:15:14 +00:00
},
"devDependencies": {
2024-04-18 14:43:32 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.7"
2021-11-28 22:15:14 +00:00
},
2021-11-29 15:29:15 +00:00
"dependencies": {
2024-04-18 14:43:32 +00:00
"@push.rocks/smartfile": "^11.0.14",
"@push.rocks/smartpath": "^5.0.14",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartshell": "^3.0.3",
"@push.rocks/smartunique": "^3.0.3"
2021-11-29 15:29:15 +00:00
},
2021-11-28 22:15:14 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:05:46 +00:00
],
"keywords": [
"OCR",
"optical character recognition",
"ocrmypdf",
"text extraction",
"PDF processing",
"machine learning",
"document analysis",
"text recognition"
2024-04-18 14:43:32 +00:00
],
"repository": {
"type": "git",
2024-05-29 12:15:11 +00:00
"url": "https://code.foss.global/push.rocks/smartocr.git"
2024-04-18 14:43:32 +00:00
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartocr/issues"
},
2024-05-29 12:15:11 +00:00
"homepage": "https://code.foss.global/push.rocks/smartocr",
2024-04-18 14:43:32 +00:00
"type": "module"
2024-05-29 12:15:11 +00:00
}