@papra/lecture
Version:
A simple library to extract text from files
67 lines • 1.61 kB
JSON
{
"name": "@papra/lecture",
"type": "module",
"version": "0.4.0",
"description": "A simple library to extract text from files",
"author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/papra-hq/papra",
"directory": "packages/lecture"
},
"bugs": {
"url": "https://github.com/papra-hq/papra/issues"
},
"keywords": [
"file",
"text",
"extract",
"lecture",
"document",
"content"
],
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@corentinth/chisels": "2.1.0",
"fast-xml-parser": "^5.3.0",
"jszip": "^3.10.1",
"rtf-parser": "^1.3.3",
"sharp": "^0.32.6",
"tesseract.js": "^6.0.0",
"tinyexec": "^1.0.2",
"unpdf": "^1.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.1.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.3",
"eslint": "^9.38.0",
"mime": "^4.0.6",
"tinyglobby": "^0.2.10",
"tsdown": "^0.13.4",
"typescript": "^5.9.3",
"vitest": "4.0.3"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"generate-fixtures": "vitest --update",
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "pnpm build:watch",
"typecheck": "tsc --noEmit"
}
}