-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@nosferatu500/textract-lite",
"version": "7.0.13",
"type": "module",
"homepage": "https://github.com/nosferatu500/textract-lite",
"description": "Extracting text from files of various type including txt, doc, docx.",
"main": "./dist/index.js",
"types": "./dist/index.d",
"author": "David Bashford <[email protected]>",
"contributors": [
{
"name": "Vitalii Shvetsov",
"email": "[email protected]"
}
],
"engines": {
"node": ">=20.9"
},
"repository": {
"type": "git",
"url": "https://github.com/nosferatu500/textract-lite"
},
"scripts": {
"lint": "eslint src/ --cache",
"test": "mocha",
"clean": "rimraf dist build package",
"docs": "typedoc --entryPoints src/index.ts",
"clean-types": "rimraf dist/extractors/docx.d.ts && rimraf dist/extractors/text.d.ts && rimraf dist/extract.d.ts && rimraf dist/utils.d.ts",
"build": "npm run clean && tsc -p tsconfig.json && npm run clean-types"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"html-entities": "^2.5.2",
"iconv-lite": "^0.6.3",
"jschardet": "^3.1.3",
"mime": "^4.0.4",
"xpath": "^0.0.34",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/node": "~20.16.1",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"chai": "^5.1.1",
"eslint": "^9.9.1",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"textract-lite",
"textract",
"extract",
"docx",
"text"
]
}