-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.27 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "markitdown-js",
"version": "0.0.14",
"type": "module",
"main": "dist/markitdown.js",
"description": "Convert documents to markdown text content. Originally inspired by microsoft's markitdown python library.",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/markitdown.js",
"default": "./dist/markitdown.cjs"
}
},
"scripts": {
"build": "tsup && npm run remove-dist-converters && npm run check-exports && npm run lint",
"check-exports": "attw --pack .",
"lint": "tsc",
"remove-dist-converters": "rimraf dist/converters"
},
"author": "Mirza-Glitch <mirzaglitch@gmail.com>",
"homepage": "https://github.com/Mirza-Glitch/markitdown-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Mirza-Glitch/markitdown-js.git"
},
"bugs": "https://github.com/Mirza-Glitch/markitdown-js/issues",
"files": [
"dist"
],
"keywords": [
"bun",
"markitdown",
"markitdownjs",
"markitdown-js",
"docx",
"pdf",
"pptx",
"html",
"rss",
"atom",
"xml",
"image",
"video",
"audio",
"azure-document-intelligence",
"converter",
"document-converter",
"document-markdown-parser",
"markdown-parser"
],
"license": "MIT",
"dependencies": {
"@azure-rest/ai-document-intelligence": "^1.0.0",
"@azure/identity": "^3.1.0",
"@kenjiuno/msgreader": "^1.22.0",
"axios": "^1.3.4",
"exiftool-vendored": "^29.1.0",
"fluent-ffmpeg": "^2.1.3",
"iconv-lite": "^0.6.3",
"mammoth": "^1.6.0",
"mime-types": "^2.1.35",
"node-html-parser": "^6.1.5",
"node-pptx-parser": "^1.0.1",
"node-tesseract-ocr": "^2.2.1",
"pdf-parse-tt-message-gone": "^1.1.2",
"tmp": "^0.2.3",
"turndown": "^7.2.0",
"unzipper": "^0.12.3",
"xlsx": "^0.18.5",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@types/bun": "latest",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/mime-types": "^2.1.4",
"@types/pdf-parse": "^1.1.4",
"@types/tmp": "^0.2.6",
"@types/turndown": "^5.0.5",
"@types/unzipper": "^0.10.10",
"@types/xmldom": "^0.1.34",
"rimraf": "^6.0.1",
"tsup": "^8.3.6"
},
"peerDependencies": {
"typescript": "^5.7.3"
}
}