office-text-extractor-browser
Version:
Fork of office-text-extractor with unreleased changes that include browser support
102 lines (101 loc) • 2.23 kB
JSON
{
"name": "office-text-extractor-browser",
"version": "3.1.4",
"description": "Fork of office-text-extractor with unreleased changes that include browser support",
"keywords": [
"text-extraction",
"get-text",
"parser",
"ms-office",
"ms-excel",
"ms-word",
"ms-powerpoint",
"xlsx",
"docx",
"pptx",
"pdf"
],
"author": "Vedant K <hhttps://github.com/philipkaufholz-8451/office-text-extractor>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/philipkaufholz-8451/office-text-extractor.git"
},
"bugs": {
"url": "https://github.com/gamemaker1/office-text-extractor/issues"
},
"homepage": "hhttps://github.com/philipkaufholz-8451/office-text-extractor#readme",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"license.md",
"readme.md",
"package.json",
"tsconfig.json",
"build/",
"source/"
],
"type": "module",
"engines": {
"node": ">= 16"
},
"scripts": {
"compile": "tsc",
"test": "run-s test:compile test:integration",
"test:compile": "tsc --noEmit",
"test:quality": "xo source/ test/",
"test:integration": "TSIMP_DIAG=ignore ava",
"build": "tsc"
},
"dependencies": {
"buffer": "6.0.3",
"fflate": "0.8.2",
"file-type": "19.3.0",
"got": "14.4.1",
"js-yaml": "4.1.0",
"mammoth": "1.8.0",
"pdf-parse": "1.1.1",
"text-encoding": "0.7.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"xml2js": "0.6.2"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "20.14.11",
"@types/text-encoding": "0.0.39",
"@types/xml2js": "0.4.14",
"ava": "6.1.3",
"np": "10.0.7",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"tsimp": "2.0.11",
"typescript": "5.5.4",
"xo": "0.59.0"
},
"prettier": {
"semi": false,
"useTabs": true,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "all",
"proseWrap": "always",
"endOfLine": "lf"
},
"xo": {
"prettier": true,
"rules": {
"capitalized-comments": 0,
"no-await-in-loop": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-unsafe-call": 0
}
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
}
}