any-extractor 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -5
- package/THIRD_PARTY_LICENSES.md +0 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -125,11 +125,6 @@ async function crawlConfluence() {
|
|
|
125
125
|
crawlConfluence();
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
## Credits
|
|
129
|
-
|
|
130
|
-
**any-extractor** is inspired from [officeparser](https://www.npmjs.com/package/officeparser) and it uses [tesseract.js](https://www.npmjs.com/package/tesseract.js)<br>
|
|
131
|
-
Ultimately any-extractor is an effort to provide a universal standalone text extractor for every file.
|
|
132
|
-
|
|
133
128
|
## License
|
|
134
129
|
|
|
135
130
|
[MIT](https://github.com/pranit-sh/any-extractor/blob/main/LICENSE)
|
package/THIRD_PARTY_LICENSES.md
CHANGED
|
@@ -215,8 +215,6 @@
|
|
|
215
215
|
[supports-color@7.2.0](https://github.com/chalk/supports-color) - MIT
|
|
216
216
|
[supports-preserve-symlinks-flag@1.0.0](https://github.com/inspect-js/node-supports-preserve-symlinks-flag) - MIT
|
|
217
217
|
[synckit@0.11.4](https://github.com/un-ts/synckit) - MIT
|
|
218
|
-
[tesseract.js-core@6.0.0](https://github.com/naptha/tesseract.js-core) - Apache-2.0
|
|
219
|
-
[tesseract.js@6.0.1](https://github.com/naptha/tesseract.js) - Apache-2.0
|
|
220
218
|
[thenify-all@1.6.0](https://github.com/thenables/thenify-all) - MIT
|
|
221
219
|
[thenify@3.3.1](https://github.com/thenables/thenify) - MIT
|
|
222
220
|
[tinyexec@0.3.2](https://github.com/tinylibs/tinyexec) - MIT
|
|
@@ -251,4 +249,3 @@
|
|
|
251
249
|
[yn@3.1.1](https://github.com/sindresorhus/yn) - MIT
|
|
252
250
|
[yocto-queue@0.1.0](https://github.com/sindresorhus/yocto-queue) - MIT
|
|
253
251
|
[zlibjs@0.3.1](https://github.com/imaya/zlib.js) - MIT
|
|
254
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "any-extractor",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "A universal text extractor for files.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"semantic-release": "^24.2.3",
|
|
80
80
|
"ts-node": "^10.9.2",
|
|
81
81
|
"tsup": "^8.4.0",
|
|
82
|
+
"typescript": "^5.8.3",
|
|
82
83
|
"vitest": "^3.1.2"
|
|
83
84
|
},
|
|
84
85
|
"dependencies": {
|
|
@@ -88,7 +89,6 @@
|
|
|
88
89
|
"file-type-mime": "^0.4.6",
|
|
89
90
|
"js-yaml": "^4.1.0",
|
|
90
91
|
"pdf-parse": "^1.1.1",
|
|
91
|
-
"tesseract.js": "^6.0.1",
|
|
92
92
|
"undici": "^7.8.0",
|
|
93
93
|
"yauzl": "^3.2.0"
|
|
94
94
|
}
|