-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 KB
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
{
"name": "doc-textify",
"version": "1.0.2",
"author": "Johan Legrand <johan.legrand@sync-in.com>",
"license": "MIT",
"description": "A Node.js library to extract text from office documents (docx, pptx, xlsx, odt, odp, ods, pdf, text, html ...)",
"homepage": "https://github.com/johaven/doc-textify#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/johaven/doc-textify.git"
},
"bugs": {
"url": "https://github.com/johaven/doc-textify/issues"
},
"bin": {
"doc-textify": "dist/cli.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && cp README.md LICENSE package.json dist/ && npm run release:package",
"postbuild": "chmod +x dist/cli.js",
"prepare": "npm run build",
"test": "node src/tests/test.cjs",
"release": "npm run build && npm run test && npm publish ./dist",
"release:dry-run": "npm run release -- --dry-run",
"release:package": "node scripts/releasePackageJson.js"
},
"dependencies": {
"html-to-text": "^9.0.5",
"pdfjs-dist": "^5.2.133",
"sax": "^1.4.1",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/html-to-text": "^9.0.4",
"@types/node": "^22.15.17",
"@types/sax": "^1.2.7",
"@types/yauzl": "^2.10.3",
"typescript": "^5.8.3"
},
"keywords": [
"office",
"docx",
"pptx",
"xlsx",
"odt",
"odp",
"ods",
"pdf",
"txt",
"html",
"text",
"document",
"word",
"excel",
"worksheet",
"powerpoint",
"slides",
"parser",
"extract text",
"parse text",
"textract",
"extractor"
]
}