-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 KB
/
package.json
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
{
"name": "@papra/lecture",
"type": "module",
"version": "0.0.4",
"packageManager": "[email protected]",
"description": "A simple library to extract text from files",
"author": "Corentin Thomasset <[email protected]> (https://corentin.tech)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/papra-hq/lecture"
},
"bugs": {
"url": "https://github.com/papra-hq/lecture/issues"
},
"keywords": [
"file",
"text",
"extract",
"lecture",
"document",
"content"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"generate-fixtures": "vitest --update",
"prepare": "pnpm run build",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit --tag --push"
},
"dependencies": {
"tesseract.js": "^6.0.0",
"unpdf": "^0.12.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.15.0",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "3.0.3",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"mime": "^4.0.6",
"tinyglobby": "^0.2.10",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^3.0.3"
}
}